:root {
    --canvas: #f4efe7;
    --paper: #fffdf8;
    --paper-strong: #ffffff;
    --ink: #171412;
    --ink-soft: #635a52;
    --muted: #8a7c70;
    --brand: #b94c2d;
    --brand-dark: #7d311d;
    --brand-soft: #fff0e8;
    --teal: #006d77;
    --green: #1f7a4d;
    --blue: #245a8f;
    --amber: #e8a64a;
    --line: rgba(23, 20, 18, 0.13);
    --line-strong: rgba(23, 20, 18, 0.2);
    --shadow-sm: 0 12px 30px rgba(37, 26, 18, 0.08);
    --shadow-md: 0 24px 70px rgba(37, 26, 18, 0.14);
    --radius: 8px;
    --max-width: 1180px;
    --transition: 220ms ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background:
        linear-gradient(90deg, rgba(23, 20, 18, 0.035) 1px, transparent 1px),
        linear-gradient(180deg, #fffaf3 0%, var(--canvas) 44%, #f7f8f4 100%);
    background-size: 42px 42px, auto;
    color: var(--ink);
    font-family: "Manrope", sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

button {
    color: inherit;
    font: inherit;
}

.skip-link {
    position: fixed;
    left: 1rem;
    top: 1rem;
    z-index: 100;
    transform: translateY(-140%);
    padding: 0.7rem 1rem;
    border-radius: var(--radius);
    background: var(--ink);
    color: var(--paper);
    font-weight: 800;
    transition: transform var(--transition);
}

.skip-link:focus {
    transform: translateY(0);
}

.container {
    width: min(var(--max-width), calc(100% - 2rem));
    margin: 0 auto;
}

.section {
    padding: 6rem 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 1rem;
    color: var(--brand-dark);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 0.72rem;
    height: 0.72rem;
    border-radius: 2px;
    background: var(--brand);
    box-shadow: 0.35rem 0.35rem 0 var(--amber);
}

h1,
h2,
h3 {
    font-family: "Sora", sans-serif;
    line-height: 1.04;
    letter-spacing: 0;
    text-wrap: balance;
}

h1 {
    max-width: 16ch;
    font-size: 3.85rem;
    font-weight: 800;
}

h2 {
    font-size: 3.75rem;
    font-weight: 800;
}

h3 {
    font-size: 1.08rem;
}

p {
    color: var(--ink-soft);
}

.section-heading {
    max-width: 52rem;
    margin-bottom: 2.4rem;
}

.section-heading-center {
    margin-inline: auto;
    text-align: center;
}

.section-heading p,
.section-copy p {
    margin-top: 1rem;
    max-width: 42rem;
    font-size: 1.08rem;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 40;
    border-bottom: 1px solid transparent;
    background: rgba(255, 250, 243, 0.88);
    backdrop-filter: blur(18px);
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.navbar.scrolled {
    border-color: var(--line);
    background: rgba(255, 253, 248, 0.94);
    box-shadow: 0 10px 35px rgba(37, 26, 18, 0.08);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    min-height: 5rem;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.72rem;
    min-width: 0;
}

.logo-mark {
    width: 2.65rem;
    height: 2.65rem;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--radius);
    background: var(--paper-strong);
    box-shadow: var(--shadow-sm);
}

.logo-text {
    display: grid;
    gap: 0.1rem;
}

.logo-text strong {
    font-family: "Sora", sans-serif;
    font-size: 1.05rem;
    line-height: 1;
}

.logo-text small {
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.nav-links a:not(.btn) {
    color: var(--ink-soft);
    font-size: 0.94rem;
    font-weight: 800;
}

.nav-links a:not(.btn):hover,
.nav-links a:not(.btn).is-active {
    color: var(--brand-dark);
}

.menu-toggle {
    display: none;
    width: 3rem;
    height: 3rem;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.34rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    cursor: pointer;
}

.menu-toggle span {
    width: 1.15rem;
    height: 2px;
    border-radius: 2px;
    background: var(--ink);
    transition: transform var(--transition);
}

.menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(0.18rem) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-0.18rem) rotate(-45deg);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.62rem;
    min-height: 3.3rem;
    padding: 0.9rem 1.2rem;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-weight: 900;
    line-height: 1.1;
    transition: transform var(--transition), border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

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

.btn-primary {
    background: var(--brand);
    color: var(--paper-strong);
    box-shadow: 0 16px 34px rgba(185, 76, 45, 0.25);
}

.btn-primary:hover {
    background: var(--brand-dark);
}

.btn-secondary {
    border-color: var(--line);
    background: rgba(255, 253, 248, 0.9);
    color: var(--ink);
}

.btn-secondary:hover {
    border-color: var(--line-strong);
    background: var(--paper-strong);
}

.btn-desktop {
    border-color: rgba(0, 109, 119, 0.28);
    background: rgba(0, 109, 119, 0.08);
    color: var(--teal);
}

.btn-desktop:hover {
    border-color: var(--teal);
    background: rgba(0, 109, 119, 0.14);
}

.btn-version {
    padding: 0.2rem 0.42rem;
    border-radius: 999px;
    background: rgba(0, 109, 119, 0.12);
    font-size: 0.68rem;
    font-weight: 900;
}

.btn-nav {
    min-height: 2.9rem;
    padding: 0.76rem 1rem;
    background: var(--ink);
    color: var(--paper);
}

.btn-nav-desktop {
    background: var(--teal);
}

.btn-block {
    width: 100%;
}

.btn-large {
    min-height: 3.75rem;
    padding-inline: 1.5rem;
}

.hero {
    position: relative;
    padding: 2.4rem 0 2rem;
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(125deg, rgba(185, 76, 45, 0.14) 0 18%, transparent 18% 100%),
        linear-gradient(305deg, rgba(0, 109, 119, 0.1) 0 16%, transparent 16% 100%),
        repeating-linear-gradient(0deg, transparent 0 38px, rgba(23, 20, 18, 0.035) 38px 39px);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.88fr);
    gap: 2rem;
    align-items: center;
}

.hero-copy,
.hero-media {
    min-width: 0;
}

.hero-lead {
    max-width: 39rem;
    margin-top: 1rem;
    font-size: 1.1rem;
    overflow-wrap: break-word;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin: 1.35rem 0 1rem;
}

.hero-checks {
    display: grid;
    gap: 0.72rem;
    max-width: 38rem;
    list-style: none;
}

.hero-checks li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    color: var(--ink);
    font-weight: 800;
}

