:root {
    color-scheme: light;
    --bg: #f5f7fb;
    --surface: #ffffff;
    --surface-soft: #f8fafc;
    --ink: #071127;
    --muted: #59657a;
    --line: #dfe6f2;
    --navy: #101a2c;
    --sidebar: #172434;
    --violet: #5b2cff;
    --violet-2: #7c3aed;
    --blue: #2563eb;
    --green: #14a46c;
    --red: #ef334e;
    --amber: #f59e0b;
    --shadow: 0 28px 80px rgba(19, 27, 44, 0.14);
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    background:
        radial-gradient(circle at 18% 16%, rgba(20, 164, 108, 0.13), transparent 24rem),
        radial-gradient(circle at 86% 8%, rgba(91, 44, 255, 0.18), transparent 32rem),
        linear-gradient(180deg, #ffffff 0%, var(--bg) 44%, #ffffff 100%);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

h1,
h2,
h3,
p,
span,
strong,
em,
li,
dd,
dt {
    overflow-wrap: anywhere;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px clamp(20px, 5vw, 72px);
    border-bottom: 1px solid rgba(223, 230, 242, 0.76);
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--navy);
    font-weight: 850;
}

.brand-mark {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--violet), var(--blue));
    color: #ffffff;
    font-size: 15px;
}

.nav-links {
    display: flex;
    gap: 22px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 750;
}

.nav-links a:hover,
.header-cta:hover {
    color: var(--violet);
}

.header-cta {
    border: 1px solid rgba(91, 44, 255, 0.22);
    border-radius: var(--radius);
    padding: 10px 14px;
    background: rgba(91, 44, 255, 0.08);
    color: var(--violet);
    font-size: 14px;
    font-weight: 850;
}

.hero-section,
.product-stage,
.section,
.plans-section,
.wishlist-section,
.site-footer {
    width: min(1480px, calc(100% - 36px));
    margin: 0 auto;
}

.hero-section {
    display: grid;
    place-items: center;
    min-height: 46vh;
    padding: 72px 0 38px;
    text-align: center;
}

.hero-copy {
    max-width: 1040px;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--violet);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(44px, 7vw, 88px);
    line-height: 0.98;
    letter-spacing: 0;
}

.hero-subtitle {
    max-width: 760px;
    margin: 24px auto 0;
    color: var(--muted);
    font-size: clamp(18px, 2vw, 22px);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: var(--radius);
    padding: 0 22px;
    font-weight: 900;
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

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

.button-primary {
    background: linear-gradient(135deg, var(--violet), var(--blue));
    color: #ffffff;
    box-shadow: 0 18px 36px rgba(91, 44, 255, 0.24);
}

.button-secondary {
    border-color: var(--line);
    background: #ffffff;
    color: var(--navy);
}

.proof-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
}

.proof-strip span {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 13px;
    background: rgba(255, 255, 255, 0.76);
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.product-stage {
    padding-bottom: 56px;
}

.stage-title {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 14px 10px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 850;
}

.live-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 7px rgba(20, 164, 108, 0.12);
}

.wp-window {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    min-height: 0;
    overflow: hidden;
    border: 1px solid rgba(91, 44, 255, 0.18);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow);
}

.wp-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 18px 12px;
    background: linear-gradient(180deg, #122033, #0c1725);
    color: #d7e0ee;
    font-size: 12px;
    font-weight: 750;
}

.wp-logo {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    margin-bottom: 10px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
    font-weight: 900;
}

.wp-sidebar span {
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 6px;
    padding: 7px 10px;
}

.wp-sidebar .active,
.wp-sidebar .selected {
    background: linear-gradient(135deg, var(--violet), #2f80ff);
    color: #ffffff;
}

.wp-sidebar .indent {
    padding-left: 18px;
}

.wp-sidebar b {
    float: right;
    border-radius: 999px;
    padding: 1px 6px;
    background: var(--red);
    color: #ffffff;
    font-size: 11px;
}

.order-screen {
    padding: 14px;
    background: #fbfcff;
}

.screen-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 850;
}

.screen-toolbar div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.screen-toolbar a,
.screen-toolbar button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.screen-toolbar button {
    min-height: 32px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #ffffff;
    color: var(--navy);
    font-size: 12px;
    font-weight: 850;
}

.customer-header-card,
.next-action-card,
.reason-card,
.info-card,
.timeline-card,
.metrics-card,
.notes-card,
.plan-card,
.wishlist-form,
.faq-list details {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
}

.customer-header-card {
    display: grid;
    grid-template-columns: auto minmax(240px, 1fr) 132px 132px 150px 132px;
    gap: 10px;
    align-items: center;
    padding: 14px;
}

.avatar {
    display: grid;
    width: 76px;
    height: 76px;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #ede9fe, #e0f2fe);
    color: var(--violet);
    font-size: 28px;
    font-weight: 900;
}

.customer-avatar-icon {
    border: 1px solid rgba(15, 159, 110, 0.25);
    background: #f0fdf4;
    color: var(--green);
}

.customer-avatar-icon svg {
    width: 46px;
    height: 46px;
}

.name-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
}

.name-row h2 {
    margin: 0;
    font-size: 24px;
    line-height: 1.1;
}

.customer-main p,
.mini-meta {
    color: var(--muted);
    font-size: 13px;
}

.customer-main p {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 8px 0;
}

.mini-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.mini-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.tag {
    border-radius: 999px;
    padding: 5px 9px;
    font-size: 12px;
    font-weight: 900;
}

