/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', -apple-system, sans-serif;
    color: #1A1D23;
    background: #FAFAF8;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: 'Space Grotesk', sans-serif; line-height: 1.15; font-weight: 700; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== COLOR VARIABLES ===== */
:root {
    --charcoal: #1A1D23;
    --charcoal-light: #2C3038;
    --coral: #E8553A;
    --coral-dark: #C9432A;
    --coral-light: #FF7B63;
    --cream: #FAFAF8;
    --warm-gray: #F0EDE8;
    --text: #1A1D23;
    --text-muted: #6B7280;
    --white: #FFFFFF;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(26,29,35,0.08);
    --shadow-lg: 0 12px 48px rgba(26,29,35,0.12);
}

/* ===== UTILITY ===== */
.accent { color: var(--coral); }
.section-tag {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 12px;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--charcoal);
    margin-bottom: 16px;
}
.section-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 560px;
}
.section-header { text-align: center; margin-bottom: 64px; }
.section-header.light .section-title { color: var(--white); }
.section-header.light .section-sub { color: rgba(255,255,255,0.75); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.btn-primary {
    background: var(--coral);
    color: var(--white);
    border-color: var(--coral);
}
.btn-primary:hover {
    background: var(--coral-dark);
    border-color: var(--coral-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232,85,58,0.35);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}
.btn-white {
    background: var(--white);
    color: var(--charcoal);
    border-color: var(--white);
}
.btn-white:hover {
    background: var(--warm-gray);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* ===== NAV ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250,250,248,0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(26,29,35,0.06);
    transition: all 0.3s ease;
}
.nav.scrolled {
    background: rgba(250,250,248,0.96);
    box-shadow: 0 2px 20px rgba(26,29,35,0.08);
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--charcoal);
}
.nav-logo-icon { flex-shrink: 0; }
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-links a {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--charcoal);
    transition: color 0.2s;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--coral);
    transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--coral); }
.nav-cta {
    background: var(--coral) !important;
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--coral-dark) !important; }

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: all 0.3s ease;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    background: var(--charcoal);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 72px;
}
.hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.geo { position: absolute; }
.geo-circle-1 {
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232,85,58,0.15) 0%, transparent 70%);
    top: -200px; right: -100px;
}
.geo-rect-1 {
    width: 200px; height: 200px;
    background: rgba(232,85,58,0.08);
    border: 2px solid rgba(232,85,58,0.2);
    bottom: 20%; left: 5%;
    transform: rotate(15deg);
}
.geo-triangle {
    width: 0; height: 0;
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-bottom: 140px solid rgba(232,85,58,0.1);
    top: 30%; left: 12%;
}
.geo-circle-2 {
    width: 120px; height: 120px;
    border-radius: 50%;
    background: rgba(232,85,58,0.12);
    bottom: 15%; right: 25%;
}
.geo-dots {
    width: 80px; height: 80px;
    background-image: radial-gradient(circle, rgba(232,85,58,0.4) 1.5px, transparent 1.5px);
    background-size: 12px 12px;
    top: 20%; right: 10%;
}
.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
    width: 100%;
}
.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232,85,58,0.15);
    border: 1px solid rgba(232,85,58,0.3);
    padding: 8px 16px;
    border-radius: 50px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--coral-light);
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}
.tag-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--coral);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}
.hero-headline {
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
}
.hero-sub {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
}
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}
.hero-stats {
    display: flex;
    gap: 32px;
    align-items: center;
}
.stat-num {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--coral);
}
.stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.4;
}
.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
}

/* Hero image stack */
.hero-visual { position: relative; }
.img-stack { position: relative; height: 680px; }
.img-card {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.img-card-lg {
    width: 340px;
    height: 440px;
    top: 0;
    right: 0;
    z-index: 2;
}
.img-card-sm {
    width: 240px;
    height: 170px;
    bottom: 140px;
    right: 160px;
    z-index: 3;
    border: 4px solid var(--charcoal);
}
.img-card-float {
    width: 260px;
    height: 190px;
    bottom: 20px;
    right: 20px;
    z-index: 1;
}
.float-badge {
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--charcoal);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

/* ===== SERVICES ===== */
.services {
    padding: 100px 0;
    background: var(--cream);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    border: 1px solid rgba(26,29,35,0.06);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--coral);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.service-icon {
    width: 56px; height: 56px;
    background: rgba(232,85,58,0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}
.service-card:hover .service-icon {
    background: var(--coral);
    color: var(--white);
}
.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: var(--charcoal);
}
.service-card > p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}
.service-list {
    margin-bottom: 24px;
}
.service-list li {
    font-size: 0.9rem;
    color: var(--text);
    padding: 6px 0;
    padding-left: 16px;
    position: relative;
}
.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--coral);
}
.service-link {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--coral);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
}
.service-link:hover { gap: 12px; }
.arrow { font-size: 1.1rem; transition: transform 0.3s ease; }
.service-link:hover .arrow { transform: translateX(4px); }

/* Accent card */
.accent-card {
    background: var(--charcoal);
    border-color: var(--charcoal);
}
.accent-card h3 { color: var(--white); }
.accent-card > p { color: rgba(255,255,255,0.65); }
.accent-card .service-list li { color: rgba(255,255,255,0.8); }
.accent-card .service-icon { background: rgba(232,85,58,0.2); }
.accent-card:hover .service-icon { background: var(--coral); }

