:root {
    color-scheme: light;
    --page-background: #f7faff;
    --section-soft: #eef5ff;
    --panel-background: #ffffff;
    --navy: #071125;
    --text-main: #071125;
    --text-muted: #566278;
    --text-soft: #7a8597;
    --blue: #0b59d1;
    --blue-dark: #0846aa;
    --blue-soft: #eaf2ff;
    --blue-border: #bfd6ff;
    --blue-glow: rgba(11, 89, 209, 0.14);
    --yellow: #ffd21a;
    --yellow-soft: #fff6ce;
    --yellow-border: #f2cf45;
    --red: #ef2929;
    --red-soft: #fff1f1;
    --red-border: #ffcaca;
    --green: #198c45;
    --green-soft: #effff5;
    --green-border: #bce9ca;
    --border: #e0e7f2;
    --border-strong: #c9d6e8;
    --shadow-soft: 0 18px 44px rgba(18, 44, 86, 0.12);
    --shadow-device: 0 28px 70px rgba(8, 18, 37, 0.22);
    --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    background: var(--page-background);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.5;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

a {
    color: inherit;
}

button,
input,
textarea {
    font: inherit;
}

button {
    border: 0;
    background: transparent;
    padding: 0;
}

img {
    max-width: 100%;
}

.shell {
    width: min(1180px, calc(100vw - 40px));
    margin: 0 auto;
}

.siteHeader {
    position: sticky;
    top: 0;
    z-index: 40;
    border-bottom: solid 1px var(--border);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
}

.siteHeaderInner {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 28px;
    min-height: 72px;
}

.brandLink {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    color: var(--navy);
    font-size: 1.08rem;
    font-weight: 800;
    letter-spacing: 0;
    text-decoration: none;
}

.brandLogo {
    display: block;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
}

.siteNav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 32px;
}

.siteNav a {
    color: var(--navy);
    font-size: 1rem;
    font-weight: 650;
    text-decoration: none;
}

.siteNav a:hover,
.siteNav a:focus-visible {
    color: var(--blue);
}

.siteNav .navCta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 34px;
    border-radius: 8px;
    background: var(--blue);
    color: #ffffff;
}

.siteNav .navCta:hover,
.siteNav .navCta:focus-visible {
    background: var(--blue-dark);
    color: #ffffff;
}

.menuButton {
    display: none;
    justify-self: end;
    width: 46px;
    height: 46px;
    border-radius: 8px;
    color: var(--navy);
    cursor: pointer;
}

.menuButton span {
    display: block;
    width: 26px;
    height: 2px;
    margin: 6px auto;
    border-radius: 2px;
    background: currentColor;
}

.heroSection {
    position: relative;
    display: flex;
    align-items: center;
    min-height: calc(100vh - 72px);
    padding: 52px 0 60px;
    overflow: hidden;
}

.heroSection::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 86px;
    background: var(--section-soft);
    clip-path: polygon(0 45%, 100% 78%, 100% 100%, 0 100%);
    pointer-events: none;
}

.heroGrid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(460px, 0.92fr) minmax(560px, 1.08fr);
    align-items: center;
    gap: 28px 36px;
}

.heroCopy {
    align-self: center;
    min-width: 0;
}

.heroCopy h1 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(1.85rem, 3vw, 2.8rem);
    font-weight: 850;
    line-height: 1.06;
    letter-spacing: 0;
    max-width: 680px;
}

.heroCopy h1 span {
    color: var(--blue);
}

.heroSummary {
    max-width: 660px;
    margin: 20px 0 0;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.52;
}

.heroActions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.78fr);
    gap: 14px;
    width: min(100%, 520px);
    margin-top: 22px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 54px;
    padding: 0 26px;
    border: solid 1px transparent;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button svg {
    width: 24px;
    height: 24px;
}

