:root {
    --ink: #0c1222;
    --ink-2: #1f2937;
    --ink-3: #374151;
    --line: rgba(255, 255, 255, 0.1);
    --line-2: rgba(12, 18, 34, 0.1);
    --paper: #f9fafb;
    --paper-2: #f3f4f6;
    --white: #ffffff;
    --muted: #6b7280;
    --muted-2: rgba(255, 255, 255, 0.66);
    --accent: #de253a;
    --accent-2: #c41f32;
    --accent-tint: #fbe9eb;
    --good: #1f8e5f;
    --border: #e5e7eb;
    --r-sm: 6px;
    --r-md: 14px;
    --r-lg: 16px;
    --r-xl: 20px;
    --maxw: 1280px;
    --pad-x: clamp(20px, 4vw, 60px);
}

* {
    box-sizing: border-box;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
details:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
    border-radius: 4px;
}

img,
svg,
video {
    max-width: 100%;
    height: auto;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: 0;
    background: none;
}

h1,
h2,
h3,
h4 {
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0;
    text-wrap: balance;
}

h1 {
    font-size: 60px;
    line-height: 1.05;
    letter-spacing: -0.03em;
    font-weight: 800;
}

@media (max-width: 780px) {
    h1 {
        font-size: clamp(36px, 7vw, 52px);
    }
}

h2 {
    font-size: clamp(28px, 3.4vw, 42px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-weight: 800;
}

h3 {
    font-size: clamp(20px, 1.6vw, 24px);
    line-height: 1.25;
    font-weight: 700;
}

h4 {
    font-weight: 700;
}

p {
    margin: 0;
    text-wrap: pretty;
}

.serif {
    font-family: "Gilroy", serif;
    font-weight: 200;
    letter-spacing: -0.01em;
    font-style: italic;
}

.mono {
    font-family: "Gilroy", sans-serif;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 600;
}

.wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 var(--pad-x);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "Gilroy", sans-serif;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
}

.eyebrow .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

.eyebrow.on-dark {
    color: var(--muted-2);
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 60px;
    padding: 18px 28px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition:
        transform 0.3s,
        background 0.3s,
        box-shadow 0.3s,
        color 0.3s;
    border: 0;
    cursor: pointer;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 12px 30px rgba(222, 37, 58, 0.3);
}

.btn-primary:hover {
    background: #c41f32;
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(222, 37, 58, 0.42);
}

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

.btn-ghost:hover {
    background: rgba(222, 37, 58, 0.18);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.btn-dark {
    background: var(--ink);
    color: #fff;
}

.btn-dark:hover {
    background: #000;
    transform: translateY(-2px);
}

.btn-light {
    background: #fff;
    color: var(--ink);
    border: 2px solid var(--ink);
}

.btn-light:hover {
    background: var(--ink);
    color: #fff;
    transform: translateY(-2px);
}

/* HERO */
.hero {
    background: var(--ink);
    color: #fff;
    padding: clamp(56px, 7vw, 96px) 0 clamp(48px, 6vw, 80px);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(900px 500px at 85% -10%, rgba(222, 37, 58, 0.18), transparent 60%),
        radial-gradient(700px 400px at -10% 110%, rgba(196, 31, 50, 0.07), transparent 60%);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.2fr 0.95fr;
    gap: clamp(32px, 5vw, 72px);
    align-items: start;
}

@media (max-width: 980px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
}

.hero h1 .accent {
    color: var(--accent);
}

.hero-sub {
    margin-top: 22px;
    max-width: 580px;
    font-size: clamp(16px, 1.2vw, 18.5px);
    color: var(--muted-2);
    line-height: 1.55;
}

.hero-pills {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--line);
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.85);
}

.pill svg {
    width: 14px;
    height: 14px;
    color: var(--accent);
}

.hero-ctas {
    margin-top: 34px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* TL;DR carousel */
.tldr {
    margin-top: clamp(40px, 5vw, 60px);
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    position: relative;
}

@media (max-width: 1100px) {
    .tldr {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 680px) {
    .tldr {
        display: flex;
        grid-template-columns: none;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        margin-left: calc(-1 * var(--pad-x));
        margin-right: calc(-1 * var(--pad-x));
        padding: 4px var(--pad-x) 14px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .tldr::-webkit-scrollbar {
        display: none;
    }

    .tldr::after {
        content: "";
        flex: 0 0 4px;
    }
}

.tldr-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--r-lg);
    padding: 22px 20px;
    transition:
        border-color 0.3s,
        background 0.3s,
        transform 0.3s;
}

.tldr-card:hover {
    border-color: var(--accent);
    background: rgba(222, 37, 58, 0.08);
    transform: translateY(-4px);
}

@media (max-width: 680px) {
    .tldr-card {
        flex: 0 0 78%;
        max-width: 300px;
        scroll-snap-align: start;
    }
}

@media (max-width: 380px) {
    .tldr-card {
        flex-basis: 86%;
    }
}

.tldr-card .ic {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(222, 37, 58, 0.18);
    color: var(--accent);
    display: grid;
    place-items: center;
    margin-bottom: 14px;
}

.tldr-card .ic svg {
    width: 18px;
    height: 18px;
}

.tldr-card h5 {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.tldr-card p {
    margin-top: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.55;
}

.tldr-hint {
    display: none;
}

@media (max-width: 680px) {
    .tldr-hint {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-top: 14px;
        font-family: "Gilroy", sans-serif;
        font-size: 11px;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.55);
        font-weight: 600;
    }

    .tldr-hint svg {
        width: 14px;
        height: 14px;
        color: var(--accent);
        animation: slidehint 1.6s ease-in-out infinite;
    }

    @keyframes slidehint {
        0%,
        100% {
            transform: translateX(0);
        }

        50% {
            transform: translateX(4px);
        }
    }
}

/* HERO STATS */
.hero-stats-strip {
    position: relative;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 36px 0;
    background: var(--ink);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
}

.hero-stats .stat {
    border-right: 1px solid var(--line);
    padding: 4px 22px;
}

.hero-stats .stat:first-child {
    padding-left: 0;
}

.hero-stats .stat:last-child {
    border-right: 0;
    padding-right: 0;
}

@media (max-width: 980px) {
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 24px;
    }

    .hero-stats .stat:nth-child(3n) {
        border-right: 0;
    }
}

@media (max-width: 640px) {
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px 0;
        row-gap: 18px;
    }
}

.stat .num {
    font-size: clamp(28px, 2.8vw, 38px);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #fff;
}

.stat .num .accent {
    color: var(--accent);
}

.stat .lbl {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 6px;
    line-height: 1.4;
}

/* LEAD CARD */
.lead-card {
    background: #fff;
    color: var(--ink);
    border-radius: var(--r-lg);
    padding: 28px;
    border: 1px solid #e5e7eb;
    box-shadow:
        0 30px 80px -20px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(222, 37, 58, 0.08) inset;
    position: relative;
}

.lead-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fbe9eb;
    color: #c41f32;
    padding: 6px 12px;
    border-radius: 999px;
    font-family: "Gilroy", sans-serif;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 600;
}

.lead-h {
    margin-top: 14px;
    font-size: 24px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    font-weight: 700;
}

.lead-h .serif {
    color: var(--accent);
}

.lead-sub {
    margin-top: 8px;
    color: var(--muted);
    font-size: 13.5px;
    line-height: 1.5;
}

.lead-form {
    margin-top: 18px;
    display: grid;
    gap: 10px;
    position: relative;
}

.lead-form .row2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.field label {
    font-size: 11px;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 12px 14px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    color: var(--ink);
    transition:
        border 0.15s,
        box-shadow 0.15s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: 0;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(222, 37, 58, 0.15);
}

.field textarea {
    resize: vertical;
    height: 78px;
}

.lead-submit {
    margin-top: 6px;
    border: 0;
    width: 100%;
    background: var(--accent);
    color: #fff;
    padding: 16px 18px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 13.5px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition:
        background 0.15s,
        transform 0.15s;
    box-shadow: 0 12px 30px rgba(222, 37, 58, 0.2);
}

.lead-submit:hover {
    background: #c41f32;
    transform: translateY(-1px);
}
.lead-form .wpcf7-spinner {
    position: absolute;
    bottom: 0;
    right: 0;
}
.lead-foot {
    margin-top: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11.5px;
    color: var(--muted);
}

.lead-foot svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: var(--good);
}

.lead-success {
    display: none;
    padding: 18px;
    text-align: center;
    background: #e8f5ee;
    color: #0f5a3a;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
}

.lead-success.on {
    display: block;
}

/* LOGO STRIP */
.logos-strip {
    background: #0c1222;
    border-top: 1px solid var(--line);
    padding: 26px 0;
    color: var(--muted-2);
}

.logos-row {
    display: flex;
    align-items: center;
    gap: clamp(28px, 4vw, 56px);
    flex-wrap: wrap;
    justify-content: space-between;
    font-family: "Gilroy", sans-serif;
    font-size: clamp(15px, 1.5vw, 19px);
    font-weight: 700;
    letter-spacing: -0.01em;
    opacity: 0.78;
}

.logos-label {
    font-family: "Gilroy", sans-serif;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 600;
}

.logos-row span.brand {
    color: #fff;
}

/* SECTIONS */
section {
    padding: clamp(72px, 8vw, 110px) 0;
}

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

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

.section-dark {
    background: var(--ink);
    color: #fff;
}

.section-white {
    background: var(--white);
}

.sec-head {
    max-width: 780px;
    margin: 0 auto clamp(40px, 4vw, 60px);
    text-align: center;
}

.sec-head h2 {
    margin-top: 14px;
}

