:root {
    --bg: #f6f9fc;
    --surface: rgba(255, 255, 255, 0.86);
    --surface-strong: #ffffff;
    --text: #24140f;
    --muted: #6c5145;
    --line: rgba(143, 47, 18, 0.14);
    --brand: #ef5b2a;
    --brand-deep: #c84217;
    --brand-soft: #ffe0d3;
    --accent: #c84217;
    --accent-soft: #fff0e8;
    --orange-ink: #8f2f12;
    --orange-soft: #fff0e8;
    --shadow: 0 20px 60px rgba(143, 47, 18, 0.13);
    --radius-xl: 16px;
    --radius-lg: 8px;
    --max: 1200px;
}

* {
    box-sizing: border-box;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    width: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: "Manrope", "Segoe UI", Arial, sans-serif;
    color: var(--text);
    background:
        linear-gradient(180deg, #fff8f3 0%, #fff0e8 44%, #fffaf6 100%);
    width: 100%;
    overflow-x: hidden;
}

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

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

h1,
h2,
h3,
p,
li,
span,
a,
button {
    margin: 0;
    letter-spacing: 0;
    overflow-wrap: anywhere;
}

h1,
h2,
h3 {
    overflow-wrap: normal;
    word-break: normal;
    text-wrap: balance;
}

.page-shell {
    position: relative;
    overflow: hidden;
}

.container {
    width: min(calc(100% - 32px), var(--max));
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    padding: 16px 0;
    background: rgba(255, 248, 243, 0.82);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 12px 14px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 14px 34px rgba(16, 24, 40, 0.08);
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    font-weight: 800;
}

.brand span {
    min-width: 0;
}

.brand img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    flex: 0 0 auto;
}

.brand small {
    display: block;
    margin-top: 3px;
    font-weight: 650;
    color: var(--muted);
    font-size: 0.82rem;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 18px;
    color: var(--muted);
    font-size: 0.96rem;
    min-width: 0;
}

.nav-links a:hover {
    color: var(--text);
}

.btn {
    border: 0;
    border-radius: 999px;
    min-height: 48px;
    padding: 13px 20px;
    font: inherit;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--brand-deep), var(--brand));
    box-shadow: 0 18px 32px rgba(200, 66, 23, 0.28);
}

.btn-secondary {
    color: var(--text);
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(77, 52, 33, 0.1);
}

.btn-ghost {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.hero {
    padding: 34px 0 46px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.96fr);
    gap: 26px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(77, 52, 33, 0.08);
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 800;
}

.eyebrow::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-deep), var(--brand));
    box-shadow: 0 0 0 6px rgba(239, 91, 42, 0.14);
}

.hero-copy h1,
.section-head h2,
.cta-box h2 {
    line-height: 0.98;
    font-size: clamp(3rem, 6vw, 5.25rem);
}

.hero-copy h1 {
    margin-top: 20px;
}

.hero-copy {
    min-width: 0;
    max-width: 100%;
}

.hero-copy h1,
.hero-copy p {
    max-width: 100%;
}

.hero-copy p,
.section-head p,
.benefit-card p,
.feature-card p,
.signature-copy p,
.signature-panel p,
.cta-box p,
.footer p {
    color: var(--muted);
    line-height: 1.68;
}

.hero-copy p {
    margin-top: 20px;
    max-width: 700px;
    font-size: 1.1rem;
}

.hero .reveal {
    opacity: 1;
    transform: none;
}

.hero-actions,
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.hero-stage {
    position: relative;
    padding: clamp(24px, 4vw, 42px);
    border-radius: var(--radius-xl);
    background: linear-gradient(145deg, #2b160f 0%, #8f2f12 56%, var(--brand) 100%);
    color: #f9fafb;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.hero-stage::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.1), transparent 38%),
        linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.16));
    pointer-events: none;
}

.hero-stage > * {
    position: relative;
    z-index: 1;
}

.hero-logo {
    width: min(210px, 58%);
    margin: 0 auto 22px;
}

.status,
.tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(15, 118, 110, 0.12);
    color: var(--accent);
    font-size: 0.86rem;
    font-weight: 800;
}

.hero-stage .status {
    background: rgba(255, 255, 255, 0.12);
    color: #fffaf5;
}

.hero-stage h2 {
    margin-top: 18px;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1;
}

.hero-stage p {
    margin-top: 16px;
    color: rgba(255, 250, 245, 0.74);
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 22px;
}

