/* ═══════════════════════════════════════════════════════════════
   GÉTUL CONSULTING V2 — AMAZIGH TECH HERITAGE DESIGN SYSTEM
   ═══════════════════════════════════════════════════════════════ */

:root {
    --navy: #0f1523;
    --navy-light: #1a2035;
    --navy-mid: #252d45;
    --gold: #c9a84c;
    --gold-light: #e4cc7a;
    --gold-dim: rgba(201, 168, 76, 0.15);
    --terracotta: #b85c38;
    --terracotta-light: #d4795a;
    --sand: #f5e8d0;
    --sand-light: #faf4e8;
    --cream: #fffdf7;
    --text-dark: #1a1a2e;
    --text-mid: #4a4a5a;
    --text-light: #8a8a9a;
    --white: #ffffff;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, sans-serif;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ── NAVIGATION ── */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 1.25rem 3rem;
    display: flex; align-items: center; justify-content: space-between;
    transition: all 0.5s var(--ease-out-expo);
    background: transparent;
}
.nav.scrolled {
    background: rgba(15, 21, 35, 0.95);
    backdrop-filter: blur(20px);
    padding: 0.8rem 3rem;
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}
.nav.nav-solid { background: rgba(15, 21, 35, 0.95); backdrop-filter: blur(20px); }

.nav-logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.nav-logo-symbol {
    font-size: 2rem; color: var(--gold); font-weight: 700; line-height: 1;
    transition: transform 0.4s var(--ease-out-expo);
}
.nav-logo:hover .nav-logo-symbol { transform: rotate(15deg) scale(1.1); }
.nav-logo-text {
    font-family: var(--font-display); font-size: 1.35rem; font-weight: 600;
    color: var(--white); letter-spacing: 0.02em;
}

.nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
.nav-links a {
    font-family: var(--font-body); font-size: 0.85rem; font-weight: 500;
    color: rgba(255,255,255,0.7); text-decoration: none;
    text-transform: uppercase; letter-spacing: 0.1em;
    transition: color 0.3s; position: relative;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1.5px; background: var(--gold);
    transition: width 0.4s var(--ease-out-expo);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--white); }
.nav-links a.active::after { width: 100%; }

.nav-cta {
    font-family: var(--font-body) !important; font-size: 0.8rem !important;
    font-weight: 600 !important; color: var(--navy) !important;
    background: var(--gold); padding: 0.65rem 1.5rem;
    letter-spacing: 0.08em; text-transform: uppercase;
    transition: all 0.3s var(--ease-out-expo);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
    background: var(--gold-light); transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.nav-mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.nav-mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--white); margin: 5px 0; transition: all 0.3s; }

/* ── PAGE HERO (for inner pages) ── */
.page-hero {
    position: relative; background: var(--navy); overflow: hidden;
    padding: 10rem 3rem 5rem;
}
.page-hero-pattern {
    position: absolute; inset: 0;
    background-image:
        repeating-linear-gradient(60deg, transparent, transparent 80px, rgba(201,168,76,0.03) 80px, rgba(201,168,76,0.03) 81px),
        repeating-linear-gradient(-60deg, transparent, transparent 80px, rgba(201,168,76,0.03) 80px, rgba(201,168,76,0.03) 81px);
}
.page-hero-glow {
    position: absolute; width: 500px; height: 500px; border-radius: 50%;
    filter: blur(120px); opacity: 0.12; top: -150px; right: -100px; background: var(--gold);
}
.page-hero-border {
    position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
    background: repeating-linear-gradient(90deg, var(--gold) 0px, var(--gold) 20px, transparent 20px, transparent 24px, var(--terracotta) 24px, var(--terracotta) 44px, transparent 44px, transparent 48px);
}
.page-hero-content { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; }
.page-hero-eyebrow {
    display: inline-flex; align-items: center; gap: 0.75rem;
    font-size: 0.72rem; font-weight: 600; color: var(--gold);
    text-transform: uppercase; letter-spacing: 0.2em; margin-bottom: 1.25rem;
}
.page-hero-eyebrow::before { content: ''; width: 40px; height: 1.5px; background: var(--gold); }
.page-hero h1 {
    font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 600; color: var(--white); line-height: 1.1; margin-bottom: 1.25rem;
}
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero-sub {
    font-size: 1.05rem; color: rgba(255,255,255,0.55); line-height: 1.7; max-width: 600px;
}

