/* ============================================
   Çardak homepage — "Avlu" direction
   Scoped under body.page-home so shared pages stay intact.
   ============================================ */

body.page-home {
    --home-ink: #162018;
    --home-ink-soft: #2a342c;
    --home-paper: #eef1ec;
    --home-paper-deep: #e2e7e0;
    --home-mist: #d5ddd4;
    --home-brand: #0c7a45;
    --home-brand-deep: #095c34;
    --home-brand-soft: rgba(12, 122, 69, 0.12);
    --home-line: rgba(22, 32, 24, 0.12);
    --home-muted: #5a675e;
    --home-display: "Sora", system-ui, sans-serif;
    --home-body: "Inter", system-ui, sans-serif;

    --primary: var(--home-brand);
    --primary-dark: var(--home-brand-deep);
    --primary-light: #1a9a58;
    --primary-glow: transparent;
    --bg-dark: var(--home-paper);
    --bg-darker: var(--home-paper-deep);
    --bg-card: #ffffff;
    --bg-card-hover: #f7f9f6;
    --text-primary: var(--home-ink);
    --text-secondary: var(--home-ink-soft);
    --text-muted: var(--home-muted);
    --gradient-primary: var(--home-brand);
    --gradient-text: none;
    --gradient-card: #ffffff;
    --shadow-glow: none;
    --shadow-md: 0 12px 32px rgba(22, 32, 24, 0.08);
    --shadow-lg: 0 20px 48px rgba(22, 32, 24, 0.1);
    --font-family: var(--home-body);
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;
    --radius-xl: 10px;
    --radius-squircle: 4px;

    background:
        linear-gradient(180deg, rgba(238, 241, 236, 0.92), rgba(238, 241, 236, 0.96)),
        repeating-linear-gradient(
            90deg,
            transparent 0,
            transparent 47px,
            rgba(22, 32, 24, 0.035) 47px,
            rgba(22, 32, 24, 0.035) 48px
        ),
        var(--home-paper);
    color: var(--home-ink);
    font-family: var(--home-body);
}

body.page-home ::selection {
    background: var(--home-brand);
    color: #fff;
}

/* ---------- Nav ---------- */
body.page-home #navbar {
    padding: 18px 0;
}

body.page-home #navbar.scrolled {
    background: rgb(238, 241, 236);
    backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 var(--home-line);
    padding: 12px 0;
}

body.page-home .logo span {
    font-family: var(--home-display);
    font-weight: 600;
    font-size: 1.35rem;
    letter-spacing: -0.03em;
    color: var(--home-ink);
    text-transform: lowercase;
    transition: color 0.25s ease;
}

/* Hero is dark — keep nav readable until scroll */
body.page-home #navbar:not(.scrolled) .logo span {
    color: #f4f7f3;
}

body.page-home #navbar:not(.scrolled) .nav-links a {
    color: rgba(244, 247, 243, 0.78);
}

body.page-home #navbar:not(.scrolled) .nav-links a:hover,
body.page-home #navbar:not(.scrolled) .nav-links a.active {
    color: #fff;
}

body.page-home #navbar:not(.scrolled) .nav-buttons .btn-outline {
    border-color: rgba(244, 247, 243, 0.45);
    color: #f4f7f3;
}

body.page-home #navbar:not(.scrolled) .nav-buttons .btn-outline:hover {
    background: #f4f7f3;
    color: var(--home-ink);
}

body.page-home #navbar:not(.scrolled) .nav-buttons .btn-primary {
    background: #f4f7f3;
    color: var(--home-ink);
}

body.page-home #navbar:not(.scrolled) .nav-buttons .btn-primary:hover {
    background: #fff;
}

body.page-home #navbar:not(.scrolled) .mobile-menu-btn span {
    background: #f4f7f3;
}

body.page-home .nav-links a {
    color: var(--home-ink-soft);
    font-weight: 500;
}

body.page-home .nav-links a::after {
    height: 1.5px;
    background: var(--home-brand);
    border-radius: 0;
}

body.page-home .nav-links a:hover,
body.page-home .nav-links a.active {
    color: var(--home-ink);
}

body.page-home .mobile-menu-btn span {
    background: var(--home-ink);
}

body.page-home .btn {
    border-radius: 10px;
    font-family: var(--home-body);
    font-weight: 600;
    letter-spacing: 0.01em;
}

body.page-home .btn-primary {
    background: var(--home-brand);
    color: #fff;
    box-shadow: none;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

body.page-home .btn-primary:hover {
    background: var(--home-brand-deep);
    transform: translateY(-2px);
    box-shadow: none;
}

body.page-home .btn-outline {
    border: 1.5px solid var(--home-ink);
    color: var(--home-ink);
    background: transparent;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

body.page-home .btn-outline:hover {
    background: var(--home-ink);
    color: var(--home-paper);
    transform: translateY(-2px);
}

/* ---------- Hero: one composition, brand-first ---------- */
body.page-home .hero {
    position: relative;
    min-height: 100svh;
    padding: 0;
    display: grid;
    align-items: stretch;
    overflow: hidden;
    background:
        radial-gradient(ellipse 90% 70% at 50% 30%, rgba(12, 122, 69, 0.16), transparent 60%),
        linear-gradient(165deg, #1a2820 0%, #121a14 55%, #0e1410 100%);
}

body.page-home .hero-grid {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

body.page-home .hero-grid__canvas {
    display: block;
    width: 100%;
    height: 100%;
    mix-blend-mode: screen;
}

body.page-home .hero-content {
    position: relative;
    z-index: 1;
}

body.page-home .hero-bg,
body.page-home .hero-particles,
body.page-home .scroll-indicator {
    display: none;
}

@media (prefers-reduced-motion: reduce) {
    body.page-home .hero-grid {
        display: none;
    }
}

body.page-home .hero-content {
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 0;
    min-height: 100svh;
    align-items: stretch;
}

body.page-home .hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(6.5rem, 12vh, 8rem) clamp(1.5rem, 5vw, 4.5rem) clamp(2.5rem, 6vh, 4rem);
    background: none;
    color: #f4f7f3;
    position: relative;
    z-index: 1;
}

body.page-home .hero-text::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            0deg,
            transparent 0,
            transparent 71px,
            rgba(244, 247, 243, 0.04) 71px,
            rgba(244, 247, 243, 0.04) 72px
        );
    pointer-events: none;
}

body.page-home .hero-text > .hero-brand {
    margin: 0 0 1.25rem;
    max-width: none;
    position: relative;
    animation: homeBrandIn 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

body.page-home .hero-text > .hero-brand img {
    display: block;
    width: clamp(220px, 30vw, 336px);
    height: auto;
}

body.page-home .hero-text h1 {
    margin: 0 0 1rem;
    max-width: 16ch;
    position: relative;
    animation: homeRise 0.9s 0.15s cubic-bezier(0.22, 1, 0.36, 1) both;
    font-family: var(--home-display);
    font-weight: 600;
    font-size: clamp(1.75rem, 2.8vw, 2.35rem);
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: #f4f7f3;
}

body.page-home .hero-text .gradient-text {
    background: none;
    -webkit-text-fill-color: unset;
    color: inherit;
}

body.page-home .hero-text > p:not(.hero-brand) {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    line-height: 1.55;
    color: rgba(244, 247, 243, 0.72);
    max-width: 36ch;
    margin: 0 0 1.75rem;
    position: relative;
    animation: homeRise 0.9s 0.28s cubic-bezier(0.22, 1, 0.36, 1) both;
}

body.page-home .hero-buttons {
    margin: 0;
    gap: 12px;
    position: relative;
    animation: homeRise 0.9s 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

body.page-home .hero .btn-primary {
    background: #f4f7f3;
    color: var(--home-ink);
}

body.page-home .hero .btn-primary:hover {
    background: #fff;
    color: var(--home-ink);
}

body.page-home .hero .btn-outline {
    border-color: rgba(244, 247, 243, 0.45);
    color: #f4f7f3;
}

body.page-home .hero .btn-outline:hover {
    background: rgba(244, 247, 243, 0.1);
    color: #fff;
    border-color: #f4f7f3;
}

body.page-home .hero-image {
    position: relative;
    min-height: 100%;
    overflow: visible;
    background: none;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 0;
}

body.page-home .hero-mockup {
    position: relative;
    display: block;
    width: clamp(703px, 55.675vw, 1015px);
    max-width: none;
    height: auto;
    margin-left: clamp(78px, 7vw, 136px);
    top: clamp(36px, 4vw, 64px);
    animation: homeMockupReveal 0.95s 0.18s cubic-bezier(0.22, 1, 0.36, 1) backwards;
    transform-origin: 52% 100%;
}

body.page-home .css-phone-wrapper,
body.page-home .floating-card,
body.page-home .hero-badge {
    display: none !important;
}

@keyframes homeBrandIn {
    from {
        opacity: 0;
        transform: translateY(28px);
        letter-spacing: 0.02em;
    }
    to {
        opacity: 1;
        transform: translateY(0);
        letter-spacing: -0.045em;
    }
}

@keyframes homeRise {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes homeMockupReveal {
    from {
        opacity: 0;
        filter: blur(4px);
        transform: translateY(24px) rotate(1deg) scale(0.975);
    }
    to {
        opacity: 1;
        filter: blur(0);
        transform: scale(1);
    }
}

/* ---------- Section rhythm ---------- */
body.page-home section {
    padding: clamp(4rem, 9vw, 6.5rem) 0;
}

body.page-home .section-badge {
    display: block;
    width: fit-content;
    background: none;
    border: none;
    border-radius: 0;
    padding: 0;
    margin-bottom: 12px;
    font-family: var(--home-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--home-brand);
}

body.page-home .section-header {
    text-align: left;
    margin-bottom: 2.5rem;
    max-width: 40rem;
    position: relative;
}

/* Signature: a short ink line draws in under every section header on reveal */
body.page-home .section-header::after,
body.page-home .download-info::after,
body.page-home .enterprise-copy::after,
body.page-home .pricing-copy::after,
body.page-home .demo-intro::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -14px;
    width: 48px;
    height: 2px;
    background: var(--home-brand);
    transform-origin: left center;
}

body.page-home .download-info,
body.page-home .enterprise-copy,
body.page-home .pricing-copy,
body.page-home .demo-intro {
    position: relative;
}

html.js body.page-home .section-header::after,
html.js body.page-home .download-info::after,
html.js body.page-home .enterprise-copy::after,
html.js body.page-home .pricing-copy::after,
html.js body.page-home .demo-intro::after {
    transform: scaleX(0);
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.1s;
}

html.js body.page-home .reveal.is-in .section-header::after,
html.js body.page-home .reveal.reveal-stagger.is-in .section-header::after,
html.js body.page-home .reveal.is-in .download-info::after,
html.js body.page-home .reveal.is-in .enterprise-copy::after,
html.js body.page-home .reveal.reveal-stagger.is-in .enterprise-copy::after,
html.js body.page-home .reveal.is-in .pricing-copy::after,
html.js body.page-home .reveal.is-in .demo-intro::after {
    transform: scaleX(1);
}

body.page-home .section-header h2,
body.page-home .download-info h2,
body.page-home .enterprise-copy h2,
body.page-home #contact-title {
    font-family: var(--home-display);
    font-weight: 600;
    font-size: clamp(1.75rem, 3.6vw, 2.5rem);
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: var(--home-ink);
}

body.page-home .gradient-text {
    background: none !important;
    -webkit-text-fill-color: unset !important;
    color: inherit !important;
}

body.page-home .section-header p {
    color: var(--home-muted);
    font-size: 1.05rem;
}

/* ---------- Features: stacked facade, not icon cards ---------- */
body.page-home .features {
    background: var(--home-paper);
    border-top: 1px solid var(--home-line);
}

body.page-home .features-header {
    text-align: left;
    margin-bottom: 0;
}

body.page-home .features-header p {
    margin: 0;
}

body.page-home .features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border-top: 1px solid var(--home-line);
    margin-top: 2.5rem;
}

body.page-home .feature-card {
    display: grid;
    grid-template-columns: 4.5rem 1fr;
    gap: 1.25rem 1.75rem;
    align-items: start;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--home-line);
    border-radius: 0;
    padding: 1.6rem 0;
    overflow: visible;
    transition: background 0.25s ease;
}

