*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --emerald-950: #022c22;
    --emerald-900: #042f2e;
    --emerald-800: #064e3b;
    --emerald-700: #065f46;
    --emerald-600: #047857;
    --emerald-500: #10b981;
    --cream-50: #fafaf5;
    --cream-100: #f5f5e8;
    --cream-200: #e8e8d8;
    --cream-300: #d4d4c0;
    --stone-50: #fafaf9;
    --stone-100: #f5f5f4;
    --stone-200: #e7e5e4;
    --stone-300: #d6d3d1;
    --stone-400: #a8a29e;
    --stone-500: #78716c;
    --stone-600: #57534e;
    --stone-700: #44403c;
    --stone-800: #292524;
    --stone-900: #1c1917;
    
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -2px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 25px -3px rgba(0,0,0,0.08), 0 4px 10px -4px rgba(0,0,0,0.06);
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    font-weight: 300;
    line-height: 1.7;
    color: var(--stone-800);
    background: var(--cream-50);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-md);
    padding: var(--space-sm) var(--space-md);
    background: var(--emerald-700);
    color: #fff;
    border-radius: var(--radius-sm);
    z-index: 200;
    font-size: 0.875rem;
    transition: top 0.2s;
}

.skip-link:focus {
    top: var(--space-md);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

/* ─── Header ─── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: var(--space-lg) 0;
    transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}

.header.scrolled {
    background: rgba(250, 250, 245, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: var(--space-md) 0;
    box-shadow: 0 1px 0 var(--cream-200);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 500;
    font-size: 0.9375rem;
    letter-spacing: -0.01em;
    color: var(--stone-800);
    transition: opacity 0.2s;
}

.logo:hover { opacity: 0.7; }

.logo-mark {
    width: 28px;
    height: 28px;
    background: var(--emerald-600);
    border-radius: 7px;
    position: relative;
    flex-shrink: 0;
}

.logo-mark::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    border: 1.5px solid rgba(255,255,255,0.9);
    border-radius: 3px;
    transform: translate(-50%, -50%) rotate(45deg);
}

.nav ul {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    list-style: none;
}

.nav a {
    padding: var(--space-sm) var(--space-md);
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--stone-600);
    border-radius: var(--radius-sm);
    transition: color 0.2s, background 0.2s;
}

.nav a:hover {
    color: var(--stone-900);
    background: var(--cream-100);
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.75rem 1.5rem;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-primary {
    background: var(--emerald-700);
    color: #fff;
    border-color: var(--emerald-700);
}

.btn-primary:hover {
    background: var(--emerald-800);
    border-color: var(--emerald-800);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-ghost {
    background: transparent;
    color: var(--stone-700);
    border-color: var(--stone-300);
}

.btn-ghost:hover {
    border-color: var(--stone-400);
    background: var(--cream-100);
}

.btn-nav {
    background: var(--emerald-600);
    color: #fff;
    border-color: var(--emerald-600);
    margin-left: var(--space-xs);
}

.btn-nav:hover {
    background: var(--emerald-700);
    border-color: var(--emerald-700);
}

.btn-ghost-sm {
    background: transparent;
    color: var(--emerald-700);
    border: 1px solid var(--emerald-200, #a7f3d0);
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-family: var(--font-sans);
    transition: all 0.2s;
}

.btn-ghost-sm:hover {
    background: var(--cream-100);
}

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

/* ─── Hero ─── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(145deg, var(--emerald-950) 0%, var(--emerald-800) 40%, #087a5e 70%, #14a77d 100%);
    padding-top: 80px;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 20% 50%, rgba(16, 185, 129, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 50% 80% at 80% 30%, rgba(6, 78, 59, 0.4) 0%, transparent 50%);
    pointer-events: none;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: 
        linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: var(--space-4xl) 0;
    max-width: 640px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.4375rem 1rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 400;
    color: rgba(255,255,255,0.85);
    margin-bottom: var(--space-2xl);
    backdrop-filter: blur(4px);
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: #34d399;
    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-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5.5vw, 4.25rem);
    font-weight: 500;
    line-height: 1.15;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-xl);
}

.hero-headline em {
    font-style: italic;
    color: #6ee7b7;
}

.hero-sub {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
    max-width: 480px;
    margin-bottom: var(--space-2xl);
    font-weight: 300;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    align-items: center;
}

.hero-actions .btn-primary {
    background: #fff;
    color: var(--emerald-800);
    border-color: #fff;
}

.hero-actions .btn-primary:hover {
    background: var(--cream-100);
    border-color: var(--cream-100);
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.hero-actions .btn-ghost {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.9);
    border-color: rgba(255,255,255,0.2);
}

.hero-actions .btn-ghost:hover {
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.3);
}

.hero-image {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 42vw;
    min-width: 380px;
    max-width: 680px;
    z-index: 1;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    mask-image: linear-gradient(to left, black 60%, transparent 100%);
    -webkit-mask-image: linear-gradient(to left, black 60%, transparent 100%);
    filter: brightness(0.95) contrast(1.02);
}

.scroll-hint {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.4);
    animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ─── Trust Bar ─── */
.trust-bar {
    background: var(--cream-100);
    border-top: 1px solid var(--cream-200);
    border-bottom: 1px solid var(--cream-200);
    padding: var(--space-xl) 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.trust-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.trust-label {
    font-size: 0.6875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--stone-400);
}

.trust-value {
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--stone-700);
    line-height: 1.4;
}