/* ── SECTIONS ── */
.section { padding: 6rem 3rem; max-width: 1200px; margin: 0 auto; }
.section-wide { padding: 6rem 3rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }

.section-label {
    display: inline-flex; align-items: center; gap: 0.75rem;
    font-size: 0.72rem; font-weight: 600; color: var(--terracotta);
    text-transform: uppercase; letter-spacing: 0.2em; margin-bottom: 1rem;
}
.section-label::before { content: ''; width: 30px; height: 1.5px; background: var(--terracotta); }

.section-title {
    font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 600; color: var(--text-dark); line-height: 1.15; margin-bottom: 1.25rem;
}
.section-title em { font-style: italic; color: var(--terracotta); }

.section-subtitle { font-size: 1.05rem; color: var(--text-mid); line-height: 1.7; max-width: 600px; margin-bottom: 3rem; }

.section-dark { background: var(--navy); position: relative; overflow: hidden; }
.section-dark .section-label { color: var(--gold); }
.section-dark .section-label::before { background: var(--gold); }
.section-dark .section-title { color: var(--white); }
.section-dark .section-title em { color: var(--gold); }
.section-dark .section-subtitle { color: rgba(255,255,255,0.55); }

/* ── AMAZIGH DIVIDER ── */
.amazigh-divider {
    width: 100%; height: 3px;
    background: repeating-linear-gradient(90deg, var(--gold) 0px, var(--gold) 8px, transparent 8px, transparent 12px, var(--terracotta) 12px, var(--terracotta) 20px, transparent 20px, transparent 24px);
    opacity: 0.4;
}

/* ── BUTTONS ── */
.btn-primary {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-family: var(--font-body); font-size: 0.85rem; font-weight: 600;
    color: var(--navy); background: var(--gold); padding: 1rem 2rem;
    text-decoration: none; letter-spacing: 0.05em; text-transform: uppercase;
    transition: all 0.4s var(--ease-out-expo); border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3); }

.btn-secondary {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-family: var(--font-body); font-size: 0.85rem; font-weight: 500;
    color: rgba(255,255,255,0.7); padding: 1rem 1.5rem;
    text-decoration: none; letter-spacing: 0.05em;
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.4s var(--ease-out-expo);
}
.btn-secondary:hover { color: var(--white); border-color: rgba(255,255,255,0.4); transform: translateY(-2px); }

.btn-outline {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-family: var(--font-body); font-size: 0.85rem; font-weight: 600;
    color: var(--terracotta); padding: 1rem 2rem;
    text-decoration: none; letter-spacing: 0.05em; text-transform: uppercase;
    border: 2px solid var(--terracotta);
    transition: all 0.4s var(--ease-out-expo);
}
.btn-outline:hover { background: var(--terracotta); color: var(--white); transform: translateY(-2px); }

/* ── FEATURE CARDS ── */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 3rem; }

.feature-card {
    background: var(--white); padding: 2.25rem;
    border: 1px solid rgba(0,0,0,0.06); position: relative;
    transition: all 0.4s var(--ease-out-expo);
}
.feature-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: var(--gold);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.5s var(--ease-out-expo);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.06); }
.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
    width: 48px; height: 48px; display: flex; align-items: center;
    justify-content: center; background: var(--gold-dim); margin-bottom: 1.25rem; font-size: 1.3rem;
}
.feature-card h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; margin-bottom: 0.75rem; }
.feature-card p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.65; }