body.page-home .feature-card::before {
    display: none;
}

body.page-home .feature-card:hover {
    transform: none;
    box-shadow: none;
    border-color: var(--home-line);
    background: rgba(12, 122, 69, 0.04);
}

body.page-home .feature-icon {
    width: auto;
    height: auto;
    background: none;
    border-radius: 0;
    margin: 0;
    padding-top: 0.15rem;
    font-family: var(--home-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--home-brand);
    letter-spacing: -0.03em;
    line-height: 1;
}

body.page-home .feature-icon i {
    display: none;
}

body.page-home .feature-card h3 {
    font-family: var(--home-display);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 0.4rem;
    grid-column: 2;
}

body.page-home .feature-card p {
    grid-column: 2;
    color: var(--home-muted);
    font-size: 0.98rem;
    line-height: 1.55;
    max-width: 52ch;
}

body.page-home .feature-card .feature-body {
    grid-column: 2;
}

body.page-home .feature-card--upcoming {
    border-bottom-style: dashed;
    background: color-mix(in srgb, var(--home-brand) 4%, transparent);
}

body.page-home .feature-card--upcoming:hover {
    background: color-mix(in srgb, var(--home-brand) 7%, transparent);
}

body.page-home .feature-status {
    display: inline-flex;
    margin-bottom: 0.45rem;
    padding: 0.2rem 0.45rem;
    border: 1px solid color-mix(in srgb, var(--home-brand) 35%, transparent);
    border-radius: 999px;
    color: var(--home-brand-deep);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

@media (min-width: 900px) {
    body.page-home .features-grid {
        grid-template-columns: 1fr 1fr;
        column-gap: 0;
    }

    body.page-home .feature-card:nth-child(odd) {
        padding-right: 1.5rem;
    }

    body.page-home .feature-card:nth-child(even) {
        padding-left: 1.5rem;
        border-left: 1px solid var(--home-line);
    }
}

/* ---------- Download ---------- */
body.page-home .download {
    background: var(--home-paper-deep);
}

body.page-home .download-banner {
    background: var(--home-ink);
    border: none;
    border-radius: 0;
    padding: clamp(2rem, 5vw, 3.5rem);
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: center;
    box-shadow: none;
    overflow: hidden;
    position: relative;
}

body.page-home .download-banner::after {
    content: "";
    position: absolute;
    right: -10%;
    bottom: -40%;
    width: 50%;
    height: 120%;
    background: radial-gradient(circle, rgba(12, 122, 69, 0.35), transparent 70%);
    pointer-events: none;
}

body.page-home .download-info .section-badge {
    color: #7dcea0;
}

body.page-home .download-info h2 {
    color: #f4f7f3;
}

body.page-home .download-info p {
    color: rgba(244, 247, 243, 0.7);
    max-width: 36ch;
}

body.page-home .download-highlights {
    display: none;
}

body.page-home .download-phone {
    justify-self: center;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.page-home .download-phone img {
    width: auto;
    max-width: min(100%, 260px);
    height: auto;
    max-height: 520px;
    object-fit: contain;
    aspect-ratio: auto;
    border: none;
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

body.page-home .download-phone img:hover {
    border: none;
    transform: translateY(-4px);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.5);
}

body.page-home .hero-mockup,
body.page-home .module-media img {
    aspect-ratio: auto;
}

body.page-home .download-btn {
    border-radius: 3px;
    transition: transform 0.25s ease, opacity 0.25s ease, box-shadow 0.25s ease;
}

body.page-home .download-btn:hover {
    transform: translateY(-2px);
}

/* ---------- Enterprise: editorial strip ---------- */
body.page-home .enterprise-cta {
    padding-top: 0;
    background: var(--home-paper);
}

body.page-home .enterprise-banner {
    background: transparent;
    border: none;
    border-top: 1px solid var(--home-line);
    border-bottom: 1px solid var(--home-line);
    border-radius: 0;
    padding: clamp(2.5rem, 5vw, 3.5rem) 0;
    box-shadow: none;
    gap: 2rem;
}

body.page-home .enterprise-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

body.page-home .enterprise-point {
    background: transparent;
    border: none;
    border-left: 1px solid var(--home-line);
    border-radius: 0;
    padding: 0 1.5rem;
}

body.page-home .enterprise-point:first-child {
    border-left: none;
    padding-left: 0;
}

body.page-home .enterprise-point:hover {
    transform: none;
    box-shadow: none;
    border-color: var(--home-line);
}

body.page-home .enterprise-point i {
    display: none;
}

body.page-home .enterprise-point h3 {
    font-family: var(--home-display);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

body.page-home .enterprise-point p {
    color: var(--home-muted);
    font-size: 0.95rem;
}

/* ---------- FAQ ---------- */
body.page-home .faq {
    background: var(--home-paper-deep);
}

body.page-home .faq-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--home-line);
    border-radius: 0;
    margin-bottom: 0;
    box-shadow: none;
}

body.page-home .faq-item:hover,
body.page-home .faq-item[open] {
    border-color: var(--home-line);
    box-shadow: none;
}

body.page-home .faq-grid {
    gap: 0;
    max-width: none;
}

body.page-home .faq-item summary {
    font-family: var(--home-display);
    font-weight: 600;
    letter-spacing: -0.02em;
    padding-left: 0;
    padding-right: 0;
}

body.page-home .faq-icon {
    background: var(--home-brand-soft);
    color: var(--home-brand);
    border-radius: 3px;
}

body.page-home .faq-item[open] .faq-icon {
    background: var(--home-brand);
    color: #fff;
}

body.page-home .faq-answer {
    color: var(--home-muted);
    padding-left: 56px;
    padding-right: 0;
}

/* ---------- Contact ---------- */
body.page-home .contact {
    background: var(--home-paper-deep);
}

body.page-home .contact-form input,
body.page-home .contact-form textarea {
    background: #fff;
    border: 1px solid var(--home-line);
    border-radius: 3px;
    color: var(--home-ink);
}

body.page-home .contact-form label {
    color: var(--home-muted);
}

body.page-home .info-item {
    color: var(--home-ink-soft);
}

/* ---------- Footer ---------- */
body.page-home .footer {
    background:
        radial-gradient(circle at 18% 12%, rgba(20, 122, 69, 0.14), transparent 28rem),
        var(--home-ink);
    color: rgba(244, 247, 243, 0.78);
}

body.page-home .footer-brand-title {
    font-family: var(--home-display);
    color: #f4f7f3;
}

body.page-home .footer a {
    color: rgba(244, 247, 243, 0.7);
}

body.page-home .footer a:hover {
    color: #fff;
}

body.page-home .footer-badges span {
    border-color: rgba(244, 247, 243, 0.15);
    color: rgba(244, 247, 243, 0.65);
}

body.page-home .footer-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
    column-gap: clamp(3rem, 7vw, 6rem);
    row-gap: clamp(2.75rem, 5vw, 4.5rem);
}

body.page-home .footer-brand {
    max-width: 34rem;
}

body.page-home .footer-brand > p:not(.footer-contact) {
    color: rgba(244, 247, 243, 0.82);
}

body.page-home .footer-contact {
    display: grid;
    gap: 0.8rem;
    margin-top: 1.75rem;
}

body.page-home .footer-contact span,
body.page-home .footer-contact a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

body.page-home .footer-contact i,
body.page-home .footer-navigation h3 i {
    color: #5bd36d;
    width: 1.25rem;
    text-align: center;
}

body.page-home .footer-newsletter {
    justify-self: end;
    width: 100%;
    padding-left: clamp(2rem, 5vw, 5rem);
    border-left: 1px solid rgba(244, 247, 243, 0.18);
}

body.page-home .footer-newsletter h3 {
    font-family: var(--home-display);
    font-size: clamp(1.3rem, 2vw, 1.65rem);
    line-height: 1.25;
    margin-bottom: 1.6rem;
    color: #f4f7f3;
}