.tag.violet {
    background: #ede9fe;
    color: var(--violet);
}

.tag.green {
    background: #dcfce7;
    color: #087550;
}

.score-card,
.risk-card,
.value-card,
.stage-card {
    min-height: 88px;
    border-radius: var(--radius);
    padding: 12px;
}

.score-card {
    border: 1px solid #d8f3e7;
    background: #f0fdf4;
}

.risk-card {
    position: relative;
    border: 1px solid #ffd7dd;
    background: #fff1f3;
}

.value-card {
    border: 1px solid #d9efe4;
    background: #f0fdf4;
}

.stage-card {
    border: 1px solid #e9ddff;
    background: #f6f1ff;
}

.score-card span,
.risk-card span,
.value-card span,
.stage-card span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
}

.score-card strong,
.risk-card strong,
.value-card strong,
.stage-card strong {
    display: block;
    margin-top: 7px;
    font-size: 26px;
    line-height: 1;
}

.score-card strong,
.value-card strong {
    color: #059447;
}

.risk-card strong {
    color: var(--red);
}

.stage-card strong {
    color: var(--violet);
}

.score-card small {
    color: var(--navy);
    font-size: 14px;
}

.score-card em,
.risk-card em,
.value-card em,
.stage-card em {
    display: block;
    margin-top: 7px;
    font-style: normal;
    font-size: 12px;
    font-weight: 900;
}

.score-line {
    height: 6px;
    margin-top: 10px;
    overflow: hidden;
    border-radius: 999px;
    background: #dbeafe;
}

.score-line i {
    display: block;
    width: 78%;
    height: 100%;
    border-radius: inherit;
    background: var(--green);
}

.risk-gauge {
    position: absolute;
    right: 18px;
    bottom: 22px;
    width: 44px;
    height: 22px;
    border: 7px solid var(--red);
    border-bottom: 0;
    border-radius: 44px 44px 0 0;
    transform: rotate(18deg);
}

.insight-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) 0.74fr 0.72fr;
    gap: 10px;
    margin-top: 10px;
}

.next-action-card {
    padding: 16px;
    background: linear-gradient(135deg, #fbfaff, #ffffff 56%, #f6f1ff);
}

.card-kicker {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--violet);
    font-size: 16px;
    font-weight: 950;
}

.action-body {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) 152px;
    gap: 14px;
    align-items: center;
}

.coupon-icon {
    display: grid;
    width: 60px;
    height: 60px;
    place-items: center;
    border-radius: var(--radius);
    border: 1px solid rgba(15, 159, 110, 0.25);
    background: #f0fdf4;
    color: var(--green);
    font-weight: 950;
}

.coupon-icon svg {
    width: 34px;
    height: 34px;
}

.action-body h3 {
    margin: 0;
    color: #12146a;
    font-size: 22px;
    line-height: 1.12;
}

.action-body p {
    margin: 9px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.impact-box {
    border-left: 1px solid var(--line);
    padding-left: 18px;
}

.impact-box span,
.impact-box p {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

.impact-box strong {
    display: block;
    margin: 5px 0;
    color: var(--green);
    font-size: 28px;
}

.impact-box em {
    display: block;
    margin-top: 4px;
    color: var(--green);
    font-style: normal;
    font-weight: 900;
}

.confidence-bars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
    margin-top: 8px;
}

.confidence-bars i {
    height: 5px;
    border-radius: 999px;
    background: var(--violet);
}

.action-buttons {
    display: flex;
    gap: 12px;
    margin-top: 14px;
}

.action-buttons button,
.plan-mini-screen button {
    min-height: 42px;
    border-radius: var(--radius);
    font-weight: 900;
}

.action-buttons button:first-child,
.plan-mini-screen button {
    border: 0;
    background: linear-gradient(135deg, var(--violet), var(--blue));
    color: #ffffff;
    box-shadow: 0 14px 24px rgba(91, 44, 255, 0.2);
}

.action-buttons button:last-child {
    border: 1px solid var(--line);
    background: #ffffff;
    color: var(--navy);
}

.reason-card,
.info-card {
    padding: 14px;
}

.reason-card h3,
.info-card h3,
.timeline-card h3,
.metrics-card h3,
.notes-card h3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin: 0 0 14px;
    color: var(--navy);
    font-size: 16px;
}

.reason-card h3,
.timeline-card h3,
.metrics-card h3 {
    justify-content: flex-start;
}

.info-card h3 a,
.tags-card h3 a,
.notes-card h3 a {
    color: var(--violet);
    font-size: 11px;
    font-weight: 900;
}

.reason-item {
    position: relative;
    border-radius: var(--radius);
    padding: 10px 10px 10px 44px;
}

.reason-item + .reason-item {
    margin-top: 10px;
}

.reason-item strong,
.reason-item span {
    display: block;
}

.round-ico {
    position: absolute;
    left: 12px;
    top: 14px;
    display: grid;
    width: 22px;
    height: 22px;
    place-items: center;
    border-radius: 50%;
}

.reason-item strong {
    font-size: 13px;
}

.reason-item span {
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
}

.reason-item.blue {
    background: #eff6ff;
    color: #1d4ed8;
}

.reason-item.green {
    background: #ecfdf5;
    color: #047857;
}

.reason-item.amber {
    background: #fff7ed;
    color: #c2410c;
}

.info-card dl {
    margin: 0;
}

