/* ============================================================
   Probate Helper — Homepage redesign (2026)
   Self-contained, MOBILE-FIRST. Scoped to the homepage only.
   Palette: warm ivory + deep ink-green. Type: Spectral /
   Hanken Grotesk / JetBrains Mono.
   ============================================================ */

:root {
    --paper: #F4F1EA;
    --card: #FBFAF6;
    --ink: #191B16;
    --ink-70: rgba(25,27,22,0.70);
    --ink-64: rgba(25,27,22,0.64);
    --ink-green: #12201A;   /* dark section bg */
    --footer-green: #0E1813;
    --pine: #1E4435;        /* primary buttons on ivory, feature cards */
    --signal: #3C7A5C;      /* CTA on dark, logo, accents, links */
    --bright: #6BC79C;      /* italic accents + stat numbers on dark */
    --dash-green: #2C6A4A;  /* positive data values in dashboard */
    --brass: #A8824C;
    --brass-2: #C7A572;
    --hairline: #E7E1D5;
    --hairline-2: #ECE7DD;
    --paper-72: rgba(244,241,234,0.72);
    --paper-50: rgba(244,241,234,0.50);
    --radius: 14px;
    --radius-sm: 8px;
    --shadow-dash: 0 40px 80px -24px rgba(0,0,0,0.55), 0 0 0 1px rgba(0,0,0,0.04);
    --transition: 0.25s ease;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 72px; }

body {
    font-family: 'Hanken Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Spectral', Georgia, serif;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--ink);
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
::selection { background: var(--signal); color: var(--paper); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.eyebrow {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--brass);
}

/* === Buttons (mobile-first: full width, stack) === */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px;
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 600; font-size: 16px;
    padding: 15px 28px; border-radius: var(--radius-sm);
    border: 1px solid transparent; cursor: pointer;
    transition: all var(--transition);
}
.btn .arr { font-family: 'Spectral', serif; }

.btn-green { background: var(--signal); color: var(--paper); border-color: var(--signal); }
.btn-green:hover { background: #34694F; border-color: #34694F; }

.btn-pine { background: var(--pine); color: var(--paper); border-color: var(--pine); }
.btn-pine:hover { background: #173629; }

.btn-ghost-dark { background: transparent; color: var(--paper); border-color: rgba(244,241,234,0.25); }
.btn-ghost-dark:hover { background: rgba(244,241,234,0.08); border-color: rgba(244,241,234,0.5); }

.btn-ghost-ink { background: transparent; color: var(--pine); border-color: rgba(30,68,53,0.3); }
.btn-ghost-ink:hover { background: rgba(30,68,53,0.05); }

/* === Nav === */
.navbar {
    position: sticky; top: 0; z-index: 50;
    background: rgba(18,32,26,0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(168,141,76,0.25);
}
.nav-container { display: flex; align-items: center; justify-content: space-between; height: 64px; }

.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
    width: 26px; height: 26px; border-radius: 5px; background: var(--signal);
    display: flex; align-items: center; justify-content: center;
    color: var(--paper); font-family: 'Spectral', serif; font-weight: 600; font-size: 17px;
}
.logo-text { font-family: 'Spectral', serif; font-size: 19px; font-weight: 600; color: var(--paper); letter-spacing: -0.01em; }

.nav-links {
    position: fixed; top: 0; right: -100%; width: 270px; height: 100vh;
    background: var(--ink-green); border-left: 1px solid rgba(168,141,76,0.25);
    display: flex; flex-direction: column; gap: 22px;
    padding: 80px 28px 28px; transition: right var(--transition); z-index: 60;
}
.nav-links.active { right: 0; }
.nav-links a { color: var(--paper-72); font-size: 16px; font-weight: 500; }
.nav-links a:hover { color: var(--paper); }
.nav-links .nav-divider { display: none; }
.nav-links .btn { width: 100%; }

.mobile-toggle {
    display: flex; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 6px; z-index: 61;
}
.mobile-toggle span { display: block; width: 22px; height: 2px; background: var(--paper); border-radius: 2px; transition: all var(--transition); }
.mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === Hero === */
.hero { background: var(--ink-green); color: var(--paper); position: relative; overflow: hidden; }
.hero::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(120% 80% at 80% 0%, rgba(60,122,92,0.22), transparent 60%);
}
.hero-inner { position: relative; display: grid; grid-template-columns: 1fr; gap: 40px; padding: 48px 0 56px; align-items: center; }

.hero-pill {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'JetBrains Mono', monospace; font-size: 11.5px; letter-spacing: 0.16em;
    text-transform: uppercase; color: var(--brass-2);
    border: 1px solid rgba(168,141,76,0.4); padding: 6px 12px; border-radius: 100px; margin-bottom: 22px;
}
.pulse-dot { width: 6px; height: 6px; border-radius: 50%; background: #4FB286; display: inline-block; animation: pulseDot 1.8s infinite; }
@keyframes pulseDot { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .35; transform: scale(.85); } }

.hero h1 { font-size: 38px; line-height: 1.04; margin-bottom: 20px; color: var(--paper); }
.hero h1 .accent { font-style: italic; color: var(--bright); }
.hero-sub { font-size: 17px; line-height: 1.55; color: rgba(244,241,234,0.74); margin-bottom: 28px; max-width: 480px; }
.hero-sub strong { color: var(--paper); font-weight: 600; }
.hero-cta { display: flex; flex-direction: column; gap: 12px; }
.hero-cta .btn { width: 100%; }
.hero-fineprint { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--paper-50); margin-top: 18px; letter-spacing: 0.02em; }