/* ── PROCESS STEPS ── */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin: 3rem 0; position: relative; }
.process-steps::before {
    content: ''; position: absolute; top: 24px; left: 5%; right: 5%;
    height: 2px; background: linear-gradient(90deg, var(--gold), var(--terracotta)); opacity: 0.2;
}
.step { text-align: center; padding: 0 1rem; position: relative; }
.step-number {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--navy); color: var(--gold);
    font-family: var(--font-display); font-size: 1.2rem; font-weight: 700;
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 1rem; position: relative; z-index: 2;
}
.step h4 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; margin-bottom: 0.5rem; }
.step p { font-size: 0.82rem; color: var(--text-mid); line-height: 1.6; }

/* ── TESTIMONIAL ── */
.testimonial {
    background: var(--navy); padding: 3rem; margin: 3rem 0;
    position: relative; overflow: hidden;
}
.testimonial::before {
    content: '\201C'; position: absolute; top: -20px; left: 20px;
    font-family: var(--font-display); font-size: 10rem; color: var(--gold);
    opacity: 0.08; line-height: 1;
}
.testimonial blockquote {
    font-family: var(--font-display); font-size: 1.2rem; font-style: italic;
    color: rgba(255,255,255,0.85); line-height: 1.7; margin-bottom: 1.5rem;
    position: relative; z-index: 2;
}
.testimonial cite {
    font-family: var(--font-body); font-style: normal; font-size: 0.82rem;
    color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 500;
}

/* ── PRICING CARD ── */
.pricing-card {
    background: var(--navy-light); border: 1px solid rgba(201, 168, 76, 0.15);
    padding: 2.5rem; position: relative;
}
.pricing-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: linear-gradient(90deg, var(--gold), var(--terracotta));
}
.pricing-amount { font-family: var(--font-display); font-size: 3.5rem; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 0.25rem; }
.pricing-amount span { font-size: 1.2rem; color: rgba(255,255,255,0.4); }
.pricing-detail { font-size: 0.82rem; color: rgba(255,255,255,0.4); margin-bottom: 2rem; text-transform: uppercase; letter-spacing: 0.08em; }
.pricing-includes { list-style: none; margin-bottom: 2rem; }
.pricing-includes li {
    font-size: 0.88rem; color: rgba(255,255,255,0.65); padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex; align-items: center; gap: 0.75rem;
}
.pricing-includes li::before { content: '\25C6'; color: var(--gold); font-size: 0.5rem; }

.pricing-cta {
    display: block; text-align: center; font-family: var(--font-body);
    font-size: 0.82rem; font-weight: 600; color: var(--navy);
    background: var(--gold); padding: 1rem; text-decoration: none;
    letter-spacing: 0.08em; text-transform: uppercase;
    transition: all 0.4s var(--ease-out-expo);
}
.pricing-cta:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201, 168, 76, 0.25); }

/* ── SIMULATOR ── */
.simulator {
    background: var(--white); border: 1px solid rgba(0,0,0,0.08);
    padding: 2.5rem; position: relative;
}
.simulator::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: linear-gradient(90deg, var(--gold), var(--terracotta));
}
.simulator h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; margin-bottom: 2rem; }

.sim-field { margin-bottom: 1.75rem; }
.sim-field label {
    display: block; font-size: 0.78rem; font-weight: 600; color: var(--text-mid);
    text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.5rem;
}
.sim-field input[type="range"] {
    width: 100%; -webkit-appearance: none; height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--terracotta));
    border-radius: 2px; outline: none;
}
.sim-field input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none; width: 20px; height: 20px; border-radius: 50%;
    background: var(--navy); border: 3px solid var(--gold); cursor: pointer; transition: all 0.2s;
}
.sim-field input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.15); box-shadow: 0 0 0 6px rgba(201, 168, 76, 0.15); }
.sim-value { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--text-dark); margin-top: 0.35rem; }