.info-card div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px solid #edf1f7;
    padding: 6px 0;
    font-size: 12px;
}

.info-card dt {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--muted);
    font-weight: 800;
}

.info-card dd {
    margin: 0;
    color: var(--navy);
    font-weight: 850;
    text-align: right;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) 0.62fr 0.62fr 0.62fr;
    gap: 10px;
    margin-top: 10px;
}

.timeline-card,
.metrics-card,
.notes-card,
.tags-card {
    padding: 14px;
}

.timeline-row {
    display: grid;
    grid-template-columns: 12px 100px minmax(0, 1fr) 76px;
    gap: 10px;
    align-items: center;
    padding: 6px 0;
    color: var(--muted);
    font-size: 12px;
}

.timeline-row .dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--green);
}

.timeline-row .dot.violet {
    background: var(--violet);
}

.timeline-row .dot.amber {
    background: var(--amber);
}

.timeline-row p,
.timeline-row strong,
.timeline-row em {
    margin: 0;
}

.timeline-row strong,
.timeline-row em {
    color: var(--navy);
    font-style: normal;
    font-weight: 850;
}

.metrics-card div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px solid #edf1f7;
    padding: 6px 0;
    color: var(--muted);
    font-size: 12px;
    font-weight: 750;
}

.metrics-card span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.metrics-card strong {
    color: var(--navy);
}

.notes-card {
    background: #fff9e8;
}

.tags-card h3 {
    margin: 0 0 10px;
    color: var(--navy);
    font-size: 16px;
}

.tag-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-stack span {
    border-radius: 999px;
    padding: 6px 8px;
    background: #eef2ff;
    color: var(--violet);
    font-size: 11px;
    font-weight: 900;
}

.demo-includes-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    margin-top: 10px;
    border-top: 1px solid var(--line);
    padding: 12px 14px 2px;
    color: var(--navy);
    font-size: 12px;
    font-weight: 800;
}

.demo-includes-bar span::before {
    content: "+";
    display: inline-grid;
    width: 16px;
    height: 16px;
    place-items: center;
    margin-right: 5px;
    border-radius: 50%;
    background: #dcfce7;
    color: #087550;
    font-size: 11px;
    font-weight: 950;
}

.demo-includes-bar span:nth-child(n+6)::before {
    background: #ede9fe;
    color: var(--violet);
}

.ui-ico {
    position: relative;
    display: inline-grid;
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
    place-items: center;
    color: currentColor;
}

.ui-ico::before,
.ui-ico::after,
.round-ico::before,
.round-ico::after {
    content: "";
    display: block;
    box-sizing: border-box;
}

.ico-dashboard::before,
.ico-box::before,
.ico-page::before,
.ico-store::before,
.ico-orders::before,
.ico-ticket::before,
.ico-user::before,
.ico-media::before,
.ico-chart::before,
.ico-gear::before,
.ico-mail::before,
.ico-phone::before,
.ico-location::before,
.ico-calendar::before,
.ico-back::before,
.ico-next::before,
.ico-more::before,
.ico-clock::before,
.ico-money::before,
.ico-average::before,
.ico-refresh::before,
.ico-refund::before,
.ico-gender::before,
.ico-age::before,
.ico-language::before,
.ico-brand::before,
.ico-price::before,
.ico-time::before,
.ico-device::before,
.ico-source::before,
.ico-note::before,
.ico-help::before,
.ico-spark::before,
.ico-pin::before,
.ico-bullhorn::before,
.ico-plug::before {
    width: 12px;
    height: 12px;
    border: 2px solid currentColor;
    border-radius: 3px;
}

.ico-dashboard::before { border-radius: 2px; transform: rotate(45deg) scale(0.82); }
.ico-pin::before { border-radius: 50% 50% 50% 0; transform: rotate(-45deg) scale(0.82); }
.ico-media::before { border-radius: 50%; }
.ico-page::before { border-radius: 2px; border-top-width: 4px; }
.ico-store::before { border-radius: 2px; border-bottom-width: 5px; }
.ico-orders::before { border-radius: 2px; border-left-width: 4px; }
.ico-ticket::before { border-radius: 2px 50% 50% 2px; }
.ico-user::before { border-radius: 50%; height: 8px; width: 8px; }
.ico-box::before { border-radius: 2px; transform: perspective(16px) rotateX(18deg); }
.ico-chart::before { border-top: 0; border-right: 0; border-radius: 0; transform: skewY(-16deg); }
.ico-bullhorn::before { border-radius: 2px 8px 8px 2px; width: 13px; height: 9px; }
.ico-plug::before { width: 9px; border-top-width: 5px; }
.ico-gear::before { border-radius: 50%; border-style: dotted; }
.ico-mail::before { height: 9px; }
.ico-phone::before { width: 8px; height: 13px; border-radius: 6px; transform: rotate(-18deg); }
.ico-location::before { border-radius: 50% 50% 50% 0; transform: rotate(-45deg) scale(0.86); }
.ico-calendar::before { border-radius: 2px; border-top-width: 5px; }
.ico-back::before { width: 9px; height: 9px; border-top: 2px solid currentColor; border-left: 2px solid currentColor; border-right: 0; border-bottom: 0; transform: rotate(-45deg); }
.ico-next::before { width: 9px; height: 9px; border-top: 2px solid currentColor; border-right: 2px solid currentColor; border-left: 0; border-bottom: 0; transform: rotate(45deg); }
.ico-more::before { width: 4px; height: 4px; border-radius: 50%; background: currentColor; box-shadow: 5px 0 0 currentColor, 10px 0 0 currentColor; border: 0; }
.ico-clock::before { border-radius: 50%; }
.ico-money::before { border-radius: 50%; }
.ico-average::before { border-radius: 2px; transform: rotate(45deg) scale(0.8); }
.ico-refresh::before { border-left-color: transparent; border-radius: 50%; }
.ico-refund::before { border-right-color: transparent; border-radius: 50%; }
.ico-gender::before { border-radius: 50%; }
.ico-age::before { border-radius: 50%; width: 10px; height: 10px; }
.ico-language::before { border-radius: 50%; border-left-width: 4px; }
.ico-brand::before { border-radius: 50% 50% 3px 3px; }
.ico-price::before { border-radius: 50%; }
.ico-time::before { border-radius: 50%; border-right-color: transparent; }
.ico-device::before { width: 8px; height: 13px; border-radius: 3px; }
.ico-source::before { border-radius: 2px; border-right-width: 5px; }
.ico-note::before { border-radius: 2px; border-left-width: 4px; color: var(--amber); }
.ico-help::before { border-radius: 50%; }
.ico-spark::before { border-radius: 2px; transform: rotate(45deg) scale(0.78); }

