/* ── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --teal-900: #042f2f;
    --teal-800: #0d4f4f;
    --teal-700: #136b6b;
    --teal-600: #1a8a8a;
    --teal-500: #2dd4bf;
    --teal-400: #5eead4;
    --teal-300: #99f6e4;
    --teal-100: #ccfbf1;
    --teal-50:  #f0fdfa;

    --slate-950: #0a0f1a;
    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748b;
    --slate-400: #94a3b8;
    --slate-300: #cbd5e1;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;
    --slate-50:  #f8fafc;
    --white:     #ffffff;

    --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --sans:  'Inter', system-ui, -apple-system, sans-serif;

    --shadow-sm:  0 1px 2px rgba(0,0,0,.06), 0 1px 3px rgba(0,0,0,.08);
    --shadow-md:  0 4px 6px -1px rgba(0,0,0,.08), 0 2px 4px -2px rgba(0,0,0,.06);
    --shadow-lg:  0 10px 25px -3px rgba(0,0,0,.1), 0 4px 10px -4px rgba(0,0,0,.06);
    --shadow-xl:  0 20px 50px -12px rgba(0,0,0,.15);

    --radius-sm:  6px;
    --radius-md:  10px;
    --radius-lg:  16px;
    --radius-xl:  24px;

    --transition: .3s cubic-bezier(.4, 0, .2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--sans);
    color: var(--slate-800);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
address { font-style: normal; }
ul { list-style: none; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.skip-link {
    position: absolute; top: -100%; left: 1rem;
    background: var(--teal-800); color: var(--white);
    padding: .5rem 1rem; border-radius: var(--radius-sm);
    z-index: 9999; font-size: .875rem;
}
.skip-link:focus { top: 1rem; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ── Typography ───────────────────────────────────── */
.section-eyebrow {
    font-family: var(--sans);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--teal-600);
    margin-bottom: .75rem;
}

.section-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--slate-900);
    margin-bottom: 1rem;
}

.section-title--light { color: var(--white); }

.section-subtitle {
    font-size: 1.125rem;
    color: var(--slate-600);
    max-width: 640px;
    line-height: 1.7;
}

.section-header--centered { text-align: center; }
.section-header--centered .section-subtitle { margin: 0 auto; }

.accent-italic {
    font-style: italic;
    color: var(--teal-600);
    font-weight: 600;
}

/* ── Buttons ──────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--sans);
    font-size: .9375rem;
    font-weight: 600;
    padding: .875rem 1.75rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
    white-space: nowrap;
}

.btn--primary {
    background: var(--teal-700);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(13,79,79,.35);
}
.btn--primary:hover {
    background: var(--teal-800);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13,79,79,.4);
}

.btn--ghost {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,.4);
}
.btn--ghost:hover {
    background: rgba(255,255,255,.1);
    border-color: var(--white);
}

.btn--light {
    background: var(--white);
    color: var(--teal-800);
    box-shadow: var(--shadow-lg);
}
.btn--light:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn--outline-light {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,.5);
}
.btn--outline-light:hover {
    background: rgba(255,255,255,.1);
    border-color: var(--white);
}

.btn--full { width: 100%; justify-content: center; }

/* ── Header ───────────────────────────────────────── */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,.06);
    transition: 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: .625rem;
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--slate-900);
}
.logo--light { color: var(--white); }

.logo-icon { color: var(--teal-700); }
.logo--light .logo-icon { color: var(--teal-400); }

.logo-accent { color: var(--teal-600); }

.nav-list {
    display: flex;
    align-items: center;
    gap: .25rem;
}