body.page-home .footer-navigation {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-column: 1 / -1;
    grid-row: 2;
    gap: clamp(2rem, 4vw, 4.5rem);
    padding-top: clamp(2rem, 4vw, 3rem);
    border-top: 1px solid rgba(244, 247, 243, 0.18);
}

body.page-home .footer-navigation .footer-links h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.15rem;
    font-family: var(--home-display);
    font-size: 1.15rem;
    color: #f4f7f3;
}

body.page-home .footer-navigation .footer-links ul {
    gap: 0;
}

body.page-home .footer-navigation .footer-links li {
    border-bottom: 1px solid rgba(244, 247, 243, 0.09);
}

body.page-home .footer-navigation .footer-links li:last-child {
    border-bottom: 0;
}

body.page-home .footer-navigation .footer-links a,
body.page-home .footer-navigation .footer-coming-soon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.72rem 0;
}

body.page-home .footer-navigation .footer-links a::after {
    content: "›";
    color: #5bd36d;
    font-size: 1.45rem;
    font-weight: 300;
    line-height: 0.7;
}

body.page-home .footer-navigation .footer-links a:hover {
    padding-left: 0;
    color: #fff;
}

body.page-home .footer-bottom {
    border-top-color: rgba(244, 247, 243, 0.18);
    padding: 1.75rem 0;
}

body.page-home .footer-badges {
    gap: 0;
}

body.page-home .footer-badges span {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0 1.5rem;
}

body.page-home .footer-badges span + span {
    border-left: 1px solid rgba(244, 247, 243, 0.25);
}

body.page-home .footer-badges span:first-child {
    padding-left: 0;
}

body.page-home .footer-blog-links a {
    line-height: 1.35;
}

body.page-home .footer-resources-intro {
    margin: -0.35rem 0 0.85rem;
    color: rgba(244, 247, 243, 0.56);
    font-size: 0.82rem;
    line-height: 1.45;
}

body.page-home .footer-navigation .footer-links .footer-resource-all {
    border-bottom: 0;
}

body.page-home .footer-navigation .footer-resource-all a {
    color: #6be07d;
    font-weight: 600;
}

@media (max-width: 1100px) {
    body.page-home .footer-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }

    body.page-home .footer-navigation {
        grid-column: 1 / -1;
        grid-row: 2;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 3rem;
        row-gap: 2.5rem;
    }

    body.page-home .footer-newsletter {
        justify-self: stretch;
        padding-left: 2rem;
    }
}

/* ---------- Reveal motion ----------
   Gated behind html.js: if the setup script never runs (blocked, slow,
   errors before it fires), content stays visible by default instead of
   being permanently hidden at opacity:0. */
html.js body.page-home .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