/* ─── Section shared ─── */
.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--emerald-600);
    margin-bottom: var(--space-md);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--stone-900);
    margin-bottom: var(--space-lg);
}

.section-desc {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--stone-500);
    max-width: 520px;
    font-weight: 300;
}

/* ─── Services ─── */
.services {
    padding: var(--space-4xl) 0;
}

.services .section-header {
    max-width: 560px;
    margin-bottom: var(--space-3xl);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--cream-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--cream-200);
}

.service-card {
    background: var(--cream-50);
    padding: var(--space-2xl);
    transition: background 0.3s ease;
}

.service-card:hover {
    background: #fff;
}

.service-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: var(--emerald-50, #ecfdf5);
    color: var(--emerald-700);
    margin-bottom: var(--space-lg);
}

.service-card h3 {
    font-size: 1.0625rem;
    font-weight: 500;
    color: var(--stone-900);
    margin-bottom: var(--space-sm);
    letter-spacing: -0.01em;
}

.service-card p {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--stone-500);
    font-weight: 300;
}

/* ─── About ─── */
.about {
    padding: var(--space-4xl) 0;
    background: var(--cream-100);
    border-top: 1px solid var(--cream-200);
    border-bottom: 1px solid var(--cream-200);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.about-image-wrap {
    position: relative;
}

.about-image-wrap img {
    width: 100%;
    height: 680px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--emerald-600);
    border-radius: var(--radius-md);
    z-index: -1;
    opacity: 0.15;
}

.about-text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--stone-600);
    margin-bottom: var(--space-lg);
    font-weight: 300;
}

.about-features {
    list-style: none;
    display: grid;
    gap: var(--space-md);
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--cream-200);
}

.about-features li {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--stone-700);
}

.about-features svg {
    color: var(--emerald-600);
    flex-shrink: 0;
}

/* ─── Insurance ─── */
.insurance {
    padding: var(--space-4xl) 0;
}

.insurance-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.insurance-content {
    max-width: 480px;
}

.insurance-desc {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--stone-500);
    margin-bottom: var(--space-xl);
    font-weight: 300;
}

.insurance-visual {
    display: flex;
    justify-content: center;
}

.insurance-card {
    width: 320px;
    padding: var(--space-2xl);
    background: linear-gradient(145deg, var(--emerald-800), var(--emerald-900));
    border-radius: var(--radius-lg);
    color: #fff;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.insurance-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 60%);
    pointer-events: none;
}

.card-line {
    height: 1px;
    background: rgba(255,255,255,0.15);
    margin-bottom: var(--space-lg);
}

.card-line-short {
    width: 60%;
    margin-bottom: var(--space-2xl);
}

.card-logo-mark {
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.15);
    border-radius: 8px;
    margin-bottom: var(--space-lg);
}

.card-logo-mark::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 14px;
    height: 14px;
    border: 1.5px solid rgba(255,255,255,0.6);
    border-radius: 3px;
}

.card-text {
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.25rem;
}

.card-text-sm {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.45);
}

/* ─── Contact ─── */
.contact {
    padding: var(--space-4xl) 0;
    background: var(--cream-100);
    border-top: 1px solid var(--cream-200);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
}

.contact-desc {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--stone-500);
    margin-bottom: var(--space-2xl);
    font-weight: 300;
}

.contact-details {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.contact-row {
    display: flex;
    align-items: flex-start;
    gap: var(--space-lg);
}

.contact-row svg {
    color: var(--emerald-600);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--stone-400);
    margin-bottom: 0.1875rem;
}

