/* ========== VARIABLES ========== */
:root {
    --primary: #10b981;        /* Emerald */
    --primary-dark: #059669;
    --secondary: #ea580c;      /* Terracotta */
    --accent: #84cc16;         /* Lime */
    --bg: #faf7f2;             /* Warm cream */
    --bg-alt: #f3ede3;
    --surface: #ffffff;
    --text: #1f2937;
    --text-soft: #4b5563;
    --text-mute: #9ca3af;
    --border: #e5e0d5;
    --shadow-sm: 0 2px 8px rgba(31, 41, 55, 0.04);
    --shadow: 0 8px 24px rgba(31, 41, 55, 0.06);
    --shadow-lg: 0 20px 50px rgba(31, 41, 55, 0.08);
    --radius-sm: 8px;
    --radius: 16px;
    --radius-lg: 24px;
    --font-body: 'Inter', system-ui, sans-serif;
    --font-display: 'Fraunces', Georgia, serif;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== RESET ========== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }

/* ========== GLASS CARDS (light version) ========== */
.glass {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

/* ========== NAVIGATION ========== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    background: rgba(250, 247, 242, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}
.navbar.scrolled {
    border-bottom-color: var(--border);
    padding: 14px 0;
}
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.5px;
}
.dot { color: var(--secondary); font-size: 2rem; line-height: 0; }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-soft);
}
.nav-links a:hover { color: var(--primary-dark); }
.nav-cta {
    background: var(--text);
    color: white !important;
    padding: 10px 22px;
    border-radius: 100px;
    font-size: 0.9rem !important;
}
.nav-cta:hover { background: var(--primary-dark); transform: translateY(-1px); }

.mobile-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.mobile-toggle span {
    width: 24px; height: 2px;
    background: var(--text);
    transition: var(--transition);
}

/* ========== HERO ========== */
.hero {
    padding: 150px 0 80px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(16,185,129,0.08), transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(234,88,12,0.06), transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-soft);
    margin-bottom: 28px;
    box-shadow: var(--shadow-sm);
}
.badge-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--primary);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(16,185,129,0.4); }
    50% { opacity: 0.8; box-shadow: 0 0 0 8px rgba(16,185,129,0); }
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: var(--text);
    margin-bottom: 24px;
}
.hero-intro {
    font-size: 1.15rem;
    color: var(--text-soft);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 540px;
}
.hero-cta-row {
    display: flex;
    gap: 24px;
    align-items: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    background: var(--text);
    color: white;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    border: 2px solid var(--text);
}
.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(16,185,129,0.25);
}
.btn-text {
    font-weight: 600;
    color: var(--text);
    border-bottom: 2px solid var(--border);
    padding-bottom: 2px;
}
.btn-text:hover { color: var(--primary-dark); border-color: var(--primary-dark); }
.btn-outline {
    display: inline-flex;
    padding: 14px 28px;
    border: 2px solid var(--text);
    color: var(--text);
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
}
.btn-outline:hover { background: var(--text); color: white; }
.full-width { width: 100%; justify-content: center; }

.hero-trust {
    display: flex;
    align-items: center;
    gap: 16px;
}
.trust-avatar-stack {
    display: flex;
}
.avatar-circle {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 0.85rem;
    margin-left: -10px;
    border: 3px solid var(--bg);
}
.avatar-circle:first-child { margin-left: 0; }
.a1 { background: var(--primary); }
.a2 { background: var(--secondary); }
.a3 { background: var(--accent); color: var(--text); }
.a4 { background: var(--text); }
.trust-text {
    font-size: 0.9rem;
    color: var(--text-soft);
}
.trust-text strong { color: var(--text); }

/* Hero visual cards */
.hero-visual-col { position: relative; min-height: 500px; }
.hero-card-stack { position: relative; height: 100%; }
.floating-card {
    position: absolute;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}
.floating-card:hover { transform: translateY(-4px) rotate(0deg); }
.fc-icon {
    width: 48px; height: 48px;
    background: var(--bg-alt);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}