.hero-metrics div {
    min-height: 112px;
    padding: 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-metrics strong {
    display: block;
    color: #ffffff;
    font-size: clamp(1.65rem, 3vw, 2.5rem);
    line-height: 1;
}

.hero-metrics span {
    display: block;
    margin-top: 8px;
    color: rgba(249, 250, 251, 0.72);
    font-weight: 750;
}

.hero-checks {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.hero-checks li {
    padding: 12px 14px;
    border-radius: 8px;
    color: rgba(249, 250, 251, 0.9);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-checks li::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 10px;
    border-radius: 50%;
    background: #ffd2bf;
    box-shadow: 0 0 0 4px rgba(255, 210, 191, 0.18);
}

.proof-band {
    padding: 0 0 34px;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border-radius: var(--radius-xl);
    border: 1px solid var(--line);
    background: var(--line);
    box-shadow: 0 16px 42px rgba(16, 24, 40, 0.08);
}

.proof-grid div {
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
}

.proof-grid strong,
.proof-grid span {
    display: block;
}

.proof-grid strong {
    font-size: 1.08rem;
}

.proof-grid span {
    margin-top: 6px;
    color: var(--muted);
    line-height: 1.45;
}

.section {
    padding: 46px 0;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 18px;
    margin-bottom: 26px;
}

.section-head h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.section-head p {
    max-width: 560px;
}

.glass-card {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(77, 52, 33, 0.08);
    background: var(--surface);
    box-shadow: 0 18px 50px rgba(16, 24, 40, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.benefit-grid,
.feature-grid,
.signature-grid {
    display: grid;
    gap: 18px;
}

.benefit-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.signature-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: stretch;
}

.feature-shell {
    padding: 22px;
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 240, 232, 0.78));
    border: 1px solid rgba(77, 52, 33, 0.08);
    box-shadow: var(--shadow);
}

.demo-section {
    padding-top: 58px;
}

.demo-video {
    display: grid;
    grid-template-columns: minmax(240px, 0.38fr) minmax(0, 1fr);
    gap: 22px;
    align-items: center;
    margin-bottom: 24px;
    padding: clamp(18px, 3vw, 30px);
    border-radius: var(--radius-xl);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 224, 211, 0.68)),
        linear-gradient(180deg, #ffffff, #fff5ef);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.demo-video-copy h3 {
    margin-top: 18px;
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1;
}

.demo-video-copy p {
    margin-top: 16px;
    color: var(--muted);
    line-height: 1.68;
}

.demo-video-frame {
    min-width: 0;
    aspect-ratio: 16 / 9;
    padding: clamp(8px, 1.2vw, 14px);
    border-radius: 12px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 224, 211, 0.54)),
        #ffffff;
    border: 1px solid var(--line);
    box-shadow: 0 20px 46px rgba(34, 27, 22, 0.12);
}

.demo-video-frame video {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background: #2b160f;
    object-fit: contain;
    box-shadow: 0 14px 32px rgba(34, 27, 22, 0.14);
}

.carousel {
    padding: 18px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 224, 211, 0.7));
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.carousel-viewport {
    overflow: hidden;
    border-radius: 12px;
}

.carousel-track {
    display: flex;
    transition: transform 0.45s ease;
    will-change: transform;
}

.carousel-slide {
    flex: 0 0 100%;
    display: grid;
    grid-template-columns: minmax(230px, 0.58fr) minmax(0, 1.42fr);
    gap: 22px;
    align-items: stretch;
    min-height: 410px;
    padding: clamp(18px, 3vw, 30px);
    border-radius: 12px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 244, 238, 0.78)),
        linear-gradient(180deg, #ffffff, #fff5ef);
}

.carousel-slide-wide {
    grid-template-columns: minmax(220px, 0.48fr) minmax(0, 1.52fr);
}

.carousel-slide-report {
    grid-template-columns: minmax(220px, 0.5fr) minmax(0, 1.5fr);
}

.carousel-slide-screenshot {
    grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1.58fr);
}

.slide-copy {
    align-self: center;
}

.slide-copy h3 {
    margin-top: 18px;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1;
}

.slide-copy p {
    margin-top: 16px;
    color: var(--muted);
    line-height: 1.68;
    max-width: 560px;
}

.slide-media {
    display: grid;
    place-items: center;
    min-width: 0;
    min-height: 360px;
    margin: 0;
    padding: clamp(10px, 1.5vw, 16px);
    border-radius: 10px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 224, 211, 0.5)),
        #ffffff;
    border: 1px solid var(--line);
    box-shadow: 0 20px 46px rgba(34, 27, 22, 0.12);
    overflow: hidden;
}