/* === Lead dashboard mock === */
.dashboard {
    background: var(--card); color: var(--ink); border-radius: 12px; overflow: hidden;
    box-shadow: var(--shadow-dash); font-size: 13px;
}
.dash-bar { display: flex; align-items: center; gap: 14px; padding: 11px 14px; border-bottom: 1px solid var(--hairline-2); }
.dash-lights { display: flex; gap: 6px; }
.dash-lights span { width: 11px; height: 11px; border-radius: 50%; }
.dash-lights .l1 { background: #ED6A5E; } .dash-lights .l2 { background: #F4BF4F; } .dash-lights .l3 { background: #61C554; }
.dash-url { font-family: 'JetBrains Mono', monospace; font-size: 11.5px; color: #9C9684; }
.dash-body { display: grid; grid-template-columns: 1fr; }
.dash-side { display: none; }
.dash-main { padding: 20px 18px; }
.dash-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.dash-head h4 { font-family: 'Spectral', serif; font-size: 20px; font-weight: 500; margin-bottom: 2px; }
.dash-head .sub { font-family: 'JetBrains Mono', monospace; font-size: 10.5px; color: #9C9684; letter-spacing: 0.02em; }
.live-pill { display: inline-flex; align-items: center; gap: 6px; font-family: 'JetBrains Mono', monospace; font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--dash-green); border: 1px solid rgba(44,106,74,0.3); padding: 4px 9px; border-radius: 100px; flex-shrink: 0; }
.dash-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--hairline-2); border: 1px solid var(--hairline-2); border-radius: 10px; overflow: hidden; margin-bottom: 16px; }
.dash-stat { background: var(--card); padding: 12px 12px; }
.dash-stat .n { font-family: 'Spectral', serif; font-size: 22px; font-weight: 500; line-height: 1; }
.dash-stat.green .n { color: var(--dash-green); }
.dash-stat .l { font-family: 'JetBrains Mono', monospace; font-size: 9px; text-transform: uppercase; letter-spacing: 0.06em; color: #9C9684; margin-top: 6px; }
.dash-table { width: 100%; }
.dash-thead, .dash-row { display: grid; grid-template-columns: 1.6fr 0.7fr 1.2fr; gap: 10px; align-items: center; }
.dash-thead { font-family: 'JetBrains Mono', monospace; font-size: 9px; text-transform: uppercase; letter-spacing: 0.08em; color: #9C9684; padding: 0 0 10px; border-bottom: 1px solid var(--hairline-2); }
.dash-row { padding: 11px 0; border-bottom: 1px solid var(--hairline-2); animation: rowIn 0.5s ease both; }
.dash-row:nth-child(2) { animation-delay: .08s; } .dash-row:nth-child(3) { animation-delay: .16s; }
.dash-row.verifying { opacity: 0.5; }
@keyframes rowIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
.dash-estate { font-weight: 600; font-size: 12.5px; }
.dash-estate small { display: block; font-family: 'JetBrains Mono', monospace; font-size: 9.5px; font-weight: 400; color: #9C9684; margin-top: 2px; }
.dash-day { font-family: 'JetBrains Mono', monospace; font-size: 12px; font-weight: 500; color: var(--dash-green); }
.dash-badge { display: inline-block; font-family: 'JetBrains Mono', monospace; font-size: 9px; padding: 3px 7px; border-radius: 5px; background: rgba(30,68,53,0.07); color: var(--pine); letter-spacing: 0.02em; }

/* === Proof strip === */
.proof { background: var(--ink-green); border-top: 1px solid rgba(168,141,76,0.2); }
.proof-inner { display: flex; flex-wrap: wrap; gap: 10px 0; padding: 18px 0; font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.04em; color: rgba(244,241,234,0.6); }
.proof-inner span { padding: 0 16px; border-right: 1px solid rgba(168,141,76,0.3); }
.proof-inner span:last-child { border-right: none; }
.proof-inner .g { color: var(--bright); }

/* === Section shared === */
.section { padding: 64px 0; }
.section-ivory { background: var(--paper); }
.section-card { background: var(--card); border-top: 1px solid var(--hairline); }
.section-dark { background: var(--ink-green); color: var(--paper); }
.section-head { max-width: 720px; margin-bottom: 36px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .eyebrow { display: block; margin-bottom: 16px; }
.section-head h2 { font-size: 30px; }
.section-head p { font-size: 17px; line-height: 1.55; color: var(--ink-70); margin-top: 16px; }
.section-dark .section-head h2 { color: var(--paper); }
.section-dark .section-head p { color: rgba(244,241,234,0.68); }
.section-dark .eyebrow { color: var(--brass-2); }

/* === Problem === */
.problem-lead { font-size: 18px; line-height: 1.6; color: var(--ink-70); max-width: 760px; margin-bottom: 36px; }
.problem-lead strong { color: var(--ink); font-weight: 600; }
.problem-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.problem-card { background: var(--card); border: 1px solid var(--hairline); border-radius: var(--radius); padding: 26px 24px; }
.problem-card .num { font-family: 'Spectral', serif; font-weight: 600; font-size: 15px; color: var(--brass); margin-bottom: 14px; }
.problem-card h3 { font-size: 21px; margin-bottom: 10px; }
.problem-card p { font-size: 15.5px; line-height: 1.6; color: var(--ink-70); }
.pull-quote { margin-top: 36px; padding: 4px 0 4px 24px; border-left: 3px solid var(--signal); }
.pull-quote p { font-family: 'Spectral', serif; font-style: italic; font-size: 21px; line-height: 1.4; color: var(--ink); }

/* === How It Works (dark, hairline grid) === */
.steps { display: grid; grid-template-columns: 1fr; gap: 1px; background: rgba(168,141,76,0.25); border: 1px solid rgba(168,141,76,0.25); border-radius: var(--radius); overflow: hidden; }
.step { background: var(--ink-green); padding: 28px 26px; }
.step .num { font-family: 'JetBrains Mono', monospace; font-size: 13px; color: var(--bright); margin-bottom: 16px; }
.step h3 { font-size: 22px; color: var(--paper); margin-bottom: 10px; }
.step p { font-size: 15px; line-height: 1.6; color: rgba(244,241,234,0.68); }

/* === Features === */
.feature-heros { display: grid; grid-template-columns: 1fr; gap: 18px; margin-bottom: 18px; }
.feature-hero { background: var(--pine); color: var(--paper); border-radius: var(--radius); padding: 30px 26px; }
.feature-hero .tag { font-family: 'JetBrains Mono', monospace; font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--bright); margin-bottom: 16px; }
.feature-hero h3 { font-size: 24px; color: var(--paper); margin-bottom: 12px; }
.feature-hero p { font-size: 15px; line-height: 1.6; color: rgba(244,241,234,0.8); }
.feature-grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--hairline); border: 1px solid var(--hairline); border-radius: var(--radius); overflow: hidden; }
.feature-cell { background: var(--paper); padding: 26px 24px; }
.feature-cell h4 { font-family: 'Spectral', serif; font-weight: 500; font-size: 19px; margin-bottom: 8px; }
.feature-cell p { font-size: 14.5px; line-height: 1.55; color: var(--ink-70); }

/* === ROI === */
.roi-band { background: var(--card); border: 1px solid var(--hairline); border-radius: var(--radius); padding: 32px 24px; }
.roi-grid { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; }
.roi-text h2 { font-size: 28px; }
.roi-text p { font-size: 16px; line-height: 1.6; color: var(--ink-70); margin: 16px 0 24px; }
.roi-text p strong { color: var(--ink); font-weight: 600; }
.roi-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.roi-tile { border: 1px solid var(--hairline); border-radius: 12px; padding: 20px 18px; }
.roi-tile.dark { background: var(--ink-green); border-color: var(--ink-green); }
.roi-tile.green { background: var(--pine); border-color: var(--pine); }
.roi-tile .n { font-family: 'Spectral', serif; font-weight: 500; font-size: 40px; line-height: 1; }
.roi-tile.dark .n { color: var(--bright); }
.roi-tile.green .n { color: var(--paper); }
.roi-tile .l { font-family: 'JetBrains Mono', monospace; font-size: 10px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--ink-70); margin-top: 10px; }
.roi-tile.dark .l, .roi-tile.green .l { color: rgba(244,241,234,0.7); }