.sec-head .lead {
    margin-top: 18px;
    font-size: clamp(15.5px, 1.2vw, 17.5px);
    color: var(--muted);
    line-height: 1.55;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.section-dark .sec-head .lead {
    color: var(--muted-2);
}

.sec-head .eyebrow {
    justify-content: center;
}

.answer-line {
    margin: 14px auto 0;
    max-width: 760px;
    text-align: center;
    font-size: 15.5px;
    color: var(--ink);
    font-weight: 500;
    line-height: 1.55;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-left: 3px solid var(--accent);
    border-radius: 10px;
    padding: 14px 18px;
}

.section-dark .answer-line {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border-color: var(--line);
    border-left-color: var(--accent);
}

.section-cta {
    margin-top: 48px;
    text-align: center;
}

.section-cta p {
    margin-bottom: 18px;
    font-size: 14.5px;
    color: var(--muted);
}

.section-dark .section-cta p {
    color: rgba(255, 255, 255, 0.65);
}

/* WHY UAE MARKET */
.why-grid-2 {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(40px, 5vw, 80px);
    align-items: center;
}

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

.why-grid-2 p {
    font-size: clamp(15.5px, 1.15vw, 17px);
    color: var(--muted);
    margin-top: 16px;
    line-height: 1.65;
}

.why-grid-2 p strong {
    color: var(--ink);
    font-weight: 600;
}

.stat-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: var(--r-lg);
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    overflow: hidden;
    box-shadow: 0 12px 40px -20px rgba(12, 18, 34, 0.18);
}

.stat-card .s {
    padding: 30px 28px;
    transition: background 0.3s;
}

.stat-card .s:hover {
    background: #f9fafb;
}

.stat-card .s:nth-child(odd) {
    border-right: 1px solid #e5e7eb;
}

.stat-card .s:nth-child(-n + 2) {
    border-bottom: 1px solid #e5e7eb;
}

.stat-card .s .v {
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--ink);
    line-height: 1;
}

.stat-card .s .v .accent {
    color: var(--accent);
}

.stat-card .s .l {
    font-size: 12px;
    color: var(--muted);
    font-family: "Gilroy", sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 10px;
    line-height: 1.5;
    font-weight: 600;
}

.stat-card .src {
    grid-column: 1/-1;
    padding: 14px 28px;
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
    font-size: 10.5px;
    color: var(--muted);
    font-family: "Gilroy", sans-serif;
    letter-spacing: 0.1em;
    font-weight: 600;
}

/* VERTICAL CARD GRID */
.vert-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

@media (max-width: 1100px) {
    .vert-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 720px) {
    .vert-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .vert-grid {
        grid-template-columns: 1fr;
    }
}

.vert {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: var(--r-lg);
    padding: 24px 22px;
    transition:
        transform 0.35s,
        border-color 0.35s,
        box-shadow 0.35s;
    position: relative;
    overflow: hidden;
}

.vert:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 18px 38px -18px rgba(222, 37, 58, 0.25);
}

.vert .ic {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: linear-gradient(135deg, #fbe9eb, #fbd5da);
    color: var(--accent);
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    transition:
        background 0.3s,
        color 0.3s;
}

.vert:hover .ic {
    background: linear-gradient(135deg, var(--accent), #c41f32);
    color: #fff;
}

.vert .ic svg {
    width: 22px;
    height: 22px;
}

.vert h3 {
    font-size: 17px;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.vert p {
    margin-top: 8px;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
}

/* 5 APPS DIAGRAM */
.apps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

@media (max-width: 1100px) {
    .apps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 720px) {
    .apps-grid {
        grid-template-columns: 1fr;
    }
}

.app-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: var(--r-lg);
    padding: 28px 24px;
    transition:
        transform 0.35s,
        border-color 0.35s,
        box-shadow 0.35s;
}

.app-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 18px 36px -16px rgba(222, 37, 58, 0.22);
}

.app-card .head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.app-card .ic {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent), #c41f32);
    color: #fff;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.app-card .ic svg {
    width: 24px;
    height: 24px;
}

.app-card h3 {
    font-size: 17px;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.app-card .audience {
    font-family: "Gilroy", sans-serif;
    font-size: 10.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 700;
    margin-top: 4px;
}

.app-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 9px;
    font-size: 13px;
    color: var(--ink);
}

.app-card ul li {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    line-height: 1.45;
}

.app-card ul li svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: var(--accent);
    margin-top: 3px;
}

/* TOOL WRAPPERS — Cost Calc, ROI, Wizard */
.tool-wrap {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: var(--r-xl);
    padding: clamp(24px, 3vw, 40px);
    box-shadow: 0 30px 60px -30px rgba(12, 18, 34, 0.18);
    max-width: 1080px;
    margin: 0 auto;
}

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

@media (max-width: 900px) {
    .price-grid {
        grid-template-columns: 1fr;
    }
}

.price {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: var(--r-lg);
    padding: 32px;
    position: relative;
    transition:
        transform 0.35s,
        border-color 0.35s,
        box-shadow 0.35s;
}

.price:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
    box-shadow: 0 22px 50px -18px rgba(222, 37, 58, 0.28);
}

.price.featured {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
    box-shadow: 0 28px 60px -20px rgba(12, 18, 34, 0.45);
}

.price.featured:hover {
    border-color: var(--accent);
}

.price .tier {
    font-family: "Gilroy", sans-serif;
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.price.featured .tier {
    color: var(--accent);
}

.price h3 {
    margin-top: 8px;
    font-size: 24px;
    letter-spacing: -0.02em;
}

.price .amt {
    margin-top: 18px;
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.price .amt small {
    font-size: 14px;
    font-weight: 500;
    color: var(--muted);
    margin-left: 6px;
}

.price.featured .amt small {
    color: var(--muted-2);
}

.price .amt .from {
    display: block;
    font-family: "Gilroy", sans-serif;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 700;
    margin-bottom: 4px;
}

.price.featured .amt .from {
    color: rgba(255, 255, 255, 0.65);
}

.price .desc {
    margin-top: 6px;
    color: var(--muted);
    font-size: 13.5px;
}

.price.featured .desc {
    color: var(--muted-2);
}

.price ul {
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 11px;
    font-size: 14px;
}

.price ul li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.price ul li svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--accent);
    margin-top: 3px;
}

.price.featured ul li svg {
    color: var(--accent);
}

.price .cta {
    margin-top: 26px;
    display: block;
    width: 100%;
    text-align: center;
    padding: 13px 18px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition:
        background 0.15s,
        transform 0.15s;
}

.price .cta-line {
    background: var(--paper);
    color: var(--ink);
}

.price .cta-line:hover {
    background: #e5e7eb;
    transform: translateY(-1px);
}

.price.featured .cta {
    background: var(--accent);
    color: #fff;
}

.price.featured .cta:hover {
    background: #c41f32;
    transform: translateY(-1px);
}

.price .badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--accent);
    color: #fff;
    font-family: "Gilroy", sans-serif;
    font-size: 10.5px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 999px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* DECISION FRAMEWORK */
.decide-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

@media (max-width: 900px) {
    .decide-3 {
        grid-template-columns: 1fr;
    }
}

.decide-3 .col {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: var(--r-lg);
    padding: 28px;
    transition:
        border-color 0.3s,
        transform 0.3s,
        box-shadow 0.3s;
}

.decide-3 .col:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 16px 32px -16px rgba(222, 37, 58, 0.2);
}

.decide-3 .col h3 {
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.decide-3 .col h3 .badge {
    font-family: "Gilroy", sans-serif;
    font-size: 10.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: var(--paper);
    color: var(--ink);
    padding: 5px 10px;
    border-radius: 999px;
    font-weight: 700;
}

.decide-3 .col.custom h3 .badge {
    background: var(--accent);
    color: #fff;
}

.decide-3 .col.hybrid h3 .badge {
    background: var(--ink);
    color: #fff;
}

.decide-3 .col.wl h3 .badge {
    background: #f3f4f6;
    color: var(--ink);
}

.decide-3 .col p.tag {
    margin-top: 8px;
    color: var(--muted);
    font-size: 13.5px;
    line-height: 1.55;
}

.decide-3 .col ul {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 9px;
    font-size: 13.5px;
}

.decide-3 .col ul li {
    display: flex;
    gap: 9px;
    align-items: flex-start;
}

.decide-3 .col ul li svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--good);
}

.decide-3 .col ul li.bad svg {
    color: #d1d5db;
}

.decide-3 .verdict {
    margin-top: 22px;
    padding-top: 16px;
    border-top: 1px dashed #e5e7eb;
    font-size: 13px;
    color: var(--ink);
}

.decide-3 .verdict strong {
    color: var(--accent);
    font-weight: 700;
}

/* PROCESS */
.proc-list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
}

@media (max-width: 1100px) {
    .proc-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 760px) {
    .proc-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .proc-list {
        grid-template-columns: 1fr;
    }
}

.proc-step {
    padding: 62px 28px 32px;
    border-right: 1px solid var(--line);
    position: relative;
    color: rgba(255, 255, 255, 0.86);
    transition: background 0.3s ease;
}

.proc-step:hover {
    background: rgba(222, 37, 58, 0.05);
}

.proc-step:last-child {
    border-right: 0;
}

.proc-step .day {
    font-family: "Gilroy", sans-serif;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 700;
}

.proc-step h4 {
    margin-top: 8px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #fff;
}

.proc-step p {
    margin-top: 10px;
    font-size: 13.5px;
    color: var(--muted-2);
    line-height: 1.55;
}

.proc-step .step-n {
    position: absolute;
    left: 24px;
    top: 18px;
    font-family: "Gilroy", serif;
    font-style: italic;
    font-size: 42px;
    color: rgba(222, 37, 58, 0.3);
    line-height: 1;
    font-weight: 200;
    pointer-events: none;
    letter-spacing: -0.04em;
}

/* TECH STACK accordion (desktop flat / mobile accordion — copied pattern) */
.tech-stack-list {
    display: grid;
    gap: 14px;
    max-width: 1180px;
    margin: 0 auto;
}

