:root {
    color-scheme: light;
    --forest-950: #062f2a;
    --forest-900: #073c35;
    --forest-800: #0a5146;
    --forest-700: #126b59;
    --mint: #3bd5aa;
    --mint-soft: #dff8ef;
    --coral: #e75b5c;
    --coral-soft: #ffe3dc;
    --bone: #f5f1e9;
    --paper: #fffdf8;
    --ink: #092923;
    --muted: #6f807c;
    --line: #d8e0dc;
    --blue: #4057d6;
    --shadow: 0 32px 90px rgba(6, 47, 42, .14);
    --radius-sm: 16px;
    --radius: 28px;
    --radius-lg: 42px;
    --shell: min(1240px, calc(100% - 40px));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--bone);
    color: var(--ink);
    font-family: "IBM Plex Sans Arabic", sans-serif;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 1000;
    pointer-events: none;
    opacity: .16;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.83' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
    mix-blend-mode: multiply;
}

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

button,
input,
select {
    font: inherit;
}

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

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3,
.brand,
.button,
.section-index,
.price,
.price-label,
.recommended {
    font-family: "Alexandria", sans-serif;
}

h1,
h2,
h3 {
    letter-spacing: -.04em;
}

em {
    color: var(--coral);
    font-style: normal;
}

.shell {
    width: var(--shell);
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    top: 12px;
    right: 12px;
    z-index: 9999;
    padding: 10px 16px;
    border-radius: 10px;
    background: var(--ink);
    color: white;
    transform: translateY(-180%);
}

.skip-link:focus {
    transform: none;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(9, 41, 35, .09);
    background: rgba(245, 241, 233, .84);
    backdrop-filter: blur(22px);
}

.header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    direction: ltr;
    line-height: 1.1;
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--forest-900);
    color: var(--coral);
}

.brand-mark svg {
    width: 28px;
    height: 28px;
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    font-size: 17px;
    font-weight: 800;
}

.brand small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    color: #39534d;
    font-size: 15px;
    font-weight: 600;
}

.desktop-nav a {
    position: relative;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    border-radius: 99px;
    background: var(--coral);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .25s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.text-link {
    font-size: 14px;
    font-weight: 700;
}

.button {
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 17px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-3px);
}

.button-small {
    min-height: 44px;
    padding-inline: 18px;
    border-radius: 14px;
    background: var(--forest-900);
    color: #fff;
    box-shadow: 0 12px 26px rgba(7, 60, 53, .16);
}

.button-primary {
    background: var(--forest-900);
    color: #fff;
    box-shadow: 0 18px 34px rgba(7, 60, 53, .2);
}

.button-primary:hover,
.button-primary:focus-visible {
    background: var(--forest-800);
    box-shadow: 0 22px 40px rgba(7, 60, 53, .25);
}

.button-ghost,
.button-outline {
    border-color: #bbc8c3;
    background: rgba(255, 253, 248, .5);
    color: var(--ink);
}

.button-ghost:hover,
.button-outline:hover {
    border-color: var(--forest-700);
    background: var(--paper);
}

.button-mint {
    background: var(--mint);
    color: var(--forest-950);
    box-shadow: 0 18px 35px rgba(59, 213, 170, .2);
}

.button-dark-ghost {
    border-color: rgba(255, 255, 255, .3);
    color: #fff;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--paper);
    color: var(--ink);
    cursor: pointer;
    font-size: 20px;
}

.mobile-nav {
    width: min(calc(100% - 32px), 520px);
    margin: 0 auto 16px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--paper);
    box-shadow: var(--shadow);
}

.mobile-nav a {
    display: block;
    padding: 11px 14px;
    border-radius: 12px;
    font-weight: 700;
}

.mobile-nav a:hover {
    background: var(--mint-soft);
}