html.js body.page-home .reveal.is-in {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger sections: container stays put; children rise in sequence */
html.js body.page-home .reveal.reveal-stagger {
    opacity: 1;
    transform: none;
}

html.js body.page-home .reveal.reveal-stagger .section-header {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

html.js body.page-home .reveal.reveal-stagger.is-in .section-header {
    opacity: 1;
    transform: translateY(0);
}

html.js body.page-home .reveal.reveal-stagger .shift-col,
html.js body.page-home .reveal.reveal-stagger .feature-card,
html.js body.page-home .reveal.reveal-stagger .howto-steps > li,
html.js body.page-home .reveal.reveal-stagger .audience-link,
html.js body.page-home .reveal.reveal-stagger .enterprise-point,
html.js body.page-home .reveal.reveal-stagger .why-point,
html.js body.page-home .reveal.reveal-stagger .insight-card {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

html.js body.page-home .reveal.reveal-stagger.is-in .shift-col,
html.js body.page-home .reveal.reveal-stagger.is-in .feature-card,
html.js body.page-home .reveal.reveal-stagger.is-in .howto-steps > li,
html.js body.page-home .reveal.reveal-stagger.is-in .audience-link,
html.js body.page-home .reveal.reveal-stagger.is-in .enterprise-point,
html.js body.page-home .reveal.reveal-stagger.is-in .why-point,
html.js body.page-home .reveal.reveal-stagger.is-in .insight-card {
    opacity: 1;
    transform: translateY(0);
}

html.js body.page-home .reveal.reveal-stagger.is-in .shift-col:nth-child(1) { transition-delay: 0.1s; }
html.js body.page-home .reveal.reveal-stagger.is-in .shift-col:nth-child(2) { transition-delay: 0.28s; }

html.js body.page-home .reveal.reveal-stagger.is-in .feature-card:nth-child(1) { transition-delay: 0.06s; }
html.js body.page-home .reveal.reveal-stagger.is-in .feature-card:nth-child(2) { transition-delay: 0.12s; }
html.js body.page-home .reveal.reveal-stagger.is-in .feature-card:nth-child(3) { transition-delay: 0.18s; }
html.js body.page-home .reveal.reveal-stagger.is-in .feature-card:nth-child(4) { transition-delay: 0.24s; }
html.js body.page-home .reveal.reveal-stagger.is-in .feature-card:nth-child(5) { transition-delay: 0.3s; }
html.js body.page-home .reveal.reveal-stagger.is-in .feature-card:nth-child(6) { transition-delay: 0.36s; }
html.js body.page-home .reveal.reveal-stagger.is-in .feature-card:nth-child(7) { transition-delay: 0.42s; }
html.js body.page-home .reveal.reveal-stagger.is-in .feature-card:nth-child(8) { transition-delay: 0.48s; }

html.js body.page-home .reveal.reveal-stagger.is-in .howto-steps > li:nth-child(1) { transition-delay: 0.1s; }
html.js body.page-home .reveal.reveal-stagger.is-in .howto-steps > li:nth-child(2) { transition-delay: 0.22s; }
html.js body.page-home .reveal.reveal-stagger.is-in .howto-steps > li:nth-child(3) { transition-delay: 0.34s; }

html.js body.page-home .reveal.reveal-stagger.is-in .audience-link:nth-child(1) { transition-delay: 0.1s; }
html.js body.page-home .reveal.reveal-stagger.is-in .audience-link:nth-child(2) { transition-delay: 0.22s; }
html.js body.page-home .reveal.reveal-stagger.is-in .audience-link:nth-child(3) { transition-delay: 0.34s; }

html.js body.page-home .reveal.reveal-stagger.is-in .enterprise-point:nth-child(1) { transition-delay: 0.1s; }
html.js body.page-home .reveal.reveal-stagger.is-in .enterprise-point:nth-child(2) { transition-delay: 0.22s; }
html.js body.page-home .reveal.reveal-stagger.is-in .enterprise-point:nth-child(3) { transition-delay: 0.34s; }

html.js body.page-home .reveal.reveal-stagger.is-in .why-point:nth-child(1) { transition-delay: 0.06s; }
html.js body.page-home .reveal.reveal-stagger.is-in .why-point:nth-child(2) { transition-delay: 0.16s; }
html.js body.page-home .reveal.reveal-stagger.is-in .why-point:nth-child(3) { transition-delay: 0.26s; }
html.js body.page-home .reveal.reveal-stagger.is-in .why-point:nth-child(4) { transition-delay: 0.36s; }

html.js body.page-home .reveal.reveal-stagger.is-in .insight-card:nth-child(1) { transition-delay: 0.1s; }
html.js body.page-home .reveal.reveal-stagger.is-in .insight-card:nth-child(2) { transition-delay: 0.22s; }
html.js body.page-home .reveal.reveal-stagger.is-in .insight-card:nth-child(3) { transition-delay: 0.34s; }

html.js body.page-home .reveal.reveal-stagger .howto-num {
    transform: scale(0.72);
    transform-origin: left center;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

html.js body.page-home .reveal.reveal-stagger.is-in .howto-num {
    transform: scale(1);
}

html.js body.page-home .reveal.reveal-stagger.is-in .howto-steps > li:nth-child(1) .howto-num { transition-delay: 0.16s; }
html.js body.page-home .reveal.reveal-stagger.is-in .howto-steps > li:nth-child(2) .howto-num { transition-delay: 0.28s; }
html.js body.page-home .reveal.reveal-stagger.is-in .howto-steps > li:nth-child(3) .howto-num { transition-delay: 0.4s; }

/* Module rows: copy first, phone settles after */
html.js body.page-home .reveal.reveal-module {
    opacity: 1;
    transform: none;
}

html.js body.page-home .reveal.reveal-module .module-copy,
html.js body.page-home .reveal.reveal-module .module-media {
    opacity: 0;
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

html.js body.page-home .reveal.reveal-module .module-copy {
    transform: translateY(16px);
}

html.js body.page-home .reveal.reveal-module .module-media {
    transform: translateY(28px);
}

html.js body.page-home .reveal.reveal-module.is-in .module-copy,
html.js body.page-home .reveal.reveal-module.is-in .module-media {
    opacity: 1;
    transform: translateY(0);
}

html.js body.page-home .reveal.reveal-module.is-in .module-copy {
    transition-delay: 0.05s;
}

html.js body.page-home .reveal.reveal-module.is-in .module-media {
    transition-delay: 0.22s;
}

/* Disable content-visibility on homepage — it collapses image sizes on mobile */
body.page-home section {
    content-visibility: visible;
    contain-intrinsic-size: auto;
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
    body.page-home .hero {
        min-height: auto;
    }

    body.page-home .hero-content {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    body.page-home .hero-text {
        justify-content: flex-start;
        min-height: auto;
        padding: 5.5rem 1.25rem 1.5rem;
        order: 1;
    }

    body.page-home .hero-text > .hero-brand {
        font-size: clamp(2.4rem, 12vw, 3.25rem);
        margin-bottom: 0.75rem;
    }

    body.page-home .hero-text h1 {
        font-size: clamp(1.25rem, 5.5vw, 1.55rem);
        max-width: none;
    }

    body.page-home .hero-text > p:not(.hero-brand) {
        font-size: 0.98rem;
        max-width: none;
        margin-bottom: 1.25rem;
    }

    body.page-home .hero-image {
        order: 2;
        min-height: auto;
        max-height: none;
        justify-content: center;
        padding: 0 1.25rem 2rem;
        background: none;
    }

    body.page-home .hero-mockup {
        width: min(100%, 720px);
        max-width: 720px;
        margin-left: 0;
        top: 0;
    }

    body.page-home .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    body.page-home .hero-buttons .btn {
        width: 100%;
    }

    body.page-home .download-banner {
        grid-template-columns: 1fr;
        padding: 1.5rem 1.15rem;
        gap: 1.5rem;
    }

    body.page-home .download-phone {
        order: -1;
        max-width: none;
        width: 100%;
        justify-content: center;
    }

    body.page-home .download-phone img {
        max-width: min(46vw, 180px);
        max-height: 360px;
    }

    body.page-home .enterprise-points {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    body.page-home .enterprise-point,
    body.page-home .enterprise-point:first-child {
        border-left: none;
        border-top: 1px solid var(--home-line);
        padding: 1.25rem 0 0;
    }

    body.page-home .enterprise-point:first-child {
        border-top: none;
        padding-top: 0;
    }

    body.page-home .enterprise-actions {
        flex-direction: column;
        align-items: stretch;
    }

    body.page-home .enterprise-actions .btn {
        width: 100%;
        justify-content: center;
    }

    body.page-home .nav-links {
        background: rgba(14, 20, 16, 0.98);
        padding: 1.25rem 1.5rem 2rem;
        gap: 0;
    }

    body.page-home .nav-links a {
        color: rgba(244, 247, 243, 0.9) !important;
        padding: 0.85rem 0;
        min-height: 0;
        min-width: 0;
        display: block;
        width: 100%;
        border-bottom: 1px solid rgba(244, 247, 243, 0.08);
    }

    body.page-home .nav-links li:last-child a {
        border-bottom: none;
    }

    body.page-home #navbar:not(.scrolled) .mobile-menu-btn span,
    body.page-home #navbar.scrolled .mobile-menu-btn span {
        background: currentColor;
    }

    body.page-home #navbar:not(.scrolled) .mobile-menu-btn {
        color: #f4f7f3;
    }

    body.page-home #navbar.scrolled .mobile-menu-btn {
        color: var(--home-ink);
    }
}

@media (max-width: 900px) {
    body.page-home .audience-grid,
    body.page-home .howto-steps,
    body.page-home .insights-grid,
    body.page-home .shift-compare,
    body.page-home .demo-layout,
    body.page-home .module-row {
        grid-template-columns: 1fr;
    }

    body.page-home .audience-link,
    body.page-home .insight-card,
    body.page-home .howto-steps li {
        border-right: none;
        border-bottom: 1px solid var(--home-line);
        padding: 1.35rem 0;
    }

    body.page-home .audience-link:last-child,
    body.page-home .insight-card:last-child,
    body.page-home .howto-steps li:last-child {
        border-bottom: none;
    }

    body.page-home .shift-before {
        border-right: none;
        border-bottom: 1px solid var(--home-line);
        padding-right: 0;
        padding-bottom: 1.35rem;
    }

    body.page-home .shift-after {
        padding-left: 0;
        padding-top: 1.35rem;
    }

    body.page-home .module-row-reverse .module-copy,
    body.page-home .module-row-reverse .module-media {
        order: unset;
    }

    body.page-home .module-row {
        gap: 1.25rem;
        padding: 1.75rem 0;
    }

    body.page-home .module-media {
        min-height: 0;
        padding: 1.15rem;
    }

    body.page-home .module-media img {
        max-width: min(52vw, 200px);
        max-height: 400px;
    }

    body.page-home .module-row-reverse .module-media img,
    body.page-home .module-row:last-child .module-media img {
        max-width: min(100%, 100%);
        max-height: 220px;
        width: 100%;
        object-fit: contain;
    }
}

@media (max-width: 640px) {
    body.page-home {
        --section-padding: 56px;
    }

    body.page-home .container {
        padding: 0 1.1rem;
    }

    body.page-home .trust-strip {
        padding: 0.9rem 0;
    }

    body.page-home .trust-strip-inner {
        justify-content: flex-start;
        text-align: left;
        gap: 0.35rem 0.65rem;
        font-size: 0.78rem;
        line-height: 1.45;
    }

    body.page-home .trust-strip-inner span[aria-hidden="true"] {
        display: none;
    }

    body.page-home .trust-strip-inner > * {
        flex: 1 1 100%;
    }

    body.page-home .feature-card {
        grid-template-columns: 2.75rem 1fr;
        gap: 0.55rem 0.85rem;
        padding: 1.15rem 0;
    }

    body.page-home .feature-icon {
        font-size: 1.1rem;
    }

    body.page-home .feature-card h3 {
        font-size: 1.02rem;
    }

    body.page-home .feature-card p {
        font-size: 0.9rem;
    }

    body.page-home .pricing-actions {
        flex-direction: column;
        align-items: stretch;
    }

    body.page-home .pricing-actions .btn {
        width: 100%;
        justify-content: center;
    }

    body.page-home .faq-item summary {
        gap: 10px;
        padding: 1rem 0;
        font-size: 0.95rem;
        align-items: flex-start;
    }

    body.page-home .faq-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
        font-size: 0.85rem;
        margin-top: 2px;
    }

    body.page-home .faq-answer {
        padding-left: 0;
        padding-right: 0;
        font-size: 0.9rem;
    }

    body.page-home .demo-layout {
        gap: 1.5rem;
        padding-top: 1.5rem;
    }

    body.page-home .demo-form {
        padding: 1rem;
    }

    body.page-home .demo-form .form-row,
    body.page-home .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    body.page-home .demo-form .btn,
    body.page-home .contact-form .btn {
        width: 100%;
    }

    body.page-home .download-buttons {
        flex-direction: column;
        width: 100%;
    }

    body.page-home .download-btn {
        width: 100%;
    }

    body.page-home .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    body.page-home .footer-navigation {
        grid-column: auto;
        grid-row: auto;
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    body.page-home .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.85rem;
    }

    body.page-home .footer-badges {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    body.page-home section {
        padding: 3.25rem 0;
    }

    body.page-home .section-header {
        margin-bottom: 1.5rem;
    }

    body.page-home .section-header h2,
    body.page-home .download-info h2,
    body.page-home .enterprise-copy h2,
    body.page-home #contact-title,
    body.page-home .demo-intro h2,
    body.page-home .pricing-copy h2 {
        font-size: clamp(1.45rem, 7vw, 1.85rem);
    }
}

/* Keep hero phone visible in landscape — base CSS hides it */
@media (max-width: 896px) and (orientation: landscape) {
    body.page-home .hero-image {
        display: flex;
    }

    body.page-home .hero-mockup {
        width: min(100%, 500px);
    }

    body.page-home .hero-content {
        grid-template-columns: 1.2fr 0.8fr;
        align-items: center;
    }

    body.page-home .hero-text {
        padding: 4.5rem 1rem 1.5rem 1.25rem;
    }

    body.page-home .hero-image {
        padding: 4.5rem 1rem 1.5rem 0;
        order: 2;
    }
}

@media (prefers-reduced-motion: reduce) {
    body.page-home .hero-brand,
    body.page-home .hero-text h1,
    body.page-home .hero-text > p,
    body.page-home .hero-buttons,
    body.page-home .hero-mockup,
    body.page-home .reveal,
    html.js body.page-home .reveal.reveal-stagger .section-header,
    html.js body.page-home .reveal.reveal-stagger .shift-col,
    html.js body.page-home .reveal.reveal-stagger .feature-card,
    html.js body.page-home .reveal.reveal-stagger .howto-steps > li,
    html.js body.page-home .reveal.reveal-stagger .howto-num,
    html.js body.page-home .reveal.reveal-module .module-copy,
    html.js body.page-home .reveal.reveal-module .module-media,
    html.js body.page-home .reveal.reveal-stagger .audience-link,
    html.js body.page-home .reveal.reveal-stagger .enterprise-point,
    html.js body.page-home .reveal.reveal-stagger .insight-card,
    html.js body.page-home .section-header::after,
    html.js body.page-home .download-info::after,
    html.js body.page-home .enterprise-copy::after,
    html.js body.page-home .pricing-copy::after,
    html.js body.page-home .demo-intro::after {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    body.page-home .btn-primary:hover,
    body.page-home .btn-outline:hover,
    body.page-home .download-btn:hover {
        transform: none;
    }
}

/* ---------- Trust strip ---------- */
body.page-home .trust-strip {
    padding: 1.1rem 0;
    background: var(--home-paper-deep);
    border-bottom: 1px solid var(--home-line);
}

body.page-home .trust-strip-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem 0.85rem;
    align-items: center;
    justify-content: center;
    font-size: 0.88rem;
    color: var(--home-muted);
    text-align: center;
}

body.page-home .trust-strip a {
    color: var(--home-brand-deep);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

body.page-home .trust-strip a:hover {
    color: var(--home-ink);
}

/* ---------- Audience ---------- */
body.page-home .audience {
    background: var(--home-paper);
}

body.page-home .audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--home-line);
}

body.page-home .audience-link {
    display: block;
    padding: 1.75rem 1.5rem 1.75rem 0;
    border-right: 1px solid var(--home-line);
    color: inherit;
    transition: background 0.25s ease;
}

body.page-home .audience-link:last-child {
    border-right: none;
    padding-right: 0;
}

body.page-home .audience-link:first-child {
    padding-left: 0;
}

body.page-home .audience-link:not(:first-child) {
    padding-left: 2.25rem;
}

body.page-home .audience-link:hover {
    background: rgba(12, 122, 69, 0.04);
}

body.page-home .audience-kicker {
    display: block;
    font-family: var(--home-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--home-brand);
    margin-bottom: 0.75rem;
}

body.page-home .audience-link h3 {
    font-family: var(--home-display);
    font-size: 1.25rem;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

body.page-home .audience-link p {
    color: var(--home-muted);
    font-size: 0.98rem;
    margin-bottom: 1rem;
    max-width: 28ch;
}

body.page-home .audience-cta {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--home-brand-deep);
}

/* ---------- Shift (before/after) ---------- */
body.page-home .shift {
    background: var(--home-paper-deep);
}

body.page-home .shift-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid var(--home-line);
}

body.page-home .shift-col {
    padding: 1.75rem 0;
}

body.page-home .shift-before {
    padding-right: 2rem;
    border-right: 1px solid var(--home-line);
}

body.page-home .shift-after {
    padding-left: 2rem;
}

body.page-home .shift-col h3 {
    font-family: var(--home-display);
    font-size: 1.15rem;
    margin-bottom: 1rem;
}

body.page-home .shift-before h3 {
    color: var(--home-muted);
}

body.page-home .shift-after h3 {
    color: var(--home-brand-deep);
}

body.page-home .shift-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

body.page-home .shift-col li {
    position: relative;
    padding-left: 1.1rem;
    color: var(--home-ink-soft);
    font-size: 1rem;
    line-height: 1.45;
}

body.page-home .shift-col li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    background: var(--home-mist);
}

body.page-home .shift-after li::before {
    background: var(--home-brand);
}

/* ---------- Modules ---------- */
body.page-home .modules {
    background: var(--home-paper);
}

body.page-home .module-row {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
    padding: clamp(2rem, 4vw, 3rem) 0;
    border-top: 1px solid var(--home-line);
}

body.page-home .module-media {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--home-paper-deep);
    padding: clamp(1.5rem, 3vw, 2.25rem);
    border-radius: 4px;
    overflow: visible;
}

