:root {
    --primary: #0C1B33;
    --secondary: #23324A;
    --accent: #B98552;
    --background: #F6F2EC;
    --surface: #FFFFFF;
    --muted: rgba(35, 50, 74, .72);
    --border: rgba(35, 50, 74, .14);
    --shadow: 0 24px 70px rgba(12, 27, 51, .13);
    --font: "Tajawal", Tahoma, Arial, sans-serif;
}

* { box-sizing: border-box; }

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

body {
    min-width: 320px;
    margin: 0;
    overflow-x: hidden;
    background: var(--background);
    color: var(--primary);
    font-family: var(--font);
}

a { color: inherit; }
img { max-width: 100%; }
button { font: inherit; }

.container {
    width: min(1180px, calc(100% - 38px));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    border-bottom: 1px solid rgba(255,255,255,.09);
    background: rgba(12,27,51,.95);
    backdrop-filter: blur(15px);
}

.header-inner {
    min-height: 76px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
}

.brand {
    width: 142px;
    display: flex;
}

.brand img,
.preview-topbar img,
.footer-brand img {
    display: block;
    filter: brightness(0) invert(1);
}

.site-nav {
    display: flex;
    justify-content: center;
    gap: clamp(15px, 2.3vw, 29px);
}

.site-nav a {
    color: rgba(255,255,255,.75);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.site-nav a:hover { color: #fff; }

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

.menu-button { display: none; }

.text-button,
.primary-button,
.secondary-button {
    min-height: 49px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: transform .16s ease, box-shadow .18s ease;
}

.text-button {
    min-height: 41px;
    padding-inline: 13px;
    border: 1px solid rgba(255,255,255,.16);
    color: rgba(255,255,255,.88);
}

.primary-button {
    border: 1px solid var(--accent);
    background: var(--accent);
    color: var(--surface);
    box-shadow: 0 12px 28px rgba(185,133,82,.25);
}

.secondary-button {
    border: 1px solid rgba(12,27,51,.18);
    background: rgba(255,255,255,.72);
    color: var(--primary);
}

.primary-button:hover,
.secondary-button:hover,
.text-button:hover {
    transform: translateY(-2px);
}

.compact {
    min-height: 41px;
    padding-inline: 14px;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 85px 0 90px;
    background:
        radial-gradient(circle at 14% 12%, rgba(185,133,82,.16), transparent 28%),
        linear-gradient(118deg, var(--background) 0 58%, rgba(185,133,82,.08) 58%);
}

.hero::after {
    content: "";
    position: absolute;
    right: -250px;
    bottom: -360px;
    width: 760px;
    height: 760px;
    border-radius: 50%;
    background: rgba(12,27,51,.04);
}

.hero-grid {
    position: relative;
    z-index: 1;
    min-height: 590px;
    display: grid;
    grid-template-columns: minmax(0,.92fr) minmax(470px,1.08fr);
    align-items: center;
    gap: clamp(40px,7vw,90px);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 800;
}

.eyebrow::before {
    content: "";
    width: 27px;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
}

.hero h1 {
    margin: 19px 0 22px;
    font-size: clamp(44px,5.8vw,72px);
    line-height: 1.13;
    letter-spacing: -1.5px;
}

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

.hero-copy > p {
    max-width: 625px;
    margin: 0;
    color: var(--muted);
    font-size: clamp(17px,1.6vw,20px);
    line-height: 1.95;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 31px;
}

.hero-points {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 10px;
    margin-top: 38px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.hero-points strong,
.hero-points span {
    display: block;
}

.hero-points strong {
    font-size: 14px;
}

.hero-points span {
    margin-top: 4px;
    color: var(--muted);
    font-size: 11px;
}

.product-preview {
    position: relative;
    min-height: 550px;
    display: grid;
    place-items: center;
}

.product-preview::before {
    content: "";
    position: absolute;
    width: 470px;
    height: 470px;
    border-radius: 50%;
    background: rgba(185,133,82,.19);
    filter: blur(65px);
}

.preview-window {
    position: relative;
    z-index: 2;
    width: min(620px,100%);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 25px;
    background: var(--primary);
    box-shadow: 0 45px 100px rgba(12,27,51,.28);
    transform: perspective(1200px) rotateY(-5deg) rotateX(2deg);
}

.preview-topbar {
    min-height: 61px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 19px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.preview-topbar img { width: 116px; }
.preview-topbar span {
    width: 54px;
    height: 8px;
    border-radius: 99px;
    background: rgba(255,255,255,.17);
}

.preview-body {
    min-height: 390px;
    display: grid;
    grid-template-columns: 74px 1fr;
}

.preview-body aside {
    display: flex;
    flex-direction: column;
    gap: 13px;
    padding: 24px 15px;
    border-left: 1px solid rgba(255,255,255,.08);
    background: rgba(35,50,74,.58);
}

.preview-body aside i {
    height: 13px;
    border-radius: 99px;
    background: rgba(255,255,255,.13);
}

.preview-body aside i.active {
    height: 37px;
    border: 1px solid rgba(185,133,82,.36);
    background: rgba(185,133,82,.18);
}

.preview-body > section {
    padding: 25px;
    background: var(--background);
}

.preview-heading,
.permission-card header,
.analytics-card header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.preview-heading small,
.preview-heading strong,
.permission-card header small,
.permission-card header strong,
.analytics-card header small,
.analytics-card header strong {
    display: block;
}

.preview-heading small { color: var(--muted); font-size: 10px; }
.preview-heading strong { margin-top: 5px; font-size: 19px; }
.preview-heading b {
    width: 74px;
    height: 29px;
    border-radius: 8px;
    background: var(--accent);
}

.preview-stats {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 10px;
    margin-top: 22px;
}

.preview-stats article {
    min-height: 92px;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: #fff;
}

.preview-stats span,
.preview-stats strong {
    display: block;
}

.preview-stats span { color: var(--muted); font-size: 9px; }
.preview-stats strong { margin-top: 12px; font-size: 22px; }

.preview-panels {
    display: grid;
    grid-template-columns: 1.6fr .7fr;
    gap: 11px;
    margin-top: 12px;
}

.bars,
.wheel-card {
    min-height: 184px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #fff;
}

.bars {
    display: flex;
    align-items: end;
    gap: 9px;
    padding: 22px 17px;
}

.bars i {
    flex: 1;
    min-height: 14px;
    border-radius: 6px 6px 0 0;
    background: linear-gradient(var(--accent), rgba(185,133,82,.4));
}

.wheel-card {
    display: grid;
    place-items: center;
    align-content: center;
    gap: 10px;
}

.mini-wheel {
    width: 98px;
    height: 98px;
    display: grid;
    place-items: center;
    border: 8px solid var(--primary);
    border-radius: 50%;
    background: conic-gradient(
        var(--accent) 0 16.6%, var(--secondary) 16.6% 33.2%,
        var(--primary) 33.2% 49.8%, var(--accent) 49.8% 66.4%,
        var(--secondary) 66.4% 83%, var(--primary) 83%
    );
}

.mini-wheel span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-size: 9px;
    font-weight: 800;
}

.wheel-card small { color: var(--muted); font-size: 9px; }

.float-card {
    position: absolute;
    z-index: 4;
    min-width: 205px;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 13px 14px;
    border: 1px solid rgba(255,255,255,.42);
    border-radius: 14px;
    background: rgba(255,255,255,.95);
    box-shadow: 0 18px 45px rgba(12,27,51,.18);
}

.float-card b {
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    background: rgba(185,133,82,.12);
    color: var(--accent);
    font-size: 20px;
}

.float-card strong,
.float-card small { display: block; }

.float-card strong { font-size: 12px; }
.float-card small { margin-top: 3px; color: var(--muted); font-size: 9px; }
.card-one { top: 45px; left: -25px; }
.card-two { right: -25px; bottom: 45px; }

.proof {
    border-block: 1px solid var(--border);
    background: #fff;
}

.proof-grid {
    min-height: 86px;
    display: grid;
    grid-template-columns: repeat(6,1fr);
    align-items: center;
    gap: 10px;
}

.proof-grid span {
    color: var(--secondary);
    font-size: 12px;
    font-weight: 800;
    text-align: center;
}

.section { padding: 105px 0; }

.section-heading {
    max-width: 730px;
    margin: 0 auto 48px;
    text-align: center;
}

.section-heading .eyebrow { justify-content: center; }

.section-heading h2,
.split-copy h2,
.faq-copy h2,
.final-card h2 {
    margin: 16px 0 14px;
    font-size: clamp(34px,4.2vw,52px);
    line-height: 1.23;
    letter-spacing: -.8px;
}

.section-heading p,
.split-copy > p,
.faq-copy p,
.final-card p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.9;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 15px;
}

.steps article {
    position: relative;
    min-height: 275px;
    overflow: hidden;
    padding: 27px 23px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 14px 40px rgba(12,27,51,.05);
}

.steps article > b {
    position: absolute;
    top: 20px;
    left: 20px;
    color: rgba(12,27,51,.1);
    font-size: 36px;
}

.steps article > i,
.feature-grid article > i {
    width: 49px;
    height: 49px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(185,133,82,.12);
    color: var(--accent);
    font-size: 22px;
    font-style: normal;
    font-weight: 800;
}

.steps h3,
.feature-grid h3,
.plan-card h3 {
    margin: 29px 0 10px;
    font-size: 20px;
}

.steps p,
.feature-grid p,
.plan-card > p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.82;
}

.dark-section {
    background: var(--primary);
}

.section-heading.light h2 { color: #fff; }
.section-heading.light p { color: rgba(255,255,255,.62); }

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 15px;
}

.feature-grid article {
    min-height: 255px;
    padding: 25px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 20px;
    background: rgba(255,255,255,.055);
}

.feature-grid h3 { color: #fff; }
.feature-grid p { color: rgba(255,255,255,.62); }

.feature-grid .feature-wide {
    min-height: 315px;
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 180px;
    align-items: center;
    gap: 24px;
}

.pill {
    display: inline-flex;
    padding: 6px 10px;
    border: 1px solid rgba(185,133,82,.35);
    border-radius: 99px;
    background: rgba(185,133,82,.1);
    color: var(--accent);
    font-size: 11px;
    font-weight: 800;
}

.code-visual {
    position: relative;
    min-height: 190px;
    display: grid;
    place-items: center;
}

.interaction-box {
    width: 145px;
    height: 145px;
    display: grid;
    place-items: center;
    border-radius: 17px;
    background: #fff;
    color: var(--primary);
    font-size: 90px;
    transform: rotate(-5deg);
}

.code-visual > span {
    position: absolute;
    right: -2px;
    bottom: 7px;
    color: var(--accent);
    font-size: 39px;
    font-weight: 800;
    letter-spacing: -10px;
}

.split-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: clamp(40px,8vw,100px);
}

.split-copy ul,
.plan-card ul {
    display: grid;
    gap: 11px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.split-copy li,
.plan-card li {
    position: relative;
    padding-right: 28px;
    color: var(--secondary);
    font-size: 14px;
    line-height: 1.7;
}

.split-copy li::before,
.plan-card li::before {
    content: "✓";
    position: absolute;
    right: 0;
    color: var(--accent);
    font-weight: 800;
}

.permission-card {
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--shadow);
}

.permission-card header {
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
}

.permission-card header small { color: var(--muted); font-size: 11px; }
.permission-card header strong { margin-top: 5px; font-size: 18px; }
.permission-card header > span {
    padding: 6px 11px;
    border-radius: 99px;
    background: rgba(185,133,82,.11);
    color: var(--accent);
    font-size: 11px;
    font-weight: 800;
}

.permission {
    min-height: 73px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 13px 14px;
    border-bottom: 1px solid var(--border);
}

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

.permission strong { font-size: 14px; }
.permission small { margin-top: 4px; color: var(--muted); font-size: 11px; }

.permission i {
    position: relative;
    width: 45px;
    height: 25px;
    flex: 0 0 auto;
    border-radius: 99px;
    background: rgba(35,50,74,.16);
}

.permission i::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 6px rgba(12,27,51,.18);
}

