/* ===== Custom Properties ===== */
:root {
    --emerald-50: #ecfdf5;
    --emerald-100: #d1fae5;
    --emerald-200: #a7f3d0;
    --emerald-300: #6ee7b7;
    --emerald-400: #34d399;
    --emerald-500: #10b981;
    --emerald-600: #059669;
    --emerald-700: #047857;
    --emerald-800: #065f46;
    --emerald-900: #064e3b;
    --cream-50: #FFFDF8;
    --cream-100: #FFF8F0;
    --cream-200: #FEF0E0;
    --cream-300: #F5E6D0;
    --cream-400: #E8D5C0;
    --dark: #0a1f16;
    --dark-soft: #133328;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-sm: 0 1px 3px rgba(10, 31, 22, 0.06), 0 1px 2px rgba(10, 31, 22, 0.04);
    --shadow-md: 0 4px 16px rgba(10, 31, 22, 0.08), 0 2px 6px rgba(10, 31, 22, 0.04);
    --shadow-lg: 0 12px 40px rgba(10, 31, 22, 0.12), 0 4px 12px rgba(10, 31, 22, 0.06);
    --shadow-xl: 0 24px 60px rgba(10, 31, 22, 0.16), 0 8px 20px rgba(10, 31, 22, 0.08);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--gray-700);
    background: var(--cream-50);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== Typography ===== */
h1, h2, h3, h4 { font-family: 'Outfit', sans-serif; color: var(--dark); line-height: 1.2; }
.text-highlight {
    background: linear-gradient(135deg, var(--emerald-500) 0%, var(--emerald-700) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Page Wrapper & BG Shapes ===== */
.page-wrapper { position: relative; }
.bg-shape {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}
.bg-shape-1 {
    width: 500px; height: 500px;
    background: var(--emerald-300);
    top: -100px; right: -100px;
}
.bg-shape-2 {
    width: 400px; height: 400px;
    background: var(--cream-300);
    top: 40%; left: -80px;
}
.bg-shape-3 {
    width: 300px; height: 300px;
    background: var(--emerald-200);
    bottom: 20%; right: 5%;
}
.bg-shape-4 {
    width: 200px; height: 200px;
    background: var(--emerald-400);
    top: 60%; left: 30%;
    opacity: 0.15;
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255, 253, 248, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(5, 150, 105, 0.08);
    transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--dark);
}
.logo-icon { color: var(--emerald-600); }
.logo-text { letter-spacing: -0.02em; }
.logo-accent { color: var(--emerald-600); }
.logo-light { color: var(--cream-100); }
.logo-light .logo-accent { color: var(--emerald-300); }

.nav { display: flex; align-items: center; gap: 8px; }
.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-link {
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.938rem;
    color: var(--gray-600);
    transition: color var(--transition), background var(--transition);
}
.nav-link:hover { color: var(--emerald-700); background: var(--emerald-50); }
.header-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--emerald-600);
    color: white;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.938rem;
    transition: background var(--transition), transform var(--transition);
}
.header-cta:hover { background: var(--emerald-700); transform: translateY(-1px); }

/* Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}
.nav-toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ===== Hero ===== */
.hero {
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, var(--cream-50) 0%, var(--emerald-50) 50%, var(--cream-100) 100%);
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: white;
    border: 1px solid var(--emerald-200);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--emerald-700);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}
.badge-dot {
    width: 8px; height: 8px;
    background: var(--emerald-500);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}