.round-ico.ico-trend {
    background: #dbeafe;
    color: #2563eb;
}

.round-ico.ico-heart {
    background: #dcfce7;
    color: #0f9f6e;
}

.round-ico.ico-alert {
    background: #ffedd5;
    color: #f59e0b;
}

.round-ico.ico-trend::before {
    width: 11px;
    height: 8px;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: skew(-18deg) rotate(-12deg);
}

.round-ico.ico-heart::before {
    width: 11px;
    height: 11px;
    border-radius: 50% 50% 0 50%;
    background: currentColor;
    transform: rotate(45deg) scale(0.72);
}

.round-ico.ico-alert::before {
    width: 12px;
    height: 12px;
    border: 2px solid currentColor;
    border-radius: 50%;
}

.notes-card p {
    display: flex;
    gap: 8px;
    margin: 0;
    color: var(--navy);
    font-weight: 800;
}

.notes-card small {
    display: block;
    margin-top: 14px;
    color: var(--muted);
}

.section,
.plans-section {
    padding: 72px 0;
}

.section-heading {
    max-width: 860px;
    margin-bottom: 30px;
}

.section-heading.centered {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.section-heading h2,
.wishlist-copy h2 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(31px, 5vw, 54px);
    line-height: 1.06;
    letter-spacing: 0;
}

.problem-grid,
.steps,
.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.problem-grid article,
.steps article {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
    background: #ffffff;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.04);
}

.problem-grid span,
.steps span {
    display: inline-grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: var(--radius);
    background: var(--navy);
    color: #ffffff;
    font-weight: 900;
}

.problem-grid h3,
.steps h3 {
    margin: 18px 0 8px;
    color: var(--navy);
    font-size: 20px;
}

.problem-grid p,
.steps p,
.wishlist-copy p,
.faq-list p {
    color: var(--muted);
}

.problem-grid p,
.steps p {
    margin: 0;
}

.plans-grid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}

.plan-card {
    position: relative;
    overflow: hidden;
    padding: 24px;
}