.button svg path {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.buttonPrimary {
    background: var(--blue);
    color: #ffffff;
}

.buttonPrimary:hover,
.buttonPrimary:focus-visible {
    background: var(--blue-dark);
    color: #ffffff;
    transform: translateY(-1px);
}

.buttonSecondary {
    border-color: var(--blue);
    background: #ffffff;
    color: var(--blue);
}

.buttonSecondary:hover,
.buttonSecondary:focus-visible {
    border-color: var(--blue-dark);
    color: var(--blue-dark);
    transform: translateY(-1px);
}

.heroFeatureList {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(4, max-content);
    justify-content: center;
    gap: 16px 34px;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.heroFeatureList li {
    display: grid;
    grid-template-columns: 28px 1fr;
    align-items: start;
    gap: 14px;
    color: var(--navy);
    font-size: 1rem;
    line-height: 1.45;
}

.heroFeatureList svg {
    width: 24px;
    height: 24px;
    margin-top: 0.08em;
    color: var(--blue);
}

.heroFeatureList svg path {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.9;
}

.heroFeatureList strong {
    font-weight: 850;
}

.heroVisual {
    align-self: center;
    min-width: 0;
}

.deviceStage {
    position: relative;
    aspect-ratio: 1.45 / 1;
}

.laptopMockup {
    position: absolute;
    left: 0;
    right: 98px;
    bottom: 26px;
    filter: drop-shadow(0 28px 58px rgba(8, 18, 37, 0.22));
}

.laptopLid {
    position: relative;
    overflow: hidden;
    padding: 30px 10px 10px;
    border: solid 1px rgba(136, 159, 191, 0.42);
    border-radius: 4px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(239, 246, 255, 0.34) 46%, rgba(216, 229, 247, 0.2)),
        rgba(244, 248, 255, 0.52);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.92),
        inset 0 -26px 54px rgba(133, 155, 186, 0.16),
        0 1px 0 rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(22px) saturate(1.25);
}

.laptopLid::before {
    content: "";
    position: absolute;
    top: 11px;
    left: 14px;
    z-index: 2;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #ff5f57;
    box-shadow:
        18px 0 0 #ffbd2e,
        36px 0 0 #28c840;
}

.laptopLid::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0) 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0) 42%);
    pointer-events: none;
}

.laptopScreen {
    position: relative;
    z-index: 1;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 4px;
    background: #071125;
    box-shadow:
        0 24px 46px rgba(8, 18, 37, 0.2),
        0 0 0 1px rgba(7, 17, 37, 0.12);
}

.previewRotator {
    position: relative;
    width: 100%;
    height: 100%;
}

.previewFrame {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 700ms ease;
}

.previewFrame.isActive {
    opacity: 1;
}

.laptopBase {
    display: none;
}

.laptopBase span {
    display: none;
}

.phoneMockup {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 188px;
    filter: drop-shadow(0 26px 38px rgba(7, 17, 37, 0.26));
}

.phoneFrame {
    position: relative;
    overflow: hidden;
    padding: 26px 6px 6px;
    border: solid 1px rgba(136, 159, 191, 0.5);
    border-radius: 4px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(239, 246, 255, 0.35) 46%, rgba(216, 229, 247, 0.22)),
        rgba(244, 248, 255, 0.56);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.92),
        inset 0 -18px 42px rgba(133, 155, 186, 0.16),
        0 1px 0 rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(22px) saturate(1.25);
}

.phoneFrame::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 14px;
    z-index: 2;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #ff5f57;
    box-shadow:
        15px 0 0 #ffbd2e,
        30px 0 0 #28c840;
}

.phoneFrame::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0) 36%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0) 44%);
    pointer-events: none;
}

.phoneScreen {
    position: relative;
    z-index: 1;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    border-radius: 4px;
    background: #071125;
    box-shadow:
        0 18px 34px rgba(8, 18, 37, 0.2),
        0 0 0 1px rgba(7, 17, 37, 0.1);
}