.slide-media img {
    display: block;
    width: 100%;
    max-height: 420px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 14px 32px rgba(34, 27, 22, 0.14);
}

.slide-media-wide {
    aspect-ratio: 1903 / 963;
    min-height: 0;
}

.slide-media-wide img {
    height: 100%;
    max-height: none;
}

.slide-media-report {
    aspect-ratio: 1334 / 893;
    min-height: 0;
}

.slide-media-report img {
    height: 100%;
    max-height: none;
}

.slide-media-screenshot {
    aspect-ratio: 16 / 9;
    min-height: 0;
}

.slide-media-screenshot img {
    height: 100%;
    max-height: none;
    object-fit: contain;
}

.slide-media-tall {
    aspect-ratio: 4 / 3;
}

.slide-media-wide-shot {
    aspect-ratio: 16 / 9;
}

.slide-media-portrait {
    aspect-ratio: 4 / 5;
}

.system-preview {
    position: relative;
    min-height: 350px;
    padding: 22px;
    border-radius: 8px;
    color: #fffaf5;
    background: linear-gradient(180deg, #2b160f, #1f100b);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 50px rgba(34, 27, 22, 0.22);
    overflow: hidden;
}

.system-preview::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 36%),
        linear-gradient(180deg, transparent, rgba(239, 91, 42, 0.22));
    pointer-events: none;
}

.system-preview > * {
    position: relative;
    z-index: 1;
}

.preview-topbar {
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
}

.preview-topbar span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.24);
}

.preview-search,
.preview-cart,
.preview-total,
.preview-form-row,
.preview-save,
.scan-result,
.preview-metric {
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.preview-search {
    padding: 15px 16px;
    color: rgba(255, 250, 245, 0.76);
}

.preview-cart {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 12px;
    padding: 14px;
}

.preview-cart small,
.preview-form-row small,
.preview-metric small,
.scan-result span {
    display: block;
    margin-top: 4px;
    color: rgba(255, 250, 245, 0.62);
    font-size: 0.86rem;
}

.preview-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 18px;
    padding: 18px;
    background: rgba(239, 91, 42, 0.2);
}

.preview-total strong {
    font-size: 1.8rem;
}

.preview-product {
    display: grid;
    align-content: center;
    gap: 14px;
}

.preview-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.preview-form-row,
.preview-save {
    padding: 15px;
}

.preview-form-row small {
    margin: 0 0 6px;
}

.preview-save {
    color: #173d35;
    background: #ffd2bf;
    border-color: rgba(255, 210, 191, 0.7);
    font-weight: 900;
}

.preview-scan {
    display: grid;
    align-content: center;
    gap: 18px;
}

.scan-frame {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 210px;
    border-radius: 8px;
    border: 1px dashed rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.06);
}

.scan-frame span {
    position: absolute;
    width: min(70%, 360px);
    height: 3px;
    border-radius: 999px;
    background: #ef5b2a;
    box-shadow: 0 0 20px rgba(239, 91, 42, 0.7);
}

.barcode-lines {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 8px;
    height: 92px;
}

.barcode-lines i {
    display: block;
    width: 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.8);
}

.barcode-lines i:nth-child(2),
.barcode-lines i:nth-child(5) {
    width: 16px;
}

.barcode-lines i:nth-child(3),
.barcode-lines i:nth-child(7) {
    height: 70%;
    align-self: center;
}

.scan-result {
    padding: 16px;
}

.scan-result span {
    margin: 0 0 6px;
}

.preview-dashboard {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-content: center;
    gap: 14px;
}

.preview-metric {
    padding: 18px;
}

.preview-metric strong {
    display: block;
    margin-top: 8px;
    font-size: 1.6rem;
}

.preview-metric.accent {
    background: rgba(239, 91, 42, 0.22);
}

.preview-bars {
    grid-column: 1 / -1;
    display: grid;
    gap: 12px;
    margin-top: 10px;
}

.preview-bars span {
    height: 18px;
    width: var(--bar);
    border-radius: 999px;
    background: linear-gradient(90deg, var(--brand-deep), var(--brand));
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: #2b160f;
    font: inherit;
    font-size: 1.25rem;
    font-weight: 900;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.carousel-btn:hover {
    transform: translateY(-2px);
    background: var(--brand-deep);
}

.carousel-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(34, 27, 22, 0.24);
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease;
}

.carousel-dot.is-active {
    width: 28px;
    background: var(--brand);
}