.fc-title { font-weight: 600; color: var(--text); font-size: 0.95rem; }
.fc-sub { font-size: 0.8rem; color: var(--text-mute); margin-top: 2px; }

.fc-1 { top: 10%; left: 0; transform: rotate(-3deg); }
.fc-2 { top: 38%; right: 0; transform: rotate(2deg); }
.fc-3 { top: 62%; left: 5%; transform: rotate(-1deg); }

.hero-stat-box {
    position: absolute;
    bottom: 0; right: 10%;
    background: var(--text);
    color: white;
    padding: 24px 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    max-width: 240px;
}
.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 6px;
}
.stat-number span { color: var(--primary); font-size: 1.5rem; margin-left: 4px; }
.stat-label { font-size: 0.85rem; opacity: 0.8; line-height: 1.4; }

/* ========== SECTION HEADERS ========== */
.section-header-left { margin-bottom: 60px; max-width: 600px; }
.section-header-center { text-align: center; margin-bottom: 70px; }
.eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 16px;
}
.section h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -1px;
    color: var(--text);
    margin-bottom: 16px;
}
.section-header-left p, .section-header-center p {
    color: var(--text-soft);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* ========== BENTO GRID ========== */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(180px, auto);
    gap: 20px;
}
.bento-card {
    padding: 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.bento-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}
.bento-large { grid-column: span 2; grid-row: span 2; }
.bento-wide { grid-column: span 2; display: flex; gap: 24px; align-items: center; }

.bento-icon-wrap {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    flex-shrink: 0;
}
.i1 { background: linear-gradient(135deg, #d1fae5, #a7f3d0); }
.i2 { background: linear-gradient(135deg, #fed7aa, #fdba74); }
.i3 { background: linear-gradient(135deg, #fce7f3, #fbcfe8); }
.i4 { background: linear-gradient(135deg, #fee2e2, #fecaca); }
.i5 { background: linear-gradient(135deg, #fef3c7, #fde68a); }

.bento-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text);
}
.bento-large h3 { font-size: 1.8rem; }
.bento-card p { color: var(--text-soft); font-size: 0.95rem; line-height: 1.6; }
.bento-features {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.bento-features li {
    font-size: 0.88rem;
    color: var(--text-soft);
    font-weight: 500;
}

/* ========== STATS STRIP ========== */
.stats-strip {
    background: var(--text);
    color: white;
    padding: 60px 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: center;
}
.stat-block { text-align: center; }
.stat-num {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}
.stat-num span { font-size: 1.8rem; color: var(--primary); }
.stat-caption {
    font-size: 0.85rem;
    opacity: 0.75;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.stat-divider-v {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.15);
}

/* ========== ARTICLE ========== */
.article-section { background: var(--bg-alt); }
.article-wrap {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 60px;
    align-items: start;
}
.article-toc {
    position: sticky;
    top: 100px;
    padding: 28px;
}
.toc-title {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-mute);
    margin-bottom: 20px;
}
.article-toc ul { display: flex; flex-direction: column; gap: 12px; }
.article-toc a {
    font-size: 0.92rem;
    color: var(--text-soft);
    font-weight: 500;
    border-left: 2px solid transparent;
    padding-left: 12px;
    transition: var(--transition);
}
.article-toc a:hover {
    color: var(--primary-dark);
    border-left-color: var(--primary);
}

.prose {
    background: var(--surface);
    padding: 60px 70px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}
.article-meta {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
}
.meta-tag {
    background: var(--primary);
    color: white;
    padding: 4px 14px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
}
.meta-time {
    font-size: 0.85rem;
    color: var(--text-mute);
}

.prose h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    margin: 50px 0 20px;
    color: var(--text);
    letter-spacing: -0.5px;
    line-height: 1.2;
}
.prose h2:first-of-type { margin-top: 0; }
.prose h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    margin: 36px 0 14px;
    color: var(--text);
}
.prose p {
    margin-bottom: 20px;
    color: var(--text-soft);
    font-size: 1.02rem;
    line-height: 1.8;
}
.prose p.lead {
    font-size: 1.2rem;
    color: var(--text);
    line-height: 1.6;
    font-weight: 400;
}
.prose a {
    color: var(--primary-dark);
    font-weight: 600;
    border-bottom: 1.5px solid var(--primary);
    padding-bottom: 1px;
}
.prose a:hover { color: var(--secondary); border-color: var(--secondary); }

.callout-box {
    margin: 36px 0;
    padding: 28px 32px;
    border-radius: var(--radius);
    border-left: 4px solid;
}
.callout-box.tip {
    background: #ecfdf5;
    border-color: var(--primary);
}
.callout-box.warning {
    background: #fff7ed;
    border-color: var(--secondary);
}
.callout-head {
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
    font-size: 1.05rem;
}
.callout-box p { margin-bottom: 0; color: var(--text-soft); }

/* Pricing table */
.pricing-table-wrap { overflow-x: auto; margin: 30px 0; }
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}
.pricing-table th {
    background: var(--text);
    color: white;
    padding: 16px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
}
.pricing-table th:first-child { border-radius: 12px 0 0 0; }
.pricing-table th:last-child { border-radius: 0 12px 0 0; }
.pricing-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    color: var(--text-soft);
}
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr:hover td { background: var(--bg); }
.pricing-table td:first-child { color: var(--text); font-weight: 500; }

/* Comparison grid */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 36px 0;
}
.compare-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
}
.compare-card.highlight {
    background: var(--text);
    color: white;
    border-color: var(--text);
    position: relative;
}
.compare-card.highlight::before {
    content: 'BEST VALUE';
    position: absolute;
    top: -10px; right: 20px;
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
}
.compare-head {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    padding-bottom: 16px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border);
}
.compare-card.highlight .compare-head { border-color: rgba(255,255,255,0.15); }
.compare-list { display: flex; flex-direction: column; gap: 12px; }
.compare-list li {
    display: flex;
    justify-content: space-between;
    font-size: 0.92rem;
}
.compare-list li span { opacity: 0.75; }
.compare-list li strong { font-weight: 600; }
.compare-list li.total {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 2px solid var(--border);
    font-size: 1.1rem;
}
.compare-card.highlight .compare-list li.total {
    border-top-color: rgba(255,255,255,0.2);
}
.compare-card.highlight .compare-list li.total strong { color: var(--primary); }

/* Benefits grid */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}
.benefit-item {
    background: var(--bg);
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.benefit-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.benefit-num {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 10px;
}
.benefit-item h4 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
}
.benefit-item p { font-size: 0.9rem; margin-bottom: 0; }