.hero-title {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}
.hero-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 36px;
    max-width: 520px;
    line-height: 1.7;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition);
}
.btn-primary {
    background: var(--emerald-600);
    color: white;
    box-shadow: 0 4px 16px rgba(5, 150, 105, 0.3);
}
.btn-primary:hover {
    background: var(--emerald-700);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(5, 150, 105, 0.35);
}
.btn-secondary {
    background: white;
    color: var(--dark);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
    border-color: var(--emerald-300);
    color: var(--emerald-700);
    transform: translateY(-2px);
}
.btn-white {
    background: white;
    color: var(--emerald-700);
    box-shadow: var(--shadow-md);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.7);
    transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.938rem;
    font-weight: 500;
    color: var(--gray-600);
}
.trust-item svg { color: var(--emerald-600); }

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 520px;
}
.hero-shape-main {
    position: absolute;
    width: 380px; height: 380px;
    background: var(--emerald-600);
    border-radius: var(--radius-xl);
    top: 20px; right: 20px;
    transform: rotate(12deg);
    z-index: 0;
}
.hero-shape-accent {
    position: absolute;
    width: 200px; height: 200px;
    background: var(--cream-200);
    border-radius: 50%;
    bottom: 40px; left: 0;
    z-index: 0;
}
.hero-image-grid {
    position: relative;
    z-index: 1;
    height: 100%;
}
.hero-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.hero-img-1 {
    width: 280px;
    position: absolute;
    top: 0; left: 30px;
}
.hero-img-1 img { width: 280px; height: 350px; object-fit: cover; }
.hero-img-2 {
    width: 220px;
    position: absolute;
    bottom: 30px; right: 0;
}
.hero-img-2 img { width: 220px; height: 220px; object-fit: cover; }
.hero-float-card {
    position: absolute;
    top: 50%; right: 10px;
    transform: translateY(-50%);
    background: white;
    border-radius: var(--radius-md);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
    z-index: 2;
    animation: float-card 4s ease-in-out infinite;
}
@keyframes float-card {
    0%, 100% { transform: translateY(-50%) translateX(0); }
    50% { transform: translateY(-50%) translateX(6px); }
}
.float-card-icon {
    width: 44px; height: 44px;
    background: var(--emerald-100);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-700);
    flex-shrink: 0;
}
.float-card-label {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-500);
    font-weight: 500;
}
.float-card-value {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
}

/* Hero Accent Strip */
.hero-accent-strip {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 60px;
    background: var(--emerald-600);
    overflow: hidden;
}
.accent-shape {
    position: absolute;
    border-radius: 50%;
}
.accent-circle-1 {
    width: 120px; height: 120px;
    background: var(--emerald-700);
    bottom: -60px; left: 10%;
    opacity: 0.5;
}
.accent-circle-2 {
    width: 80px; height: 80px;
    background: var(--emerald-500);
    bottom: -40px; left: 35%;
    opacity: 0.6;
}
.accent-diamond {
    width: 60px; height: 60px;
    background: var(--emerald-400);
    bottom: -30px; right: 20%;
    transform: rotate(45deg);
    opacity: 0.5;
}

/* ===== Section Shared ===== */
.section-header { margin-bottom: 60px; }
.section-header--center { text-align: center; }
.section-tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--emerald-100);
    color: var(--emerald-700);
    border-radius: 50px;
    font-size: 0.813rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
}
.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}
.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 600px;
    line-height: 1.7;
}
.section-header--center .section-subtitle { margin: 0 auto; }

/* ===== Services ===== */
.services {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.service-card {
    position: relative;
    background: white;
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1px solid var(--gray-100);
    transition: all var(--transition);
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--emerald-400), var(--emerald-600));
    opacity: 0;
    transition: opacity var(--transition);
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--emerald-200);
}
.service-card:hover::before { opacity: 1; }
.service-card--featured {
    background: var(--emerald-600);
    border-color: var(--emerald-600);
    color: white;
}
.service-card--featured::before { background: var(--cream-200); }
.service-card--featured:hover { border-color: var(--emerald-700); }
.service-card--featured .service-title,
.service-card--featured .service-desc,
.service-card--featured .service-list li { color: white; }
.service-card--featured .service-list li::before { color: var(--emerald-200); }
.service-card--featured .service-icon { background: rgba(255,255,255,0.15); color: white; }
.service-badge {
    position: absolute;
    top: 20px; right: 20px;
    background: var(--cream-200);
    color: var(--emerald-800);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.service-icon {
    width: 56px; height: 56px;
    background: var(--emerald-100);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-700);
    margin-bottom: 20px;
}
.service-title {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}
.service-desc {
    font-size: 0.938rem;
    color: var(--gray-500);
    margin-bottom: 20px;
    line-height: 1.65;
}
.service-list { display: flex; flex-direction: column; gap: 8px; }
.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.938rem;
    font-weight: 500;
    color: var(--gray-600);
}
.service-list li::before {
    content: '✓';
    color: var(--emerald-500);
    font-weight: 700;
    font-size: 0.813rem;
    flex-shrink: 0;
}