.hero-checks i {
    flex: 0 0 auto;
    margin-top: 0.25rem;
    color: var(--green);
}

.hero-checks span {
    min-width: 0;
    overflow-wrap: break-word;
}

.hero-media {
    position: relative;
    min-height: 30rem;
    display: grid;
    place-items: center;
}

.device-frame {
    position: relative;
    width: min(100%, 19.6rem);
    padding: 0.72rem;
    border: 1px solid rgba(23, 20, 18, 0.22);
    border-radius: 30px;
    background: #1e1a18;
    box-shadow: var(--shadow-md);
}

.device-frame::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0.45rem;
    width: 5rem;
    height: 0.32rem;
    transform: translateX(-50%);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
}

.phone-ui {
    min-height: 30.8rem;
    padding: 0.86rem;
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(185, 76, 45, 0.08), transparent 38%),
        linear-gradient(180deg, #fffaf3 0%, #f5efe7 100%);
    overflow: hidden;
}

.phone-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.25rem 0 0.95rem;
}

.phone-brand {
    display: flex;
    align-items: center;
    gap: 0.64rem;
}

.phone-brand img {
    width: 2rem;
    height: 2rem;
    border-radius: var(--radius);
}

.phone-brand span,
.phone-tabs span,
.phone-summary span,
.phone-order span {
    display: block;
    color: var(--muted);
    font-size: 0.66rem;
    font-weight: 900;
}

.phone-brand strong {
    display: block;
    margin-top: 0.1rem;
    font-family: "Sora", sans-serif;
    font-size: 0.86rem;
}