@media (min-width: 1081px) {
    .demo-section .container {
        width: min(calc(100% - 48px), 1440px);
    }

    .carousel-slide-screenshot {
        grid-template-columns: minmax(240px, 0.34fr) minmax(0, 1.66fr);
    }

    .carousel-slide {
        min-height: clamp(450px, 38vw, 650px);
    }

    .slide-media-screenshot {
        height: clamp(420px, 34vw, 590px);
        aspect-ratio: auto;
    }

    .slide-media-tall,
    .slide-media-wide-shot,
    .slide-media-portrait {
        aspect-ratio: auto;
    }

    .slide-media-screenshot img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}

.benefit-card,
.feature-card,
.signature-copy,
.signature-panel,
.cta-box {
    padding: 26px;
}

.benefit-card .tag,
.feature-card .tag,
.cta-box .tag {
    background: var(--orange-soft);
    color: var(--orange-ink);
    text-transform: uppercase;
}

.benefit-card:nth-child(2) .tag,
.feature-card:nth-child(2) .tag,
.feature-card:nth-child(5) .tag {
    background: var(--accent-soft);
    color: var(--accent);
}

.benefit-card:nth-child(4) .tag,
.feature-card:nth-child(4) .tag {
    background: var(--brand-soft);
    color: var(--brand-deep);
}

.benefit-card h3,
.feature-card h3,
.signature-copy h3 {
    margin-top: 18px;
    font-size: 1.45rem;
}

.plan-list {
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.plan-included {
    margin: 22px 0;
    padding: 18px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.plan-title {
    margin: 0;
    color: #ffffff;
    font-size: 1.18rem;
}

.plan-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    padding: 11px 12px;
    border-radius: 8px;
    color: rgba(255, 250, 245, 0.86);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    line-height: 1.35;
}

.plan-list li::before {
    content: "\2713";
    display: inline-block;
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    border-radius: 999px;
    color: #8f2f12;
    background: #ffe2d6;
    font-size: 0.78rem;
    font-weight: 900;
    line-height: 20px;
    text-align: center;
}

.signature-panel {
    color: #fffaf5;
    background: linear-gradient(145deg, #2b160f, #8f2f12 58%, var(--brand));
}

.signature-panel .eyebrow {
    color: #fffaf5;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.18);
}

.signature-panel h2 {
    margin-top: 18px;
    font-size: clamp(2.5rem, 7vw, 4.5rem);
}

.signature-panel p {
    margin: 12px 0 22px;
    color: rgba(255, 255, 255, 0.92);
}

.signature-panel .btn-primary {
    width: 100%;
    color: #fff;
    background: linear-gradient(135deg, var(--brand-deep), var(--brand));
    border: 2px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 32px rgba(200, 66, 23, 0.32);
}

.hero-signature-card {
    align-self: stretch;
}

.hero-signature-card .plan-included {
    margin: 18px 0;
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.36);
}

.hero-signature-card .plan-list {
    gap: 8px;
}

.hero-signature-card .plan-list li {
    padding: 10px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.26);
    font-size: 0.92rem;
}

.hero-signature-card .plan-title,
.hero-signature-card h2 {
    color: #ffffff;
    text-shadow: 0 2px 12px rgba(43, 22, 15, 0.28);
}

.hero-signature-card .plan-link {
    color: #ffffff;
}

.btn-signature {
    min-height: 54px;
    font-size: 1.02rem;
}

.plan-link {
    display: block;
    margin-top: 10px;
    color: rgba(255, 250, 245, 0.74);
    text-align: center;
    font-weight: 750;
}

.faq-section {
    padding-top: 54px;
}

.faq-grid {
    display: grid;
    gap: 24px;
}

.faq-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.faq-item {
    border-radius: 8px;
    background: rgba(255, 253, 249, 0.82);
    border: 1px solid var(--line);
    box-shadow: 0 18px 50px rgba(16, 24, 40, 0.08);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    min-height: 112px;
    padding: 18px;
    border: 0;
    color: var(--text);
    background: transparent;
    font: inherit;
    text-align: left;
    cursor: pointer;
    display: grid;
    gap: 12px;
}

.faq-label {
    width: fit-content;
    max-width: 100%;
    padding: 8px 10px;
    border-radius: 8px;
    color: var(--brand-deep);
    background: var(--brand-soft);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
    overflow-wrap: anywhere;
}

.faq-question span:not(.faq-label) {
    font-size: 1.2rem;
    font-weight: 900;
    line-height: 1.2;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease;
}