.contact-row a {
    color: var(--stone-700);
    font-weight: 400;
    transition: color 0.2s;
}

.contact-row a:hover { color: var(--emerald-700); }

/* ─── Form ─── */
.contact-form-wrap {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--cream-200);
}

.contact-form {
    display: grid;
    gap: var(--space-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.form-group label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--stone-700);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.6875rem 0.875rem;
    border: 1px solid var(--stone-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 300;
    color: var(--stone-800);
    background: var(--cream-50);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--emerald-500);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
    background: #fff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--stone-400);
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-note {
    font-size: 0.75rem;
    color: var(--stone-400);
    text-align: center;
    margin-top: var(--space-xs);
}

.form-success {
    text-align: center;
    padding: var(--space-3xl) var(--space-xl);
}

.success-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-lg);
    color: var(--emerald-600);
}

.form-success h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--stone-900);
    margin-bottom: var(--space-md);
}

.form-success p {
    font-size: 0.9375rem;
    color: var(--stone-500);
    margin-bottom: var(--space-xl);
    line-height: 1.6;
}

/* ─── Footer ─── */
.footer {
    background: var(--stone-900);
    color: rgba(255,255,255,0.6);
    padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 500;
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: var(--space-sm);
}

.footer-logo-mark {
    width: 24px;
    height: 24px;
    background: var(--emerald-600);
    border-radius: 6px;
    flex-shrink: 0;
}

.footer-tagline {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.4);
    font-weight: 300;
    max-width: 280px;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: var(--space-xl);
    list-style: none;
}

.footer-links a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    transition: color 0.2s;
}

.footer-links a:hover { color: rgba(255,255,255,0.9); }

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    text-align: right;
}

.footer-contact a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    transition: color 0.2s;
}

.footer-contact a:hover { color: rgba(255,255,255,0.9); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-xl);
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.3);
}

/* ─── Mobile menu ─── */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
}

.mobile-menu-btn .bar {
    width: 20px;
    height: 1.5px;
    background: var(--stone-700);
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-btn[aria-expanded="true"] .bar:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.mobile-menu-btn[aria-expanded="true"] .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn[aria-expanded="true"] .bar:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .hero-image {
        width: 38vw;
        min-width: 300px;
        opacity: 0.5;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid,
    .insurance-inner,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }
    
    .about-image-wrap img {
        height: 480px;
    }
}

@media (max-width: 768px) {
    .container { padding: 0 var(--space-lg); }
    
    .mobile-menu-btn { display: flex; }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--cream-50);
        padding: 5rem var(--space-xl) var(--space-xl);
        transition: right 0.35s ease;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        z-index: 99;
    }
    
    .nav.open { right: 0; }
    
    .nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: var(--space-xs);
    }
    
    .nav a {
        display: block;
        padding: var(--space-md);
        font-size: 1rem;
    }
    
    .btn-nav {
        margin-left: 0;
        text-align: center;
        justify-content: center;
        margin-top: var(--space-md);
    }
    
    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.3);
        z-index: 98;
    }
    
    .nav-overlay.active { display: block; }
    
    .hero {
        min-height: auto;
        padding: 7rem 0 4rem;
    }
    
    .hero-content {
        text-align: center;
        padding: var(--space-xl) 0;
    }
    
    .hero-headline { font-size: clamp(2rem, 8vw, 2.75rem); }
    
    .hero-sub { margin-left: auto; margin-right: auto; }
    
    .hero-actions { justify-content: center; flex-direction: column; align-items: center; }
    
    .hero-image { display: none; }
    
    .scroll-hint { display: none; }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xl);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card { padding: var(--space-xl); }
    
    .footer-inner {
        flex-direction: column;
        gap: var(--space-xl);
    }
    
    .footer-contact { text-align: left; }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }
}

@media (max-width: 480px) {
    .trust-grid { grid-template-columns: 1fr; }
    
    .contact-form-wrap { padding: var(--space-xl); }
}

/* ─── Animations ─── */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-up:nth-child(2) { transition-delay: 0.08s; }
.fade-up:nth-child(3) { transition-delay: 0.16s; }
.fade-up:nth-child(4) { transition-delay: 0.24s; }
.fade-up:nth-child(5) { transition-delay: 0.32s; }
.fade-up:nth-child(6) { transition-delay: 0.40s; }