body.page-home .module-media img {
    width: auto;
    max-width: min(100%, 260px);
    height: auto;
    max-height: min(70vh, 580px);
    object-fit: contain;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(22, 32, 24, 0.14);
}

body.page-home .module-row-reverse .module-media img,
body.page-home .module-row:last-child .module-media img {
    max-width: min(100%, 440px);
    max-height: min(50vh, 340px);
    border-radius: 8px;
}

body.page-home .module-row-reverse .module-copy {
    order: 2;
}

body.page-home .module-row-reverse .module-media {
    order: 1;
}

body.page-home .module-copy h3 {
    font-family: var(--home-display);
    font-size: clamp(1.35rem, 2.4vw, 1.75rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
}

body.page-home .module-copy p {
    color: var(--home-muted);
    max-width: 38ch;
    margin-bottom: 1rem;
}

body.page-home .text-link {
    font-weight: 600;
    color: var(--home-brand-deep);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.25s ease, text-underline-offset 0.25s ease;
}

body.page-home .text-link:hover {
    color: var(--home-ink);
    text-underline-offset: 5px;
}

/* ---------- How-to ---------- */
body.page-home .howto {
    background: var(--home-paper-deep);
}

body.page-home .howto-steps {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--home-line);
    counter-reset: none;
}

body.page-home .howto-steps li {
    padding: 1.75rem 1.5rem 0 0;
    border-right: 1px solid var(--home-line);
}

body.page-home .howto-steps li:last-child {
    border-right: none;
    padding-right: 0;
}

body.page-home .howto-num {
    display: block;
    font-family: var(--home-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--home-brand);
    line-height: 1;
    margin-bottom: 0.85rem;
}

body.page-home .howto-steps h3 {
    font-family: var(--home-display);
    font-size: 1.15rem;
    margin-bottom: 0.45rem;
}

body.page-home .howto-steps p {
    color: var(--home-muted);
    font-size: 0.98rem;
}

/* ---------- Pricing teaser ---------- */
body.page-home .pricing-teaser {
    background: var(--home-paper);
    padding-bottom: clamp(2rem, 5vw, 3rem);
}

body.page-home .pricing-panel {
    border-top: 1px solid var(--home-line);
    padding-top: clamp(2rem, 5vw, 3rem);
}

body.page-home .pricing-copy {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 1.5rem 2rem;
    padding-bottom: clamp(1.75rem, 3vw, 2.5rem);
}

body.page-home .pricing-intro h2 {
    font-family: var(--home-display);
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    letter-spacing: -0.035em;
    margin-bottom: 0.75rem;
}

body.page-home .pricing-intro > p {
    color: var(--home-muted);
    max-width: 42ch;
    margin-bottom: 1.25rem;
}

body.page-home .pricing-points {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin-bottom: 1.5rem;
}

body.page-home .pricing-points li {
    padding-left: 1.1rem;
    position: relative;
    color: var(--home-ink-soft);
}

body.page-home .pricing-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    background: var(--home-brand);
}

body.page-home .pricing-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

body.page-home .pricing-copy::after {
    display: none;
}

/* ---------- Insights / blog ---------- */
body.page-home .insights {
    background: var(--home-paper);
}

body.page-home .insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--home-line);
}

body.page-home .insight-card {
    display: block;
    padding: 1.75rem 1.5rem 1.75rem 0;
    border-right: 1px solid var(--home-line);
    color: inherit;
    transition: background 0.25s ease;
}

body.page-home .insight-card:last-child {
    border-right: none;
    padding-right: 0;
}

body.page-home .insight-card:hover {
    background: rgba(12, 122, 69, 0.04);
}

body.page-home .insight-tag {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--home-brand);
    margin-bottom: 0.75rem;
}

body.page-home .insight-card h3 {
    font-family: var(--home-display);
    font-size: 1.15rem;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    line-height: 1.25;
}

body.page-home .insight-card p {
    color: var(--home-muted);
    font-size: 0.95rem;
}

body.page-home .insights-more {
    margin-top: 1.5rem;
}

/* ---------- Demo form ---------- */
body.page-home .contact {
    background: var(--home-paper-deep);
}

body.page-home .demo-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(2rem, 5vw, 3.5rem);
    align-items: start;
    border-top: 1px solid var(--home-line);
    padding-top: clamp(2rem, 4vw, 3rem);
}

body.page-home .demo-intro h2 {
    font-family: var(--home-display);
    font-size: clamp(1.85rem, 4vw, 2.5rem);
    letter-spacing: -0.035em;
    margin-bottom: 0.75rem;
}

body.page-home .demo-intro > p {
    color: var(--home-muted);
    margin-bottom: 1.25rem;
    max-width: 36ch;
}

body.page-home .demo-intro a {
    color: var(--home-brand-deep);
    font-weight: 600;
}

body.page-home .demo-assurances {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

body.page-home .demo-assurances li {
    color: var(--home-ink-soft);
    font-size: 0.95rem;
    padding-left: 1.1rem;
    position: relative;
}

body.page-home .demo-assurances li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--home-brand-deep);
    font-size: 0.85rem;
    font-weight: 700;
}

body.page-home .demo-form {
    background: #fff;
    border: 1px solid var(--home-line);
    padding: clamp(1.25rem, 3vw, 1.75rem);
}

body.page-home .demo-form select {
    width: 100%;
    padding: 16px 14px;
    border: 1px solid var(--home-line);
    border-radius: 3px;
    background: #fff;
    color: var(--home-ink);
    font-family: inherit;
    font-size: 1rem;
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--home-muted) 50%),
        linear-gradient(135deg, var(--home-muted) 50%, transparent 50%);
    background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 12px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

body.page-home .demo-form .form-group:has(select) label,
body.page-home .demo-form .select-label {
    position: static;
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--home-muted);
    transform: none;
    pointer-events: auto;
}

body.page-home .demo-form .form-group:has(select) {
    display: flex;
    flex-direction: column;
}

/* ============================================================
   Mobile overrides — MUST stay at end of file.
   Earlier @media blocks are overridden by component rules below
   them; these final rules restore the mobile layout.
   ============================================================ */

@media (max-width: 992px) {
    body.page-home .hero {
        min-height: auto;
    }

    body.page-home .hero-content {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    body.page-home .hero-text {
        justify-content: flex-start;
        min-height: auto;
        padding: 5.25rem 1.25rem 1.25rem;
        order: 1;
    }

    body.page-home .hero-text > .hero-brand {
        font-size: clamp(2.35rem, 11vw, 3.1rem);
        margin-bottom: 0.65rem;
    }

    body.page-home .hero-text h1 {
        font-size: clamp(1.2rem, 5.2vw, 1.5rem);
        max-width: none;
    }

    body.page-home .hero-text > p:not(.hero-brand) {
        font-size: 0.95rem;
        max-width: none;
        margin-bottom: 1.1rem;
    }

    body.page-home .hero-image {
        order: 2;
        min-height: auto;
        max-height: none;
        padding: 0 1.25rem 1.75rem;
        background: none;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    body.page-home .hero-mockup {
        width: min(100%, 720px);
    }

    body.page-home .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    body.page-home .hero-buttons .btn {
        width: 100%;
    }

    body.page-home .download-banner {
        grid-template-columns: 1fr;
        padding: 1.5rem 1.15rem;
        gap: 1.5rem;
    }

    body.page-home .download-phone {
        order: -1;
        max-width: none;
        width: 100%;
        justify-content: center;
    }

    body.page-home .download-phone img {
        max-width: min(46vw, 180px);
        max-height: 360px;
    }

    body.page-home .enterprise-points {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    body.page-home .enterprise-point,
    body.page-home .enterprise-point:first-child {
        border-left: none;
        border-top: 1px solid var(--home-line);
        padding: 1.25rem 0 0;
    }

    body.page-home .enterprise-point:first-child {
        border-top: none;
        padding-top: 0;
    }

    body.page-home .enterprise-actions {
        flex-direction: column;
        align-items: stretch;
    }

    body.page-home .enterprise-actions .btn {
        width: 100%;
        justify-content: center;
    }

    /* Full-screen mobile menu overlay */
    body.page-home .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: auto;
        min-height: calc(100svh - 70px);
        max-height: calc(100svh - 70px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        z-index: 1002;
        background: #0e1410;
        padding: 0.75rem 1.35rem 2rem;
        gap: 0;
        flex-direction: column;
        align-items: stretch;
        box-shadow: none;
        clip-path: none;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-6px);
        transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    }

    body.page-home .nav-links.active {
        clip-path: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    body.page-home .nav-links a {
        color: rgba(244, 247, 243, 0.92) !important;
        padding: 0.95rem 0;
        min-height: 0;
        min-width: 0;
        display: block;
        width: 100%;
        border-bottom: 1px solid rgba(244, 247, 243, 0.1);
        font-size: 1.05rem;
    }

    body.page-home .nav-links a::after {
        display: none;
    }

    body.page-home .nav-links li:last-child a {
        border-bottom: none;
    }

    body.page-home #navbar:not(.scrolled) .mobile-menu-btn span,
    body.page-home #navbar.scrolled .mobile-menu-btn span {
        background: currentColor;
    }

    body.page-home #navbar:not(.scrolled) .mobile-menu-btn {
        color: #f4f7f3;
    }

    body.page-home #navbar.scrolled .mobile-menu-btn {
        color: var(--home-ink);
    }

    body.page-home .mobile-menu-btn {
        z-index: 1003;
    }
}