.nav-link {
    font-size: .9375rem;
    font-weight: 500;
    color: var(--slate-600);
    padding: .5rem .875rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.nav-link:hover { color: var(--teal-700); background: var(--teal-50); }

.nav-link--cta {
    background: var(--teal-700);
    color: var(--white) !important;
    margin-left: .5rem;
}
.nav-link--cta:hover { background: var(--teal-800); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: .5rem;
    margin: 0 .5rem 0 -.25rem;
}
.nav-toggle[aria-expanded="true"] .hamburger::before { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after  { transform: rotate(-45deg); }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.hamburger {
    width: 22px; height: 2px;
    background: var(--slate-700);
    border-radius: 2px;
    position: relative;
    transition: var(--transition);
}
.hamburger::before, .hamburger::after {
    content: '';
    position: absolute; left: 0;
    width: 100%; height: 100%;
    background: var(--slate-700);
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger::before { top: -7px; }
.hamburger::after  { top:  7px; }

/* ── Hero ─────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--slate-950) 0%, var(--teal-900) 50%, var(--slate-900) 100%);
    padding: 8rem 0 6rem;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(45,212,191,.12) 0%, transparent 60%),
        radial-gradient(ellipse 50% 80% at 10% 90%, rgba(45,212,191,.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content { max-width: 560px; }

.hero-eyebrow {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--teal-400);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: .75rem;
}
.hero-eyebrow::before {
    content: '';
    width: 2rem; height: 1.5px;
    background: var(--teal-400);
}

.hero-headline {
    font-family: var(--serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--slate-300);
    line-height: 1.75;
    margin-bottom: 2.25rem;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    align-items: center;
}
.stat-divider {
    width: 1px; height: 2.5rem;
    background: rgba(255,255,255,.15);
}
.stat-number {
    display: block;
    font-family: var(--serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--teal-400);
    line-height: 1;
    margin-bottom: .25rem;
}
.stat-label {
    font-size: .8125rem;
    color: var(--slate-400);
    letter-spacing: .02em;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/5;
}
.hero-image-accent {
    position: absolute;
    inset: 0;
    border: 1.5px solid rgba(255,255,255,.1);
    border-radius: var(--radius-xl);
    pointer-events: none;
}

.hero-badge {
    position: absolute;
    bottom: -1.25rem;
    left: -1.25rem;
    display: flex;
    align-items: center;
    gap: .625rem;
    background: var(--white);
    padding: .875rem 1.25rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    font-size: .875rem;
    font-weight: 600;
    color: var(--slate-800);
    z-index: 2;
}
.hero-badge svg { color: var(--teal-600); }

.hero-wave {
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    width: 100%;
    pointer-events: none;
}
.hero-wave svg { display: block; width: 100%; height: auto; }

/* ── Services ─────────────────────────────────────── */
.services {
    padding: 7rem 0;
    background: var(--white);
}

.section-header { margin-bottom: 4rem; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal-600), var(--teal-400));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--teal-200);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
    width: 56px; height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--teal-100);
    border-radius: var(--radius-md);
    color: var(--teal-700);
    margin-bottom: 1.25rem;
    transition: var(--transition);
}
.service-card:hover .service-icon {
    background: var(--teal-700);
    color: var(--white);
}

.service-title {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: .75rem;
}

.service-description {
    font-size: .9375rem;
    color: var(--slate-600);
    line-height: 1.7;
}

/* ── About ────────────────────────────────────────── */
.about {
    padding: 7rem 0;
    background: var(--slate-50);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-images {
    position: relative;
    min-height: 520px;
}

.about-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.about-img-main img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.about-img-secondary {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    width: 55%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--white);
}
.about-img-secondary img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.about-experience-badge {
    position: absolute;
    top: -1.5rem;
    right: 2rem;
    background: var(--teal-700);
    color: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}
.experience-number {
    display: block;
    font-family: var(--serif);
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1;
    color: var(--teal-300);
}
.experience-text {
    font-size: .8125rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    opacity: .9;
}

.about-content { max-width: 520px; }

.about-text {
    font-size: 1.0625rem;
    color: var(--slate-600);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.about-features {
    margin-top: 2rem;
    display: grid;
    gap: .875rem;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: .875rem;
    font-size: .9375rem;
    font-weight: 500;
    color: var(--slate-700);
}

.check-icon {
    flex-shrink: 0;
    color: var(--teal-600);
}

/* ── Why Us ───────────────────────────────────────── */
.why-us {
    padding: 7rem 0;
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

.why-card {
    padding: 2.25rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--slate-200);
    transition: var(--transition);
    position: relative;
}
.why-card:hover {
    border-color: var(--teal-300);
    box-shadow: var(--shadow-md);
    background: var(--teal-50);
}

.why-number {
    font-family: var(--serif);
    font-size: 3rem;
    font-weight: 800;
    color: var(--teal-100);
    line-height: 1;
    margin-bottom: .75rem;
    transition: var(--transition);
}
.why-card:hover .why-number { color: var(--teal-200); }

.why-title {
    font-family: var(--serif);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: .75rem;
}

.why-description {
    font-size: .9375rem;
    color: var(--slate-600);
    line-height: 1.75;
}

/* ── Process ──────────────────────────────────────── */
.process {
    padding: 7rem 0;
    background: linear-gradient(135deg, var(--slate-950) 0%, var(--teal-900) 100%);
    position: relative;
    overflow: hidden;
}
.process::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 50% at 80% 20%, rgba(45,212,191,.1) 0%, transparent 60%);
    pointer-events: none;
}

.process .section-eyebrow { color: var(--teal-400); }
.process .section-title { color: var(--white); }

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}

.step-circle {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--teal-700);
    border: 2px solid var(--teal-500);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 0 0 6px rgba(45,212,191,.15);
}
.step-number {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--teal-300);
}

.step-connector {
    display: none;
}

.step-title {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: .625rem;
}

.step-description {
    font-size: .9375rem;
    color: var(--slate-400);
    line-height: 1.7;
}

/* ── CTA Banner ───────────────────────────────────── */
.cta-banner {
    padding: 5rem 0;
    background: var(--teal-700);
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(255,255,255,.06) 0%, transparent 60%);
    pointer-events: none;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.cta-title {
    font-family: var(--serif);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: .5rem;
}

.cta-description {
    font-size: 1.0625rem;
    color: var(--teal-200);
    max-width: 480px;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
    flex-wrap: wrap;
}