.permission.on i { background: var(--accent); }
.permission.on i::after { left: 24px; }

.locked-note {
    margin: 18px 0 0;
    padding: 14px;
    border: 1px solid rgba(185,133,82,.24);
    border-radius: 13px;
    background: rgba(185,133,82,.11);
    color: var(--secondary);
    font-size: 12px;
    line-height: 1.75;
}

.analytics-section { background: rgba(255,255,255,.5); }
.analytics-grid { grid-template-columns: 1.15fr .85fr; }

.analytics-card {
    padding: 24px;
    border-radius: 24px;
    background: var(--primary);
    box-shadow: 0 34px 80px rgba(12,27,51,.2);
}

.analytics-card header small { color: rgba(255,255,255,.52); font-size: 10px; }
.analytics-card header strong { margin-top: 5px; color: #fff; font-size: 17px; }
.analytics-card header > span { color: rgba(255,255,255,.5); font-size: 9px; }

.analytics-stats {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 10px;
    margin-top: 23px;
}

.analytics-stats article {
    padding: 15px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 13px;
    background: rgba(255,255,255,.055);
}

.analytics-stats span,
.analytics-stats strong,
.analytics-stats small { display: block; }

.analytics-stats span { color: rgba(255,255,255,.5); font-size: 9px; }
.analytics-stats strong { margin-top: 9px; color: #fff; font-size: 23px; }
.analytics-stats small { margin-top: 6px; color: var(--accent); font-size: 8px; }

.large-bars {
    height: 220px;
    display: flex;
    align-items: end;
    gap: 16px;
    margin-top: 14px;
    padding: 24px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 15px;
}

.large-bars i {
    flex: 1;
    min-height: 18px;
    border-radius: 7px 7px 0 0;
    background: linear-gradient(var(--accent), rgba(185,133,82,.18));
}

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

.plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 27px;
    border: 1px solid var(--border);
    border-radius: 21px;
    background: #fff;
    box-shadow: 0 16px 45px rgba(12,27,51,.06);
}

.plan-card.featured {
    border-color: rgba(185,133,82,.58);
    box-shadow: 0 23px 60px rgba(185,133,82,.16);
}

.featured-label {
    position: absolute;
    top: 17px;
    left: 17px;
    padding: 5px 9px;
    border-radius: 99px;
    background: var(--accent);
    color: #fff;
    font-size: 9px;
    font-weight: 800;
}

.plan-card h3 {
    margin-top: 0;
    font-size: 23px;
}

.plan-card > p { min-height: 74px; }

.price {
    margin: 20px 0;
    padding-block: 18px;
    border-block: 1px solid var(--border);
}

.price strong,
.price span { display: block; }

.price strong { font-size: 31px; }
.price span { margin-top: 8px; color: var(--muted); font-size: 11px; }

.plan-card ul { margin: 0 0 25px; }

.plan-card > a {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    border-radius: 11px;
    background: var(--primary);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.empty-plans {
    padding: 35px;
    border: 1px dashed var(--border);
    border-radius: 18px;
    color: var(--muted);
    text-align: center;
}

.center-action {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.faq-section { background: #fff; }

.faq-grid {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    align-items: start;
    gap: clamp(40px,8vw,100px);
}

.faq-copy h2 {
    margin-bottom: 12px;
}

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

.faq-list details {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 15px;
    background: var(--background);
}

.faq-list summary {
    position: relative;
    min-height: 68px;
    display: flex;
    align-items: center;
    padding: 16px 21px 16px 54px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    list-style: none;
}

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

.faq-list summary::after {
    content: "+";
    position: absolute;
    left: 20px;
    color: var(--accent);
    font-size: 24px;
}

.faq-list details[open] summary::after { content: "−"; }

.faq-list details p {
    margin: 0;
    padding: 0 21px 20px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.85;
}

.final-section { padding: 80px 0; }

.final-card {
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 50px;
    border-radius: 27px;
    background: var(--primary);
    box-shadow: 0 30px 80px rgba(12,27,51,.2);
}

.final-card h2 { max-width: 700px; color: #fff; }
.final-card p { max-width: 650px; color: rgba(255,255,255,.62); }

.final-actions {
    flex: 0 0 auto;
    display: grid;
    gap: 10px;
}

.final-actions a { min-width: 155px; }

.secondary-button.light {
    border-color: rgba(255,255,255,.18);
    background: rgba(255,255,255,.06);
    color: #fff;
}

footer {
    padding: 55px 0 27px;
    background: var(--primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr .7fr .7fr 1fr;
    gap: 45px;
}

.footer-brand img { width: 145px; }

.footer-brand p {
    max-width: 310px;
    margin: 18px 0 0;
    color: rgba(255,255,255,.54);
    font-size: 12px;
    line-height: 1.8;
}

.footer-grid > div:not(.footer-brand) {
    display: grid;
    align-content: start;
    gap: 10px;
}

.footer-grid strong { color: #fff; font-size: 13px; }

.footer-grid a {
    color: rgba(255,255,255,.54);
    font-size: 12px;
    text-decoration: none;
}

.footer-grid small {
    color: rgba(255,255,255,.45);
    text-align: left;
}

@media (max-width: 1000px) {
    .site-nav { gap: 14px; }
    .site-nav a { font-size: 12px; }
    .compact { display: none; }

    .hero-grid {
        grid-template-columns: .9fr minmax(410px,1.1fr);
        gap: 35px;
    }

    .steps { grid-template-columns: repeat(2,1fr); }
    .feature-grid { grid-template-columns: repeat(2,1fr); }
    .plans-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 850px) {
    .header-inner {
        min-height: 68px;
        grid-template-columns: auto auto 1fr;
        gap: 13px;
    }

    .brand { width: 125px; }

    .menu-button {
        width: 40px;
        height: 40px;
        display: grid;
        place-items: center;
        border: 1px solid rgba(255,255,255,.16);
        border-radius: 10px;
        background: transparent;
        color: #fff;
        font-size: 22px;
        cursor: pointer;
    }

    .site-nav {
        position: absolute;
        top: 68px;
        right: 0;
        left: 0;
        display: none;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        padding: 12px 20px 18px;
        border-top: 1px solid rgba(255,255,255,.08);
        background: var(--primary);
        box-shadow: 0 18px 35px rgba(12,27,51,.25);
    }

    .site-nav.open { display: flex; }

    .site-nav a {
        padding: 12px 2px;
        border-bottom: 1px solid rgba(255,255,255,.07);
        font-size: 14px;
    }

    .header-actions { justify-self: end; }

    .hero { padding-top: 65px; }

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

    .hero-copy {
        max-width: 720px;
        margin-inline: auto;
        text-align: center;
    }

    .hero-copy .eyebrow,
    .hero-actions { justify-content: center; }

    .hero-copy > p { margin-inline: auto; }

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

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

    .preview-window { transform: none; }

    .proof-grid {
        grid-template-columns: repeat(3,1fr);
        padding-block: 18px;
    }

    .split-grid,
    .analytics-grid,
    .faq-grid { grid-template-columns: 1fr; }

    .analytics-card { order: 2; }
    .analytics-grid .split-copy { order: 1; }

    .final-card {
        align-items: flex-start;
        flex-direction: column;
    }

    .final-actions {
        width: 100%;
        grid-template-columns: repeat(2,1fr);
    }

    .footer-grid {
        grid-template-columns: 1.4fr .7fr .7fr;
    }

    .footer-grid small {
        grid-column: 1/-1;
        padding-top: 20px;
        border-top: 1px solid rgba(255,255,255,.08);
        text-align: right;
    }
}

@media (max-width: 600px) {
    .container { width: min(100% - 26px,1180px); }

    .text-button {
        min-height: 38px;
        padding-inline: 10px;
        font-size: 11px;
    }

    .hero { padding: 52px 0 70px; }

    .hero h1 {
        font-size: clamp(38px,12vw,51px);
        letter-spacing: -.7px;
    }

    .hero-copy > p { font-size: 16px; }

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

    .hero-points {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .product-preview { min-height: 420px; }

    .preview-window { border-radius: 18px; }
    .preview-body {
        min-height: 300px;
        grid-template-columns: 47px 1fr;
    }
    .preview-body aside { padding: 17px 8px; }
    .preview-body > section { padding: 15px 11px; }
    .preview-heading strong { font-size: 14px; }
    .preview-heading b { width: 45px; height: 24px; }
    .preview-stats { gap: 5px; }
    .preview-stats article { min-height: 70px; padding: 8px; }
    .preview-stats strong { font-size: 15px; }
    .preview-panels { gap: 5px; }
    .bars, .wheel-card { min-height: 130px; }
    .bars { gap: 5px; padding: 15px 9px; }
    .mini-wheel { width: 68px; height: 68px; border-width: 6px; }

    .float-card { min-width: 172px; padding: 9px; }
    .card-one { top: 4px; left: -3px; }
    .card-two { right: -3px; bottom: 0; }

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

    .section { padding: 75px 0; }

    .section-heading h2,
    .split-copy h2,
    .faq-copy h2,
    .final-card h2 { font-size: 34px; }

    .steps,
    .feature-grid,
    .plans-grid { grid-template-columns: 1fr; }

    .feature-grid .feature-wide {
        grid-column: auto;
        grid-template-columns: 1fr;
    }

    .permission-card,
    .analytics-card { padding: 16px; }

    .analytics-stats { grid-template-columns: 1fr; }
    .large-bars { height: 170px; gap: 8px; padding: 15px; }

    .plan-card > p { min-height: auto; }

    .final-card {
        padding: 32px 22px;
        border-radius: 20px;
    }

    .final-actions { grid-template-columns: 1fr; }

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

    .footer-brand { grid-column: 1/-1; }
}