.sim-results { margin-top: 2rem; padding-top: 2rem; border-top: 2px solid var(--sand); }
.sim-result-row { display: flex; justify-content: space-between; align-items: center; padding: 0.8rem 0; border-bottom: 1px solid rgba(0,0,0,0.04); }
.sim-result-label { font-size: 0.88rem; color: var(--text-mid); }
.sim-result-value { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--text-dark); }
.sim-result-highlight { background: linear-gradient(135deg, rgba(201,168,76,0.1), rgba(184,92,56,0.08)); padding: 1.25rem; margin-top: 1rem; }
.sim-result-highlight .sim-result-label { font-weight: 600; color: var(--text-dark); }
.sim-result-highlight .sim-result-value { font-size: 1.5rem; color: var(--terracotta); }

/* ── FAQ ACCORDION ── */
.faq-list { max-width: 800px; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.06); }
.faq-question {
    width: 100%; display: flex; justify-content: space-between; align-items: center;
    padding: 1.5rem 0; background: none; border: none; cursor: pointer;
    font-family: var(--font-display); font-size: 1.15rem; font-weight: 600;
    color: var(--text-dark); text-align: left; transition: color 0.3s;
}
.faq-question:hover { color: var(--terracotta); }
.faq-question span { font-size: 1.5rem; color: var(--gold); transition: transform 0.3s; }
.faq-question.open span { transform: rotate(45deg); }
.faq-answer {
    max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease-out-expo);
}
.faq-answer-inner { padding: 0 0 1.5rem; font-size: 0.92rem; color: var(--text-mid); line-height: 1.7; }
.faq-answer-inner strong { color: var(--text-dark); }

/* ── COMPARISON TABLE ── */
.comparison-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.comparison-card {
    padding: 2.25rem; border: 1px solid rgba(0,0,0,0.06); position: relative;
}
.comparison-card.highlight {
    background: var(--navy); border-color: rgba(201,168,76,0.2);
}
.comparison-card.highlight::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: linear-gradient(90deg, var(--gold), var(--terracotta));
}
.comparison-card h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; margin-bottom: 1.25rem; }
.comparison-card.highlight h3 { color: var(--gold); }
.comparison-card ul { list-style: none; }
.comparison-card li {
    font-size: 0.88rem; color: var(--text-mid); padding: 0.6rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.04); display: flex; align-items: center; gap: 0.75rem;
}
.comparison-card.highlight li { color: rgba(255,255,255,0.65); border-color: rgba(255,255,255,0.05); }

/* ── BLOG CARDS ── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.blog-card { background: var(--white); border: 1px solid rgba(0,0,0,0.06); overflow: hidden; transition: all 0.4s var(--ease-out-expo); }
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.08); }
.blog-card-img { height: 200px; background: var(--navy); position: relative; overflow: hidden; }
.blog-card-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(201,168,76,0.2), rgba(184,92,56,0.15)); }
.blog-card-tag {
    position: absolute; top: 1rem; left: 1rem; z-index: 2;
    font-size: 0.68rem; font-weight: 600; color: var(--gold);
    background: rgba(15, 21, 35, 0.85); padding: 0.35rem 0.75rem;
    text-transform: uppercase; letter-spacing: 0.1em;
}
.blog-card-body { padding: 1.75rem; }
.blog-card-date { font-size: 0.75rem; color: var(--text-light); margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.08em; }
.blog-card h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.75rem; line-height: 1.3; }
.blog-card p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.6; }
.blog-card-link {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.8rem; font-weight: 600; color: var(--terracotta);
    text-decoration: none; text-transform: uppercase; letter-spacing: 0.08em;
    margin-top: 1rem; transition: gap 0.3s var(--ease-out-expo);
}
.blog-card-link:hover { gap: 0.85rem; }

/* ── CONTACT FORM ── */
.form-group { margin-bottom: 1.5rem; }
.form-group label {
    display: block; font-size: 0.78rem; font-weight: 600; color: var(--text-mid);
    text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.5rem;
}
.form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 0.85rem 1rem; font-family: var(--font-body);
    font-size: 0.92rem; border: 1px solid rgba(0,0,0,0.1);
    background: var(--white); color: var(--text-dark);
    transition: border-color 0.3s; outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ── LEGAL PAGE PROSE ── */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 {
    font-family: var(--font-display); font-size: 1.5rem; font-weight: 600;
    color: var(--text-dark); margin: 2.5rem 0 0.75rem; padding-top: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.06);
}
.legal-content h2:first-child { border-top: none; margin-top: 0; padding-top: 0; }
.legal-content p { font-size: 0.92rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 1rem; }
.legal-content ul { list-style: none; margin-bottom: 1rem; }
.legal-content li {
    font-size: 0.92rem; color: var(--text-mid); line-height: 1.75; padding: 0.25rem 0;
    padding-left: 1.25rem; position: relative;
}
.legal-content li::before { content: '\25C6'; position: absolute; left: 0; color: var(--gold); font-size: 0.5rem; top: 0.65rem; }
.legal-content strong { color: var(--text-dark); }