.plan-card.lite {
    border-color: rgba(20, 164, 108, 0.28);
    background: linear-gradient(135deg, #ffffff, #f0fdf4);
}

.plan-card.pro {
    border-color: rgba(91, 44, 255, 0.32);
    background: linear-gradient(135deg, #ffffff, #f6f1ff);
}

.popular-pill {
    position: absolute;
    top: 18px;
    right: 18px;
    border-radius: 999px;
    padding: 8px 12px;
    background: var(--violet);
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
}

.plan-head span {
    display: block;
    color: var(--navy);
    font-size: 28px;
    font-weight: 950;
}

.plan-head strong {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 15px;
}

.plan-mini-screen {
    min-height: 210px;
    margin-top: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 20px;
    background: rgba(255, 255, 255, 0.82);
}

.mini-score,
.mini-risk {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 16px;
    font-size: 34px;
    font-weight: 950;
}

.mini-score {
    color: var(--green);
}

.mini-risk {
    color: var(--red);
}

.plan-mini-screen h3 {
    margin: 0;
    color: #12146a;
    font-size: 24px;
}

.plan-mini-screen p {
    color: var(--muted);
}

.plan-mini-screen button {
    width: 100%;
    border: 0;
}

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

.plan-card li {
    color: var(--navy);
    font-size: 14px;
    font-weight: 850;
}

.plan-card li::before {
    content: "+";
    margin-right: 8px;
    color: var(--green);
    font-weight: 950;
}

.wishlist-section {
    display: grid;
    grid-template-columns: 0.82fr 1fr;
    gap: 36px;
    align-items: start;
    margin-top: 36px;
    margin-bottom: 72px;
    overflow: hidden;
    border-radius: var(--radius);
    padding: clamp(24px, 5vw, 46px);
    background:
        radial-gradient(circle at 18% 18%, rgba(91, 44, 255, 0.38), transparent 25rem),
        linear-gradient(135deg, #0c1424, #17104a 70%, #25105d);
    color: #ffffff;
    box-shadow: var(--shadow);
}

.wishlist-copy {
    position: sticky;
    top: 104px;
}

.wishlist-copy h2,
.wishlist-copy .eyebrow {
    color: #ffffff;
}

.wishlist-copy p:not(.eyebrow) {
    max-width: 480px;
    color: #d9e2f1;
    font-size: 18px;
}

.wishlist-proof {
    display: grid;
    gap: 10px;
    margin-top: 26px;
}

.wishlist-proof span {
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    padding: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-weight: 850;
}

.wishlist-form {
    padding: 24px;
    color: var(--navy);
}

.wishlist-form label {
    display: block;
    margin: 14px 0 7px;
    font-size: 14px;
    font-weight: 900;
}

.wishlist-form label:first-of-type {
    margin-top: 0;
}

.wishlist-form input,
.wishlist-form select,
.wishlist-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    color: var(--ink);
    outline: none;
}

.wishlist-form input,
.wishlist-form select {
    min-height: 46px;
    padding: 0 12px;
}

.wishlist-form textarea {
    resize: vertical;
    padding: 12px;
}

.wishlist-form input:focus,
.wishlist-form select:focus,
.wishlist-form textarea:focus {
    border-color: var(--violet);
    box-shadow: 0 0 0 4px rgba(91, 44, 255, 0.12);
}

.wishlist-form [aria-invalid="true"] {
    border-color: #dc2626;
}

.hidden-field {
    position: absolute;
    left: -9999px;
}

.consent-row {
    display: flex !important;
    gap: 10px;
    align-items: flex-start;
    color: var(--muted);
    font-weight: 700 !important;
}

.consent-row input {
    width: 18px;
    min-width: 18px;
    height: 18px;
    min-height: 18px;
    margin-top: 3px;
}

.field-error {
    min-height: 18px;
    margin: 5px 0 0;
    color: #b91c1c;
    font-size: 13px;
    font-weight: 800;
}

.form-button {
    width: 100%;
    margin-top: 16px;
    border: 0;
}

.form-button:disabled {
    cursor: wait;
    opacity: 0.72;
    transform: none;
}

.form-message {
    min-height: 22px;
    margin: 14px 0 0;
    font-weight: 900;
}

.form-message[data-type="success"] {
    color: #087550;
}

.form-message[data-type="error"] {
    color: #b91c1c;
}

.faq-list {
    display: grid;
    max-width: 900px;
    gap: 12px;
    margin: 0 auto;
}

.faq-list details {
    padding: 18px 20px;
}

.faq-list summary {
    cursor: pointer;
    color: var(--navy);
    font-size: 16px;
    font-weight: 900;
    list-style-position: outside;
}

.faq-list p {
    margin: 12px 0 0;
    max-width: 760px;
    line-height: 1.65;
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 30px 0 44px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 14px;
}

.site-footer span:first-child {
    color: var(--navy);
    font-weight: 900;
}

@media (max-width: 1180px) {
    .wp-window {
        grid-template-columns: 102px minmax(0, 1fr);
    }

    .wp-sidebar {
        font-size: 11px;
    }

    .customer-header-card {
        grid-template-columns: auto minmax(220px, 1fr) 145px 145px;
    }

    .value-card {
        grid-column: 3 / 5;
    }

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

    .next-action-card,
    .timeline-card {
        grid-column: 1 / -1;
    }
}

@media (max-width: 900px) {
    .site-header {
        position: static;
    }

    .nav-links {
        display: none;
    }

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

    .wp-sidebar {
        display: none;
    }

    .customer-header-card,
    .insight-layout,
    .dashboard-grid,
    .plans-grid,
    .wishlist-section {
        grid-template-columns: 1fr;
    }

    .value-card,
    .next-action-card,
    .timeline-card {
        grid-column: auto;
    }

    .action-body {
        grid-template-columns: 64px minmax(0, 1fr);
    }

    .impact-box {
        grid-column: 1 / -1;
        border-left: 0;
        border-top: 1px solid var(--line);
        padding: 14px 0 0;
    }

    .wishlist-copy {
        position: static;
    }

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

@media (max-width: 560px) {
    .site-header {
        padding: 14px 18px;
    }

    .header-cta {
        display: none;
    }

    .hero-section,
    .product-stage,
    .section,
    .plans-section,
    .wishlist-section,
    .site-footer {
        width: min(100% - 24px, 1480px);
    }

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

    h1 {
        font-size: 42px;
    }

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

    .order-screen,
    .customer-header-card,
    .next-action-card,
    .reason-card,
    .info-card,
    .timeline-card,
    .metrics-card,
    .notes-card,
    .wishlist-form {
        padding: 14px;
    }

    .screen-toolbar,
    .action-buttons,
    .site-footer,
    .timeline-row {
        flex-direction: column;
    }

    .screen-toolbar,
    .site-footer {
        align-items: flex-start;
    }

    .timeline-row {
        display: grid;
        grid-template-columns: 12px minmax(0, 1fr);
    }

    .timeline-row em {
        grid-column: 2;
    }

    .coupon-icon {
        width: 58px;
        height: 58px;
    }

    .action-body h3,
    .plan-mini-screen h3 {
        font-size: 21px;
    }

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

/* Compare Plans block based on the provided reference image. */
.compare-plans-section {
    width: min(1480px, calc(100% - 36px));
    padding: 72px 0;
}

.compare-title {
    margin-bottom: 22px;
    text-align: center;
}

.compare-title h2 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(34px, 5vw, 54px);
    line-height: 1.04;
}

.compare-title p {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 18px;
    font-weight: 750;
}

.compare-panels {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 46px;
    align-items: stretch;
}

.compare-panel {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow);
}

.lite-panel {
    border-color: rgba(15, 159, 110, 0.22);
}

.pro-panel {
    border-color: rgba(109, 61, 245, 0.3);
}

.compare-panel-head {
    position: relative;
    min-height: 132px;
    padding: 30px 28px 22px;
    text-align: center;
}

.lite-panel .compare-panel-head {
    background: linear-gradient(90deg, #eefdf5, #ffffff 68%);
}

.pro-panel .compare-panel-head {
    background: linear-gradient(90deg, #ffffff 36%, #f4efff);
}

.compare-panel-head h3 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(26px, 2.7vw, 36px);
    line-height: 1.08;
}

.compare-panel-head p {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 18px;
    font-weight: 800;
}

.compare-popular {
    position: absolute;
    top: 22px;
    right: 22px;
    border-radius: 999px;
    padding: 12px 18px;
    background: var(--violet);
    color: #ffffff;
    font-size: 16px;
    font-weight: 950;
}

.compare-panel-body {
    padding: 24px;
    background: #fbfcff;
}

.compare-profile-row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) 174px;
    gap: 22px;
    align-items: center;
    min-height: 174px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 20px;
    background: #ffffff;
}

.compare-avatar {
    display: grid;
    width: 88px;
    height: 88px;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #ede9fe, #e0f2fe);
    color: var(--violet);
    font-size: 34px;
    font-weight: 950;
}

.compare-profile-row strong {
    display: block;
    color: var(--navy);
    font-size: 30px;
    line-height: 1.1;
}

.compare-profile-row span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: 17px;
}