@media (max-width: 1100px) {
    .heroGrid {
        grid-template-columns: minmax(0, 1fr);
        gap: 38px;
    }

    .heroCopy {
        width: min(100%, 960px);
        margin: 0 auto;
    }

    .heroCopy h1,
    .heroSummary {
        max-width: none;
    }

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

    .heroVisual {
        width: 100%;
        overflow: visible;
    }

    .deviceStage {
        width: min(820px, calc(100vw - 92px));
        margin: 0 auto;
    }

    .laptopMockup {
        right: 88px;
        bottom: 24px;
    }

    .phoneMockup {
        width: clamp(150px, 20vw, 176px);
    }
}

@media (max-width: 900px) {
    .shell {
        width: min(1180px, calc(100vw - 40px));
    }

    .siteHeaderInner {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .brandLink {
        font-size: 1.08rem;
    }

    .menuButton {
        display: block;
    }

    .siteNav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: grid;
        justify-content: stretch;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        border-bottom: solid 1px var(--border);
        background: #ffffff;
        box-shadow: var(--shadow-soft);
        transition: max-height 180ms ease;
    }

    .siteNav.isOpen {
        max-height: 320px;
    }

    .siteNav a {
        padding: 17px 20px;
        border-top: solid 1px var(--border);
    }

    .siteNav .navCta {
        min-height: 54px;
        margin: 14px 20px 18px;
        padding: 0 24px;
        border-top: 0;
    }

    .heroSection {
        min-height: auto;
        padding: 40px 0 54px;
    }

    .heroCopy h1 {
        font-size: clamp(1.85rem, 3vw, 2.8rem);
    }

    .heroSummary {
        font-size: 1rem;
    }

    .deviceStage {
        width: min(720px, calc(100vw - 52px));
    }

    .laptopMockup {
        right: 78px;
        bottom: 28px;
    }

    .phoneMockup {
        width: clamp(138px, 19vw, 158px);
    }
}

@media (max-width: 720px) {
    .shell {
        width: min(1180px, calc(100vw - 24px));
    }
}

@media (max-width: 620px) {
    .brandLink {
        gap: 10px;
        font-size: 1rem;
    }

    .brandLogo {
        width: 36px;
        height: 36px;
        flex-basis: 36px;
    }

    .heroCopy h1 {
        font-size: clamp(1.85rem, 8.2vw, 2.45rem);
        line-height: 1.08;
    }

    .heroSummary {
        font-size: 0.98rem;
    }

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

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

    .deviceStage {
        margin-top: 32px;
    }

    .laptopMockup {
        left: 0;
        right: 0;
        bottom: 34px;
    }

    .laptopLid {
        padding: 26px 8px 8px;
        border-radius: 4px;
    }

    .laptopLid::before {
        top: 11px;
        left: 12px;
        width: 7px;
        height: 7px;
        box-shadow:
            12px 0 0 #ffbd2e,
            24px 0 0 #28c840;
    }

    .laptopScreen {
        border-radius: 4px;
    }

    .phoneMockup {
        right: 10px;
        bottom: 0;
        width: 31%;
        min-width: 104px;
    }

    .phoneFrame {
        padding: 20px 6px 6px;
        border-radius: 4px;
    }

    .phoneFrame::before {
        top: 7px;
        left: 12px;
        width: 6px;
        height: 6px;
        box-shadow:
            10px 0 0 #ffbd2e,
            20px 0 0 #28c840;
    }

    .phoneScreen {
        border-radius: 4px;
    }
}

@media (max-width: 390px) {
    .heroCopy h1 {
        font-size: clamp(1.85rem, 8.2vw, 2.45rem);
    }

    .button {
        min-height: 52px;
        padding: 0 18px;
    }

}

@media (prefers-reduced-motion: reduce) {
    .previewFrame {
        transition: none;
    }
}

.section {
    padding: 88px 0;
}

#how-it-works,
#best-fit,
#pricing,
#faq,
#get-started {
    scroll-margin-top: 94px;
}

.sectionAccent {
    background:
        radial-gradient(circle at 8% 18%, rgba(255, 210, 26, 0.22), transparent 28%),
        linear-gradient(180deg, var(--section-soft) 0%, #ffffff 100%);
}

.sectionDark {
    background: var(--navy);
    color: #ffffff;
}

.faqSection {
    background: #ffffff;
}

.sectionHeading {
    max-width: 850px;
}

.sectionHeading h2 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(1.85rem, 3vw, 2.8rem);
    line-height: 1.06;
}