/* ===== ABOUT ===== */
.about {
    padding: 100px 0;
    background: var(--white);
    overflow: hidden;
}
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-visual {
    position: relative;
    height: 520px;
}
.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    width: 85%;
    height: 400px;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 4px solid var(--white);
}
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.about-shapes { position: absolute; inset: 0; pointer-events: none; }
.ashape { position: absolute; }
.as-circle {
    width: 100px; height: 100px;
    border-radius: 50%;
    background: var(--coral);
    opacity: 0.12;
    top: -20px; left: 10%;
}
.as-square {
    width: 60px; height: 60px;
    background: var(--coral);
    opacity: 0.08;
    bottom: 60px; left: -10px;
    transform: rotate(30deg);
}
.as-dots {
    width: 60px; height: 60px;
    background-image: radial-gradient(circle, var(--coral) 2px, transparent 2px);
    background-size: 10px 10px;
    top: 20px; right: 5%;
    opacity: 0.5;
}
.about-content .section-title { margin-bottom: 20px; }
.about-body {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 16px;
}
.about-values {
    margin-top: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.value-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--charcoal);
}
.value-icon {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: rgba(232,85,58,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ===== PROCESS ===== */
.process {
    padding: 100px 0;
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
}
.process::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232,85,58,0.08) 0%, transparent 70%);
    top: -200px; right: -100px;
}
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}
.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(232,85,58,0.4), rgba(232,85,58,0.4), transparent);
}
.step {
    text-align: center;
    position: relative;
    z-index: 2;
}
.step-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--coral);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 12px;
}
.step-geo {
    width: 80px; height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--charcoal-light);
    border: 2px solid rgba(232,85,58,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}
.geo-step-1 { border-radius: 16px; transform: rotate(10deg); }
.geo-step-2 { border-radius: 50%; }
.geo-step-3 { border-radius: 12px 12px 12px 32px; transform: rotate(-5deg); }
.geo-step-4 { border-radius: 50%; border-style: dashed; }
.step h3 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 10px;
}
.step p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    max-width: 240px;
    margin: 0 auto;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 100px 0;
    background: var(--cream);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    border: 1px solid rgba(26,29,35,0.06);
    transition: all 0.3s ease;
    position: relative;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.t-quote {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    line-height: 1;
    color: var(--coral);
    opacity: 0.25;
    position: absolute;
    top: 16px; left: 24px;
}
.t-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 24px;
    margin-top: 24px;
    position: relative;
    z-index: 1;
}
.t-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.t-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(232,85,58,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.t-author strong {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    color: var(--charcoal);
}
.t-author span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ===== CTA BANNER ===== */
.cta-banner {
    padding: 100px 0;
    background: var(--coral);
    position: relative;
    overflow: hidden;
}
.cta-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.cta-geo { position: absolute; }
.cga-circle-1 {
    width: 400px; height: 400px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.15);
    top: -150px; left: -100px;
}
.cga-rect {
    width: 160px; height: 160px;
    background: rgba(255,255,255,0.08);
    bottom: -40px; right: 10%;
    transform: rotate(25deg);
}
.cga-tri {
    width: 0; height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 100px solid rgba(255,255,255,0.1);
    top: 20%; right: 5%;
}
.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.cta-headline {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 16px;
}
.cta-sub {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 40px;
    line-height: 1.7;
}
.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== CONTACT ===== */
.contact {
    padding: 100px 0;
    background: var(--white);
}
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.contact-body {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 36px;
}
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.ci-icon {
    width: 48px; height: 48px;
    border-radius: var(--radius);
    background: rgba(232,85,58,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-item strong {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    color: var(--charcoal);
    margin-bottom: 4px;
}
.contact-item span, .contact-item a {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}
.contact-item a:hover { color: var(--coral); }

/* Form */
.contact-form-wrap {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid rgba(26,29,35,0.06);
}
.contact-form h3 {
    font-size: 1.5rem;
    color: var(--charcoal);
    margin-bottom: 6px;
}
.form-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group {
    margin-bottom: 16px;
}
.form-group label {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid rgba(26,29,35,0.12);
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--charcoal);
    background: var(--white);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--coral);
    box-shadow: 0 0 0 3px rgba(232,85,58,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}
.form-success.show { display: block; }
.form-success strong {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    color: var(--charcoal);
    margin: 12px 0 6px;
}
.form-success span {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* ===== MAP ===== */
.map-section {
    position: relative;
}
.map-section iframe {
    filter: grayscale(0.4) contrast(1.05);
}
.map-overlay {
    position: absolute;
    top: 24px;
    left: 24px;
    background: var(--white);
    padding: 16px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
}
.map-overlay strong {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    color: var(--charcoal);
}
.map-overlay span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--charcoal);
    padding: 64px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: 16px;
    max-width: 280px;
}
.footer-col h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.4);
    margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a, .footer-col li {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    transition: color 0.2s;
}
.footer-col a:hover { color: var(--coral); }
.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
}

/* ===== ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-layout { grid-template-columns: 1fr; gap: 48px; }
    .hero-visual { display: none; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .process-steps::before { display: none; }
    .about-layout { grid-template-columns: 1fr; gap: 48px; }
    .about-visual { height: 400px; }
    .contact-layout { grid-template-columns: 1fr; gap: 48px; }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links { 
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--cream);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid rgba(26,29,35,0.06);
        box-shadow: var(--shadow);
    }
    .nav-links.open { display: flex; }
    .nav-toggle { display: flex; }
    .hero { padding-top: 72px; min-height: auto; padding-bottom: 80px; }
    .hero-headline { font-size: clamp(1.8rem, 6vw, 2.6rem); }
    .hero-stats { flex-direction: column; gap: 20px; align-items: flex-start; }
    .stat-divider { display: none; }
    .services-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .about-values { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .cta-actions { flex-direction: column; align-items: center; }
    .map-overlay { position: relative; top: 0; left: 0; border-radius: 0; }
}

@media (max-width: 480px) {
    html { font-size: 15px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .contact-form-wrap { padding: 24px; }
}