.hero {
    position: relative;
    min-height: 790px;
    overflow: hidden;
    padding: 72px 0 40px;
    background:
        linear-gradient(rgba(9, 41, 35, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(9, 41, 35, .045) 1px, transparent 1px),
        var(--bone);
    background-size: 52px 52px;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 180px;
    background: linear-gradient(to bottom, transparent, var(--bone));
    pointer-events: none;
}

.hero-orbit {
    position: absolute;
    border: 1px solid rgba(7, 60, 53, .14);
    border-radius: 50%;
    pointer-events: none;
}

.hero-orbit::before {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    border: 5px solid var(--bone);
    border-radius: 50%;
    background: var(--coral);
}

.hero-orbit-one {
    width: 650px;
    height: 650px;
    top: 84px;
    left: -190px;
}

.hero-orbit-one::before {
    top: 98px;
    right: 85px;
}

.hero-orbit-two {
    width: 330px;
    height: 330px;
    top: 280px;
    right: -220px;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: .86fr 1.14fr;
    gap: 64px;
    align-items: center;
}

.hero-copy {
    padding-block: 24px;
}

.eyebrow {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 22px;
    padding: 8px 13px;
    border: 1px solid rgba(7, 60, 53, .14);
    border-radius: 999px;
    background: rgba(255, 253, 248, .7);
    color: var(--forest-700);
    font-size: 13px;
    font-weight: 700;
}

.eyebrow span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--mint);
    box-shadow: 0 0 0 5px rgba(59, 213, 170, .15);
}

.hero h1 {
    max-width: 650px;
    margin-bottom: 24px;
    font-size: clamp(50px, 6vw, 92px);
    font-weight: 800;
    line-height: 1.08;
}

.hero h1 em {
    position: relative;
    white-space: nowrap;
}

.hero h1 em::after {
    content: "";
    position: absolute;
    right: 2%;
    bottom: -7px;
    width: 74%;
    height: 7px;
    border-radius: 50%;
    background: var(--coral);
    transform: rotate(-1.6deg);
}

.hero-lead {
    max-width: 600px;
    margin-bottom: 30px;
    color: #536b65;
    font-size: clamp(18px, 1.8vw, 22px);
    line-height: 1.85;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.play-dot {
    width: 28px;
    height: 28px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background: var(--coral-soft);
    color: var(--coral);
    font-size: 10px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 24px;
    color: var(--muted);
    font-size: 13px;
}

.hero-trust b {
    color: var(--forest-700);
}

.product-stage {
    position: relative;
    min-height: 560px;
    direction: ltr;
}

.product-stage::before {
    content: "";
    position: absolute;
    inset: 54px 5% 16px 4%;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 50%, rgba(59, 213, 170, .28), rgba(59, 213, 170, .07) 45%, transparent 70%);
    filter: blur(4px);
}

.stage-signal {
    position: absolute;
    top: 20px;
    left: 28px;
    z-index: 8;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 13px;
    border: 1px solid rgba(255, 255, 255, .45);
    border-radius: 999px;
    background: rgba(255, 253, 248, .85);
    box-shadow: 0 14px 30px rgba(6, 47, 42, .1);
    color: var(--forest-800);
    font-size: 12px;
    font-weight: 700;
    backdrop-filter: blur(12px);
}

.stage-signal i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--mint);
    box-shadow: 0 0 0 6px rgba(59, 213, 170, .15);
}

.dashboard-window {
    position: absolute;
    top: 56px;
    right: 0;
    width: 86%;
    overflow: hidden;
    border: 8px solid #f8f5ee;
    border-radius: 28px;
    background: var(--paper);
    box-shadow: var(--shadow);
    transform: rotate(1.5deg);
}

.dashboard-window img {
    width: 100%;
    aspect-ratio: 1.44 / 1;
    object-fit: cover;
    object-position: top;
}

.window-bar {
    height: 36px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 13px;
    border-bottom: 1px solid #e9ece9;
    background: #f7f6f2;
}

.window-bar span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #c7cecb;
}

.window-bar span:first-child {
    background: var(--coral);
}

.window-bar small {
    margin-left: auto;
    color: #80908b;
    font-family: "IBM Plex Sans Arabic", sans-serif;
    font-size: 9px;
}

.phone-frame {
    position: absolute;
    z-index: 5;
    right: 5%;
    bottom: 0;
    width: 190px;
    height: 415px;
    overflow: hidden;
    padding: 8px;
    border: 2px solid rgba(255, 255, 255, .8);
    border-radius: 34px;
    background: #101b19;
    box-shadow: 0 30px 64px rgba(6, 47, 42, .28);
    transform: rotate(-4deg);
}

.phone-frame img {
    width: 100%;
    height: 100%;
    border-radius: 26px;
    object-fit: cover;
    object-position: top;
}

.phone-top {
    position: absolute;
    top: 13px;
    left: 50%;
    z-index: 2;
    width: 54px;
    height: 13px;
    border-radius: 999px;
    background: #101b19;
    transform: translateX(-50%);
}