/* Checklist */
.checklist-box {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    margin: 30px 0;
}
.checklist-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    color: var(--text);
    font-weight: 500;
}
.check {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.pull-quote {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    font-style: italic;
    color: var(--text);
    line-height: 1.4;
    padding: 30px 0 30px 30px;
    border-left: 4px solid var(--secondary);
    margin: 40px 0;
}

.article-cta-box {
    background: linear-gradient(135deg, var(--text), #374151);
    color: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    margin-top: 50px;
}
.article-cta-box h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 12px;
    color: white;
}
.article-cta-box p { color: rgba(255,255,255,0.8); margin-bottom: 24px; }
.article-cta-box .btn-primary {
    background: var(--primary);
    border-color: var(--primary);
}
.article-cta-box .btn-primary:hover {
    background: white;
    color: var(--text);
    border-color: white;
}

/* ========== PROCESS ========== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: start;
    position: relative;
}
.process-step {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}
.process-step:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}
.step-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
    line-height: 1;
}
.process-step h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--text);
}
.process-step p { font-size: 0.9rem; color: var(--text-soft); }
.process-connector {
    position: absolute;
    top: 60px;
    width: 20px;
    height: 2px;
    background: var(--border);
    display: none;
}

/* ========== TESTIMONIALS ========== */
.testimonials-section { background: var(--bg-alt); }
.testimonial-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    padding: 32px;
    position: relative;
    transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.quote-mark {
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--primary);
    line-height: 0.5;
    margin-bottom: 16px;
    opacity: 0.4;
}
.stars {
    color: var(--secondary);
    margin-bottom: 14px;
    letter-spacing: 2px;
}
.testimonial-card > p {
    color: var(--text-soft);
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 24px;
}
.t-client { display: flex; align-items: center; gap: 14px; }
.t-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--text);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}
.t-name { font-weight: 600; color: var(--text); font-size: 0.95rem; }
.t-loc { font-size: 0.82rem; color: var(--text-mute); }