@media (min-width: 880px) {
    .tech-cat {
        background: transparent;
        border: 0;
        box-shadow: none;
        overflow: visible;
        margin-top: 8px;
    }

    .tech-cat:first-child {
        margin-top: 0;
    }

    .tech-cat-title {
        font-family: "Gilroy", sans-serif;
        font-size: 11px;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--muted);
        font-weight: 700;
        padding: 0 0 14px;
        cursor: default;
        background: transparent;
        border: 0;
        list-style: none;
        display: flex;
        align-items: center;
        gap: 10px;
        pointer-events: none;
    }

    .tech-cat-title::-webkit-details-marker {
        display: none;
    }

    .tech-cat-title .label-l {
        display: inline-flex;
        align-items: center;
        gap: 10px;
    }

    .tech-cat-title .count {
        font-family: "Gilroy", sans-serif;
        font-size: 10.5px;
        font-weight: 700;
        letter-spacing: 0.1em;
        color: var(--muted);
        background: #f3f4f6;
        padding: 3px 8px;
        border-radius: 999px;
        text-transform: none;
    }

    .tech-cat-title .chev {
        display: none;
    }

    .tech-cat .tech-row-wrap {
        padding: 0;
        background: transparent;
    }
}

@media (max-width: 879px) {
    .tech-cat {
        background: #fff;
        border: 1px solid #e5e7eb;
        border-radius: 14px;
        overflow: hidden;
        transition:
            border-color 0.3s,
            box-shadow 0.3s;
    }

    .tech-cat[open] {
        border-color: #e5e7eb;
        box-shadow: 0 10px 28px -18px rgba(12, 18, 34, 0.22);
    }

    .tech-cat-title {
        font-family: "Gilroy", sans-serif;
        font-size: 13px;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--ink);
        font-weight: 800;
        padding: 18px 20px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        transition: color 0.25s;
        list-style: none;
    }

    .tech-cat-title::-webkit-details-marker {
        display: none;
    }

    .tech-cat-title:hover {
        color: var(--accent);
    }

    .tech-cat[open] .tech-cat-title {
        color: var(--ink);
        border-bottom: 1px solid #f3f4f6;
    }

    .tech-cat-title .label-l {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .tech-cat-title .count {
        font-family: "Gilroy", sans-serif;
        font-size: 10.5px;
        font-weight: 700;
        letter-spacing: 0.1em;
        color: var(--muted);
        background: #f3f4f6;
        padding: 3px 8px;
        border-radius: 999px;
        text-transform: none;
    }

    .tech-cat[open] .tech-cat-title .count {
        background: var(--accent);
        color: #fff;
    }

    .tech-cat-title .chev {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: #f3f4f6;
        display: grid;
        place-items: center;
        color: var(--ink);
        transition:
            transform 0.3s,
            background 0.25s,
            color 0.25s;
        flex-shrink: 0;
    }

    .tech-cat[open] .tech-cat-title .chev {
        background: var(--ink);
        color: #fff;
        transform: rotate(180deg);
    }

    .tech-cat-title .chev svg {
        width: 13px;
        height: 13px;
    }

    .tech-cat .tech-row-wrap {
        padding: 18px;
        background: #fafbfc;
    }
}

.tech-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

@media (max-width: 780px) {
    .tech-row {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .tech-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.tech-chip {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 20px 14px;
    text-align: center;
    transition:
        transform 0.3s,
        border-color 0.3s,
        box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.tech-chip:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 14px 28px -16px rgba(222, 37, 58, 0.25);
}

.tech-chip .logo {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: var(--ink);
    transition:
        color 0.3s,
        transform 0.3s;
}

.tech-chip:hover .logo {
    color: var(--accent);
    transform: scale(1.1);
}

.tech-chip .logo svg {
    width: 32px;
    height: 32px;
}

.tech-chip .name {
    font-weight: 700;
    font-size: 13.5px;
    letter-spacing: -0.01em;
}

.tech-chip .kind {
    font-family: "Gilroy", sans-serif;
    font-size: 10.5px;
    color: var(--muted);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* AI DISPATCH */
.ai-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

@media (max-width: 980px) {
    .ai-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .ai-grid {
        grid-template-columns: 1fr;
    }
}

.ai-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 24px;
    transition:
        border-color 0.3s,
        background 0.3s,
        transform 0.3s;
}

.ai-card:hover {
    border-color: var(--accent);
    background: rgba(222, 37, 58, 0.08);
    transform: translateY(-3px);
}

.ai-card .ic {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(222, 37, 58, 0.18);
    color: var(--accent);
    display: grid;
    place-items: center;
    margin-bottom: 14px;
    border: 1px solid rgba(222, 37, 58, 0.3);
}

.ai-card .ic svg {
    width: 20px;
    height: 20px;
}

.ai-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.01em;
}

.ai-card p {
    margin-top: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.55;
}

/* COMPLIANCE */
.comp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

@media (max-width: 780px) {
    .comp-grid {
        grid-template-columns: 1fr;
    }
}

.comp {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: var(--r-lg);
    padding: 28px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition:
        transform 0.3s,
        border-color 0.3s,
        box-shadow 0.3s;
}

.comp:hover {
    transform: translateY(-3px);
    border-color: var(--accent);
    box-shadow: 0 18px 36px -16px rgba(222, 37, 58, 0.22);
}

.comp:hover .ic {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.comp .ic {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(222, 37, 58, 0.08);
    color: var(--accent);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border: 1px solid rgba(222, 37, 58, 0.18);
    transition:
        background 0.3s,
        color 0.3s,
        border-color 0.3s;
}

.comp .ic svg {
    width: 22px;
    height: 22px;
}

.comp h4 {
    font-size: 17px;
    letter-spacing: -0.01em;
}

.comp p {
    margin-top: 8px;
    color: var(--muted);
    font-size: 13.5px;
    line-height: 1.55;
}

/* PAYMENT GATEWAYS */
.pay-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

@media (max-width: 780px) {
    .pay-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .pay-grid {
        grid-template-columns: 1fr;
    }
}

.pay {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: var(--r-md);
    padding: 24px 22px;
    text-align: left;
    transition:
        border-color 0.3s,
        transform 0.3s,
        box-shadow 0.3s,
        background 0.3s;
}

.pay:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 16px 30px -14px rgba(222, 37, 58, 0.22);
    background: linear-gradient(180deg, #fff 0%, #fbe9eb 100%);
}

.pay .brand {
    height: 38px;
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    transition: transform 0.3s;
}

.pay:hover .brand {
    transform: scale(1.04);
}

.pay .brand svg {
    height: 100%;
    width: auto;
    max-width: 100%;
}

.pay .name {
    font-weight: 700;
    font-size: 15.5px;
}

.pay .desc {
    margin-top: 8px;
    color: var(--muted);
    font-size: 12.5px;
    line-height: 1.5;
}

.pay .badge {
    margin-top: 14px;
    display: inline-flex;
    font-family: "Gilroy", sans-serif;
    font-size: 10.5px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 700;
}

/* FAIL REASONS */
.fail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

@media (max-width: 780px) {
    .fail-grid {
        grid-template-columns: 1fr;
    }
}

.fail {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: var(--r-md);
    padding: 22px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition:
        transform 0.3s,
        border-color 0.3s,
        box-shadow 0.3s;
}

.fail:hover {
    transform: translateY(-3px);
    border-color: var(--accent);
    box-shadow: 0 16px 32px -14px rgba(222, 37, 58, 0.2);
}

.fail .n {
    font-family: "Gilroy", serif;
    font-style: italic;
    font-size: 34px;
    line-height: 1;
    color: var(--accent);
    min-width: 38px;
    font-weight: 200;
}

.fail h4 {
    font-size: 15.5px;
    line-height: 1.3;
}

.fail p {
    margin-top: 6px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}

.fail .fix {
    margin-top: 8px;
    font-size: 12.5px;
    color: var(--ink);
    font-weight: 500;
}

.fail .fix em {
    font-family: "Gilroy", serif;
    color: var(--accent);
    font-style: italic;
    font-weight: 400;
}

/* WHY CHOOSE TT */
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

@media (max-width: 780px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

.why {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 28px;
    color: rgba(255, 255, 255, 0.86);
    transition:
        transform 0.3s,
        border-color 0.3s,
        background 0.3s;
}

.why:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    background: rgba(222, 37, 58, 0.1);
}

.why .n {
    font-family: "Gilroy", sans-serif;
    font-size: 11px;
    letter-spacing: 0.14em;
    color: var(--accent);
    font-weight: 700;
}

.why h4 {
    margin-top: 6px;
    font-size: 19px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.01em;
    line-height: 1.25;
}

.why p {
    margin-top: 10px;
    font-size: 13.5px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.72);
}

/* CASE STUDIES */
.cs-section {
    background-color: #0c1222;
    background-image: url("../img/delivery-app-development-uae/image_14.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    padding: clamp(72px, 8vw, 110px) 0;
    position: relative;
    overflow: hidden;
}

.cs-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.85) 100%);
    pointer-events: none;
}

.cs-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(700px 400px at 80% 20%, rgba(222, 37, 58, 0.18), transparent 65%);
    pointer-events: none;
}

.cs-section > .wrap {
    position: relative;
    z-index: 2;
}

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

@media (max-width: 980px) {
    .cs-grid {
        grid-template-columns: 1fr;
    }
}

.cs {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--r-lg);
    padding: 28px;
    display: flex;
    flex-direction: column;
}

.cs .tag {
    font-family: "Gilroy", sans-serif;
    font-size: 10.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 700;
}

.cs h3 {
    margin-top: 10px;
    font-size: 22px;
    color: #fff;
}

.cs .desc {
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13.5px;
    line-height: 1.55;
}