@media (max-width: 900px) {
    body.page-home .audience-grid,
    body.page-home .howto-steps,
    body.page-home .insights-grid,
    body.page-home .shift-compare,
    body.page-home .demo-layout,
    body.page-home .module-row {
        grid-template-columns: 1fr;
    }

    body.page-home .audience-link,
    body.page-home .insight-card,
    body.page-home .howto-steps li {
        border-right: none;
        border-bottom: 1px solid var(--home-line);
        padding: 1.35rem 0;
    }

    body.page-home .audience-link:last-child,
    body.page-home .insight-card:last-child,
    body.page-home .howto-steps li:last-child {
        border-bottom: none;
    }

    body.page-home .audience-link:first-child,
    body.page-home .audience-link {
        padding-left: 0;
        padding-right: 0;
    }

    body.page-home .shift-before {
        border-right: none;
        border-bottom: 1px solid var(--home-line);
        padding-right: 0;
        padding-bottom: 1.35rem;
    }

    body.page-home .shift-after {
        padding-left: 0;
        padding-top: 1.35rem;
    }

    body.page-home .module-row-reverse .module-copy,
    body.page-home .module-row-reverse .module-media {
        order: unset;
    }

    body.page-home .module-row {
        gap: 1.25rem;
        padding: 1.75rem 0;
    }

    body.page-home .module-media {
        min-height: 0;
        padding: 1.15rem;
    }

    body.page-home .module-media img {
        max-width: min(52vw, 200px);
        max-height: 400px;
    }

    body.page-home .module-row-reverse .module-media img,
    body.page-home .module-row:last-child .module-media img {
        max-width: 100%;
        max-height: 220px;
        width: 100%;
        object-fit: contain;
    }
}

@media (max-width: 640px) {
    body.page-home {
        --section-padding: 56px;
    }

    body.page-home .container {
        padding: 0 1.1rem;
    }

    body.page-home .trust-strip {
        padding: 0.9rem 0;
    }

    body.page-home .trust-strip-inner {
        justify-content: flex-start;
        text-align: left;
        gap: 0.35rem 0.65rem;
        font-size: 0.78rem;
        line-height: 1.45;
    }

    body.page-home .trust-strip-inner span[aria-hidden="true"] {
        display: none;
    }

    body.page-home .trust-strip-inner > * {
        flex: 1 1 100%;
    }

    body.page-home .feature-card {
        grid-template-columns: 2.75rem 1fr;
        gap: 0.55rem 0.85rem;
        padding: 1.15rem 0;
    }

    body.page-home .feature-icon {
        font-size: 1.1rem;
    }

    body.page-home .feature-card h3 {
        font-size: 1.02rem;
    }

    body.page-home .feature-card p {
        font-size: 0.9rem;
    }

    body.page-home .pricing-actions {
        flex-direction: column;
        align-items: stretch;
    }

    body.page-home .pricing-actions .btn {
        width: 100%;
        justify-content: center;
    }

    body.page-home .faq-item summary {
        gap: 10px;
        padding: 1rem 0;
        font-size: 0.95rem;
        align-items: flex-start;
    }

    body.page-home .faq-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
        font-size: 0.85rem;
        margin-top: 2px;
    }

    body.page-home .faq-answer {
        padding-left: 0;
        padding-right: 0;
        font-size: 0.9rem;
    }

    body.page-home .demo-layout {
        gap: 1.5rem;
        padding-top: 1.5rem;
    }

    body.page-home .demo-form {
        padding: 1rem;
    }

    body.page-home .demo-form .form-row,
    body.page-home .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    body.page-home .demo-form .btn,
    body.page-home .contact-form .btn {
        width: 100%;
    }

    body.page-home .download-buttons {
        flex-direction: column;
        width: 100%;
    }

    body.page-home .download-btn {
        width: 100%;
    }

    body.page-home .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    body.page-home .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.85rem;
    }

    body.page-home .footer-badges {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    body.page-home section {
        padding: 3.25rem 0;
    }

    body.page-home .section-header {
        margin-bottom: 1.5rem;
    }

    body.page-home .section-header h2,
    body.page-home .download-info h2,
    body.page-home .enterprise-copy h2,
    body.page-home #contact-title,
    body.page-home .demo-intro h2,
    body.page-home .pricing-copy h2 {
        font-size: clamp(1.45rem, 7vw, 1.85rem);
    }
}

/* Phone portrait hero: the product visual is a primary proof point, not a
   below-the-fold decoration. Keep it above the grid canvas and give it a
   deliberate, thumb-scale stage. */
@media (max-width: 767px) {
    body.page-home .hero-image {
        min-height: 680px;
        padding: 0 0 48px;
        align-items: flex-end;
        justify-content: center;
        isolation: isolate;
        z-index: 2;
    }

    body.page-home .hero-mockup {
        width: min(80.6vw, 338px);
        max-width: none;
        margin-left: 0;
        top: 0;
        z-index: 2;
    }
}

@media (max-width: 896px) and (orientation: landscape) {
    body.page-home .hero-image {
        display: flex;
        justify-content: flex-start;
        padding: 4.5rem 1rem 0 0;
        order: 2;
        background: transparent;
    }

    body.page-home .hero-mockup {
        width: min(100%, 680px);
        max-width: none;
        margin-left: -8%;
    }

    body.page-home .hero-content {
        grid-template-columns: 1.2fr 0.8fr;
        align-items: center;
    }

    body.page-home .hero-text {
        padding: 4.5rem 1rem 1.5rem 1.25rem;
    }
}

/* ---------- Why (trust grid) ---------- */
body.page-home .why {
    background: var(--home-paper-deep);
}

body.page-home .why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--home-line);
}

body.page-home .why-point {
    padding: 1.75rem 1.5rem 1.75rem 0;
    border-left: 1px solid var(--home-line);
    padding-left: 1.5rem;
}

body.page-home .why-point:first-child {
    border-left: none;
    padding-left: 0;
}

body.page-home .why-point h3 {
    font-family: var(--home-display);
    font-size: 1.1rem;
    letter-spacing: -0.01em;
    margin-bottom: 0.5rem;
}

body.page-home .why-point p {
    color: var(--home-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 900px) {
    body.page-home .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    body.page-home .why-point:nth-child(odd) {
        border-left: none;
        padding-left: 0;
    }
}

@media (max-width: 560px) {
    body.page-home .why-grid {
        grid-template-columns: 1fr;
    }

    body.page-home .why-point {
        border-left: none !important;
        padding-left: 0 !important;
        border-top: 1px solid var(--home-line);
        padding-top: 1.5rem;
    }

    body.page-home .why-point:first-child {
        border-top: none;
        padding-top: 0;
    }
}

/* ---------- ROI calculator ---------- */
body.page-home .roi {
    background: var(--home-paper);
    border-top: 1px solid var(--home-line);
    border-bottom: 1px solid var(--home-line);
}

body.page-home .roi-panel {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
    padding: clamp(2.5rem, 5vw, 3.5rem) 0;
}

body.page-home .roi-copy h2 {
    font-family: var(--home-display);
    font-size: clamp(1.75rem, 3.6vw, 2.5rem);
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 0.75rem;
}

body.page-home .roi-copy > p {
    color: var(--home-muted);
    max-width: 40ch;
    margin-bottom: 1.5rem;
}

body.page-home .roi-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

body.page-home .roi-field {
    min-width: 160px;
}

body.page-home .roi-field--wide {
    grid-column: 1 / -1;
}

body.page-home .roi-choice {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 1rem;
    margin: 0;
    padding: 0;
    border: 0;
}

body.page-home .roi-choice legend {
    width: 100%;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--home-ink-soft);
}

body.page-home .roi-choice label {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    margin: 0;
    color: var(--home-ink);
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
}

body.page-home .roi-choice input[type="radio"] {
    width: 1rem;
    min-width: 1rem;
    height: 1rem;
    margin: 0;
    accent-color: var(--home-brand-deep);
}

body.page-home .roi-choice span {
    color: var(--home-brand-deep);
    font-size: 0.72rem;
    font-weight: 600;
}

body.page-home .roi-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--home-ink-soft);
    margin-bottom: 0.5rem;
}

body.page-home .roi-form input {
    width: 100%;
    max-width: 220px;
    padding: 0.75rem 1rem;
    border: 1px solid var(--home-line);
    border-radius: var(--radius-md);
    background: #fff;
    font-family: var(--home-display);
    font-size: 1.15rem;
    color: var(--home-ink);
}

body.page-home .roi-form input:focus {
    outline: 2px solid var(--home-brand);
    outline-offset: 1px;
}

body.page-home .roi-range-label {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
}

body.page-home .roi-range-label output {
    color: var(--home-brand-deep);
    font-family: var(--home-display);
    font-weight: 600;
}

body.page-home .roi-form input[type="range"] {
    display: block;
    max-width: none;
    min-height: 2rem;
    padding: 0;
    accent-color: var(--home-brand-deep);
}

body.page-home .roi-field-hint {
    margin: 0.45rem 0 0;
    color: var(--home-muted);
    font-size: 0.76rem;
    line-height: 1.45;
}

body.page-home .roi-result {
    background: #fff;
    border: 1px solid var(--home-line);
    border-radius: var(--radius-lg);
    padding: clamp(1.5rem, 3vw, 2rem);
}