.floating-proof {
    position: absolute;
    z-index: 7;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, .65);
    border-radius: 17px;
    background: rgba(255, 253, 248, .9);
    box-shadow: 0 20px 45px rgba(6, 47, 42, .15);
    direction: rtl;
    backdrop-filter: blur(14px);
}

.floating-proof small,
.floating-proof strong {
    display: block;
}

.floating-proof small {
    color: var(--muted);
    font-size: 10px;
}

.floating-proof strong {
    font-size: 11px;
}

.floating-proof > b {
    margin-right: 14px;
    color: var(--forest-700);
    font-size: 10px;
}

.proof-icon {
    width: 35px;
    height: 35px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    background: var(--mint-soft);
    color: var(--forest-800);
    font-size: 18px;
}

.proof-order {
    top: 374px;
    left: -10px;
}

.proof-rx {
    right: 204px;
    bottom: 17px;
}

.proof-rx .proof-icon {
    background: var(--coral-soft);
    color: var(--coral);
}

.proof-ribbon {
    position: relative;
    z-index: 3;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin-top: 38px;
    padding: 16px 22px;
    border: 1px solid rgba(7, 60, 53, .1);
    border-radius: 20px;
    background: rgba(255, 253, 248, .62);
    color: #526c65;
    font-family: "Alexandria", sans-serif;
    font-size: 13px;
    font-weight: 600;
    backdrop-filter: blur(12px);
}

.proof-ribbon i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--coral);
}

.section {
    position: relative;
    padding: 110px 0;
}

.section-heading {
    max-width: 820px;
    margin-bottom: 50px;
}

.section-heading-split {
    max-width: none;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 70px;
    align-items: end;
}

.section-index {
    display: block;
    margin-bottom: 18px;
    color: var(--forest-700);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
}

.section-index-light {
    color: var(--mint);
}

.section-heading h2,
.workflow-copy h2,
.booking-copy h2,
.legal-hero h1 {
    margin-bottom: 20px;
    font-size: clamp(40px, 5vw, 72px);
    font-weight: 700;
    line-height: 1.16;
}

.section-heading p,
.booking-copy > p {
    max-width: 680px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 19px;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.pain-card {
    min-height: 320px;
    display: flex;
    flex-direction: column;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 253, 248, .72);
}

.pain-card > span {
    color: var(--coral);
    font-family: "Alexandria", sans-serif;
    font-size: 12px;
    font-weight: 700;
}

.pain-card h3 {
    margin: auto 0 14px;
    font-size: 30px;
}

.pain-card p {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
}

.pain-card-dark {
    border-color: var(--forest-900);
    background: var(--forest-900);
    color: white;
    transform: translateY(-18px);
}

.pain-card-dark p {
    color: #b8d0c9;
}

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

.showcase-grid {
    display: grid;
    gap: 22px;
}

.showcase {
    min-height: 620px;
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    align-items: stretch;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--bone);
}

.showcase-dashboard {
    grid-template-columns: 1.2fr .8fr;
    background: var(--forest-950);
    color: white;
}

.showcase-dashboard .showcase-copy {
    order: 2;
}

.showcase-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px;
}

.pill {
    width: fit-content;
    margin-bottom: 20px;
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--mint-soft);
    color: var(--forest-700);
    font-size: 12px;
    font-weight: 700;
}

.showcase-dashboard .pill {
    background: rgba(59, 213, 170, .12);
    color: var(--mint);
}

.showcase h3 {
    margin-bottom: 22px;
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.25;
}