.phone-pill {
    display: inline-flex;
    min-height: 1.85rem;
    align-items: center;
    padding: 0.3rem 0.58rem;
    border-radius: var(--radius);
    background: rgba(31, 122, 77, 0.12);
    color: var(--green);
    font-size: 0.72rem;
    font-weight: 900;
}

.phone-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.42rem;
    padding: 0.34rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 253, 248, 0.76);
}

.phone-tabs span {
    min-height: 2rem;
    display: grid;
    place-items: center;
    border-radius: 6px;
    color: var(--ink-soft);
}

.phone-tabs .is-active {
    background: var(--brand);
    color: var(--paper);
}

.phone-summary {
    display: grid;
    grid-template-columns: 1fr 0.82fr;
    gap: 0.65rem;
    margin: 0.9rem 0;
}

.phone-summary article,
.phone-order,
.phone-bottom {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 253, 248, 0.9);
    box-shadow: 0 10px 24px rgba(37, 26, 18, 0.06);
}

.phone-summary article {
    padding: 0.82rem;
}

.phone-summary strong {
    display: block;
    margin-top: 0.3rem;
    font-family: "Sora", sans-serif;
    font-size: 1.04rem;
}

.phone-order-list {
    display: grid;
    gap: 0.65rem;
}

.phone-order {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    padding: 0.72rem;
}

.phone-order.is-hot {
    border-left: 4px solid var(--green);
}

.phone-order strong {
    display: block;
    margin-top: 0.16rem;
    font-size: 0.82rem;
}

.phone-order em {
    color: var(--brand-dark);
    font-style: normal;
    font-weight: 900;
    white-space: nowrap;
}

.phone-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    margin-top: 0.9rem;
    padding: 0.76rem;
}

.phone-bottom span {
    color: var(--green);
    font-size: 0.78rem;
    font-weight: 900;
}

.phone-bottom strong {
    color: var(--brand-dark);
    font-size: 0.86rem;
}

.ops-note {
    position: absolute;
    width: min(15rem, 44vw);
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 253, 248, 0.94);
    box-shadow: var(--shadow-sm);
}

.ops-note span {
    display: block;
    color: var(--brand-dark);
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.ops-note strong {
    display: block;
    margin-top: 0.35rem;
    font-family: "Sora", sans-serif;
    line-height: 1.18;
}

.note-order {
    left: 0.2rem;
    top: 4.5rem;
    border-left: 4px solid var(--green);
}

.note-cash {
    right: 0;
    bottom: 5rem;
    border-left: 4px solid var(--blue);
}

.proof-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.9rem;
    margin-top: 2.2rem;
}

.proof-strip article {
    display: grid;
    gap: 0.25rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 253, 248, 0.82);
    box-shadow: var(--shadow-sm);
}

.proof-strip i {
    color: var(--teal);
    font-size: 1.25rem;
}

.proof-strip strong {
    font-family: "Sora", sans-serif;
    font-size: 1.05rem;
}

.proof-strip span {
    color: var(--ink-soft);
    font-size: 0.94rem;
}

.split-layout,
.workflow-layout,
.faq-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    gap: 2.2rem;
    align-items: start;
}

.problem-section {
    background: linear-gradient(180deg, rgba(255, 253, 248, 0.68), rgba(241, 246, 242, 0.78));
}

.section-copy {
    position: sticky;
    top: 6.4rem;
}

.problem-board,
.workflow-steps,
.faq-list {
    display: grid;
    gap: 0.95rem;
}

.problem-card,
.feature-card,
.workflow-step,
.case-card,
.plan-card,
.faq-item {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 253, 248, 0.88);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition), opacity 500ms ease, translate 500ms ease;
}

.problem-card:hover,
.feature-card:hover,
.workflow-step:hover,
.case-card:hover,
.plan-card:hover,
.faq-item:hover {
    transform: translateY(-4px);
    border-color: var(--line-strong);
    box-shadow: var(--shadow-md);
}

.problem-card {
    padding: 1.25rem;
}