.cs .stats {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding-top: 16px;
    border-top: 1px dashed rgba(255, 255, 255, 0.18);
}

.cs .stats .v {
    font-size: 22px;
    font-weight: 800;
    color: var(--accent);
}

.cs .stats .l {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.65);
    font-family: "Gilroy", sans-serif;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-top: 3px;
    font-weight: 600;
}

.cs .stack {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.cs .stack span {
    font-family: "Gilroy", sans-serif;
    font-size: 11px;
    padding: 4px 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.85);
}

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

@media (max-width: 900px) {
    .em-grid {
        grid-template-columns: 1fr;
    }
}

.em-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: var(--r-lg);
    padding: clamp(28px, 3vw, 40px);
    transition:
        border-color 0.3s,
        transform 0.3s,
        box-shadow 0.3s;
}

.em-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 24px 40px -20px rgba(222, 37, 58, 0.22);
}

.em-card.featured {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
}

.em-card.featured:hover {
    border-color: var(--accent);
}

.em-tier {
    font-family: "Gilroy", sans-serif;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 700;
}

.em-card.featured .em-tier {
    color: var(--accent);
}

.em-card h3 {
    margin-top: 8px;
    font-size: clamp(22px, 2vw, 26px);
    line-height: 1.15;
}

.em-card .desc {
    margin-top: 12px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.em-card.featured .desc {
    color: rgba(255, 255, 255, 0.75);
}

.em-list {
    margin-top: 20px;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.em-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 13.5px;
    line-height: 1.5;
}

.em-list li svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--accent);
    margin-top: 3px;
}

.em-meta {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px dashed #e5e7eb;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.em-card.featured .em-meta {
    border-top-color: rgba(255, 255, 255, 0.15);
}

.em-meta .k {
    font-family: "Gilroy", sans-serif;
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
}

.em-meta .v {
    font-weight: 700;
    margin-top: 4px;
    font-size: 14px;
}

/* INCLUDED */
.inc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

@media (max-width: 780px) {
    .inc-grid {
        grid-template-columns: 1fr;
    }
}

.inc {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: var(--r-md);
    padding: 22px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    transition:
        transform 0.3s,
        border-color 0.3s,
        box-shadow 0.3s;
}

.inc:hover {
    transform: translateY(-3px);
    border-color: var(--good);
    box-shadow: 0 14px 28px -14px rgba(31, 142, 95, 0.25);
}

.inc .ic {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(31, 142, 95, 0.1);
    color: var(--good);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.inc .ic svg {
    width: 18px;
    height: 18px;
}

.inc h4 {
    font-size: 14.5px;
    line-height: 1.3;
}

.inc p {
    margin-top: 6px;
    color: var(--muted);
    font-size: 12.5px;
    line-height: 1.5;
}

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

@media (max-width: 900px) {
    .test-grid {
        grid-template-columns: 1fr;
    }
}

.test {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: var(--r-lg);
    padding: 28px;
    display: flex;
    flex-direction: column;
    transition:
        transform 0.3s,
        border-color 0.3s,
        box-shadow 0.3s;
}

.test:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 18px 36px -14px rgba(222, 37, 58, 0.2);
}

.test .stars {
    color: var(--accent);
    font-size: 14px;
    letter-spacing: 2px;
}

.test .q {
    margin-top: 14px;
    font-size: 15.5px;
    line-height: 1.55;
}

.test .who {
    margin-top: auto;
    padding-top: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.test .av {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--paper-2);
    color: var(--ink);
    font-weight: 700;
    font-size: 13px;
    display: grid;
    place-items: center;
}

.test .nm {
    font-weight: 700;
    font-size: 13.5px;
}

.test .ti {
    font-size: 12px;
    color: var(--muted);
}

/* FAQ */
.faq-list {
    display: grid;
    gap: 10px;
    max-width: 920px;
    margin: 0 auto;
}

.faq {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 20px 22px;
    cursor: pointer;
    transition:
        border 0.15s,
        background 0.15s;
}

.faq:hover {
    border-color: var(--accent);
}

.faq summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    font-weight: 700;
    font-size: 16.5px;
    line-height: 1.35;
}

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

.faq .ico {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--paper-2);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    transition:
        transform 0.25s,
        background 0.15s;
}

.faq[open] .ico {
    transform: rotate(45deg);
    background: var(--accent);
    color: #fff;
}

.faq .ico svg {
    width: 14px;
    height: 14px;
}

.faq .a {
    margin-top: 12px;
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.6;
}

.faq .a strong {
    color: var(--ink);
    font-weight: 700;
}

/* BIG CTA */
.big-cta {
    position: relative;
    background: var(--ink);
    color: #fff;
    padding: clamp(64px, 7vw, 100px) 0;
    overflow: hidden;
}

.big-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(700px 380px at 50% 0%, rgba(222, 37, 58, 0.22), transparent 65%),
        radial-gradient(500px 320px at 90% 100%, rgba(196, 31, 50, 0.1), transparent 60%);
}

.big-cta-inner {
    position: relative;
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
}

.big-cta h2 {
    font-size: clamp(36px, 4.6vw, 64px);
    color: #fff;
}

.big-cta h2 .accent {
    color: var(--accent);
}

.big-cta p {
    margin-top: 18px;
    color: var(--muted-2);
    font-size: 17px;
    line-height: 1.55;
}

.big-cta .ctas {
    margin-top: 32px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.big-cta .reassure {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    justify-content: center;
    color: var(--muted-2);
    font-size: 13px;
}

.big-cta .reassure span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.big-cta .reassure svg {
    width: 14px;
    height: 14px;
    color: var(--accent);
}

/* FOOTER */
footer {
    background: #06090f;
    color: var(--muted-2);
    padding: 56px 0 30px;
}

.foot-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 30px;
}

@media (max-width: 780px) {
    .foot-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .foot-grid {
        grid-template-columns: 1fr;
    }
}

.foot-grid h5 {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.foot-grid a {
    display: block;
    padding: 5px 0;
    font-size: 13.5px;
}

.foot-grid a:hover {
    color: #fff;
}

.foot-bot {
    margin-top: 50px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.55);
}

.foot-addr {
    font-size: 13.5px;
    line-height: 1.7;
    margin-top: 18px;
}

.foot-addr strong {
    color: #fff;
    font-weight: 700;
}

/* STICKY MOBILE CTA */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 14px;
    left: 14px;
    right: 14px;
    background: var(--accent);
    color: #fff;
    padding: 14px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
    z-index: 90;
    box-shadow: 0 12px 36px rgba(222, 37, 58, 0.4);
}

@media (max-width: 720px) {
    .sticky-cta {
        display: block;
    }
}

section[id] {
    scroll-margin-top: 80px;
}

/* INTERACTIVE DEMO */
.demo-sec {
    background: var(--ink);
    color: #fff;
    padding: clamp(72px, 8vw, 110px) 0;
    position: relative;
    overflow: hidden;
}

.demo-sec::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(900px 500px at 80% 10%, rgba(222, 37, 58, 0.16), transparent 65%),
        radial-gradient(700px 400px at 10% 90%, rgba(196, 31, 50, 0.08), transparent 60%);
    pointer-events: none;
}

.demo-sec::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 30%, transparent 80%);
    pointer-events: none;
}

.demo-sec > .wrap {
    position: relative;
    z-index: 2;
}

.demo-tabs {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 6px;
    margin: 0 auto 40px;
    gap: 4px;
}

.demo-tabs-wrap {
    text-align: center;
}

.demo-tab {
    padding: 13px 32px;
    border-radius: 999px;
    font-family: "Gilroy", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    background: transparent;
    border: 0;
    cursor: pointer;
    transition:
        color 0.25s,
        background 0.25s,
        box-shadow 0.25s;
    min-width: 140px;
}

.demo-tab:hover {
    color: #fff;
}

.demo-tab.active {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 12px 30px rgba(222, 37, 58, 0.35);
}

@media (max-width: 680px) {
    .demo-tab {
        padding: 11px 22px;
        font-size: 12px;
        min-width: 110px;
    }
}

@media (max-width: 480px) {
    .demo-tabs {
        padding: 4px;
    }

    .demo-tab {
        padding: 10px 16px;
        min-width: 90px;
        font-size: 11px;
    }
}

.demo-frame {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 30px;
    align-items: start;
    position: relative;
    max-width: 1180px;
    margin: 0 auto;
    min-height: 680px;
}

@media (max-width: 1100px) {
    .demo-frame {
        grid-template-columns: 1fr 240px;
        gap: 20px;
    }
}

@media (max-width: 980px) {
    .demo-frame {
        grid-template-columns: 1fr;
        justify-items: center;
        min-height: auto;
        gap: 24px;
    }
}

.demo-content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 680px;
}

@media (max-width: 980px) {
    .demo-content {
        min-height: auto;
    }
}

.demo-callout {
    background: #fff;
    color: var(--ink);
    border-radius: 16px;
    padding: 20px 22px 16px;
    width: 280px;
    max-width: 280px;
    box-shadow:
        0 22px 50px -16px rgba(12, 18, 34, 0.6),
        0 0 0 1px rgba(222, 37, 58, 0.08);
    position: absolute;
    top: 120px;
    transition:
        top 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        left 0.45s cubic-bezier(0.4, 0, 0.2, 1),
        right 0.45s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.25s;
    z-index: 5;
}

.demo-callout.side-right {
    left: calc(50% + 165px);
    right: auto;
}

.demo-callout.side-left {
    right: calc(50% + 165px);
    left: auto;
}

@media (max-width: 1100px) {
    .demo-callout {
        width: 240px;
        max-width: 240px;
    }

    .demo-callout.side-right {
        left: calc(50% + 158px);
    }

    .demo-callout.side-left {
        right: calc(50% + 158px);
    }
}