.faq-answer p {
    padding: 0 18px 18px;
    color: var(--muted);
    line-height: 1.68;
}

.faq-item.is-open {
    background: #fffdf9;
    border-color: rgba(239, 91, 42, 0.26);
}

.faq-item.is-open .faq-answer {
    max-height: 1000px;
}

.cta {
    padding: 44px 0 70px;
}

.cta-box {
    color: #fffaf5;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, #2b160f, #8f2f12 54%, var(--brand));
    box-shadow: var(--shadow);
}

.cta-box h2 {
    margin-top: 18px;
    font-size: clamp(2rem, 4vw, 3.4rem);
}

.cta-box p {
    max-width: 760px;
    margin-top: 14px;
    color: rgba(255, 250, 245, 0.72);
}

.footer {
    padding-bottom: 28px;
}

.footer-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 24px 0;
    border-top: 1px solid var(--line);
}

.footer-meta {
    text-align: right;
}

.rights {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: 0.9rem;
}

.reveal {
    opacity: 1;
    transform: none;
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1080px) {
    .hero-grid,
    .signature-grid,
    .demo-video,
    .carousel-slide {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        align-items: start;
    }

    .benefit-grid,
    .feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .proof-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .slide-media-wide,
    .slide-media-report,
    .slide-media-screenshot {
        aspect-ratio: 16 / 9;
    }

    .slide-media-tall {
        aspect-ratio: 4 / 3;
    }

    .slide-media-portrait {
        aspect-ratio: 4 / 5;
    }
}