.problem-card span,
.workflow-step span {
    display: inline-grid;
    place-items: center;
    width: 2.4rem;
    height: 2.4rem;
    margin-bottom: 0.95rem;
    border-radius: var(--radius);
    background: var(--ink);
    color: var(--paper);
    font-weight: 900;
}

.problem-card h3,
.feature-card h3,
.workflow-step h3,
.case-card h3,
.faq-item h3 {
    margin-bottom: 0.6rem;
}

.product-section {
    background: var(--paper);
}

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

.feature-card {
    min-height: 15rem;
    padding: 1.3rem;
}

.desktop-section {
    background: linear-gradient(135deg, #eef5f0 0%, #fffdf8 72%);
}

.desktop-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: 2rem;
    align-items: center;
    padding: 2.2rem;
    border: 1px solid rgba(0, 109, 119, 0.16);
    border-radius: var(--radius);
    background: rgba(255, 253, 248, 0.72);
    box-shadow: var(--shadow-sm);
}

.desktop-copy h2 {
    max-width: 12ch;
}

.desktop-copy > p {
    max-width: 35rem;
    margin-top: 1rem;
    font-size: 1.06rem;
}

.desktop-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.9rem;
    margin-top: 1.35rem;
}

.desktop-release {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    color: var(--teal);
    font-size: 0.82rem;
    font-weight: 900;
}

.desktop-note {
    font-size: 0.86rem !important;
}

.desktop-preview {
    overflow: hidden;
    border: 1px solid rgba(23, 20, 18, 0.16);
    border-radius: var(--radius);
    background: #1c1815;
    box-shadow: 0 24px 55px rgba(28, 24, 21, 0.22);
}

.desktop-window-bar {
    display: flex;
    align-items: center;
    gap: 0.42rem;
    min-height: 2.45rem;
    padding: 0 0.9rem;
    color: rgba(255, 253, 248, 0.74);
    font-size: 0.76rem;
}

.desktop-window-bar strong {
    margin-left: 0.35rem;
    color: var(--paper);
    font-size: 0.78rem;
}

.window-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
}