/* ── RISK BANNER ── */
.risk-banner { margin-top: 3rem; background: rgba(184, 92, 56, 0.1); border-left: 3px solid var(--terracotta); padding: 1.5rem 2rem; }
.risk-banner strong { color: var(--terracotta-light); font-family: var(--font-display); font-size: 1.1rem; }
.risk-banner p { color: rgba(255,255,255,0.5); font-size: 0.88rem; line-height: 1.65; margin-top: 0.5rem; }

/* ── FOOTER ── */
.footer { background: var(--navy); position: relative; }
.footer-top-border {
    height: 3px;
    background: repeating-linear-gradient(90deg, var(--gold) 0px, var(--gold) 12px, transparent 12px, transparent 16px, var(--terracotta) 16px, var(--terracotta) 28px, transparent 28px, transparent 32px);
    opacity: 0.5;
}
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 4rem 3rem; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 3rem; }
.footer-brand .nav-logo-symbol { font-size: 2.5rem; display: block; margin-bottom: 0.5rem; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.4); line-height: 1.65; margin-top: 1rem; max-width: 280px; }
.footer-col h4 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--white); margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.65rem; }
.footer-col ul a { font-size: 0.85rem; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.3s; }
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06); max-width: 1200px; margin: 0 auto;
    padding: 1.5rem 3rem; display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: 0.78rem; color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.3s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }

/* ── ANIMATIONS ── */
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { to { opacity: 1; } }
@keyframes breathe { 0%, 100% { transform: scale(1); opacity: 0.12; } 50% { transform: scale(1.03); opacity: 0.18; } }

.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s var(--ease-out-expo); }
.reveal.visible { opacity: 1; transform: translateY(0); }

.anim-fade-up { opacity: 0; transform: translateY(20px); animation: fadeUp 0.8s var(--ease-out-expo) forwards; }
.anim-delay-1 { animation-delay: 0.3s; }
.anim-delay-2 { animation-delay: 0.5s; }
.anim-delay-3 { animation-delay: 0.7s; }
.anim-delay-4 { animation-delay: 0.9s; }

/* ── TWO-COLUMN LAYOUTS ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.grid-2-wide { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 4rem; align-items: start; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .grid-2, .grid-2-wide { grid-template-columns: 1fr; }
    .comparison-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav { padding: 1rem 1.5rem; }
    .nav.scrolled { padding: 0.7rem 1.5rem; }
    .nav-links { display: none; }
    .nav-mobile-toggle { display: block; }
    .nav-links.open {
        display: flex; flex-direction: column; position: absolute;
        top: 100%; left: 0; right: 0; background: rgba(15, 21, 35, 0.98);
        backdrop-filter: blur(20px); padding: 2rem; gap: 1.25rem;
    }
    .page-hero { padding: 7rem 1.5rem 3.5rem; }
    .section, .section-wide .section-inner { padding-left: 1.5rem; padding-right: 1.5rem; }
    .section { padding-top: 4rem; padding-bottom: 4rem; }
    .features-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .process-steps::before { display: none; }
    .blog-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem; }
    .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; padding: 1.25rem 1.5rem; }
}