@media (max-width: 980px) {
    .demo-callout {
        position: static;
        left: auto !important;
        right: auto !important;
        top: auto;
        order: 3;
        max-width: 100%;
        width: 100%;
        margin-top: 0;
    }
}

.demo-callout::before {
    content: "";
    position: absolute;
    top: 24px;
    width: 20px;
    height: 20px;
    background: #fff;
    transform: rotate(45deg);
}

.demo-callout.side-right::before {
    left: -10px;
    box-shadow: -2px 2px 6px -2px rgba(12, 18, 34, 0.15);
}

.demo-callout.side-left::before {
    right: -10px;
    left: auto;
    box-shadow: 2px -2px 6px -2px rgba(12, 18, 34, 0.15);
}

@media (max-width: 980px) {
    .demo-callout::before {
        display: none;
    }
}

.demo-callout .label {
    font-family: "Gilroy", sans-serif;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 700;
}

.demo-callout .body {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.55;
    color: var(--ink-3);
}

.demo-callout .body strong {
    color: var(--ink);
    font-weight: 700;
}

.demo-callout-foot {
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.demo-dots {
    display: flex;
    gap: 4px;
    flex-shrink: 0;
}

.demo-dot {
    width: 12px;
    height: 4px;
    border-radius: 999px;
    background: #e5e7eb;
    transition:
        background 0.3s,
        width 0.3s;
}

.demo-dot.on {
    background: var(--accent);
    width: 18px;
}

.demo-nav-btns {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.demo-nav-btn {
    padding: 9px 12px;
    border-radius: 9px;
    font-family: "Gilroy", sans-serif;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: #fff;
    color: var(--ink);
    border: 1px solid #e5e7eb;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition:
        transform 0.15s,
        background 0.15s,
        color 0.15s,
        border-color 0.15s;
    white-space: nowrap;
}

.demo-nav-btn:hover {
    transform: translateY(-1px);
    background: #f9fafb;
}

.demo-nav-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

.demo-nav-btn.primary {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.demo-nav-btn.primary:hover {
    background: #c41f32;
    border-color: #c41f32;
}

.demo-stage {
    position: relative;
}

.demo-restart {
    position: absolute;
    top: -44px;
    right: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--line);
    color: #fff;
    font-family: "Gilroy", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 8px 14px;
    border-radius: 999px;
    cursor: pointer;
    transition:
        background 0.2s,
        border-color 0.2s,
        opacity 0.25s;
    opacity: 0;
    z-index: 10;
}

.demo-restart.on {
    opacity: 1;
}

.demo-restart:hover {
    background: rgba(222, 37, 58, 0.15);
    border-color: var(--accent);
}

.demo-phone {
    width: 290px;
    height: 600px;
    background: #0c1222;
    border-radius: 42px;
    padding: 10px;
    box-shadow:
        0 0 0 4px #1f2937,
        0 0 0 6px #0c1222,
        0 40px 80px -30px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(222, 37, 58, 0.12);
    position: relative;
}

@media (max-width: 380px) {
    .demo-phone {
        width: 260px;
        height: 540px;
        border-radius: 38px;
    }
}

.demo-screen {
    position: absolute;
    inset: 10px;
    border-radius: 34px;
    background: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.demo-notch {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 24px;
    background: #0c1222;
    border-radius: 14px;
    z-index: 5;
}

.demo-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 22px 8px;
    font-size: 12px;
    font-weight: 700;
    color: #0c1222;
    z-index: 4;
}

.demo-status-r {
    display: inline-flex;
    gap: 6px;
    color: #0c1222;
}

.demo-status-r svg {
    width: 14px;
    height: 10px;
}

/* PHONE BODY (scrollable content area) */
.demo-body {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding-bottom: 14px;
    -webkit-overflow-scrolling: touch;
}

.demo-body::-webkit-scrollbar {
    width: 0;
}

.demo-screen-page {
    display: none;
    animation: demofade 0.35s ease;
}

.demo-screen-page.on {
    display: block;
}

@keyframes demofade {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

/* Reusable phone UI parts */
.ph-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 18px 12px;
}

.ph-logo {
    font-family: "Gilroy", sans-serif;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--ink);
}

.ph-logo .ac {
    color: var(--accent);
}

.ph-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ph-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #fbe9eb;
    color: #c41f32;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.ph-chip svg {
    width: 11px;
    height: 11px;
}

.ph-icon {
    width: 20px;
    height: 20px;
    color: #0c1222;
}

.ph-search {
    margin: 0 18px 12px;
    background: #f3f4f6;
    border-radius: 12px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #9ca3af;
    font-size: 12.5px;
}

.ph-search svg {
    width: 14px;
    height: 14px;
}

.ph-zone {
    margin: 0 18px 14px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 9px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11.5px;
    color: #374151;
}

.ph-zone svg {
    width: 14px;
    height: 14px;
    color: var(--accent);
    flex-shrink: 0;
}

.ph-zone b {
    color: #0c1222;
}

.ph-zone .chev {
    margin-left: auto;
    color: #9ca3af;
}

.ph-banner {
    margin: 0 18px 14px;
    border-radius: 14px;
    height: 120px;
    background: linear-gradient(135deg, #0c1222, #1f2937);
    position: relative;
    overflow: hidden;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 14px;
}

.ph-banner::before {
    content: "";
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(222, 37, 58, 0.4), transparent 70%);
}