.window-dot-red { background: #e8755f; }
.window-dot-yellow { background: #e8a64a; }
.window-dot-green { background: #6dbb82; }

.desktop-window-body {
    display: grid;
    grid-template-columns: 8.4rem minmax(0, 1fr);
    min-height: 17.2rem;
    background: #f4efe7;
}

.desktop-window-sidebar {
    display: grid;
    align-content: start;
    gap: 0.42rem;
    padding: 1rem 0.75rem;
    border-right: 1px solid rgba(23, 20, 18, 0.1);
    background: #fffdf8;
}

.desktop-window-brand,
.desktop-window-nav {
    display: flex;
    align-items: center;
    gap: 0.48rem;
    min-width: 0;
    padding: 0.54rem 0.58rem;
    border-radius: 5px;
    color: var(--ink-soft);
    font-size: 0.7rem;
    font-weight: 800;
}

.desktop-window-brand {
    margin-bottom: 0.6rem;
    color: var(--brand-dark);
    font-family: "Sora", sans-serif;
    font-size: 0.8rem;
}

.desktop-window-brand i { color: var(--brand); }

.desktop-window-nav.is-active {
    background: var(--brand-soft);
    color: var(--brand-dark);
}

.desktop-window-main {
    min-width: 0;
    padding: 1rem;
}

.desktop-window-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.7rem;
    padding-bottom: 0.9rem;
    border-bottom: 1px solid var(--line);
    font-family: "Sora", sans-serif;
    font-size: 1.15rem;
}

.desktop-window-heading em {
    padding: 0.28rem 0.48rem;
    border-radius: 999px;
    background: rgba(31, 122, 77, 0.12);
    color: var(--green);
    font-family: "Manrope", sans-serif;
    font-size: 0.66rem;
    font-style: normal;
    font-weight: 900;
}

.desktop-window-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
    margin-top: 1rem;
}

.desktop-window-cards article {
    display: grid;
    gap: 0.34rem;
    padding: 0.85rem;
    border: 1px solid var(--line);
    border-left: 3px solid var(--brand);
    border-radius: 5px;
    background: var(--paper-strong);
}

.desktop-window-cards span {
    color: var(--ink);
    font-weight: 900;
}

.desktop-window-cards strong {
    color: var(--brand-dark);
    font-family: "Sora", sans-serif;
    font-size: 1.1rem;
}

.desktop-window-cards small {
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 800;
}

.feature-card i,
.case-card i {
    display: grid;
    place-items: center;
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
    border-radius: var(--radius);
    background: var(--brand-soft);
    color: var(--brand-dark);
    font-size: 1.2rem;
}

.feature-card:nth-child(2n) i,
.case-card:nth-child(2n) i {
    background: rgba(0, 109, 119, 0.11);
    color: var(--teal);
}

.feature-card:nth-child(3n) i,
.case-card:nth-child(3n) i {
    background: rgba(31, 122, 77, 0.12);
    color: var(--green);
}

.workflow-section {
    background:
        linear-gradient(90deg, rgba(36, 90, 143, 0.09) 0 18%, transparent 18% 100%),
        linear-gradient(180deg, #fbfaf6, #eef5f0);
}

.workflow-steps {
    counter-reset: workflow;
}

.workflow-step {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0 1rem;
    padding: 1.2rem;
}

.workflow-step span {
    grid-row: span 2;
    margin-bottom: 0;
    background: var(--teal);
}

.workflow-step p {
    margin-top: 0.15rem;
}

.use-cases-section {
    background: var(--paper);
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.95rem;
}

.case-card {
    padding: 1.3rem;
}

.plans-section {
    background: linear-gradient(180deg, #fffdf8, #f4efe7);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    max-width: 58rem;
    margin: 0 auto;
}

.plan-card {
    position: relative;
    padding: 1.45rem;
}

.plan-card-featured {
    background: #1c1815;
    color: var(--paper);
    box-shadow: 0 24px 70px rgba(28, 24, 21, 0.24);
}

.plan-card-featured p,
.plan-card-featured li,
.plan-card-featured .plan-head span,
.plan-card-featured .plan-head small {
    color: rgba(255, 253, 248, 0.76);
}

.plan-label {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.38rem 0.58rem;
    border-radius: var(--radius);
    background: rgba(232, 166, 74, 0.16);
    color: #ffd692;
    font-size: 0.76rem;
    font-weight: 900;
}

.plan-head {
    padding-bottom: 1.15rem;
    margin-bottom: 1.1rem;
    border-bottom: 1px solid var(--line);
}

.plan-card-featured .plan-head {
    border-color: rgba(255, 253, 248, 0.14);
}

.plan-head span {
    display: block;
    margin-bottom: 0.45rem;
    color: var(--brand-dark);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.plan-head h3 {
    margin-bottom: 0.9rem;
    font-size: 1.35rem;
}

.plan-head p {
    display: flex;
    align-items: flex-end;
    gap: 0.6rem;
}

.plan-head strong {
    color: inherit;
    font-family: "Sora", sans-serif;
    font-size: 3.15rem;
    line-height: 1;
}

.plan-head small {
    margin-bottom: 0.24rem;
    color: var(--muted);
    font-weight: 800;
}

.plan-card ul {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1.35rem;
    list-style: none;
}

.plan-card li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--ink-soft);
    font-weight: 700;
}

.plan-card li::before {
    content: "\f00c";
    position: absolute;
    left: 0;
    top: 0.05rem;
    color: var(--green);
    font: var(--fa-font-solid);
}

.faq-section {
    background: var(--paper);
}

.faq-item {
    padding: 1.2rem;
}

.final-cta-section {
    padding-top: 2rem;
    background: linear-gradient(180deg, var(--paper), var(--canvas));
}

.final-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem;
    border: 1px solid rgba(255, 253, 248, 0.18);
    border-radius: var(--radius);
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.06) 0 18%, transparent 18% 100%),
        #1c1815;
    color: var(--paper);
    box-shadow: var(--shadow-md);
}

.final-cta .eyebrow {
    color: #ffd692;
}