/* ===== About ===== */
.about {
    padding: 100px 0;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, var(--cream-50) 0%, var(--emerald-50) 100%);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-visual { position: relative; height: 560px; }
.about-shape-1 {
    position: absolute;
    width: 280px; height: 280px;
    background: var(--emerald-200);
    border-radius: var(--radius-xl);
    top: 0; right: 0;
    transform: rotate(-8deg);
    z-index: 0;
}
.about-shape-2 {
    position: absolute;
    width: 160px; height: 160px;
    background: var(--cream-300);
    border-radius: 50%;
    bottom: 40px; left: 0;
    z-index: 0;
}
.about-image-stack { position: relative; z-index: 1; height: 100%; }
.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    width: 340px;
    position: absolute;
    top: 0; left: 0;
}
.about-img-main img { width: 340px; height: 420px; object-fit: cover; }
.about-img-float {
    position: absolute;
    bottom: 20px; right: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid white;
}
.about-img-float img { width: 260px; height: 180px; object-fit: cover; }
.about-content { max-width: 500px; }
.about-text {
    font-size: 1.063rem;
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: 16px;
}
.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 40px;
}
.stat-item {
    text-align: center;
    padding: 20px 12px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}
.stat-number {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--emerald-600);
    letter-spacing: -0.02em;
}
.stat-label {
    display: block;
    font-size: 0.813rem;
    color: var(--gray-500);
    font-weight: 500;
    margin-top: 4px;
}

/* ===== Process ===== */
.process {
    padding: 100px 0;
    position: relative;
    z-index: 1;
    background: var(--dark);
    overflow: hidden;
}
.process .section-tag { background: rgba(255,255,255,0.1); color: var(--emerald-300); }
.process .section-title { color: white; }
.process .section-subtitle { color: var(--gray-400); }
.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
}
.process-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}
.step-number-wrap {
    flex-shrink: 0;
    width: 56px; height: 56px;
    background: var(--emerald-600);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}
.step-number {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
}
.step-line {
    display: none;
}
.step-content { flex: 1; padding-top: 8px; }
.step-icon {
    width: 44px; height: 44px;
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-400);
    margin-bottom: 16px;
}
.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}
.step-desc {
    font-size: 0.938rem;
    color: var(--gray-400);
    line-height: 1.7;
}
.step-desc a { color: var(--emerald-400); font-weight: 600; }
.step-desc a:hover { text-decoration: underline; }

/* ===== CTA Banner ===== */
.cta-banner {
    padding: 80px 0;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, var(--emerald-600) 0%, var(--emerald-800) 100%);
    overflow: hidden;
}
.cta-inner {
    position: relative;
    display: flex;
    align-items: center;
    gap: 48px;
}
.cta-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.cta-shape { position: absolute; opacity: 0.1; }
.cta-shape-circle {
    width: 300px; height: 300px;
    background: white;
    border-radius: 50%;
    top: -100px; right: 10%;
}
.cta-shape-square {
    width: 150px; height: 150px;
    background: white;
    bottom: -50px; left: 5%;
    transform: rotate(30deg);
}
.cta-shape-triangle {
    width: 0; height: 0;
    border-left: 75px solid transparent;
    border-right: 75px solid transparent;
    border-bottom: 130px solid white;
    top: 10%; left: 40%;
    transform: rotate(-15deg);
}
.cta-content { flex: 1; }
.cta-title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.cta-subtitle {
    font-size: 1.063rem;
    color: var(--emerald-200);
    line-height: 1.7;
    max-width: 480px;
}
.cta-actions { display: flex; gap: 16px; flex-shrink: 0; }

/* ===== Contact ===== */
.contact {
    padding: 100px 0;
    position: relative;
    z-index: 1;
    background: var(--cream-50);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.contact-info { max-width: 500px; }
.contact-desc {
    font-size: 1.063rem;
    color: var(--gray-500);
    line-height: 1.75;
    margin-bottom: 36px;
}
.contact-details { display: flex; flex-direction: column; gap: 24px; margin-bottom: 32px; }
.contact-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.contact-detail-icon {
    width: 48px; height: 48px;
    background: var(--emerald-100);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-700);
    flex-shrink: 0;
}
.contact-detail-label {
    display: block;
    font-size: 0.813rem;
    color: var(--gray-400);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}