/* === Trust === */
.trust-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.trust-col { border-top: 2px solid var(--signal); padding-top: 20px; }
.trust-col h3 { font-size: 20px; margin-bottom: 10px; }
.trust-col p { font-size: 15px; line-height: 1.6; color: var(--ink-70); }

/* === FAQ === */
.faq-list { max-width: 880px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--hairline); }
.faq-item summary { list-style: none; cursor: pointer; padding: 22px 0; display: flex; justify-content: space-between; align-items: center; gap: 20px; font-family: 'Spectral', serif; font-size: 19px; font-weight: 500; color: var(--ink); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-family: 'JetBrains Mono', monospace; font-size: 22px; color: var(--signal); line-height: 1; flex-shrink: 0; }
.faq-item[open] summary::after { content: '\2212'; }
.faq-item p { font-size: 15.5px; line-height: 1.6; color: var(--ink-70); padding: 0 0 24px; max-width: 760px; }
.faq-item a { color: var(--signal); }
.faq-item a:hover { text-decoration: underline; }

/* === Insights / Blog === */
.insights-head { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.insights-head h2 { font-size: 28px; }
.insights-head .eyebrow { display: block; margin-bottom: 14px; }
.view-all { display: inline-flex; align-items: center; gap: 8px; color: var(--pine); font-weight: 600; font-size: 15px; border-bottom: 1px solid rgba(30,68,53,0.3); padding-bottom: 4px; align-self: flex-start; }
.insights-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.insight-card { background: var(--card); border: 1px solid var(--hairline); border-radius: var(--radius); padding: 26px 24px; display: flex; flex-direction: column; transition: all var(--transition); }
.insight-card:hover { border-color: var(--signal); transform: translateY(-2px); }
.insight-card .eyebrow { font-size: 10px; margin-bottom: 12px; }
.insight-card h3 { font-size: 19px; line-height: 1.22; margin-bottom: 8px; }
.insight-card.featured h3 { font-size: 24px; }
.insight-card p { font-size: 15px; line-height: 1.55; color: var(--ink-70); margin-bottom: 16px; }
.insight-card .read { font-weight: 600; font-size: 14px; color: var(--pine); margin-top: auto; }
.insight-banner { height: 150px; margin: -26px -24px 22px; background: repeating-linear-gradient(135deg, #EDE8DD, #EDE8DD 12px, #F2EEE5 12px, #F2EEE5 24px); display: flex; align-items: flex-end; padding: 16px; }
.insight-banner span { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: #9C9684; background: var(--card); padding: 5px 10px; border-radius: 100px; }

/* === Final CTA === */
.final-cta { background: var(--ink-green); color: var(--paper); position: relative; overflow: hidden; text-align: center; }
.final-cta::before { content: ''; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(100% 100% at 50% 0%, rgba(60,122,92,0.25), transparent 60%); }
.final-cta-inner { position: relative; max-width: 760px; margin: 0 auto; padding: 72px 0; }
.final-cta h2 { font-size: 34px; line-height: 1.05; color: var(--paper); margin-bottom: 20px; }
.final-cta h2 .accent { font-style: italic; color: var(--bright); }
.final-cta p { font-size: 17px; line-height: 1.55; color: rgba(244,241,234,0.74); max-width: 560px; margin: 0 auto 30px; }
.final-cta-btns { display: flex; flex-direction: column; gap: 12px; margin-bottom: 26px; }
.final-cta-btns .btn { width: 100%; }
.final-cta-check { display: flex; flex-direction: column; gap: 10px; align-items: center; font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--paper-50); }

/* === Footer === */
.footer { background: var(--footer-green); color: rgba(244,241,234,0.6); padding: 44px 0 28px; }
.footer-top { display: flex; flex-direction: column; gap: 28px; padding-bottom: 28px; border-bottom: 1px solid rgba(244,241,234,0.08); }
.footer-brand .logo { margin-bottom: 12px; }
.footer-tagline { font-size: 14px; line-height: 1.6; max-width: 340px; }
.ph-badge { display: inline-block; margin-top: 16px; opacity: 0.85; transition: opacity 0.2s; }
.ph-badge:hover { opacity: 1; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.footer-col h4 { color: var(--paper); font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 14px; }
.footer-col a { display: block; color: rgba(244,241,234,0.55); font-size: 13.5px; padding: 4px 0; }
.footer-col a:hover { color: var(--brass-2); }
.footer-hub { display: grid; grid-template-columns: 1fr; gap: 26px; padding: 28px 0; border-bottom: 1px solid rgba(244,241,234,0.08); }
.footer-bottom { display: flex; flex-direction: column; gap: 12px; padding-top: 22px; text-align: center; }
.footer-bottom p { font-family: 'JetBrains Mono', monospace; font-size: 11.5px; color: rgba(244,241,234,0.35); }
.footer-legal { display: flex; gap: 20px; justify-content: center; }
.footer-legal a { font-size: 12.5px; color: rgba(244,241,234,0.45); }
.footer-legal a:hover { color: var(--brass-2); }

/* ============================================================
   TABLET  (min-width: 768px)
   ============================================================ */
@media (min-width: 768px) {
    .container { padding: 0 32px; }
    .nav-container { height: 68px; }

    /* nav inline */
    .mobile-toggle { display: none; }
    .nav-links { position: static; width: auto; height: auto; flex-direction: row; align-items: center; gap: 28px; padding: 0; background: transparent; border: none; }
    .nav-links a { font-size: 14.5px; }
    .nav-links .nav-divider { display: block; width: 1px; height: 20px; background: rgba(168,141,76,0.3); }
    .nav-links .btn { width: auto; padding: 9px 18px; font-size: 14.5px; }

    .section { padding: 88px 0; }

    /* hero */
    .hero-inner { padding: 72px 0 80px; gap: 48px; }
    .hero h1 { font-size: 52px; }
    .hero-sub { font-size: 18px; }
    .hero-cta { flex-direction: row; flex-wrap: wrap; }
    .hero-cta .btn { width: auto; }
    .dash-body { grid-template-columns: 168px 1fr; }
    .dash-side { display: block; background: var(--ink-green); color: var(--paper); padding: 18px 16px; }
    .dash-side .firm { font-family: 'Spectral', serif; font-size: 16px; font-weight: 600; margin-bottom: 22px; }
    .dash-side .nav-item { font-size: 12.5px; color: rgba(244,241,234,0.6); padding: 9px 10px; border-radius: 7px; margin-bottom: 4px; }
    .dash-side .nav-item.active { background: rgba(60,122,92,0.22); color: var(--paper); }
    .dash-main { padding: 22px 22px; }

    .section-head h2 { font-size: 38px; }
    .problem-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }
    .steps { grid-template-columns: repeat(3, 1fr); }
    .feature-heros { grid-template-columns: 1fr 1fr; }
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .roi-band { padding: 44px 40px; }
    .roi-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
    .trust-grid { grid-template-columns: repeat(3, 1fr); }
    .insights-head { flex-direction: row; justify-content: space-between; align-items: flex-end; }
    .insights-head h2 { font-size: 38px; }
    .insights-grid { grid-template-columns: 1.4fr 1fr; }
    .insight-card.featured { grid-row: span 2; }
    .final-cta h2 { font-size: 46px; }
    .final-cta-inner { padding: 96px 0; }
    .final-cta-btns { flex-direction: row; justify-content: center; }
    .final-cta-btns .btn { width: auto; }
    .final-cta-check { flex-direction: row; gap: 26px; }

    .footer-top { flex-direction: row; justify-content: space-between; align-items: flex-start; }
    .footer-links { display: flex; gap: 56px; }
    .footer-hub { grid-template-columns: repeat(3, 1fr); gap: 36px; }
    .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; padding-top: 24px; }
}

/* ============================================================
   DESKTOP  (min-width: 1024px)
   ============================================================ */
@media (min-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr 1fr; padding: 84px 0 92px; gap: 56px; }
    .hero h1 { font-size: 60px; }
    .dashboard { transform: perspective(1600px) rotateY(-7deg) rotateX(2deg); transform-origin: left center; }
    .section { padding: 96px 0; }
    .section-head h2 { font-size: 44px; }
    .feature-grid { grid-template-columns: repeat(3, 1fr); }
    .problem-card { padding: 30px 28px; }
    .step { padding: 32px 30px; }
    .final-cta h2 { font-size: 52px; }
}