body.page-home .roi-headline {
    display: flex;
    flex-direction: column;
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid var(--home-line);
}

body.page-home .roi-result-kicker {
    color: var(--home-brand-deep);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

body.page-home .roi-headline-value {
    font-family: var(--home-display);
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 600;
    color: var(--home-brand-deep);
    line-height: 1;
    letter-spacing: -0.02em;
}

body.page-home .roi-currency {
    font-size: 0.55em;
    font-weight: 500;
    margin-right: 0.15rem;
    vertical-align: 0.15em;
}

body.page-home .roi-headline-unit {
    color: var(--home-ink-soft);
    font-size: 0.45em;
    font-weight: 500;
    letter-spacing: 0;
}

body.page-home .roi-headline-label {
    font-size: 0.95rem;
    color: var(--home-muted);
    margin-top: 0.5rem;
}

body.page-home .roi-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-bottom: 1rem;
}

body.page-home .roi-stat {
    display: flex;
    flex-direction: column;
}

body.page-home .roi-stat-value {
    font-family: var(--home-display);
    font-size: clamp(1.4rem, 2.4vw, 1.75rem);
    font-weight: 600;
    color: var(--home-ink);
    line-height: 1;
}

body.page-home .roi-stat-label {
    font-size: 0.8rem;
    color: var(--home-muted);
    margin-top: 0.4rem;
}

body.page-home .roi-methodology {
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
}

body.page-home .roi-methodology summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--home-brand-deep);
    list-style-position: outside;
}

body.page-home .roi-methodology summary:focus-visible {
    outline: 2px solid var(--home-brand);
    outline-offset: 2px;
}

body.page-home .roi-methodology p {
    margin-top: 0.5rem;
    color: var(--home-muted);
    line-height: 1.55;
}

body.page-home .roi-disclaimer {
    font-size: 0.8rem;
    color: var(--home-muted);
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

@media (max-width: 900px) {
    body.page-home .roi-panel {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 540px) {
    body.page-home .roi-form {
        grid-template-columns: 1fr;
    }

    body.page-home .roi-field--wide {
        grid-column: auto;
    }

    body.page-home .roi-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* ---------- Pricing comparison table ---------- */
body.page-home .pricing-compare {
    border-top: 1px solid var(--home-line);
    padding: clamp(2rem, 4vw, 3.25rem) 0 0;
    margin-top: clamp(2.5rem, 5vw, 4rem);
}

body.page-home .pricing-compare-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1.5rem 2rem;
    margin-bottom: 1.5rem;
}

body.page-home .pricing-compare-heading h2 {
    margin: 0;
    color: var(--home-ink);
    font-family: var(--home-display);
    font-size: clamp(1.75rem, 3.5vw, 2.6rem);
    line-height: 1.08;
}

body.page-home .pricing-compare-intro {
    margin: 0.5rem 0 0;
    color: var(--home-ink-soft);
    font-family: var(--home-display);
    font-size: clamp(1.15rem, 2vw, 1.38rem);
    font-weight: 600;
}

body.page-home .pricing-compare-description {
    max-width: 42rem;
    margin: 0.45rem 0 0;
    color: var(--home-muted);
}

body.page-home .pricing-table-wrap {
    overflow-x: auto;
    border-bottom: 1px solid var(--home-line);
}

body.page-home .compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 480px;
    border-top: 1px solid var(--home-line);
}

body.page-home .compare-table--plans {
    min-width: 720px;
}

body.page-home .compare-table th,
body.page-home .compare-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid var(--home-line);
    font-size: 0.92rem;
}

body.page-home .compare-table th:first-child,
body.page-home .compare-table td:first-child {
    width: 31%;
    text-align: left;
}

body.page-home .compare-table th:not(:first-child),
body.page-home .compare-table td:not(:first-child) {
    width: 23%;
}

body.page-home .compare-table thead th {
    font-family: var(--home-display);
    font-weight: 600;
    color: var(--home-ink);
    vertical-align: bottom;
}

body.page-home .compare-table thead th span {
    display: block;
    margin-top: 0.25rem;
    color: var(--home-muted);
    font-family: var(--home-body);
    font-size: 0.7rem;
    font-weight: 500;
    line-height: 1.35;
}

body.page-home .compare-table .is-recommended {
    background: color-mix(in srgb, var(--home-brand) 10%, transparent);
}

body.page-home .compare-table thead .is-recommended {
    color: var(--home-brand-deep);
}

body.page-home .compare-table .plan-choice {
    display: inline-flex;
    margin-bottom: 0.45rem;
    padding: 0.2rem 0.45rem;
    border-radius: 999px;
    background: var(--home-brand);
    color: #fff;
    font-family: var(--home-body);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

body.page-home .compare-table th[scope="row"] {
    text-align: left;
    font-weight: 500;
    color: var(--home-ink-soft);
}

body.page-home .compare-table td .fa-check {
    color: var(--home-brand);
}

body.page-home .compare-table td .fa-xmark {
    color: var(--home-muted);
    opacity: 0.55;
}

body.page-home .compare-table td .fa-minus {
    color: var(--home-muted);
    opacity: 0.7;
}

body.page-home .compare-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--home-muted);
}

body.page-home .comparison-lenses {
    margin-top: clamp(1.5rem, 3vw, 2.5rem);
    padding-top: clamp(1.5rem, 3vw, 2.5rem);
    border-top: 1px solid var(--home-line);
}

body.page-home .comparison-lenses-heading {
    max-width: 42rem;
    margin-bottom: 1.5rem;
}

body.page-home .comparison-lenses-heading h3 {
    margin: 0.7rem 0 0.6rem;
    color: var(--home-ink);
    font-family: var(--home-display);
    font-size: clamp(1.55rem, 3vw, 2.15rem);
    letter-spacing: -0.03em;
}

body.page-home .comparison-lenses-heading p,
body.page-home .comparison-lenses-note {
    color: var(--home-muted);
}

body.page-home .comparison-lenses-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

body.page-home .comparison-lens {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: clamp(1.25rem, 2.5vw, 1.75rem);
    border: 1px solid var(--home-line);
    border-radius: var(--radius-lg);
}

body.page-home .comparison-lens--muted {
    background: #fff;
}

body.page-home .comparison-lens--cardak {
    position: relative;
    overflow: hidden;
    background: var(--home-ink);
    border-color: var(--home-ink);
    color: rgba(255, 255, 255, 0.82);
}

body.page-home .comparison-lens--cardak::after {
    content: "";
    position: absolute;
    top: -70px;
    right: -60px;
    width: 180px;
    height: 180px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
}

body.page-home .comparison-lens-eyebrow {
    position: relative;
    z-index: 1;
    align-self: flex-start;
    margin-bottom: 1rem;
    padding: 0.3rem 0.6rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    color: var(--home-brand);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

body.page-home .comparison-lens-icon {
    display: grid;
    place-items: center;
    width: 2.75rem;
    height: 2.75rem;
    margin-bottom: 1.25rem;
    border-radius: 0.75rem;
    background: color-mix(in srgb, var(--home-brand) 14%, transparent);
    color: var(--home-brand-deep);
    font-size: 1.15rem;
}

body.page-home .comparison-lens--cardak .comparison-lens-icon {
    position: relative;
    z-index: 1;
    background: var(--home-brand);
    color: var(--home-ink);
}

body.page-home .comparison-lens h4 {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--home-ink);
    font-family: var(--home-display);
    font-size: 1.15rem;
}

body.page-home .comparison-lens--cardak h4 {
    color: #fff;
}

body.page-home .comparison-lens-summary {
    position: relative;
    z-index: 1;
    margin: 0.65rem 0 1rem;
    color: var(--home-muted);
    font-size: 0.9rem;
    line-height: 1.55;
}

body.page-home .comparison-lens--cardak .comparison-lens-summary {
    color: rgba(255, 255, 255, 0.7);
}

body.page-home .comparison-lens ul {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0.7rem;
    margin: auto 0 0;
    padding: 0;
    list-style: none;
}

body.page-home .comparison-lens li {
    display: flex;
    gap: 0.55rem;
    color: var(--home-ink-soft);
    font-size: 0.84rem;
    line-height: 1.45;
}

body.page-home .comparison-lens li::before {
    content: "•";
    color: var(--home-brand-deep);
    font-weight: 700;
}

body.page-home .comparison-lens--cardak li {
    color: rgba(255, 255, 255, 0.8);
}

body.page-home .comparison-lens--cardak li::before {
    color: var(--home-brand);
}

body.page-home .comparison-lenses-note {
    margin: 1rem 0 0;
    font-size: 0.78rem;
}

@media (max-width: 900px) {
    body.page-home .comparison-lenses-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- Sticky mobile CTA ---------- */
body.page-home .sticky-cta {
    display: none;
    position: fixed;
    inset: auto 0 0 0;
    z-index: 60;
    padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom));
    background: #fff;
    box-shadow: 0 -6px 20px rgba(22, 32, 24, 0.14);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

body.page-home .sticky-cta.is-visible {
    transform: translateY(0);
}

body.page-home .sticky-cta .btn {
    display: flex;
    width: 100%;
    justify-content: center;
}

@media (max-width: 640px) {
    body.page-home .sticky-cta {
        display: block;
    }

    /* Clear the fixed sticky CTA bar so the back-to-top button doesn't overlap it. */
    body.page-home .back-to-top {
        bottom: 84px !important;
    }
}

/* ---------- Video demo ---------- */
body.page-home .video-demo {
    background: var(--home-paper-deep);
}

body.page-home .video-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #0a1410;
    box-shadow: var(--shadow-lg);
}

body.page-home .video-play {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: none;
    cursor: pointer;
    background: none;
}

body.page-home .video-play img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.72);
    transition: filter 0.25s ease;
}

body.page-home .video-play:hover img {
    filter: brightness(0.6);
}

body.page-home .video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--home-brand);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    transition: transform 0.25s ease, background 0.25s ease;
}

body.page-home .video-play:hover .video-play-icon {
    transform: translate(-50%, -50%) scale(1.08);
    background: var(--home-brand-deep);
}