/* ========== FAQ ========== */
.faq-wrap {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
}
.faq-left h2 { margin-bottom: 20px; }
.faq-left p { color: var(--text-soft); margin-bottom: 30px; line-height: 1.7; }
.faq-item {
    margin-bottom: 14px;
    padding: 22px 28px;
    transition: var(--transition);
}
.faq-item summary {
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 30px;
    font-size: 1rem;
    line-height: 1.4;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.6rem;
    color: var(--primary);
    font-weight: 300;
    transition: var(--transition);
}
.faq-item[open] summary::after { content: '−'; }
.faq-item[open] { border-color: var(--primary); }
.faq-item p {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    color: var(--text-soft);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ========== CONTACT ========== */
.contact-section { background: var(--bg-alt); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.contact-info, .contact-form { padding: 44px; }
.contact-info h2 { margin-bottom: 14px; }
.contact-info > p { color: var(--text-soft); margin-bottom: 32px; line-height: 1.6; }
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}
.cd-item {
    display: flex;
    gap: 16px;
    align-items: start;
}
.cd-icon {
    width: 44px; height: 44px;
    background: var(--bg-alt);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.cd-label {
    font-size: 0.78rem;
    color: var(--text-mute);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 3px;
    font-weight: 600;
}
.cd-item a, .cd-item div { font-weight: 500; color: var(--text); }
.cd-item a:hover { color: var(--primary-dark); }

.contact-form h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    margin-bottom: 28px;
    color: var(--text);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-soft);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--primary);
    background: var(--surface);
}
.form-group textarea { resize: vertical; min-height: 80px; }

/* ========== FOOTER ========== */
.footer {
    background: var(--text);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}
.footer-logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}
.brand-col p { line-height: 1.7; margin-bottom: 24px; font-size: 0.92rem; }
.social-row { display: flex; gap: 10px; }
.social-icon {
    width: 40px; height: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    transition: var(--transition);
}
.social-icon:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}
.footer-col h4 {
    color: white;
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 22px;
    font-weight: 600;
}
.footer-col ul li { margin-bottom: 12px; font-size: 0.92rem; }
.footer-col ul a:hover { color: var(--primary); padding-left: 3px; }
.contact-list li { display: flex; gap: 8px; font-size: 0.9rem; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 24px 0;
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

/* ========== REVEAL ANIMATIONS ========== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.active { opacity: 1; transform: translateY(0); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 60px; }
    .hero-visual-col { min-height: 420px; }
    .article-wrap { grid-template-columns: 1fr; gap: 40px; }
    .article-toc { position: static; }
    .prose { padding: 40px 36px; }
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .bento-large { grid-column: span 2; }
    .bento-wide { grid-column: span 2; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .stat-divider-v { display: none; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonial-row { grid-template-columns: 1fr; }
    .faq-wrap { grid-template-columns: 1fr; gap: 40px; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 640px) {
    .section { padding: 70px 0; }
    .nav-links {
        position: fixed;
        top: 0; right: -100%;
        width: 85%; height: 100vh;
        background: var(--bg);
        flex-direction: column;
        justify-content: center;
        padding: 40px;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
    }
    .nav-links.active { right: 0; }
    .mobile-toggle { display: flex; z-index: 1001; }
    .hero { padding: 120px 0 60px; }
    .hero-cta-row { flex-direction: column; align-items: flex-start; gap: 16px; }
    .bento-grid { grid-template-columns: 1fr; }
    .bento-large, .bento-wide { grid-column: span 1; grid-row: auto; }
    .comparison-grid { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .contact-info, .contact-form { padding: 28px; }
    .prose { padding: 30px 24px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .pull-quote { font-size: 1.2rem; padding-left: 20px; }
}