@media (max-width: 820px) {
    .nav,
    .nav-links,
    .section-head,
    .footer-box {
        flex-direction: column;
        align-items: stretch;
    }

    .nav {
        border-radius: 12px;
        gap: 14px;
    }

    .nav-links {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .nav-links a {
        min-height: 40px;
        padding: 10px 8px;
        border-radius: 8px;
        background: rgba(255, 240, 232, 0.62);
        text-align: center;
        font-size: 0.9rem;
        font-weight: 800;
    }

    .nav-links .btn {
        grid-column: 1 / -1;
    }

    .nav-links .btn-primary {
        color: #ffffff;
        background: linear-gradient(135deg, var(--brand-deep), var(--brand));
        border-radius: 999px;
        box-shadow: 0 12px 24px rgba(200, 66, 23, 0.22);
    }

    .btn {
        width: 100%;
    }

    .hero {
        padding-top: 18px;
    }

    .hero-copy h1 {
        font-size: clamp(2.3rem, 10vw, 3.55rem);
        line-height: 1.02;
    }

    .hero-copy p {
        font-size: 1rem;
        line-height: 1.58;
    }

    .hero-signature-card .plan-list,
    .plan-list {
        grid-template-columns: 1fr;
    }

    .benefit-grid,
    .feature-grid,
    .faq-list {
        grid-template-columns: 1fr;
    }

    .proof-grid {
        grid-template-columns: 1fr;
    }

    .carousel {
        padding: 12px;
    }

    .carousel-slide {
        min-height: auto;
        gap: 16px;
        padding: 16px;
    }

    .slide-media {
        min-height: 250px;
    }

    .slide-media-wide,
    .slide-media-report,
    .slide-media-screenshot {
        min-height: 0;
    }

    .slide-media-wide img,
    .slide-media-report img,
    .slide-media-screenshot img {
        object-fit: contain;
        object-position: center center;
    }

    .slide-media-portrait img {
        object-fit: contain;
    }

    .carousel-dots {
        flex-wrap: wrap;
        justify-content: center;
        max-width: min(100%, 260px);
    }

    .faq-question {
        min-height: auto;
    }

    .faq-answer p {
        line-height: 1.58;
    }

    .footer-meta {
        text-align: left;
    }
}

@media (max-width: 520px) {
    .container {
        width: min(calc(100% - 20px), var(--max));
    }

    .site-header {
        padding: 10px 0;
        position: relative;
    }

    .nav {
        padding: 10px;
    }

    .brand {
        gap: 10px;
    }

    .brand img {
        width: 44px;
        height: 44px;
    }

    .brand small {
        display: none;
    }

    .nav-links {
        grid-template-columns: 1fr;
    }

    .nav-links a {
        min-height: 38px;
        padding: 9px 10px;
    }

    .hero {
        padding: 8px 0 38px;
    }

    .hero-copy h1 {
        margin-top: 16px;
        font-size: clamp(1.82rem, 8.2vw, 2.18rem);
        line-height: 1.08;
    }

    .hero-copy p {
        margin-top: 14px;
    }

    .eyebrow {
        max-width: 100%;
        align-items: flex-start;
        border-radius: 12px;
        line-height: 1.25;
    }

    .hero-stage,
    .feature-shell,
    .demo-video,
    .demo-video-frame,
    .carousel,
    .carousel-viewport,
    .carousel-slide,
    .glass-card,
    .cta-box {
        border-radius: 12px;
    }

    .section {
        padding: 30px 0;
    }

    .section-head h2,
    .demo-video-copy h3,
    .slide-copy h3,
    .cta-box h2 {
        line-height: 1.05;
    }

    .section-head h2 {
        font-size: clamp(1.75rem, 8.5vw, 2.35rem);
    }

    .hero-actions,
    .cta-actions {
        gap: 10px;
        margin-top: 22px;
    }

    .hero-metrics {
        grid-template-columns: 1fr;
    }

    .plan-list {
        grid-template-columns: 1fr;
    }

    .benefit-card,
    .feature-card,
    .signature-copy,
    .signature-panel,
    .demo-video,
    .cta-box {
        padding: 16px;
    }

    .hero-signature-card .plan-included,
    .plan-included {
        margin: 16px 0;
        padding: 12px;
    }

    .plan-title {
        font-size: 1rem;
        line-height: 1.25;
    }

    .hero-signature-card .plan-list li,
    .plan-list li {
        padding: 9px;
        font-size: 0.88rem;
    }

    .plan-list li::before {
        width: 18px;
        height: 18px;
        font-size: 0.72rem;
        line-height: 18px;
    }

    .signature-panel h2 {
        font-size: clamp(2.4rem, 14vw, 3.4rem);
    }

    .signature-panel p,
    .plan-link {
        font-size: 0.94rem;
    }

    .demo-video-frame {
        padding: 8px;
    }

    .system-preview,
    .slide-media {
        min-height: 0;
        padding: 10px;
    }

    .carousel-slide-screenshot {
        gap: 12px;
        padding: 10px;
    }

    .carousel-slide-screenshot .slide-copy h3 {
        margin-top: 12px;
        font-size: clamp(1.45rem, 7vw, 2rem);
    }

    .carousel-slide-screenshot .slide-copy p {
        margin-top: 10px;
        line-height: 1.45;
    }

    .slide-media-wide {
        aspect-ratio: 16 / 10;
        min-height: 0;
        padding: 10px;
    }

    .slide-media-report {
        aspect-ratio: 1 / 1;
        min-height: 0;
        padding: 10px;
    }

    .slide-media-screenshot {
        aspect-ratio: auto;
        min-height: 0;
        padding: 8px;
    }

    .slide-media-screenshot img {
        height: auto;
        max-height: none;
    }

    .slide-media-wide-shot {
        aspect-ratio: 16 / 10;
    }

    .slide-media-portrait {
        aspect-ratio: 3 / 4;
    }

    .slide-media-wide img {
        object-position: 58% top;
    }

    .slide-media-report img {
        object-position: center top;
    }

    .preview-form-grid,
    .preview-dashboard {
        grid-template-columns: 1fr;
    }

    .preview-bars {
        grid-column: auto;
    }

    .faq-question {
        min-height: auto;
        padding: 16px;
        gap: 10px;
    }

    .faq-question span:not(.faq-label) {
        font-size: 1.05rem;
        line-height: 1.25;
    }

    .faq-label {
        padding: 7px 9px;
        font-size: 0.72rem;
    }

    .faq-answer p {
        padding: 0 16px 16px;
        font-size: 0.96rem;
        line-height: 1.58;
    }

    .carousel-controls {
        gap: 12px;
    }

    .carousel-btn {
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 380px) {
    .container {
        width: min(calc(100% - 16px), var(--max));
    }

    .hero-copy h1 {
        font-size: clamp(1.9rem, 10.5vw, 2.35rem);
    }

    .hero-copy p,
    .section-head p,
    .demo-video-copy p,
    .slide-copy p,
    .benefit-card p,
    .feature-card p,
    .faq-answer p {
        font-size: 0.94rem;
    }

    .signature-panel,
    .hero-signature-card .plan-included,
    .plan-included {
        padding: 12px;
    }

    .hero-signature-card .plan-list li,
    .plan-list li {
        font-size: 0.84rem;
    }

    .carousel,
    .carousel-slide {
        padding: 8px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }
}