.compare-score {
    min-height: 132px;
    border-radius: var(--radius);
    padding: 18px;
}

.lite-score {
    border: 1px solid #d7f4e7;
    background: #f0fdf4;
}

.pro-risk {
    border: 1px solid #ffd7dd;
    background: #fff1f3;
}

.compare-score span {
    display: block;
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    font-weight: 900;
}

.compare-score strong {
    display: block;
    margin-top: 10px;
    font-size: 43px;
    line-height: 1;
}

.lite-score strong {
    color: var(--green);
}

.pro-risk strong {
    color: #ef334e;
}

.compare-score em {
    display: block;
    margin-top: 8px;
    color: var(--navy);
    font-size: 16px;
    font-style: normal;
    font-weight: 950;
}

.compare-action {
    min-height: 236px;
    margin-top: 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
}

.lite-action {
    background: linear-gradient(135deg, #ffffff, #f0fdf4);
}

.pro-action-hero {
    background: linear-gradient(135deg, #fbfaff, #ffffff 58%, #f4efff);
}

.compare-action span {
    display: block;
    margin-bottom: 12px;
    color: var(--violet);
    font-size: 19px;
    font-weight: 950;
}

.compare-action strong {
    display: block;
    color: #12146a;
    font-size: clamp(25px, 2.5vw, 34px);
    line-height: 1.15;
}

.compare-action p {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 18px;
}

.compare-action button {
    width: 100%;
    min-height: 56px;
    margin-top: 22px;
    border-radius: var(--radius);
    font-size: 21px;
    font-weight: 950;
}

.lite-action button {
    border: 1px solid var(--green);
    background: #ffffff;
    color: #087550;
}

.pro-action-hero button {
    border: 0;
    background: linear-gradient(135deg, var(--violet), var(--blue));
    color: #ffffff;
}

.compare-reasons {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 20px;
}

.compare-reasons div {
    min-height: 94px;
    border: 1px solid #d8f3e7;
    border-radius: var(--radius);
    padding: 18px;
    background: #f0fdf4;
    color: #087550;
    font-size: 16px;
    font-weight: 900;
}

.pro-reasons div {
    border-color: #e9ddff;
    background: #f6f1ff;
    color: var(--violet);
}

.compare-includes {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    border-top: 1px solid var(--line);
    padding: 20px 24px;
    background: #fbfcff;
}

.compare-includes span {
    color: var(--navy);
    font-size: 16px;
    font-weight: 850;
}

.compare-includes span::before {
    content: "+";
    display: inline-grid;
    width: 17px;
    height: 17px;
    place-items: center;
    margin-right: 8px;
    border-radius: 50%;
    background: #dcfce7;
    color: #087550;
    font-size: 12px;
    font-weight: 950;
}

.compare-vs {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: #ffffff;
    color: var(--navy);
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.14);
    font-size: 20px;
    font-weight: 950;
    transform: translate(-50%, -50%);
}

.feature-compare-table {
    overflow: hidden;
    margin-top: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.04);
}

.feature-compare-row {
    display: grid;
    grid-template-columns: 1fr 0.5fr 0.6fr 1.4fr;
    border-bottom: 1px solid #edf1f7;
}

.feature-compare-row:last-child {
    border-bottom: 0;
}

.feature-compare-row span {
    min-height: 58px;
    border-right: 1px solid #edf1f7;
    padding: 15px 22px;
    color: var(--muted);
    font-size: 20px;
    font-weight: 750;
}

.feature-compare-row span:last-child {
    border-right: 0;
}

.feature-compare-row span:first-child {
    color: var(--navy);
    font-weight: 900;
}

.feature-compare-row span:nth-child(2) {
    color: var(--green);
    text-align: center;
}

.feature-compare-row span:nth-child(3) {
    color: var(--violet);
    text-align: center;
}

.feature-compare-head {
    background: #f8fafc;
}