/* ── Contact ──────────────────────────────────────── */
.contact {
    padding: 7rem 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-text {
    font-size: 1.0625rem;
    color: var(--slate-600);
    line-height: 1.75;
    margin-bottom: 2.5rem;
}

.contact-details {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    width: 48px; height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--teal-100);
    border-radius: var(--radius-md);
    color: var(--teal-700);
}

.contact-label {
    display: block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--slate-500);
    margin-bottom: .25rem;
}
.contact-item address,
.contact-item a {
    font-size: .9375rem;
    color: var(--slate-800);
    line-height: 1.6;
}
.contact-item a:hover { color: var(--teal-700); }

.contact-hours {
    display: flex;
    align-items: center;
    gap: .5rem;
    flex-wrap: wrap;
    font-size: .875rem;
    color: var(--slate-500);
    padding: 1rem 1.25rem;
    background: var(--slate-50);
    border-radius: var(--radius-md);
    border: 1px solid var(--slate-200);
}
.hours-separator { color: var(--slate-300); }

/* ── Form ─────────────────────────────────────────── */
.contact-form-wrapper {
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
}

.form-title {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: .375rem;
}

.form-subtitle {
    font-size: .9375rem;
    color: var(--slate-500);
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.25rem;
}
.form-group.full { grid-column: 1 / -1; }

.form-group label {
    display: block;
    font-size: .8125rem;
    font-weight: 600;
    color: var(--slate-700);
    margin-bottom: .375rem;
    letter-spacing: .02em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: .75rem 1rem;
    font-family: var(--sans);
    font-size: .9375rem;
    color: var(--slate-800);
    background: var(--white);
    border: 1.5px solid var(--slate-200);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--teal-500);
    box-shadow: 0 0 0 3px rgba(45,212,191,.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--slate-400); }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-success {
    text-align: center;
    padding: 2rem;
}
.success-icon {
    width: 56px; height: 56px;
    margin: 0 auto 1.25rem;
    color: var(--teal-600);
}
.success-title {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: .75rem;
}
.form-success p {
    font-size: .9375rem;
    color: var(--slate-600);
    line-height: 1.7;
}

/* ── Footer ───────────────────────────────────────── */
.footer {
    background: var(--slate-950);
    color: var(--slate-400);
    padding: 5rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3.5rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-tagline {
    font-size: .9375rem;
    line-height: 1.7;
    margin-top: 1rem;
    max-width: 280px;
    color: var(--slate-500);
}

.footer-heading {
    font-family: var(--sans);
    font-size: .8125rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--slate-300);
    margin-bottom: 1.25rem;
}

.footer-links ul { display: grid; gap: .625rem; }
.footer-links a,
.footer-contact a {
    font-size: .9375rem;
    color: var(--slate-500);
    transition: var(--transition);
}
.footer-links a:hover,
.footer-contact a:hover { color: var(--teal-400); }

.footer-contact address {
    font-size: .9375rem;
    line-height: 1.7;
    color: var(--slate-400);
    margin-bottom: .75rem;
}
.footer-contact p {
    font-size: .9375rem;
    margin-bottom: .375rem;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.5rem 0;
    font-size: .8125rem;
    color: var(--slate-600);
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-grid { gap: 2.5rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .process-steps { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    
    .nav {
        position: fixed;
        top: 72px; left: 0; right: 0; bottom: 0;
        background: rgba(255,255,255,.98);
        backdrop-filter: blur(12px);
        padding: 2rem 1.5rem;
        transform: translateX(100%);
        transition: var(--transition);
        overflow-y: auto;
    }
    .nav.open { transform: translateX(0); }
    
    .nav-list {
        flex-direction: column;
        gap: .25rem;
    }
    .nav-link {
        font-size: 1.125rem;
        padding: .875rem 1rem;
        width: 100%;
    }
    .nav-link--cta {
        margin-left: 0;
        margin-top: 1rem;
        text-align: center;
    }

    .hero { padding: 7rem 0 5rem; min-height: auto; }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .hero-content { max-width: 100%; }
    .hero-image { max-width: 480px; margin: 0 auto; }
    .hero-badge { bottom: -1rem; left: 50%; transform: translateX(-50%); }
    .hero-wave { display: none; }

    .services { padding: 5rem 0; }
    .services-grid { grid-template-columns: 1fr; }

    .about { padding: 5rem 0; }
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-images { min-height: 400px; }
    .about-img-main img { height: 360px; }
    .about-img-secondary { right: 0; }

    .why-us { padding: 5rem 0; }
    .why-grid { grid-template-columns: 1fr; }

    .process { padding: 5rem 0; }
    .process-steps { grid-template-columns: 1fr; gap: 2rem; }

    .cta-banner { padding: 4rem 0; }
    .cta-inner { flex-direction: column; text-align: center; }

    .contact { padding: 5rem 0; }
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .contact-form-wrapper { padding: 1.75rem; }
    .form-row { grid-template-columns: 1fr; }

    .footer { padding: 3.5rem 0 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .hero-headline { font-size: 2rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { justify-content: center; }
    .hero-stats { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .stat-divider { width: 2rem; height: 1px; }
    .cta-actions { flex-direction: column; width: 100%; }
    .cta-actions .btn { justify-content: center; }
}

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