.final-cta .eyebrow::before {
    background: var(--amber);
    box-shadow: 0.35rem 0.35rem 0 rgba(255, 253, 248, 0.2);
}

.final-cta h2 {
    max-width: 14ch;
}

.final-cta p {
    max-width: 42rem;
    margin-top: 1rem;
    color: rgba(255, 253, 248, 0.76);
}

.final-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    flex: 0 0 auto;
}

.final-cta .btn-desktop {
    border-color: rgba(255, 253, 248, 0.25);
    background: rgba(255, 253, 248, 0.1);
    color: var(--paper);
}

.final-cta .btn-desktop:hover {
    border-color: rgba(255, 253, 248, 0.5);
    background: rgba(255, 253, 248, 0.18);
}

.footer {
    padding: 4rem 0 6rem;
    background: var(--canvas);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--line);
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer p {
    max-width: 24rem;
}

.footer h3 {
    margin-bottom: 0.8rem;
    font-size: 0.98rem;
}

.footer a {
    display: block;
    margin-bottom: 0.52rem;
    color: var(--ink-soft);
    font-weight: 800;
}

.footer a:hover {
    color: var(--brand-dark);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.35rem;
}

.footer-play-link {
    display: inline-flex;
    align-items: center;
    min-height: 2.65rem;
    padding: 0.65rem 0.9rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    color: var(--brand-dark);
}

.mobile-install-bar {
    display: none;
}

.hero-risk {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
    margin-top: 1.2rem;
    font-size: 0.82rem;
    color: var(--ink-soft);
    font-weight: 700;
}

.hero-risk span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.hero-risk i {
    color: var(--green);
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.55rem;
    margin-top: 1.8rem;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.38rem 0.8rem;
    border-radius: var(--radius);
    background: rgba(255, 253, 248, 0.72);
    border: 1px solid var(--line);
    color: var(--ink-soft);
    font-size: 0.78rem;
    font-weight: 800;
}

.trust-badge i {
    color: var(--brand-dark);
}

.testimonials-comanda-section {
    background: linear-gradient(180deg, #fffdf8, #f4efe7);
}

.testimonials-comanda-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.95rem;
}

.testimonial-comanda {
    padding: 1.8rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 253, 248, 0.88);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.testimonial-comanda:hover {
    transform: translateY(-4px);
    border-color: var(--line-strong);
    box-shadow: var(--shadow-md);
}

.testimonial-comanda.featured {
    background: #1c1815;
    color: var(--paper);
    border-color: rgba(255, 253, 248, 0.12);
    box-shadow: 0 24px 70px rgba(28, 24, 21, 0.18);
}

.t-stars {
    color: #e8a64a;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.8rem;
}

.testimonial-comanda p {
    color: var(--ink-soft);
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 1.2rem;
    font-style: italic;
}

.testimonial-comanda.featured p {
    color: rgba(255, 253, 248, 0.82);
}

.testimonial-comanda footer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.t-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--brand-dark);
    background: rgba(185, 76, 45, 0.12);
    border: 1px solid rgba(185, 76, 45, 0.2);
}

.testimonial-comanda.featured .t-avatar {
    color: #ffd692;
    background: rgba(232, 166, 74, 0.16);
    border-color: rgba(232, 166, 74, 0.25);
}

.testimonial-comanda footer strong {
    display: block;
    font-size: 0.85rem;
}

.testimonial-comanda footer span {
    display: block;
    font-size: 0.75rem;
    color: var(--muted);
}

.testimonial-comanda.featured footer span {
    color: rgba(255, 253, 248, 0.6);
}

.plan-risk {
    text-align: center;
    font-size: 0.78rem;
    color: var(--muted);
    font-weight: 700;
    margin-top: 0.6rem;
}

.plan-card-featured .plan-risk {
    color: rgba(255, 253, 248, 0.6);
}

[data-reveal] {
    opacity: 0;
    translate: 0 22px;
}

[data-reveal].is-visible {
    opacity: 1;
    translate: 0 0;
}