.contact-detail-value {
    display: block;
    font-size: 1rem;
    color: var(--dark);
    font-weight: 500;
    line-height: 1.5;
}
.contact-detail-value a { color: var(--emerald-700); transition: color var(--transition); }
.contact-detail-value a:hover { color: var(--emerald-500); }
.contact-map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }

/* Form */
.contact-form-wrap {
    position: relative;
    background: white;
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
}
.form-decor {
    position: absolute;
    top: -2px; left: 40px; right: 40px;
    height: 4px;
    background: linear-gradient(90deg, var(--emerald-400), var(--emerald-600));
    border-radius: 4px;
}
.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}
.form-subtitle {
    font-size: 0.938rem;
    color: var(--gray-500);
    margin-bottom: 28px;
}
.form-group { margin-bottom: 20px; }
.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
}
.form-input, .form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    color: var(--dark);
    background: var(--cream-50);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}
.form-input:focus, .form-textarea:focus {
    border-color: var(--emerald-500);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
    background: white;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--gray-400); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-success {
    text-align: center;
    padding: 40px 20px;
}
.success-icon {
    width: 64px; height: 64px;
    background: var(--emerald-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--emerald-600);
}
.success-title {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.success-title, .form-success p { color: var(--dark); }
.form-success p { color: var(--gray-500); font-size: 0.938rem; }

/* ===== Footer ===== */
.footer {
    background: var(--dark);
    color: var(--gray-400);
    padding: 60px 0 0;
    position: relative;
    z-index: 1;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 48px;
}
.footer-desc {
    font-size: 0.938rem;
    line-height: 1.7;
    margin-top: 16px;
    max-width: 280px;
}
.footer-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 0.938rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 20px;
}
.footer-links ul, .footer-contact-list { display: flex; flex-direction: column; gap: 12px; }
.footer-links a, .footer-contact a {
    font-size: 0.938rem;
    color: var(--gray-400);
    transition: color var(--transition);
}
.footer-links a:hover, .footer-contact a:hover { color: var(--emerald-400); }
.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.875rem;
    line-height: 1.5;
}
.footer-contact-list svg { color: var(--emerald-500); flex-shrink: 0; margin-top: 3px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p { font-size: 0.813rem; color: var(--gray-500); }

/* ===== Animations ===== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero-grid { gap: 40px; }
    .hero-visual { height: 420px; }
    .hero-shape-main { width: 280px; height: 280px; }
    .about-grid { gap: 48px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-list {
        position: fixed;
        top: 0; right: 0;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: stretch;
        padding: 80px 24px 24px;
        gap: 4px;
        box-shadow: var(--shadow-xl);
        transform: translateX(100%);
        transition: transform var(--transition);
        z-index: 999;
    }
    .nav-list.open { transform: translateX(0); }
    .nav-link { padding: 12px 16px; font-size: 1rem; }
    .header-cta { display: none; }

    .hero { padding: 120px 0 80px; }
    .hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .hero-visual { height: 360px; order: -1; }
    .hero-img-1 { width: 200px; left: 0; }
    .hero-img-1 img { width: 200px; height: 250px; }
    .hero-img-2 { width: 160px; right: 0; }
    .hero-img-2 img { width: 160px; height: 160px; }
    .hero-shape-main { width: 200px; height: 200px; right: 0; }
    .hero-shape-accent { width: 120px; height: 120px; }
    .hero-float-card { display: none; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { justify-content: center; }
    .hero-trust { gap: 16px; }

    .services-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .about-visual { height: 400px; }
    .about-img-main { width: 260px; }
    .about-img-main img { width: 260px; height: 320px; }
    .about-img-float img { width: 200px; height: 140px; }
    .about-stats { grid-template-columns: repeat(2, 1fr); }

    .process-steps { grid-template-columns: 1fr; gap: 40px; }

    .cta-inner { flex-direction: column; text-align: center; }
    .cta-subtitle { margin: 0 auto; }
    .cta-actions { justify-content: center; }

    .contact-grid { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 28px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-title { font-size: 2rem; }
    .service-card { padding: 24px; }
    .about-stats { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .stat-item { padding: 16px 8px; }
    .stat-number { font-size: 1.25rem; }
}