.sectionHeading h2 span {
    color: var(--blue);
}

.sectionDark .sectionHeading h2,
.sectionDark .sectionSummary {
    color: #ffffff;
}

.sectionDark .sectionHeading h2 span {
    color: var(--yellow);
}

.sectionSummary {
    max-width: 760px;
    margin: 16px 0 0;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.58;
}

.sectionHeading .sectionKicker,
.sectionKicker {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    margin: 0 0 14px;
    padding: 0 12px;
    border: solid 1px var(--blue-border);
    border-radius: 8px;
    background: #ffffff;
    color: var(--blue);
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.sectionDark .sectionKicker,
.contactSection .sectionKicker {
    border-color: rgba(255, 210, 26, 0.58);
    background: rgba(255, 210, 26, 0.12);
    color: var(--yellow);
}

.bestFitTableWrap {
    position: relative;
    margin-top: 34px;
    border: solid 1px var(--border);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.bestFitTableWrap::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: linear-gradient(90deg, var(--blue) 0%, var(--yellow) 100%);
}

.bestFitTable {
    position: relative;
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.bestFitTable th,
.bestFitTable td {
    padding: 24px 26px;
    vertical-align: top;
    text-align: left;
}

.bestFitTable thead th {
    padding-top: 30px;
    background: #f9fbff;
    color: var(--text-soft);
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.bestFitTable thead th:first-child {
    width: 17%;
}

.bestFitTable thead th + th,
.bestFitTable tbody td {
    border-left: solid 1px var(--border);
}

.bestFitTable tbody tr + tr th,
.bestFitTable tbody tr + tr td {
    border-top: solid 1px var(--border);
}

.bestFitTable tbody th {
    color: var(--blue);
    font-size: 0.82rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.bestFitColumnPill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 34px;
    padding: 0 13px;
    border: solid 1px var(--border);
    border-radius: 8px;
    background: #ffffff;
    color: var(--navy);
    font-size: 0.76rem;
    font-weight: 850;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.bestFitColumnPill.isPositive {
    border-color: var(--green-border);
    background: var(--green-soft);
    color: var(--green);
}

.bestFitColumnPill.isNegative {
    border-color: var(--red-border);
    background: var(--red-soft);
    color: var(--red);
}

.bestFitCheckIcon {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--green);
}

.bestFitCheckIcon::before {
    content: "";
    width: 8px;
    height: 5px;
    border-left: solid 2px #ffffff;
    border-bottom: solid 2px #ffffff;
    transform: rotate(-45deg) translateY(-1px);
}

.bestFitCheckIcon.isNegative {
    background: var(--red);
}

.bestFitCheckIcon.isNegative::before,
.bestFitCheckIcon.isNegative::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 2px;
    border: 0;
    border-radius: 2px;
    background: #ffffff;
    transform: rotate(45deg);
}

.bestFitCheckIcon.isNegative::after {
    transform: rotate(-45deg);
}

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

.bestFitList li {
    position: relative;
    margin: 0;
    padding-left: 24px;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.52;
}

.bestFitList li::before {
    content: "";
    position: absolute;
    top: 0.55em;
    left: 0;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 0 0 5px var(--blue-soft);
}

.bestFitList.isNegative li::before {
    background: var(--red);
    box-shadow: 0 0 0 5px var(--red-soft);
}

.processGrid,
.plansGrid {
    display: grid;
    gap: 22px;
    margin-top: 34px;
}

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

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

.processCard,
.pricingCard,
.contactPanel,
.faqList {
    border: solid 1px var(--border);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(18, 44, 86, 0.09);
}

.sectionDark .processCard {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: none;
}

.processCard,
.pricingCard {
    padding: 30px;
}

.processNumber,
.cardEyebrow {
    margin: 0;
    color: var(--blue);
    font-size: 0.82rem;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.sectionDark .processNumber {
    color: var(--yellow);
}

.processCard h3 {
    margin: 14px 0 0;
    color: #ffffff;
    font-size: 1.16rem;
    line-height: 1.25;
}

.processCard p:last-child {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1rem;
    line-height: 1.56;
}

.processTooltip {
    position: relative;
    display: inline-flex;
}

.processTooltipLabel {
    cursor: help;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.processTooltipPopover {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 12px);
    z-index: 5;
    display: none;
    width: min(280px, calc(100vw - 52px));
    padding: 14px;
    border: solid 1px var(--blue-border);
    border-radius: 8px;
    background: #ffffff;
    color: var(--text-muted);
    box-shadow: var(--shadow-soft);
    font-size: 0.9rem;
    line-height: 1.45;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(4px);
    transition: opacity 160ms ease, transform 160ms ease;
}

.processTooltip:hover .processTooltipPopover,
.processTooltip:focus-visible .processTooltipPopover {
    display: block;
    opacity: 1;
    transform: translateX(-50%);
}

.pricingCard {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.pricingCard::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: var(--border);
}

.pricingCard.isRecommended {
    border-color: var(--blue-border);
    box-shadow: 0 22px 54px rgba(11, 89, 209, 0.16);
}

.pricingCard.isRecommended::before {
    background: linear-gradient(90deg, var(--blue), var(--yellow));
}

.pricingCardTop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.planPill {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 11px;
    border: solid 1px var(--yellow-border);
    border-radius: 8px;
    background: var(--yellow-soft);
    color: #735300;
    font-size: 0.78rem;
    font-weight: 850;
}

.priceLine {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    margin-top: 18px;
}

.priceLine strong {
    color: var(--blue);
    font-size: clamp(2.45rem, 4vw, 3.65rem);
    line-height: 0.94;
}

.priceLine span {
    margin-bottom: 6px;
    color: var(--text-muted);
    font-size: 0.96rem;
    font-weight: 650;
}

.pricingCopy {
    margin: 18px 0 0;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.56;
}

.pricingList {
    display: grid;
    gap: 12px;
    margin: 24px 0;
    padding: 0;
    list-style: none;
}

.pricingList li {
    position: relative;
    padding-left: 28px;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.52;
}

.pricingList li::before {
    content: "";
    position: absolute;
    top: 0.42em;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 0 0 5px var(--blue-soft);
}

.pricingListItemWithInfo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricingInfo {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.pricingInfoToggle {
    display: inline-grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border: solid 1px var(--blue-border);
    border-radius: 50%;
    background: var(--blue-soft);
    color: var(--blue);
    cursor: pointer;
    font-size: 0.78rem;
    font-weight: 850;
    list-style: none;
}

.pricingInfoToggle::-webkit-details-marker {
    display: none;
}

.pricingInfoPopover {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 12px);
    z-index: 5;
    display: none;
    width: min(280px, calc(100vw - 52px));
    padding: 14px;
    border: solid 1px var(--blue-border);
    border-radius: 8px;
    background: #ffffff;
    color: var(--text-muted);
    box-shadow: var(--shadow-soft);
    font-size: 0.9rem;
    line-height: 1.45;
    transform: translateX(-50%);
}

.pricingInfo[open] .pricingInfoPopover {
    display: block;
}

.ctaPrimary,
.pricingCta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 54px;
    padding: 0 26px;
    border: solid 1px transparent;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.ctaPrimary,
.pricingCta {
    background: var(--blue);
    color: #ffffff;
}

.ctaPrimary:hover,
.ctaPrimary:focus-visible,
.pricingCta:hover,
.pricingCta:focus-visible {
    background: var(--blue-dark);
    color: #ffffff;
    transform: translateY(-1px);
}

.pricingCta {
    width: 100%;
    margin-top: auto;
}

.contactSection {
    background:
        radial-gradient(circle at 86% 8%, rgba(255, 210, 26, 0.18), transparent 28%),
        linear-gradient(180deg, #071125 0%, #0a1834 100%);
    color: #ffffff;
}

.contactSection .sectionHeading h2,
.contactSection .sectionSummary {
    color: #ffffff;
}

.contactSection .sectionHeading h2 span {
    color: var(--yellow);
}

.contactSection [hidden] {
    display: none !important;
}

.getStartedWrap {
    width: 100%;
    margin-top: 32px;
}

.contactPanel {
    display: grid;
    gap: 24px;
    width: 100%;
    padding: 30px;
    background: #ffffff;
}

.getStartedForm {
    display: grid;
    gap: 18px;
    min-width: 0;
}

.getStartedForm.isLoading {
    opacity: 0.82;
}

.formFieldGrid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    min-width: 0;
}

.formField {
    display: grid;
    gap: 10px;
    min-width: 0;
}

.formField span,
.contactSummaryLabel,
.completionPanel p > span:first-child {
    color: var(--navy);
    font-size: 0.76rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.formField input,
.formField textarea {
    width: 100%;
    min-width: 0;
    border: solid 1px var(--border-strong);
    border-radius: 8px;
    background: #f9fbff;
    color: var(--text-main);
    font-size: 1rem;
    line-height: 1.5;
    padding: 15px 16px;
    outline: none;
}

.formField textarea {
    min-height: 180px;
    resize: vertical;
}

.formField input:disabled,
.formField textarea:disabled {
    cursor: wait;
    opacity: 0.72;
}

.formField input::placeholder,
.formField textarea::placeholder {
    color: var(--text-soft);
}

.formField input:focus,
.formField textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px var(--blue-glow);
}

.formSubmitButton {
    width: 100%;
}

.formSubmitButton:disabled {
    cursor: wait;
    opacity: 0.84;
}

.formSubmitButton.isLoading::after {
    content: "";
    width: 14px;
    height: 14px;
    border: solid 2px rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: formButtonSpin 700ms linear infinite;
}

.formMessages {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.formMessage {
    margin: 0;
    padding: 15px 16px;
    border: solid 1px rgba(255, 255, 255, 0.24);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.formMessage.globalErrorMessage {
    border-color: rgba(255, 202, 202, 0.55);
    background: rgba(239, 41, 41, 0.18);
}

.formMessage.globalSuccessMessage {
    border-color: rgba(255, 210, 26, 0.48);
    background: rgba(255, 210, 26, 0.12);
}

.formMessage:focus-visible {
    outline: 2px solid var(--yellow);
    outline-offset: 4px;
}

.contactSummary {
    display: grid;
    gap: 12px;
}

.contactSummary p,
.completionPanel {
    margin: 0;
    padding: 16px 18px;
    border: solid 1px var(--border);
    border-radius: 8px;
    background: #f9fbff;
}

.contactSummary p,
.completionPanel p,
.directEmailLine {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.58;
}

.contactSummaryLabel,
.completionPanel p > span:first-child {
    display: block;
    margin-bottom: 6px;
}

.contactSummaryValue,
.completionText {
    display: block;
}

.completionText {
    white-space: pre-wrap;
}

.completionPanel p {
    margin: 0;
}

.contactPanel .directEmailLine {
    margin: 0;
    text-align: left;
}

.directEmailLine a {
    color: var(--blue);
    font-weight: 800;
    text-decoration: none;
    overflow-wrap: anywhere;
}

.directEmailLine a:hover,
.directEmailLine a:focus-visible,
.faqAnswer a:hover,
.faqAnswer a:focus-visible {
    text-decoration: underline;
}

.faqList {
    margin-top: 32px;
    overflow: hidden;
    box-shadow: none;
}

.faqItem + .faqItem {
    border-top: solid 1px var(--border);
}

.faqToggle {
    position: relative;
    width: 100%;
    min-height: 66px;
    padding: 20px 58px 20px 24px;
    color: var(--navy);
    font-size: 1.08rem;
    font-weight: 800;
    text-align: left;
    cursor: pointer;
}

.faqToggle::before,
.faqToggle::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 24px;
    width: 16px;
    height: 3px;
    border-radius: 999px;
    background: var(--blue);
    transform: translateY(-50%);
}

.faqToggle::before {
    transform: translateY(-50%) rotate(90deg);
}

.faqToggle[aria-expanded="true"]::before {
    transform: translateY(-50%) rotate(0deg);
}

.faqAnswer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 180ms ease;
}

.faqAnswer p {
    margin: 0;
    padding: 0 24px 24px;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.56;
}

.faqAnswer a {
    color: var(--blue);
    font-weight: 750;
    text-decoration: none;
}

.jsReady [data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 460ms ease, transform 460ms ease;
}

.jsReady [data-reveal].isVisible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes formButtonSpin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 1240px) {
    .processGrid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .section {
        padding: 68px 0;
    }

    .plansGrid,
    .processGrid {
        grid-template-columns: 1fr;
    }

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

    .bestFitTableWrap {
        overflow: visible;
        border: 0;
        background: transparent;
        box-shadow: none;
    }

    .bestFitTableWrap::before {
        display: none;
    }

    .bestFitTable,
    .bestFitTable thead,
    .bestFitTable tbody,
    .bestFitTable tr,
    .bestFitTable th,
    .bestFitTable td {
        display: block;
        width: 100%;
    }

    .bestFitTable thead {
        display: none;
    }

    .bestFitTable tbody {
        display: grid;
        gap: 16px;
    }

    .bestFitTable tbody tr {
        border: solid 1px var(--border);
        border-radius: 8px;
        background: #ffffff;
        box-shadow: var(--shadow-soft);
        overflow: hidden;
    }

    .bestFitTable thead th + th,
    .bestFitTable tbody td,
    .bestFitTable tbody tr + tr th,
    .bestFitTable tbody tr + tr td {
        border-top: 0;
        border-left: 0;
    }

    .bestFitTable tbody th {
        padding: 22px 22px 0;
    }

    .bestFitTable tbody td {
        padding: 16px 22px 22px;
    }

    .bestFitTable tbody td + td {
        border-top: solid 1px var(--border);
    }

    .bestFitTable tbody td::before {
        content: attr(data-column);
        display: block;
        margin: 0 0 10px;
        color: var(--navy);
        font-size: 0.76rem;
        font-weight: 850;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }
}

@media (max-width: 620px) {
    .section {
        padding: 58px 0;
    }

    .sectionHeading h2 {
        font-size: clamp(1.85rem, 8.2vw, 2.45rem);
    }

    .sectionSummary,
    .bestFitList li,
    .processCard p:last-child,
    .pricingCopy,
    .pricingList li,
    .faqAnswer p,
    .directEmailLine {
        font-size: 0.98rem;
    }

    .processCard,
    .pricingCard,
    .contactPanel {
        padding: 22px;
    }

    .priceLine strong {
        font-size: 2.68rem;
    }

    .pricingListItemWithInfo {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 10px 8px;
    }

    .pricingListItemWithInfo > span {
        grid-column: 1;
        grid-row: 1;
    }

    .pricingInfo {
        position: static;
        display: grid;
        justify-self: end;
    }

    .pricingInfoPopover {
        position: absolute;
        top: calc(100% + 10px);
        right: 0;
        bottom: auto;
        left: 28px;
        width: auto;
        height: max-content;
        transform: none;
    }

    .processTooltipPopover {
        position: fixed;
        right: 12px;
        bottom: 16px;
        left: 12px;
        z-index: 70;
        width: auto;
        transform: translateY(4px);
    }

    .processTooltip:hover .processTooltipPopover,
    .processTooltip:focus-visible .processTooltipPopover {
        transform: none;
    }
}

@media (max-width: 390px) {
    .ctaPrimary,
    .pricingCta {
        min-height: 52px;
        padding: 0 18px;
    }

    .priceLine {
        flex-wrap: wrap;
    }
}

@media (prefers-reduced-motion: reduce) {
    .jsReady [data-reveal] {
        transition: none;
    }
}