.feature-compare-head span {
    color: var(--navy) !important;
    font-weight: 950;
    text-align: left !important;
}

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

    .compare-vs {
        position: static;
        margin: -8px auto;
        transform: none;
    }

    .compare-profile-row,
    .pro-profile-row,
    .compare-reasons {
        grid-template-columns: 1fr;
    }

    .feature-compare-row {
        grid-template-columns: 1fr;
    }

    .feature-compare-row span {
        border-right: 0;
        text-align: left !important;
    }
}

.reference-compare-section {
    width: min(1500px, calc(100% - 28px));
    padding: 48px 0 72px;
}

.reference-title {
    margin-bottom: 14px;
    text-align: center;
}

.reference-title h2 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.04;
}

.reference-title p {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 18px;
}

.reference-panels {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 46px;
}

.reference-panel {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow);
}

.lite-reference {
    border-color: rgba(15, 159, 110, 0.24);
}

.pro-reference {
    border-color: rgba(109, 61, 245, 0.35);
}

.reference-panel-title {
    position: relative;
    min-height: 84px;
    padding: 18px 18px 12px;
    text-align: center;
}

.lite-reference .reference-panel-title {
    background: linear-gradient(90deg, #edfdf5, #ffffff 68%);
}

.pro-reference .reference-panel-title {
    background: linear-gradient(90deg, #ffffff 34%, #f5efff);
}

.reference-panel-title h3 {
    margin: 0;
    color: var(--navy);
    font-size: 22px;
    line-height: 1.08;
}

.reference-panel-title p {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 13px;
    font-weight: 750;
}

.reference-popular {
    position: absolute;
    top: 14px;
    right: 14px;
    border-radius: 999px;
    padding: 8px 14px;
    background: var(--violet);
    color: #ffffff;
    font-size: 12px;
    font-weight: 950;
}

.reference-admin {
    display: grid;
    grid-template-columns: 122px minmax(0, 1fr);
    min-height: 574px;
}

.reference-sidebar {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 16px 10px;
    background: linear-gradient(180deg, #142235, #0d1827);
    color: #dce6f4;
    font-size: 11px;
    font-weight: 800;
}

.reference-sidebar span {
    border-radius: 5px;
    padding: 7px 9px;
}

.reference-sidebar .selected {
    background: linear-gradient(135deg, var(--violet), #2f80ff);
    color: #ffffff;
}

.reference-sidebar b {
    float: right;
    border-radius: 999px;
    padding: 1px 6px;
    background: #ef334e;
    color: #ffffff;
    font-size: 10px;
}

.reference-screen {
    min-width: 0;
    padding: 14px;
    background: #fbfcff;
}

.reference-customer-row {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) 118px;
    gap: 14px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 14px;
    background: #ffffff;
}

.pro-customer-ref {
    grid-template-columns: 72px minmax(0, 1fr) 110px 110px;
}

.reference-face {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 28%, #f8c49f 0 18%, transparent 19%),
        radial-gradient(circle at 50% 58%, #172033 0 25%, transparent 26%),
        linear-gradient(135deg, #ede9fe, #e0f2fe);
}

.reference-customer-main h4 {
    margin: 0;
    color: var(--navy);
    font-size: 18px;
}

.reference-customer-main p {
    margin: 6px 0;
    color: var(--muted);
    font-size: 11px;
}

.reference-customer-main div {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.reference-customer-main span {
    border-radius: 999px;
    padding: 4px 7px;
    background: #eef2ff;
    color: var(--violet);
    font-size: 10px;
    font-weight: 900;
}

.reference-score-card,
.reference-risk-card {
    min-height: 86px;
    border-radius: var(--radius);
    padding: 12px;
}

.reference-score-card {
    border: 1px solid #d7f4e7;
    background: #f0fdf4;
}

.reference-risk-card {
    border: 1px solid #ffd7dd;
    background: #fff1f3;
}

.reference-score-card small,
.reference-risk-card small {
    display: block;
    color: var(--muted);
    font-weight: 900;
}

.reference-score-card strong,
.reference-risk-card strong {
    display: block;
    margin-top: 7px;
    color: var(--green);
    font-size: 28px;
    line-height: 1;
}

.reference-risk-card strong {
    color: #ef334e;
}

.reference-score-card em {
    color: var(--navy);
    font-size: 13px;
    font-style: normal;
}

.reference-score-card span,
.reference-risk-card span {
    display: block;
    margin-top: 6px;
    color: var(--navy);
    font-size: 11px;
    font-weight: 900;
}

.reference-action,
.reference-pro-action {
    display: grid;
    gap: 12px;
    align-items: center;
    margin-top: 14px;
    border: 1px solid #e9ddff;
    border-radius: var(--radius);
    padding: 14px;
    background: linear-gradient(135deg, #fbfaff, #ffffff 60%, #f5f1ff);
}

.reference-action {
    grid-template-columns: 62px minmax(0, 1fr) 150px;
}

.reference-pro-action {
    grid-template-columns: 62px minmax(0, 1fr) 120px 150px;
}

.shoe-mark {
    width: 58px;
    height: 58px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        linear-gradient(150deg, transparent 30%, #111827 31% 44%, transparent 45%),
        #ffffff;
}

.reference-action small,
.reference-pro-action small {
    display: block;
    color: var(--violet);
    font-size: 12px;
    font-weight: 950;
}

.reference-action strong,
.reference-pro-action strong {
    display: block;
    margin-top: 6px;
    color: #12146a;
    font-size: 18px;
    line-height: 1.15;
}

.reference-action p,
.reference-pro-action p {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 12px;
}

.reference-action button,
.pro-buttons button {
    min-height: 36px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 950;
}

.reference-action button {
    border: 1px solid var(--green);
    background: #ffffff;
    color: #087550;
}

.pro-impact strong {
    color: var(--green);
    font-size: 24px;
}

.pro-impact span {
    display: block;
    color: var(--muted);
    font-size: 10px;
    font-weight: 800;
}

.pro-buttons {
    display: grid;
    gap: 8px;
}

.pro-buttons button:first-child {
    border: 0;
    background: linear-gradient(135deg, var(--violet), var(--blue));
    color: #ffffff;
}

.pro-buttons button:last-child {
    border: 1px solid var(--line);
    background: #ffffff;
    color: var(--navy);
}

.reference-action-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 0;
    border: 1px solid var(--line);
    border-top: 0;
    border-radius: 0 0 var(--radius) var(--radius);
    background: #ffffff;
}

.reference-action-meta div {
    padding: 12px;
    border-right: 1px solid var(--line);
}

.reference-action-meta div:last-child {
    border-right: 0;
}

.reference-action-meta small {
    color: var(--muted);
    font-weight: 800;
}

.reference-action-meta strong {
    display: block;
    margin-top: 5px;
    color: var(--navy);
    font-size: 13px;
}

.reference-screen h5 {
    margin: 14px 0 10px;
    color: var(--navy);
    font-size: 13px;
}

.reference-reasons {
    display: grid;
    gap: 10px;
}

.reference-reasons.three {
    grid-template-columns: repeat(3, 1fr);
}

.reference-reasons.four {
    grid-template-columns: repeat(4, 1fr);
}

.reference-reasons div {
    min-height: 82px;
    border: 1px solid #d8f3e7;
    border-radius: var(--radius);
    padding: 11px;
    background: #f0fdf4;
    color: #087550;
    font-size: 11px;
    font-weight: 950;
}

.reference-reasons div:nth-child(3) {
    border-color: #fed7aa;
    background: #fff7ed;
    color: #c2410c;
}

.pro-reference .reference-reasons div:last-child {
    border-color: #bfdbfe;
    background: #eff6ff;
    color: #1d4ed8;
}

.reference-reasons p {
    margin: 7px 0 0;
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
}

.reference-lower-grid {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

.lite-lower-grid,
.pro-lower-grid {
    grid-template-columns: 1fr 1fr;
}

.reference-lower-grid section {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 12px;
    background: #ffffff;
}

.reference-lower-grid h5 {
    margin-top: 0;
}

.reference-lower-grid p {
    margin: 7px 0 0;
    color: var(--muted);
    font-size: 11px;
}

.reference-lower-grid strong {
    float: right;
    color: var(--navy);
}

.reference-includes {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    border-top: 1px solid var(--line);
    padding: 14px 18px;
    background: #fbfcff;
}

.reference-includes span {
    color: var(--navy);
    font-size: 11px;
    font-weight: 850;
}

.reference-includes span::before {
    content: "+";
    display: inline-grid;
    width: 14px;
    height: 14px;
    place-items: center;
    margin-right: 6px;
    border-radius: 50%;
    background: #dcfce7;
    color: #087550;
    font-size: 10px;
}

.reference-vs {
    position: absolute;
    top: 48%;
    left: 50%;
    z-index: 5;
    display: grid;
    width: 56px;
    height: 56px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: #ffffff;
    color: var(--navy);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.16);
    font-size: 20px;
    font-weight: 950;
    transform: translate(-50%, -50%);
}

.reference-feature-table {
    overflow: hidden;
    margin-top: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
}

.reference-feature-row {
    display: grid;
    grid-template-columns: 1.05fr 0.55fr 0.65fr 1.55fr;
    border-bottom: 1px solid #edf1f7;
}

.reference-feature-row:last-child {
    border-bottom: 0;
}

.reference-feature-row span {
    min-height: 29px;
    border-right: 1px solid #edf1f7;
    padding: 7px 16px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 750;
}

.reference-feature-row span:first-child {
    color: var(--navy);
    font-weight: 900;
}

.reference-feature-row span:nth-child(2) {
    color: var(--green);
    text-align: center;
}

.reference-feature-row span:nth-child(3) {
    color: var(--violet);
    text-align: center;
}

.reference-feature-row span:last-child {
    border-right: 0;
}

.reference-feature-head {
    background: #f8fafc;
}

.reference-feature-head span {
    color: var(--navy) !important;
    font-weight: 950;
    text-align: left !important;
}

@media (max-width: 1180px) {
    .reference-panels,
    .reference-action,
    .reference-pro-action,
    .reference-reasons.three,
    .reference-reasons.four,
    .lite-lower-grid,
    .pro-lower-grid {
        grid-template-columns: 1fr;
    }

    .reference-vs {
        position: static;
        margin: -10px auto;
        transform: none;
    }

    .reference-admin {
        grid-template-columns: 1fr;
    }

    .reference-sidebar {
        display: none;
    }
}

@media (max-width: 720px) {
    .reference-customer-row,
    .pro-customer-ref,
    .reference-action-meta,
    .reference-feature-row {
        grid-template-columns: 1fr;
    }

    .reference-feature-row span {
        border-right: 0;
        text-align: left !important;
    }
}