body.page-home .video-frame-iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ---------- Cal.com booking panel ---------- */
body.page-home .cal-panel {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: clamp(2rem, 5vw, 3.5rem);
    align-items: center;
    padding-top: clamp(1rem, 3vw, 1.5rem);
}

body.page-home .cal-panel-intro {
    padding: clamp(1.5rem, 3vw, 2.25rem);
    border: 1px solid var(--home-line);
    border-radius: var(--radius-lg);
    background: color-mix(in srgb, var(--home-brand) 5%, #fff);
}

body.page-home .cal-panel-intro h2 {
    font-family: var(--home-display);
    font-size: clamp(1.85rem, 4vw, 2.5rem);
    letter-spacing: -0.035em;
    margin-bottom: 0.75rem;
}

body.page-home .cal-panel-intro > p {
    color: var(--home-muted);
    max-width: 34ch;
}

body.page-home .cal-benefits {
    display: grid;
    gap: 0.75rem;
    margin: 1.4rem 0 0;
    padding: 1.2rem 0 0;
    border-top: 1px solid var(--home-line);
    list-style: none;
}

body.page-home .cal-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    color: var(--home-ink-soft);
    font-size: 0.9rem;
    line-height: 1.45;
}

body.page-home .cal-benefits i {
    margin-top: 0.2rem;
    color: var(--home-brand-deep);
    font-size: 0.8rem;
}

body.page-home .compare-table .plan-name {
    display: block;
    color: var(--home-ink);
    font-family: var(--home-display);
    font-size: 1.1rem;
    font-weight: 700;
}

body.page-home .roi-ramp {
    display: grid;
    gap: 0.35rem;
    margin: 1.15rem 0 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--home-line);
    color: var(--home-muted);
    font-size: 0.8rem;
    line-height: 1.45;
}

body.page-home .roi-ramp strong {
    color: var(--home-ink-soft);
    font-family: var(--home-display);
    font-size: 0.95rem;
    font-weight: 600;
}

body.page-home .cal-prefill {
    display: grid;
    gap: 0.85rem;
    margin-top: 1.5rem;
    padding-top: 1.35rem;
    border-top: 1px solid var(--home-line);
}

body.page-home .cal-prefill-field {
    display: grid;
    gap: 0.4rem;
}

body.page-home .cal-prefill label {
    color: var(--home-muted);
    font-size: 0.8rem;
    font-weight: 600;
}

body.page-home .cal-prefill :is(select, input) {
    width: 100%;
    min-height: 46px;
    padding: 11px 12px;
    border: 1px solid var(--home-line);
    border-radius: 6px;
    background: #fff;
    color: var(--home-ink);
    font: inherit;
}

body.page-home .cal-prefill :is(select, input):focus {
    outline: 0;
    border-color: var(--home-brand);
    box-shadow: 0 0 0 3px rgba(12, 122, 69, .12);
}

body.page-home .cal-prefill > p {
    margin: 0;
    color: var(--home-muted);
    font-size: 0.8rem;
}

body.page-home .cal-embed {
    border: 1px solid var(--home-line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #fff;
    box-shadow: 0 16px 40px rgba(21, 34, 24, 0.08);
}

body.page-home .cal-embed iframe {
    display: block;
    width: 100%;
    height: 630px;
    border: 0;
}

body.page-home .contact-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: clamp(1.75rem, 3vw, 2.5rem) 0;
    color: var(--home-muted);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
}


body.menu-open {
    overflow: hidden;
}

body.page-home .contact-divider::before,
body.page-home .contact-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--home-line);
}

body.page-home .form-consent,
body.page-home .newsletter-consent {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    color: var(--home-muted);
    font-size: 0.78rem;
    line-height: 1.45;
}

body.page-home .form-consent {
    margin: -0.25rem 0 1.1rem;
}

body.page-home .newsletter-consent {
    margin-top: 0.65rem;
}

body.page-home .form-consent input,
body.page-home .newsletter-consent input {
    flex: 0 0 auto;
    width: 1rem;
    height: 1rem;
    margin: 0.15rem 0 0;
    accent-color: var(--home-brand-deep);
}

body.page-home .form-consent a,
body.page-home .newsletter-consent a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

body.page-home .footer-contact {
    margin-top: 6px;
    color: var(--text-muted);
    font-size: 0.82rem;
}

body.page-home .footer-contact a {
    color: var(--text-muted);
}

body.page-home .footer-coming-soon {
    color: rgba(244, 247, 243, 0.52);
    font-size: 0.9rem;
}

@media (max-width: 900px) {
    body.page-home .cal-panel {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding-top: 0;
    }

    body.page-home .cal-panel-intro {
        padding: 1.25rem;
    }

    body.page-home .cal-panel-intro h2 {
        font-size: clamp(1.55rem, 7vw, 2rem);
    }

    body.page-home .cal-benefits {
        gap: 0.6rem;
        margin-top: 1rem;
        padding-top: 1rem;
    }

    body.page-home .cal-embed iframe {
        height: 500px;
    }
}

@media (max-width: 640px) {
    body.page-home .pricing-compare-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    body.page-home .pricing-compare-heading .btn {
        width: 100%;
        justify-content: center;
    }

    body.page-home .pricing-copy {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    body.page-home .footer-navigation {
        grid-column: auto;
        grid-row: auto;
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    body.page-home .footer-newsletter {
        padding-left: 0;
        border-left: 0;
    }

    body.page-home .footer-badges {
        gap: 0.75rem;
    }

    body.page-home .footer-badges span,
    body.page-home .footer-badges span:first-child {
        padding: 0;
        border-left: 0;
    }
}

/* ---------- Late-page rhythm and FAQ readability ---------- */
body.page-home .download {
    background: linear-gradient(180deg, var(--home-paper-deep), var(--home-mist));
}

body.page-home .faq {
    background: var(--home-paper);
}

body.page-home .contact {
    background: linear-gradient(180deg, var(--home-paper-deep), #f4f6f2);
}

body.page-home .faq-answer {
    display: grid;
    gap: 0.9rem;
    padding-bottom: 1.4rem;
    max-width: 76ch;
    line-height: 1.65;
}

body.page-home .faq-answer p {
    margin: 0;
}

body.page-home .faq-answer p:first-child {
    color: var(--home-ink-soft);
    font-weight: 400;
}

body.page-home .faq-answer strong {
    color: var(--home-ink);
    font-weight: 700;
}

body.page-home .faq-points {
    display: grid;
    gap: 0.65rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

body.page-home .faq-points li {
    position: relative;
    padding-left: 1.1rem;
}

body.page-home .faq-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 0.38rem;
    height: 0.38rem;
    border-radius: 50%;
    background: var(--home-brand);
}

@media (max-width: 900px) {
    body.page-home .audience-link:not(:first-child) {
        padding-left: 0;
    }
}

/* Homepage FAQ shares the softer site-wide accordion treatment. */
body.page-home .faq-grid {
    gap: 12px;
    max-width: 900px;
}

body.page-home .faq-item {
    border: 1px solid var(--home-line);
    border-radius: 16px;
    background: rgba(255, 255, 255, .7);
    overflow: hidden;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

body.page-home .faq-item:hover,
body.page-home .faq-item[open] {
    border-color: rgba(12, 122, 69, .3);
    box-shadow: 0 10px 26px rgba(22, 32, 24, .07);
}

body.page-home .faq-item summary {
    min-height: 68px;
    padding: 18px 22px;
}

body.page-home .faq-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
}

body.page-home .faq-answer {
    padding: 0 22px 20px 74px;
}

@media (max-width: 700px) {
    body.page-home .faq-item { border-radius: 14px; }
    body.page-home .faq-item summary { min-height: 64px; padding: 16px 18px; }
    body.page-home .faq-answer { padding: 0 18px 18px; }
}

body.page-home .footer-home-shell .newsletter-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: stretch;
    padding: 0;
    border: 0;
    background: transparent;
}

body.page-home .footer-home-shell .newsletter-consent {
    grid-column: 1 / -1;
    justify-self: start;
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    width: 100%;
    margin: 20px 0 0;
    padding-left: 4px;
    text-align: left;
}

body.page-home .footer-home-shell .newsletter-consent span {
    flex: 1 1 auto;
    text-align: left;
}

/* Homepage uses the same centered, understated FAQ language. */
body.page-home .faq .section-header {
    margin-inline: auto;
    text-align: center;
}
body.page-home .faq .section-badge { margin-inline: auto; }
body.page-home .faq .section-header p { margin-inline: auto; }

/* Keep every short-form field and floating label on one clean surface. */
body.page-home .demo-form :is(input:not([type="checkbox"]), textarea, select) {
    background-color: #fff !important;
    box-shadow: none;
}

body.page-home .demo-form .form-group > label:not(.select-label) {
    background: #fff !important;
}

/* Use one label pattern so paired fields share the same control baseline. */
body.page-home .demo-form .form-group {
    display: flex;
    flex-direction: column;
}

body.page-home .demo-form .form-group > label {
    position: static !important;
    order: -1;
    display: block;
    margin: 0 0 .45rem !important;
    padding: 0 !important;
    background: transparent !important;
    color: var(--home-muted) !important;
    font-size: .8rem !important;
    font-weight: 600;
    line-height: 1.35;
    transform: none !important;
    pointer-events: auto;
}
body.page-home .faq-grid { max-width: 760px; gap: 0; }
body.page-home .faq-item {
    border: 0;
    border-bottom: 1px solid var(--home-line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}
body.page-home .faq-item:hover,
body.page-home .faq-item[open] { border-color: var(--home-line); box-shadow: none; }
body.page-home .faq-item summary { min-height: 68px; padding: 19px 4px; gap: 0; text-align: left; }
body.page-home .faq-icon { display: none; }
body.page-home .faq-answer { max-width: 72ch; padding: 0 4px 22px; text-align: left; }
@media (max-width: 700px) {
    body.page-home .faq-item summary { min-height: 62px; padding: 16px 0; }
    body.page-home .faq-answer { padding: 0 0 18px; }
}