@media (max-width: 1040px) {
    .hero-grid,
    .split-layout,
    .workflow-layout,
    .faq-layout,
    .feature-grid,
    .case-grid,
    .plans-grid,
    .footer-grid,
    .desktop-panel {
        grid-template-columns: 1fr;
    }

    .section-copy {
        position: static;
    }

    .hero-media {
        min-height: 32rem;
    }

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

    h1 {
        max-width: 14.5ch;
        font-size: 3.85rem;
    }

    h2 {
        font-size: 3.05rem;
    }
}

@media (max-width: 820px) {
    .menu-toggle {
        display: inline-flex;
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 0.55rem);
        left: 1rem;
        right: 1rem;
        display: grid;
        gap: 0.2rem;
        padding: 0.75rem;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: rgba(255, 253, 248, 0.98);
        box-shadow: var(--shadow-sm);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
    }

    .nav-links.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-links a:not(.btn) {
        padding: 0.78rem 0.85rem;
        border-radius: var(--radius);
    }

    .nav-links a:not(.btn):hover,
    .nav-links a:not(.btn).is-active {
        background: var(--brand-soft);
    }

    .btn-nav {
        width: 100%;
        margin-top: 0.35rem;
    }

    .hero-grid {
        gap: 2rem;
    }

    .final-cta {
        display: grid;
        align-items: start;
    }

    .final-cta-actions {
        align-items: stretch;
    }
}

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

    .section {
        padding: 4.2rem 0;
    }

    .nav-content {
        min-height: 4.6rem;
    }

    .logo-mark {
        width: 2.45rem;
        height: 2.45rem;
    }

    .logo-text small {
        display: none;
    }

    .hero {
        padding-top: 3.2rem;
    }

    .hero-copy,
    .hero-lead,
    .hero-actions,
    .hero-checks {
        width: min(100%, calc(100vw - 1.2rem));
        max-width: calc(100vw - 1.2rem);
    }

    h1 {
        max-width: none;
        font-size: 2.02rem;
        line-height: 1.1;
    }

    h2 {
        font-size: 2.1rem;
    }

    .hero-lead {
        max-width: 100%;
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn,
    .btn-large,
    .final-cta-actions .btn {
        width: 100%;
    }

    .desktop-panel {
        padding: 1.2rem;
    }

    .desktop-copy h2 {
        max-width: none;
    }

    .desktop-window-body {
        grid-template-columns: 6.5rem minmax(0, 1fr);
    }

    .desktop-window-cards {
        grid-template-columns: 1fr;
    }

    .desktop-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .desktop-actions .btn {
        width: 100%;
    }

    .hero-media {
        min-height: 24rem;
    }

    .device-frame {
        width: min(100%, 14.8rem);
        border-radius: 24px;
    }

    .device-frame img {
        border-radius: 18px;
    }

    .ops-note {
        width: min(12rem, 48vw);
        padding: 0.82rem;
        font-size: 0.85rem;
    }

    .note-order {
        left: 0;
        top: 1rem;
    }

    .note-cash {
        right: 0;
        bottom: 1.5rem;
    }

    .proof-strip {
        margin-top: 1.5rem;
    }

    .workflow-step {
        grid-template-columns: 1fr;
    }

    .workflow-step span {
        grid-row: auto;
    }

    .plan-label {
        position: static;
        display: inline-flex;
        margin-bottom: 0.8rem;
    }

    .plan-head p {
        display: grid;
        gap: 0.2rem;
    }

    .plan-head strong {
        font-size: 2.65rem;
    }

    .footer {
        padding-bottom: 7rem;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .mobile-install-bar {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 60;
        padding: 0.85rem 1rem;
        background: var(--brand);
        color: var(--paper-strong);
        font-weight: 900;
        font-size: 0.95rem;
        box-shadow: 0 -8px 24px rgba(37, 26, 18, 0.18);
    }

    .mobile-install-bar i {
        font-size: 1.1rem;
    }

    .testimonials-comanda-grid {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }

    [data-reveal] {
        opacity: 1;
        translate: 0 0;
    }
}