.ph-banner .tg {
    font-family: "Gilroy", sans-serif;
    font-size: 9.5px;
    letter-spacing: 0.14em;
    color: var(--accent);
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.ph-banner h4 {
    margin-top: 4px;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.ph-banner p {
    margin-top: 4px;
    font-size: 10.5px;
    color: rgba(255, 255, 255, 0.75);
    position: relative;
    z-index: 1;
}

.ph-sec-h {
    margin: 6px 18px 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 800;
    color: #0c1222;
    letter-spacing: -0.01em;
}

.ph-sec-h a {
    font-size: 11px;
    color: var(--accent);
    font-weight: 700;
}

.ph-vendors {
    padding: 0 18px 14px;
    display: grid;
    gap: 10px;
}

.ph-vendor {
    background: #fff;
    border: 1px solid #f3f4f6;
    border-radius: 12px;
    padding: 10px;
    display: flex;
    gap: 12px;
    align-items: center;
}

.ph-vendor .av {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #fbe9eb, #fbd5da);
    display: grid;
    place-items: center;
    color: var(--accent);
    font-weight: 800;
    font-size: 18px;
    flex-shrink: 0;
}

.ph-vendor .info {
    flex: 1;
    min-width: 0;
}

.ph-vendor .nm {
    font-size: 12.5px;
    font-weight: 700;
    color: #0c1222;
    letter-spacing: -0.01em;
}

.ph-vendor .mt {
    margin-top: 3px;
    font-size: 10.5px;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ph-vendor .star {
    color: var(--accent);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

.ph-tabbar {
    display: flex;
    border-top: 1px solid #f3f4f6;
    padding: 8px 6px 4px;
    flex-shrink: 0;
    background: #fff;
}

.ph-tab {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    font-size: 9px;
    color: #9ca3af;
    font-weight: 600;
}

.ph-tab svg {
    width: 18px;
    height: 18px;
}

.ph-tab.on {
    color: var(--accent);
}

/* Feature highlight glow — applied to the element the callout is pointing at */
[data-hl] {
    position: relative;
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        outline 0.4s ease;
}

[data-hl].hl-on {
    outline: 2.5px solid var(--accent);
    outline-offset: 3px;
    box-shadow:
        0 0 0 5px rgba(222, 37, 58, 0.18),
        0 12px 28px -8px rgba(222, 37, 58, 0.45);
    border-radius: 14px;
    z-index: 3;
    animation: hlPulse 2s ease-in-out infinite;
}

@keyframes hlPulse {
    0%,
    100% {
        box-shadow:
            0 0 0 5px rgba(222, 37, 58, 0.18),
            0 12px 28px -8px rgba(222, 37, 58, 0.45);
    }

    50% {
        box-shadow:
            0 0 0 8px rgba(222, 37, 58, 0.1),
            0 14px 32px -8px rgba(222, 37, 58, 0.55);
    }
}

/* Real-image overrides */
.ph-vendor .av.img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.ph-banner.real {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.ph-banner.real::before {
    background: linear-gradient(180deg, rgba(12, 18, 34, 0.25) 0%, rgba(12, 18, 34, 0.85) 100%);
}

.ph-cart-item .img.real {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.ph-vendor.real {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    border: 0;
    padding: 14px;
    min-height: 80px;
    position: relative;
    overflow: hidden;
}

.ph-vendor.real::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12, 18, 34, 0.05) 0%, rgba(12, 18, 34, 0.85) 100%);
    border-radius: 12px;
}

.ph-vendor.real > * {
    position: relative;
    z-index: 1;
}

.ph-vendor.real .nm {
    color: #fff;
}

.ph-vendor.real .mt {
    color: rgba(255, 255, 255, 0.85);
}

/* CART / CHECKOUT */
.ph-cart-item {
    margin: 0 18px 10px;
    background: #f9fafb;
    border-radius: 12px;
    padding: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.ph-cart-item .img {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: linear-gradient(135deg, #fbd5da, #fbe9eb);
    flex-shrink: 0;
}

.ph-cart-item .nm {
    font-size: 12px;
    font-weight: 700;
    color: #0c1222;
}

.ph-cart-item .px {
    margin-top: 2px;
    font-size: 11px;
    color: #6b7280;
}

.ph-cart-item .pr {
    font-size: 12.5px;
    font-weight: 800;
    color: #0c1222;
    margin-left: auto;
}

.ph-totals {
    margin: 14px 18px 12px;
    background: #fff;
    border: 1px solid #f3f4f6;
    border-radius: 12px;
    padding: 14px;
}

.ph-totals .r {
    display: flex;
    justify-content: space-between;
    font-size: 11.5px;
    color: #6b7280;
    padding: 4px 0;
}

.ph-totals .r b {
    color: #0c1222;
}

.ph-totals .tot {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed #e5e7eb;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 800;
    color: #0c1222;
}

.ph-totals .tot .amt {
    color: var(--accent);
}

.ph-pay-row {
    margin: 0 18px 10px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
}

.ph-pay {
    background: #fff;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    padding: 10px 6px;
    text-align: center;
    font-size: 10px;
    font-weight: 700;
    color: #374151;
}

.ph-pay.on {
    border-color: var(--accent);
    background: #fbe9eb;
    color: #c41f32;
}

.ph-pay .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0c1222;
    margin: 0 auto 5px;
}

.ph-pay.on .dot {
    background: var(--accent);
}

.ph-bnpl {
    margin: 0 18px 14px;
    background: #fff;
    border: 1px solid #f3f4f6;
    border-radius: 12px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: #0c1222;
}

.ph-bnpl .pill-l {
    background: #3bffc2;
    color: #0c1222;
    padding: 3px 8px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 9.5px;
    letter-spacing: 0.04em;
}

.ph-bnpl b {
    font-weight: 800;
}

.ph-cta {
    margin: auto 18px 14px;
    background: var(--accent);
    color: #fff;
    padding: 14px;
    border-radius: 14px;
    font-weight: 800;
    text-align: center;
    letter-spacing: 0.04em;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.ph-cta svg {
    width: 14px;
    height: 14px;
}

/* MAP / TRACKING — stylised street map via inline SVG */
.ph-map {
    margin: 0 18px 12px;
    height: 200px;
    border-radius: 14px;
    background: #ece9dd
        url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 240' preserveAspectRatio='xMidYMid slice'><rect width='400' height='240' fill='%23ECE9DD'/><path d='M250 240 Q300 198 360 195 L400 190 L400 240 Z' fill='%23B8D4E8'/><path d='M0 240 Q50 232 100 226 L160 240 Z' fill='%23B8D4E8'/><rect x='30' y='40' width='70' height='55' rx='3' fill='%23C7DAB8' opacity='0.75'/><rect x='120' y='35' width='50' height='55' fill='%23D8D0BE' opacity='0.7'/><rect x='180' y='35' width='35' height='40' fill='%23D8D0BE' opacity='0.7'/><rect x='225' y='30' width='60' height='65' fill='%23D8D0BE' opacity='0.7'/><rect x='295' y='35' width='45' height='50' fill='%23D8D0BE' opacity='0.7'/><rect x='350' y='40' width='40' height='40' fill='%23D8D0BE' opacity='0.7'/><rect x='30' y='125' width='65' height='55' fill='%23D8D0BE' opacity='0.7'/><rect x='110' y='125' width='50' height='55' fill='%23D8D0BE' opacity='0.7'/><rect x='175' y='125' width='80' height='55' fill='%23D8D0BE' opacity='0.7'/><rect x='270' y='125' width='55' height='50' fill='%23D8D0BE' opacity='0.7'/><rect x='340' y='125' width='50' height='45' fill='%23D8D0BE' opacity='0.7'/><path d='M0 110 H400' stroke='%23fff' stroke-width='9' fill='none'/><path d='M0 110 H400' stroke='%23E8B872' stroke-width='2.5' fill='none' opacity='0.5' stroke-dasharray='12 8'/><path d='M0 20 H400 M0 190 H400' stroke='%23fff' stroke-width='4' fill='none'/><path d='M105 0 V240 M220 0 V240 M330 0 V240' stroke='%23fff' stroke-width='4' fill='none'/><line x1='0' y1='165' x2='220' y2='105' stroke='%23fff' stroke-width='4' opacity='0.85'/></svg>")
        center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.ph-map::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(251, 233, 235, 0.18) 0%, transparent 50%, rgba(222, 37, 58, 0.06) 100%);
    pointer-events: none;
}

.ph-map .pin {
    position: absolute;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--accent);
    border: 3px solid #fff;
    box-shadow: 0 4px 12px rgba(222, 37, 58, 0.5);
}

.ph-map .pin.cust {
    top: 30%;
    left: 20%;
}

.ph-map .pin.drv {
    top: 60%;
    right: 25%;
    background: #0c1222;
}

.ph-map .pin.drv::after {
    content: "";
    position: absolute;
    inset: -6px;
    border: 2px solid #0c1222;
    border-radius: 50%;
    animation: pulseR 1.6s ease-in-out infinite;
}

@keyframes pulseR {
    0%,
    100% {
        opacity: 0;
        transform: scale(1.3);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }
}

.ph-map .route {
    position: absolute;
    top: 35%;
    left: 22%;
    width: 54%;
    height: 30%;
    border-bottom: 3px dashed var(--accent);
    border-right: 3px dashed var(--accent);
    border-bottom-right-radius: 60px;
}

.ph-status-card {
    margin: 0 18px 12px;
    background: #0c1222;
    color: #fff;
    border-radius: 14px;
    padding: 16px;
}

.ph-status-card .eta {
    font-family: "Gilroy", sans-serif;
    font-size: 10.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 700;
}

.ph-status-card .mins {
    margin-top: 4px;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.ph-status-card .desc {
    margin-top: 6px;
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

.ph-driver-row {
    margin: 0 18px 14px;
    background: #fff;
    border: 1px solid #f3f4f6;
    border-radius: 12px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ph-driver-row .av {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0c1222, #1f2937);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 13px;
}

.ph-driver-row .info {
    flex: 1;
}

.ph-driver-row .nm {
    font-size: 12.5px;
    font-weight: 700;
    color: #0c1222;
}

.ph-driver-row .vh {
    font-size: 10.5px;
    color: #6b7280;
    margin-top: 2px;
}

.ph-driver-row .actions {
    display: flex;
    gap: 6px;
}

.ph-driver-row .ab {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fbe9eb;
    color: var(--accent);
    display: grid;
    place-items: center;
}

.ph-driver-row .ab svg {
    width: 14px;
    height: 14px;
}

/* SUCCESS / FINISH */
.ph-success {
    padding: 32px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.ph-success .ring {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--good), #15a36f);
    display: grid;
    place-items: center;
    color: #fff;
    margin-bottom: 18px;
    box-shadow: 0 14px 30px rgba(31, 142, 95, 0.35);
}

.ph-success .ring svg {
    width: 36px;
    height: 36px;
}

.ph-success h4 {
    font-size: 20px;
    font-weight: 800;
    color: #0c1222;
    letter-spacing: -0.02em;
}

.ph-success p {
    margin-top: 8px;
    font-size: 12.5px;
    color: #6b7280;
    line-height: 1.5;
}

.ph-success .rating {
    margin-top: 24px;
    background: #f9fafb;
    border-radius: 14px;
    padding: 16px;
    width: 100%;
}

.ph-success .rating .q {
    font-size: 12px;
    font-weight: 700;
    color: #0c1222;
}

.ph-success .stars {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 6px;
    color: var(--accent);
    font-size: 22px;
}

/* DRIVER FLOWS */
.ph-driver-head {
    margin: 6px 18px 12px;
    padding: 14px;
    background: linear-gradient(135deg, #0c1222, #1f2937);
    border-radius: 14px;
    color: #fff;
}

.ph-driver-head .greet {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.65);
}

.ph-driver-head .name {
    margin-top: 2px;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.ph-driver-head .row {
    margin-top: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.ph-driver-head .stt {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 10px;
}

.ph-driver-head .stt .lb {
    font-size: 9.5px;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    font-family: "Gilroy", sans-serif;
    letter-spacing: 0.1em;
    font-weight: 700;
}

.ph-driver-head .stt .vl {
    margin-top: 3px;
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
}

.ph-driver-head .stt .vl .ac {
    color: var(--accent);
}

.ph-online-toggle {
    margin: 0 18px 14px;
    background: var(--accent);
    color: #fff;
    padding: 14px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
    box-shadow: 0 14px 32px rgba(222, 37, 58, 0.3);
}

.ph-online-toggle .sw {
    width: 34px;
    height: 20px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    position: relative;
}

.ph-online-toggle .sw::after {
    content: "";
    position: absolute;
    top: 2px;
    right: 2px;
    width: 16px;
    height: 16px;
    background: #fff;
    border-radius: 50%;
}

.ph-offer {
    margin: 0 18px 12px;
    background: #fff;
    border: 2px solid var(--accent);
    border-radius: 14px;
    padding: 14px;
    box-shadow: 0 14px 32px rgba(222, 37, 58, 0.18);
}

.ph-offer .tg {
    font-family: "Gilroy", sans-serif;
    font-size: 10px;
    letter-spacing: 0.14em;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
}

.ph-offer .payout {
    margin-top: 4px;
    font-size: 24px;
    font-weight: 800;
    color: #0c1222;
    letter-spacing: -0.025em;
}

.ph-offer .payout .sub {
    font-size: 11px;
    color: #6b7280;
    font-weight: 600;
    margin-left: 4px;
}

.ph-route-row {
    margin-top: 12px;
    display: grid;
    gap: 8px;
}

.ph-route-row .leg {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 11.5px;
}

.ph-route-row .leg .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--good);
    margin-top: 5px;
    flex-shrink: 0;
}

.ph-route-row .leg.drop .dot {
    background: var(--accent);
}

.ph-route-row .leg .lb {
    font-size: 9.5px;
    color: #6b7280;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.ph-route-row .leg .ad {
    margin-top: 2px;
    color: #0c1222;
    font-weight: 600;
}

.ph-offer .accept {
    margin-top: 14px;
    background: var(--good);
    color: #fff;
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.ph-nav-card {
    margin: 0 18px 12px;
    background: var(--accent);
    color: #fff;
    border-radius: 14px;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.ph-nav-card .ic {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.15);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.ph-nav-card .ic svg {
    width: 18px;
    height: 18px;
}

.ph-nav-card .info {
    flex: 1;
    min-width: 0;
}

.ph-nav-card .lb {
    font-size: 10px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.1em;
    font-weight: 700;
}

.ph-nav-card .vl {
    margin-top: 2px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.ph-action-btn {
    margin: 0 18px 12px;
    background: var(--ink);
    color: #fff;
    border-radius: 12px;
    padding: 14px;
    text-align: center;
    font-weight: 800;
    font-size: 12.5px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.ph-action-btn.success {
    background: var(--good);
}

.ph-action-btn svg {
    width: 14px;
    height: 14px;
}

/* ADMIN FLOWS */
.ph-admin-head {
    margin: 6px 18px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ph-admin-head .ti {
    font-size: 15px;
    font-weight: 800;
    color: #0c1222;
    letter-spacing: -0.02em;
}

.ph-admin-head .live {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #fbe9eb;
    color: #c41f32;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 999px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.ph-admin-head .live .d {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #c41f32;
    animation: pulse 1.6s ease-in-out infinite;
}

.ph-admin-stats {
    margin: 0 18px 12px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.ph-admin-stats .st {
    background: #f9fafb;
    border: 1px solid #f3f4f6;
    border-radius: 10px;
    padding: 9px;
    text-align: center;
}

.ph-admin-stats .vl {
    font-size: 15px;
    font-weight: 800;
    color: #0c1222;
    letter-spacing: -0.02em;
}

.ph-admin-stats .vl .ac {
    color: var(--accent);
}

.ph-admin-stats .lb {
    margin-top: 2px;
    font-size: 8.5px;
    color: #6b7280;
    font-family: "Gilroy", sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
}

.ph-zones {
    margin: 0 18px 12px;
}

.ph-zone-row {
    background: #fff;
    border: 1px solid #f3f4f6;
    border-radius: 12px;
    padding: 10px 12px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ph-zone-row .nm {
    font-size: 12px;
    font-weight: 700;
    color: #0c1222;
    flex: 1;
}

.ph-zone-row .ord {
    font-size: 11px;
    color: #6b7280;
}

.ph-zone-row .hot {
    font-size: 10px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 999px;
    background: #fbe9eb;
    color: #c41f32;
    letter-spacing: 0.04em;
}

.ph-zone-row .hot.warm {
    background: #fff5e6;
    color: #b45309;
}

.ph-zone-row .hot.cool {
    background: #e6f7ed;
    color: #0f5a3a;
}

.ph-fleet-row {
    margin: 0 18px 6px;
    background: #fff;
    border: 1px solid #f3f4f6;
    border-radius: 12px;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ph-fleet-row .av {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0c1222, #1f2937);
    color: #fff;
    font-weight: 800;
    font-size: 11.5px;
    display: grid;
    place-items: center;
}

.ph-fleet-row .info {
    flex: 1;
}

.ph-fleet-row .nm {
    font-size: 11.5px;
    font-weight: 700;
    color: #0c1222;
}

.ph-fleet-row .mt {
    font-size: 10px;
    color: #6b7280;
    margin-top: 2px;
}

.ph-fleet-row .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--good);
}

.ph-fleet-row .dot.off {
    background: #d1d5db;
}

.ph-fleet-row .dot.bz {
    background: var(--accent-2);
}

.ph-surge {
    margin: 0 18px 12px;
    background: linear-gradient(135deg, #fbe9eb, #fff);
    border: 1px solid var(--accent);
    border-radius: 14px;
    padding: 14px;
}

.ph-surge .ti {
    font-size: 13px;
    font-weight: 800;
    color: #0c1222;
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: -0.01em;
}

.ph-surge .ti svg {
    width: 14px;
    height: 14px;
    color: var(--accent);
}

.ph-surge .mult {
    margin-top: 6px;
    font-size: 28px;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.025em;
}

.ph-surge .desc {
    font-size: 11px;
    color: #6b7280;
    line-height: 1.45;
}

.ph-surge .bar {
    margin-top: 12px;
    height: 6px;
    background: #e5e7eb;
    border-radius: 999px;
    overflow: hidden;
}

.ph-surge .bar .fill {
    height: 100%;
    width: 78%;
    background: linear-gradient(90deg, var(--accent), #c41f32);
    border-radius: 999px;
}

/* STEP LIST RIGHT SIDE */
.demo-steps {
    align-self: flex-start;
    margin-top: 32px;
    justify-self: start;
    max-width: 280px;
    width: 100%;
}

@media (max-width: 980px) {
    .demo-steps {
        justify-self: stretch;
        max-width: 100%;
        order: 2;
        margin-top: 0;
    }
}

.demo-step {
    background: transparent;
    border: 0;
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.55);
    font-family: "Gilroy", sans-serif;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition:
        background 0.2s,
        color 0.2s;
    margin-bottom: 2px;
}

.demo-step:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
}

.demo-step.on {
    background: rgba(222, 37, 58, 0.15);
    color: #fff;
    border-left: 3px solid var(--accent);
    padding-left: 15px;
}

.demo-step.done {
    color: rgba(255, 255, 255, 0.85);
}

.demo-step .ck {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    position: relative;
    flex-shrink: 0;
}

.demo-step.done .ck {
    background: var(--accent);
    border-color: var(--accent);
}

.demo-step.done .ck::after {
    content: "";
    position: absolute;
    left: 3px;
    top: 5px;
    width: 6px;
    height: 3px;
    border-left: 1.5px solid #fff;
    border-bottom: 1.5px solid #fff;
    transform: rotate(-45deg);
}

.demo-step.on .ck {
    background: #fff;
    border-color: #fff;
}

/* TOOL HEAD */
.tool-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fbe9eb;
    color: #c41f32;
    padding: 7px 14px;
    border-radius: 999px;
    font-family: "Gilroy", sans-serif;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
}

.tool-tag .d {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #c41f32;
    display: inline-block;
    animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

/* WIZARD STEP CARDS (Cost Calc, Wizard) */
.calc-progress {
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.calc-progress-bar {
    flex: 1;
    height: 6px;
    background: #f3f4f6;
    border-radius: 999px;
    position: relative;
    overflow: hidden;
}

.calc-progress-bar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: var(--pct, 16.66%);
    background: linear-gradient(90deg, var(--accent), #c41f32);
    border-radius: 999px;
    transition: width 0.4s ease;
}

.calc-progress-label {
    font-family: "Gilroy", sans-serif;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 700;
    white-space: nowrap;
}

.calc-step {
    display: none;
    animation: calcfade 0.35s ease;
}

.calc-step--active {
    display: block;
}

@keyframes calcfade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.calc-q {
    font-size: clamp(20px, 2vw, 26px);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.015em;
    color: var(--ink);
}

.calc-help {
    margin-top: 8px;
    color: var(--muted);
    font-size: 14px;
}

.calc-options {
    margin-top: 24px;
    display: grid;
    gap: 12px;
}

.calc-options--grid {
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 680px) {
    .calc-options--grid {
        grid-template-columns: 1fr;
    }
}

.calc-opt,
.calc-chk {
    display: block;
    cursor: pointer;
    background: #fff;
    border: 1.5px solid #e5e7eb;
    border-radius: 14px;
    padding: 18px 20px;
    transition:
        border-color 0.25s,
        background 0.25s,
        transform 0.25s,
        box-shadow 0.25s;
    position: relative;
}

.calc-opt:hover,
.calc-chk:hover {
    border-color: var(--accent);
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -12px rgba(222, 37, 58, 0.2);
}

.calc-opt input,
.calc-chk input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.calc-opt-body,
.calc-chk-body {
    display: block;
    padding-left: 32px;
    position: relative;
}

.calc-opt-body::before,
.calc-chk-body::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 20px;
    height: 20px;
    border: 1.5px solid #d1d5db;
    background: #fff;
    border-radius: 50%;
    transition:
        border-color 0.25s,
        background 0.25s;
}

.calc-chk-body::before {
    border-radius: 6px;
}

.calc-opt input:checked + .calc-opt-body::before {
    border-color: var(--accent);
    background: radial-gradient(circle, var(--accent) 38%, #fff 42%);
}

.calc-chk input:checked + .calc-chk-body::before {
    border-color: var(--accent);
    background: var(--accent);
}

.calc-chk input:checked + .calc-chk-body::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 7px;
    width: 10px;
    height: 6px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
}

.calc-opt:has(input:checked),
.calc-chk:has(input:checked) {
    border-color: var(--accent);
    background: #fbe9eb;
}

.calc-chk:has(input:disabled) {
    opacity: 0.85;
    cursor: default;
}

.calc-chk:has(input:disabled):hover {
    border-color: #e5e7eb;
    background: #f9fafb;
    transform: none;
    box-shadow: none;
}

.calc-opt-body strong,
.calc-chk-body strong {
    display: block;
    font-size: 14.5px;
    font-weight: 700;
    color: var(--ink);
}

.calc-opt-body em,
.calc-chk-body em {
    display: block;
    margin-top: 4px;
    font-size: 12.5px;
    color: var(--muted);
    font-style: normal;
    line-height: 1.4;
}

.calc-nav {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.calc-back,
.calc-next {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 14px;
    font-family: inherit;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 14px 24px;
    cursor: pointer;
    transition:
        transform 0.2s,
        background 0.2s,
        box-shadow 0.2s,
        color 0.2s;
}

.calc-back {
    background: #f3f4f6;
    color: var(--muted);
    border: 0;
}

.calc-back:hover:not(:disabled) {
    background: #e5e7eb;
    color: var(--ink);
}

.calc-back:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.calc-next {
    background: var(--accent);
    color: #fff;
    border: 0;
    box-shadow: 0 10px 22px rgba(222, 37, 58, 0.3);
}

.calc-next:hover {
    background: #c41f32;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(222, 37, 58, 0.4);
}

.calc-next:disabled {
    background: #d1d5db;
    color: #fff;
    box-shadow: none;
    cursor: not-allowed;
    transform: none;
}

.calc-form {
    margin-top: 22px;
    display: grid;
    gap: 14px;
}

.calc-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

@media (max-width: 600px) {
    .calc-form-row {
        grid-template-columns: 1fr;
    }
}

/* CALCULATOR RESULT */
.calc-result-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(31, 142, 95, 0.1);
    color: var(--good);
    padding: 7px 14px;
    border-radius: 999px;
    font-family: "Gilroy", sans-serif;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
}

.calc-result-tag .d {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--good);
    display: inline-block;
}

.calc-result-h {
    margin-top: 14px;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.calc-band {
    margin-top: 30px;
    background: #0c1222;
    border-radius: var(--r-lg);
    overflow: hidden;
    color: #fff;
}

.calc-band-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 780px) {
    .calc-band-row {
        grid-template-columns: 1fr;
    }
}

.calc-band-col {
    padding: 32px 26px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    position: relative;
}

.calc-band-col:last-child {
    border-right: 0;
}

@media (max-width: 780px) {
    .calc-band-col {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .calc-band-col:last-child {
        border-bottom: 0;
    }
}

.calc-band-col--featured {
    background: linear-gradient(180deg, rgba(222, 37, 58, 0.18) 0%, rgba(222, 37, 58, 0.05) 100%);
}

.calc-band-col--featured::before {
    content: "EXPECTED";
    position: absolute;
    top: 14px;
    right: 14px;
    font-family: "Gilroy", sans-serif;
    font-size: 9.5px;
    letter-spacing: 0.16em;
    color: var(--accent);
    font-weight: 700;
}

.calc-band-l {
    font-family: "Gilroy", sans-serif;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 700;
}

.calc-band-v {
    margin-top: 12px;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 800;
    letter-spacing: -0.025em;
    color: #fff;
    line-height: 1;
}

.calc-band-h {
    margin-top: 10px;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.45;
}

.calc-summary {
    margin-top: 28px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: var(--r-lg);
    padding: 24px;
}

.calc-summary-h {
    font-family: "Gilroy", sans-serif;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 700;
    margin-bottom: 14px;
}

.calc-summary ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
    font-size: 14px;
    color: var(--ink);
}

.calc-summary ul li {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 6px 0;
    border-bottom: 1px dashed #e5e7eb;
}

.calc-summary ul li:last-child {
    border-bottom: 0;
}

.calc-summary ul li .v {
    color: var(--accent);
    font-weight: 700;
    white-space: nowrap;
}

.calc-result-cta {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.calc-disclaim {
    margin-top: 18px;
    text-align: center;
    font-size: 11.5px;
    color: var(--muted);
    line-height: 1.55;
}

/* TCO */
.tco-control {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 24px;
    align-items: center;
    background: #0c1222;
    color: #fff;
    border-radius: var(--r-lg);
    padding: 22px 26px;
    margin: 8px 0 24px;
}

@media (max-width: 780px) {
    .tco-control {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.tco-control .mono {
    display: block;
    font-family: "Gilroy", sans-serif;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 700;
    margin-bottom: 6px;
}

.tco-build-v {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
}

.tco-total-v {
    font-size: 24px;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.02em;
}

.tco-slider {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent) 25%, rgba(255, 255, 255, 0.18) 25%);
    border-radius: 999px;
    outline: none;
    cursor: pointer;
}

.tco-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--accent);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(222, 37, 58, 0.4);
    transition: transform 0.15s;
}

.tco-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.tco-slider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--accent);
    cursor: pointer;
}

.tco-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    min-width: 620px;
    margin-top: 8px;
}

.tco-table-wrap {
    overflow-x: auto;
}

.tco-table th,
.tco-table td {
    padding: 13px 14px;
    text-align: left;
    border-bottom: 1px solid #f3f4f6;
}

.tco-table th {
    font-family: "Gilroy", sans-serif;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 700;
}

.tco-table td:not(:first-child),
.tco-table th:not(:first-child) {
    text-align: right;
}

.tco-table tfoot td {
    font-weight: 700;
    background: var(--paper-2);
    color: var(--ink);
}

.tco-table .small {
    display: block;
    font-size: 11.5px;
    color: var(--muted);
    font-weight: 400;
    margin-top: 2px;
}

/* ROI CALCULATOR */
.roi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

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

.roi-inputs {
    display: grid;
    gap: 18px;
}

.roi-input {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 18px 20px;
}

.roi-input-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.roi-input-label .k {
    font-family: "Gilroy", sans-serif;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 700;
}

.roi-input-label .v {
    font-size: 18px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.02em;
}

.roi-slider {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent) 30%, #e5e7eb 30%);
    border-radius: 999px;
    outline: none;
    cursor: pointer;
}

.roi-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--accent);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(222, 37, 58, 0.3);
}

.roi-slider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--accent);
    cursor: pointer;
}

.roi-input-hint {
    margin-top: 8px;
    font-size: 11.5px;
    color: var(--muted);
    font-family: "Gilroy", sans-serif;
    letter-spacing: 0.04em;
}

.roi-output {
    background: #0c1222;
    color: #fff;
    border-radius: var(--r-lg);
    padding: 30px;
    position: sticky;
    top: 80px;
}

.roi-output-tag {
    font-family: "Gilroy", sans-serif;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 700;
}

.roi-output-h {
    margin-top: 8px;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fff;
}

.roi-metric {
    margin-top: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.roi-metric:last-of-type {
    border-bottom: 0;
}

.roi-metric .l {
    font-family: "Gilroy", sans-serif;
    font-size: 10.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 700;
}

.roi-metric .v {
    margin-top: 6px;
    font-size: 30px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.025em;
    line-height: 1;
}

.roi-metric .v.accent {
    color: var(--accent);
}

.roi-metric .h {
    margin-top: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.4;
}

.roi-cta {
    margin-top: 20px;
    text-align: center;
}

.roi-gate {
    display: none;
    animation: calcfade 0.35s ease;
}

.roi-gate.on {
    display: block;
}

.roi-result-hidden {
    filter: blur(8px);
    pointer-events: none;
    user-select: none;
}

/* WIZARD */
.wiz-progress {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.wiz-progress-bar {
    flex: 1;
    height: 6px;
    background: #f3f4f6;
    border-radius: 999px;
    overflow: hidden;
}

.wiz-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent), #c41f32);
    border-radius: 999px;
    transition: width 0.4s ease;
}

.wiz-progress-label {
    font-family: "Gilroy", sans-serif;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 700;
    white-space: nowrap;
}

.wiz-q-list {
    display: grid;
    gap: 10px;
}

.wiz-q {
    background: #fff;
    border: 1.5px solid #e5e7eb;
    border-radius: 14px;
    padding: 18px 22px;
    display: grid;
    grid-template-columns: 48px 1fr auto;
    gap: 18px;
    align-items: center;
    transition:
        border-color 0.25s,
        background 0.25s,
        box-shadow 0.25s;
}

@media (max-width: 680px) {
    .wiz-q {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

.wiz-q.answered {
    border-color: var(--accent);
    box-shadow: 0 8px 18px -10px rgba(222, 37, 58, 0.2);
}

.wiz-q:hover {
    border-color: var(--accent);
}

.wiz-q-num {
    font-family: "Gilroy", serif;
    font-style: italic;
    font-size: 30px;
    font-weight: 200;
    color: var(--accent);
    line-height: 1;
}

.wiz-q-text {
    font-size: 14.5px;
    line-height: 1.5;
    color: var(--ink);
    font-weight: 600;
}

.wiz-q-actions {
    display: flex;
    gap: 8px;
}

.wiz-btn {
    padding: 10px 22px;
    border-radius: 10px;
    font-family: inherit;
    font-weight: 700;
    font-size: 12.5px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: #f3f4f6;
    color: var(--ink);
    border: 1.5px solid transparent;
    cursor: pointer;
    transition:
        background 0.2s,
        color 0.2s,
        border-color 0.2s,
        transform 0.15s;
}

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

.wiz-btn[data-ans="yes"].active {
    background: var(--good);
    color: #fff;
    border-color: var(--good);
}

.wiz-btn[data-ans="no"].active {
    background: #fff;
    color: var(--accent);
    border-color: var(--accent);
}

.wiz-cta-row {
    margin-top: 26px;
    text-align: center;
}

.wiz-phase {
    display: none;
    animation: calcfade 0.35s ease;
}

.wiz-phase--active {
    display: block;
}

.wiz-result {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    background: #0c1222;
    color: #fff;
    border-radius: var(--r-lg);
    padding: 32px;
    text-align: center;
}

.wiz-result .recommend {
    font-family: "Gilroy", sans-serif;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 700;
}

.wiz-result .pick {
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 800;
    letter-spacing: -0.025em;
    color: #fff;
    margin-top: 10px;
}

.wiz-result .verdict {
    margin-top: 12px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.55;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.wiz-breakdown {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    text-align: center;
}

@media (max-width: 680px) {
    .wiz-breakdown {
        grid-template-columns: 1fr;
    }
}

.wiz-bar {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px;
    color: var(--ink);
}

.wiz-bar .nm {
    font-family: "Gilroy", sans-serif;
    font-size: 10.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 700;
}

.wiz-bar .pct {
    margin-top: 8px;
    font-size: 24px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.025em;
}

.wiz-bar.win .pct {
    color: var(--accent);
}

.wiz-bar .meter {
    margin-top: 8px;
    height: 5px;
    background: #f3f4f6;
    border-radius: 999px;
    overflow: hidden;
}

.wiz-bar .meter-fill {
    height: 100%;
    background: #d1d5db;
    border-radius: 999px;
    transition: width 0.8s ease;
}

.wiz-bar.win .meter-fill {
    background: var(--accent);
}