.showcase ul,
.price-card ul {
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

.showcase li,
.price-card li {
    position: relative;
    margin-bottom: 12px;
    padding-right: 26px;
    color: var(--muted);
}

.showcase li::before,
.price-card li::before {
    content: "✓";
    position: absolute;
    right: 0;
    color: var(--forest-700);
    font-weight: 800;
}

.showcase-dashboard li {
    color: #b9d0ca;
}

.showcase-dashboard li::before {
    color: var(--mint);
}

.showcase-copy > a {
    width: fit-content;
    color: var(--forest-700);
    font-family: "Alexandria", sans-serif;
    font-size: 14px;
    font-weight: 700;
}

.showcase-dashboard .showcase-copy > a {
    color: var(--mint);
}

.showcase-visual {
    position: relative;
    min-height: 620px;
    overflow: hidden;
}

.phone-crop {
    background:
        radial-gradient(circle at 65% 30%, rgba(59, 213, 170, .35), transparent 36%),
        linear-gradient(140deg, #e7e2d7, #c7ddd4);
}

.phone-crop img {
    position: absolute;
    top: 55px;
    left: 50%;
    width: 300px;
    height: 665px;
    border: 10px solid #11211d;
    border-radius: 46px;
    object-fit: cover;
    object-position: top;
    box-shadow: 0 40px 75px rgba(6, 47, 42, .25);
    transform: translateX(-50%) rotate(3deg);
}

.dashboard-crop {
    background:
        linear-gradient(rgba(59, 213, 170, .06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 213, 170, .06) 1px, transparent 1px),
        #0b4a40;
    background-size: 38px 38px;
}

.dashboard-crop img {
    position: absolute;
    top: 76px;
    left: -65px;
    width: 800px;
    max-width: none;
    border: 8px solid #f2eee5;
    border-radius: 24px;
    box-shadow: 0 34px 80px rgba(0, 0, 0, .28);
    transform: rotate(-2deg);
}

.workflow-section {
    background: var(--forest-950);
    color: white;
}

.workflow-section::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .35;
    background:
        radial-gradient(circle at 12% 18%, rgba(59, 213, 170, .22), transparent 28%),
        radial-gradient(circle at 86% 86%, rgba(231, 91, 92, .18), transparent 24%);
}

.workflow-shell {
    position: relative;
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 90px;
    align-items: center;
}

.workflow-copy h2 {
    font-size: clamp(42px, 5vw, 68px);
}

.workflow-copy p {
    margin-bottom: 28px;
    color: #b8d0c9;
    font-size: 18px;
}

.workflow-steps {
    position: relative;
}

.workflow-steps::before {
    content: "";
    position: absolute;
    top: 54px;
    right: 28px;
    bottom: 54px;
    width: 1px;
    background: linear-gradient(var(--mint), rgba(59, 213, 170, .08));
}

.workflow-step {
    position: relative;
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 20px;
    align-items: start;
    padding: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.workflow-step > span {
    position: relative;
    z-index: 2;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(59, 213, 170, .35);
    border-radius: 50%;
    background: var(--forest-950);
    color: var(--mint);
    font-family: "Alexandria", sans-serif;
    font-size: 12px;
    font-weight: 700;
}

.workflow-step h3 {
    margin: 1px 0 5px;
    font-size: 23px;
}

.workflow-step p {
    margin: 0;
    color: #a7c0b9;
}

.setup-rail {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
}

.setup-step {
    position: relative;
    min-height: 280px;
    padding: 34px 26px;
    border-left: 1px solid var(--line);
}

.setup-step:last-child {
    border-left: 0;
}

.setup-step::before {
    content: "";
    position: absolute;
    top: -7px;
    right: 26px;
    width: 13px;
    height: 13px;
    border: 4px solid var(--bone);
    border-radius: 50%;
    background: var(--coral);
}

.setup-step span,
.setup-step b {
    display: block;
}

.setup-step span {
    margin-bottom: 72px;
    color: var(--forest-700);
    font-family: "Alexandria", sans-serif;
    font-size: 12px;
    font-weight: 700;
}

.setup-step b {
    margin-bottom: 10px;
    font-family: "Alexandria", sans-serif;
    font-size: 21px;
}

.setup-step p {
    margin: 0;
    color: var(--muted);
}

.pricing-section {
    background: #eee9df;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    align-items: stretch;
}

.price-card {
    position: relative;
    min-height: 650px;
    display: flex;
    flex-direction: column;
    padding: 36px;
    border: 1px solid #d4dcd7;
    border-radius: var(--radius);
    background: var(--paper);
}

.price-card-featured {
    border-color: var(--forest-900);
    background: var(--forest-900);
    color: white;
    box-shadow: 0 34px 70px rgba(7, 60, 53, .2);
    transform: translateY(-18px);
}

.recommended {
    position: absolute;
    top: -15px;
    right: 32px;
    padding: 7px 14px;
    border-radius: 999px;
    background: var(--coral);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
}

.price-label {
    width: fit-content;
    margin-bottom: 20px;
    padding: 7px 11px;
    border-radius: 999px;
    background: var(--mint-soft);
    color: var(--forest-700);
    font-size: 11px;
    font-weight: 700;
}

.price-card-featured .price-label {
    background: rgba(59, 213, 170, .14);
    color: var(--mint);
}

.price-card h3 {
    margin-bottom: 18px;
    font-size: 34px;
}

.price {
    min-height: 76px;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 4px;
}

.price b {
    font-size: 35px;
    line-height: 1.15;
}

.price small {
    color: var(--muted);
    font-size: 12px;
}

.price-card-featured .price small,
.price-card-featured > p {
    color: #b7d0c9;
}

.monthly {
    margin-bottom: 20px;
    color: var(--forest-700);
    font-family: "Alexandria", sans-serif;
    font-size: 15px;
    font-weight: 700;
}

.price-card-featured .monthly {
    color: var(--mint);
}

.price-card > p {
    min-height: 78px;
    color: var(--muted);
}

.price-card ul {
    flex: 1;
    margin-top: 14px;
}

.price-card li {
    font-size: 15px;
}

.price-card-featured li {
    color: #c4d8d3;
}

.price-card-featured li::before {
    color: var(--mint);
}

.price-card .button {
    width: 100%;
}

.pricing-note {
    max-width: 900px;
    margin: 24px auto 0;
    color: var(--muted);
    text-align: center;
    font-size: 13px;
}

.live-demo-section {
    background: #eee9df;
    padding-top: 30px;
}

.live-demo-card {
    min-height: 600px;
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 30px;
    align-items: center;
    overflow: hidden;
    padding: 60px;
    border-radius: var(--radius-lg);
    background: var(--forest-950);
    color: white;
}

.live-demo-card h2 {
    margin-bottom: 20px;
    font-size: clamp(42px, 5vw, 65px);
    line-height: 1.18;
}

.live-demo-card p {
    margin-bottom: 28px;
    color: #b4cdc6;
    font-size: 18px;
}

.demo-stack {
    position: relative;
    min-height: 470px;
    direction: ltr;
}

.demo-dashboard {
    position: absolute;
    top: 40px;
    left: 0;
    width: 94%;
    border: 8px solid #f3eee5;
    border-radius: 28px;
    box-shadow: 0 32px 70px rgba(0, 0, 0, .34);
    transform: rotate(-1.5deg);
}

.demo-phone {
    position: absolute;
    right: 0;
    bottom: -50px;
    width: 190px;
    height: 420px;
    border: 8px solid #101a18;
    border-radius: 36px;
    object-fit: cover;
    object-position: top;
    box-shadow: 0 30px 60px rgba(0, 0, 0, .4);
    transform: rotate(4deg);
}

.booking-section {
    background:
        linear-gradient(rgba(9, 41, 35, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(9, 41, 35, .04) 1px, transparent 1px),
        var(--bone);
    background-size: 44px 44px;
}

.booking-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.booking-copy {
    position: sticky;
    top: 120px;
}

.booking-copy > p {
    margin-bottom: 30px;
}

.booking-promise {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 18px;
    align-items: center;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 253, 248, .75);
}

.booking-promise > span {
    min-height: 70px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: var(--coral-soft);
    color: var(--coral);
    font-family: "Alexandria", sans-serif;
    font-size: 12px;
    font-weight: 700;
}

.booking-promise p {
    margin: 0;
    color: var(--muted);
}

.booking-promise b {
    color: var(--ink);
}

.lead-form {
    padding: 40px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: var(--shadow);
}

.form-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
}

.form-heading span,
.form-heading small {
    display: block;
}

.form-heading span {
    font-family: "Alexandria", sans-serif;
    font-size: 22px;
    font-weight: 700;
}

.form-heading small {
    color: var(--muted);
    font-size: 12px;
}

.field-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.lead-form label {
    display: block;
    margin-bottom: 18px;
}

.lead-form label > span {
    display: block;
    margin-bottom: 7px;
    font-weight: 600;
}

.lead-form input,
.lead-form select {
    width: 100%;
    min-height: 56px;
    padding: 0 15px;
    border: 1px solid #ccd6d1;
    border-radius: 14px;
    outline: 0;
    background: #fbfaf6;
    color: var(--ink);
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.lead-form input:focus,
.lead-form select:focus {
    border-color: var(--forest-700);
    background: white;
    box-shadow: 0 0 0 4px rgba(18, 107, 89, .09);
}

.consent-row {
    display: grid !important;
    grid-template-columns: 22px 1fr;
    gap: 10px;
    align-items: start;
}

.consent-row input {
    min-height: 0;
    width: 18px;
    height: 18px;
    margin-top: 5px;
    accent-color: var(--forest-700);
}

.consent-row span {
    margin: 0 !important;
    color: var(--muted);
    font-size: 13px;
    font-weight: 400 !important;
}

.form-submit {
    width: 100%;
}

.form-note {
    margin: 12px 0 0;
    color: var(--muted);
    text-align: center;
    font-size: 11px;
}

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

.faq-grid {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: 80px;
}

.faq-list {
    border-top: 1px solid var(--line);
}

.faq-list details {
    border-bottom: 1px solid var(--line);
}

.faq-list summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 0;
    cursor: pointer;
    list-style: none;
    font-family: "Alexandria", sans-serif;
    font-size: 18px;
    font-weight: 600;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary span {
    width: 34px;
    height: 34px;
    display: grid;
    flex: 0 0 34px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    transition: transform .2s ease, background .2s ease;
}

.faq-list details[open] summary span {
    background: var(--mint-soft);
    transform: rotate(45deg);
}

.faq-list details p {
    max-width: 760px;
    margin: -5px 0 24px;
    color: var(--muted);
    font-size: 16px;
}

.final-cta {
    padding: 34px 0;
    background: var(--coral);
    color: white;
}

.final-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.final-cta span {
    font-size: 14px;
}

.final-cta h2 {
    margin: 4px 0 0;
    font-size: clamp(27px, 3vw, 42px);
}

.site-footer {
    padding: 72px 0 24px;
    background: var(--forest-950);
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 50px;
    padding-bottom: 55px;
}

.brand-footer {
    margin-bottom: 18px;
}

.brand-footer .brand-mark {
    background: rgba(255, 255, 255, .08);
}

.brand-footer small {
    color: #8cb0a7;
}

.footer-grid p,
.footer-grid span,
.footer-grid a {
    color: #a9c3bc;
}

.footer-grid p {
    max-width: 330px;
    margin: 0;
}

.footer-grid > div:not(:first-child) {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-grid .footer-title {
    margin-bottom: 8px;
    color: white;
    font-family: "Alexandria", sans-serif;
    font-weight: 700;
}

.footer-grid a:hover {
    color: var(--mint);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    color: #799f95;
    font-size: 12px;
}

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 80;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border: 5px solid var(--bone);
    border-radius: 50%;
    background: #25d366;
    color: white;
    box-shadow: 0 16px 40px rgba(37, 211, 102, .34);
    transition: transform .2s ease;
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.03);
}

.whatsapp-float svg {
    width: 27px;
    height: 27px;
    fill: currentColor;
}

.legal-hero {
    padding: 90px 0 50px;
    background:
        radial-gradient(circle at 20% 30%, rgba(59, 213, 170, .12), transparent 28%),
        var(--forest-950);
    color: white;
}

.legal-shell {
    max-width: 920px;
}

.legal-hero h1 {
    margin-bottom: 20px;
}

.legal-hero p {
    max-width: 760px;
    color: #b6cec8;
    font-size: 18px;
}

.legal-content {
    padding: 60px 0 100px;
}

.legal-card {
    padding: 48px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
}

.legal-card h2 {
    margin: 32px 0 9px;
    font-size: 24px;
}

.legal-card h2:first-child {
    margin-top: 0;
}

.legal-card p {
    color: var(--muted);
    font-size: 17px;
}

.legal-card a {
    color: var(--forest-700);
    text-decoration: underline;
}

.legal-note {
    margin-top: 30px !important;
    padding: 18px;
    border-radius: 16px;
    background: var(--coral-soft);
    color: #6e3b36 !important;
}

.reveal {
    animation: rise-in .72s cubic-bezier(.22, .8, .25, 1) both;
}

.reveal[data-delay="1"] {
    animation-delay: .1s;
}

.reveal[data-delay="2"] {
    animation-delay: .2s;
}

.reveal[data-delay="3"] {
    animation-delay: .3s;
}

@keyframes rise-in {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1080px) {
    .desktop-nav {
        display: none;
    }

    .hero-grid,
    .workflow-shell,
    .booking-grid {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        text-align: center;
    }

    .eyebrow,
    .hero-actions {
        margin-inline: auto;
        justify-content: center;
    }

    .hero-lead {
        margin-inline: auto;
    }

    .hero-trust {
        justify-content: center;
    }

    .product-stage {
        width: min(800px, 100%);
        margin-inline: auto;
    }

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

    .workflow-copy {
        max-width: 700px;
    }

    .setup-rail {
        grid-template-columns: 1fr 1fr;
    }

    .setup-step:nth-child(2) {
        border-left: 0;
    }

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

    .price-card {
        min-height: 0;
    }

    .price-card-featured {
        transform: none;
    }

    .live-demo-card {
        grid-template-columns: 1fr;
    }

    .booking-copy {
        position: static;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 760px) {
    :root {
        --shell: min(100% - 28px, 620px);
        --radius: 22px;
        --radius-lg: 28px;
    }

    .header-inner {
        min-height: 70px;
    }

    .header-actions {
        display: none;
    }

    .menu-toggle {
        display: grid;
        place-items: center;
    }

    .hero {
        min-height: auto;
        padding-top: 45px;
    }

    .hero-grid {
        gap: 18px;
    }

    .hero h1 {
        font-size: clamp(44px, 13vw, 66px);
    }

    .hero h1 em {
        white-space: normal;
    }

    .hero-lead {
        font-size: 17px;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-trust {
        gap: 8px 12px;
    }

    .product-stage {
        min-height: 430px;
        margin-top: 8px;
    }

    .dashboard-window {
        top: 58px;
        right: -12%;
        width: 112%;
    }

    .phone-frame {
        right: 4%;
        width: 142px;
        height: 310px;
        border-radius: 29px;
    }

    .phone-frame img {
        border-radius: 21px;
    }

    .proof-order {
        top: auto;
        left: 0;
        bottom: 15px;
    }

    .proof-rx {
        display: none;
    }

    .stage-signal {
        left: 5px;
    }

    .proof-ribbon {
        justify-content: flex-start;
        overflow: auto;
        gap: 14px;
        margin-top: 10px;
        white-space: nowrap;
    }

    .section {
        padding: 76px 0;
    }

    .section-heading,
    .section-heading-split {
        display: block;
        margin-bottom: 34px;
    }

    .section-heading h2,
    .workflow-copy h2,
    .booking-copy h2,
    .legal-hero h1 {
        font-size: clamp(38px, 11vw, 55px);
    }

    .section-heading p,
    .booking-copy > p {
        font-size: 17px;
    }

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

    .pain-card {
        min-height: 260px;
    }

    .pain-card-dark {
        transform: none;
    }

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

    .showcase-dashboard .showcase-copy {
        order: 0;
    }

    .showcase-copy {
        padding: 34px 26px;
    }

    .showcase h3 {
        font-size: 35px;
    }

    .showcase-visual {
        min-height: 470px;
    }

    .phone-crop img {
        width: 230px;
        height: 510px;
    }

    .dashboard-crop {
        min-height: 340px;
    }

    .dashboard-crop img {
        top: 42px;
        left: -170px;
        width: 700px;
    }

    .workflow-shell {
        gap: 38px;
    }

    .workflow-step {
        padding-inline: 0;
    }

    .setup-rail {
        grid-template-columns: 1fr;
        border-top: 0;
    }

    .setup-step,
    .setup-step:nth-child(2) {
        min-height: 0;
        padding: 24px 0;
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .setup-step::before {
        top: -7px;
        right: 0;
    }

    .setup-step span {
        margin-bottom: 34px;
    }

    .price-card {
        padding: 30px 24px;
    }

    .live-demo-card {
        min-height: 0;
        padding: 34px 24px;
    }

    .demo-stack {
        min-height: 340px;
    }

    .demo-dashboard {
        width: 115%;
        left: -18%;
    }

    .demo-phone {
        width: 135px;
        height: 300px;
        bottom: -32px;
    }

    .booking-grid {
        gap: 40px;
    }

    .lead-form {
        padding: 28px 20px;
    }

    .form-heading {
        display: block;
    }

    .form-heading small {
        margin-top: 6px;
    }

    .field-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .faq-list summary {
        font-size: 16px;
    }

    .final-cta-inner {
        display: block;
        text-align: center;
    }

    .final-cta .button {
        width: 100%;
        margin-top: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px 24px;
    }

    .footer-grid > div:first-child {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        display: block;
        text-align: center;
    }

    .footer-bottom span {
        display: block;
        margin-bottom: 6px;
    }

    .legal-hero {
        padding-top: 65px;
    }

    .legal-card {
        padding: 28px 22px;
    }
}

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

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}
