/* Native server compression is used to keep stylesheet delivery compatible across hosts. */
@font-face {
    font-family: "MarkPro";
    src: url("../fonts/MarkPro.woff2") format("woff2");
    font-style: normal;
    font-weight: 400 600;
    font-display: swap;
}

@font-face {
    font-family: "MarkPro";
    src: url("../fonts/MarkPro-Bold.woff2") format("woff2");
    font-style: normal;
    font-weight: 700 900;
    font-display: swap;
}

:root {
    --sws-navy-950: #06101e;
    --sws-navy-900: #081525;
    --sws-navy-800: #10233d;
    --sws-ink: #0c1728;
    --sws-muted: #566579;
    --sws-surface: #ffffff;
    --sws-surface-soft: #f3f7fb;
    --sws-blue: #168cff;
    --sws-blue-dark: #066bc9;
    --sws-cyan: #2ed5f4;
    --sws-pink: #f01379;
    --sws-gold: #f5b301;
    --sws-success: #37ce80;
    --sws-border: rgba(16, 35, 61, .12);
    --sws-radius-sm: 12px;
    --sws-radius: 20px;
    --sws-radius-lg: 30px;
    --sws-shadow: 0 28px 80px rgba(0, 9, 25, .28);
    --sws-transition: 180ms ease;
}

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

html { scroll-behavior: smooth; }

html { font-family: sans-serif; line-height: 1.15; -webkit-text-size-adjust: 100%; }
img, svg { vertical-align: middle; }
button, input, textarea, select { margin: 0; font: inherit; }
button { text-transform: none; }
[hidden] { display: none !important; }
.container { width: 100%; margin-inline: auto; padding-inline: 12px; }
.text-center { text-align: center !important; }
.w-100 { width: 100% !important; }
.d-none, .d-lg-inline, .d-xl-flex { display: none !important; }
.d-lg-none { display: inline !important; }
.d-md-none { display: block !important; }
@media (min-width: 576px) { .container { max-width: 540px; } }
@media (min-width: 768px) { .container { max-width: 720px; } .d-md-none { display: none !important; } }
@media (min-width: 992px) { .container { max-width: 960px; } .d-lg-inline { display: inline !important; } .d-lg-none { display: none !important; } }
@media (min-width: 1200px) { .container { max-width: 1140px; } .d-xl-flex { display: flex !important; } }
@media (min-width: 1400px) { .container { max-width: 1320px; } }

body {
    margin: 0;
    color: var(--sws-ink);
    background: var(--sws-surface);
    font-family: "MarkPro", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 17px;
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }

:focus-visible {
    outline: 3px solid rgba(46, 213, 244, .9);
    outline-offset: 4px;
}

.skip-link {
    position: fixed;
    z-index: 2000;
    top: 12px;
    left: 12px;
    padding: .65rem 1rem;
    color: #fff;
    background: var(--sws-blue);
    border-radius: 8px;
    transform: translateY(-150%);
    transition: transform var(--sws-transition);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
    position: sticky;
    z-index: 1030;
    top: 0;
    color: #fff;
    background: rgba(6, 16, 30, .86);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    backdrop-filter: blur(16px);
}

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

.brand { display: inline-flex; width: fit-content; }
.brand img { display: block; width: 205px; height: auto; }

.header-rating {
    align-items: center;
    gap: 10px;
    padding: .45rem .8rem;
    color: #dbe7f7;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 999px;
    font-size: .82rem;
    line-height: 1;
}

.stars { color: var(--sws-gold); letter-spacing: .04em; white-space: nowrap; }
.star-muted { color: rgba(255, 255, 255, .32); }

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}

.header-phone {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #fff;
    font-size: .9rem;
    font-weight: 700;
    text-decoration: none;
}

.header-phone:hover { color: var(--sws-cyan); }
.header-phone svg, .btn-call svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.btn {
    display: inline-block;
    min-height: 50px;
    padding: .6rem 1rem;
    border: 1px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    font-weight: 800;
    letter-spacing: -.01em;
    transition: transform var(--sws-transition), box-shadow var(--sws-transition), background-color var(--sws-transition), border-color var(--sws-transition);
}

.btn:hover { transform: translateY(-2px); }
.btn-primary {
    --bs-btn-bg: var(--sws-blue);
    --bs-btn-border-color: var(--sws-blue);
    --bs-btn-hover-bg: var(--sws-blue-dark);
    --bs-btn-hover-border-color: var(--sws-blue-dark);
    --bs-btn-active-bg: var(--sws-blue-dark);
    --bs-btn-active-border-color: var(--sws-blue-dark);
    color: #fff;
    background: var(--sws-blue);
    border-color: var(--sws-blue);
    box-shadow: 0 14px 35px rgba(22, 140, 255, .28);
}
.btn-primary:hover { color: #fff; background: var(--sws-blue-dark); border-color: var(--sws-blue-dark); }
.btn-lg { min-height: 54px; padding: .78rem 1.25rem; font-size: 1rem; }
.btn-light { color: var(--sws-ink); background: #fff; border-color: #fff; }
.btn-light:hover { color: var(--sws-blue-dark); background: #f4f8fc; border-color: #f4f8fc; }

.header-quote { min-height: 46px; padding-inline: 1.15rem; font-size: .88rem; }

.hero {
    position: relative;
    isolation: isolate;
    min-height: calc(100vh - 78px);
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px) 0 0 / 72px 72px,
        linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px) 0 0 / 72px 72px,
        radial-gradient(circle at 77% 34%, rgba(22, 140, 255, .14), transparent 34%),
        var(--sws-navy-950);
}

.hero::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: auto 0 0;
    height: 30%;
    background: linear-gradient(180deg, transparent, rgba(3, 10, 20, .72));
}

.hero-glow {
    position: absolute;
    z-index: -1;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .15;
}

.hero-glow-one { top: -150px; left: -150px; background: var(--sws-pink); }
.hero-glow-two { right: -100px; bottom: -160px; background: var(--sws-cyan); }

.hero-grid {
    min-height: calc(100vh - 78px);
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(540px, 1.05fr);
    align-items: center;
    gap: clamp(42px, 6vw, 90px);
    padding-block: clamp(54px, 7vh, 92px);
}

.hero-copy { position: relative; z-index: 2; max-width: 700px; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 1.15rem;
    color: #8ddfff;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .16em;
}

.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--sws-pink); }

.hero h1 {
    max-width: 14ch;
    margin: 0;
    font-size: clamp(2.65rem, 4.4vw, 4.65rem);
    font-weight: 900;
    line-height: .99;
    letter-spacing: -.055em;
    text-wrap: balance;
}

.hero h1::after {
    content: "";
    display: inline-block;
    width: .2em;
    height: .2em;
    margin-left: .08em;
    border-radius: 50%;
    background: var(--sws-pink);
}

.hero-lede { max-width: 64ch; margin: 1.35rem 0 1.2rem; color: #bfcce0; font-size: clamp(1rem, 1.25vw, 1.16rem); line-height: 1.65; }

.offer-line {
    display: flex;
    align-items: baseline;
    gap: 13px;
    width: fit-content;
    margin-bottom: 1rem;
    color: #e8f2ff;
    font-size: 1rem;
    font-weight: 600;
}

.offer-line strong { color: #fff; font-size: clamp(1.75rem, 2.3vw, 2.4rem); line-height: 1; letter-spacing: -.05em; }

.hero-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin: 0 0 1.6rem;
    padding: 0;
    list-style: none;
    color: #d9e6f5;
    font-size: .9rem;
    font-weight: 700;
}

.hero-benefits span { color: var(--sws-success); margin-right: 5px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-actions .btn { padding: .78rem 1.25rem; font-size: .97rem; }

.btn-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: #fff;
    background: rgba(255, 255, 255, .055);
    border: 1px solid rgba(255, 255, 255, .22);
}

.btn-call:hover { color: #fff; background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .36); }
.hero-microcopy { margin: .75rem 0 1rem; color: #8fa2bb; font-size: .8rem; }
.hero-microcopy span { padding-inline: .25rem; color: var(--sws-blue); }

.rating-row { display: flex; flex-wrap: wrap; gap: 10px; }
.rating-chip {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: .56rem .72rem;
    color: #dce8f8;
    background: rgba(255, 255, 255, .045);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 10px;
    font-size: .8rem;
    line-height: 1;
    text-decoration: none;
}

a.rating-chip:hover { color: #fff; border-color: rgba(255, 255, 255, .24); }

.hero-showcase { position: relative; min-height: 590px; }

.browser-card {
    position: absolute;
    top: 50%;
    right: 0;
    width: min(100%, 660px);
    overflow: hidden;
    background: #dfe7ef;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 20px;
    box-shadow: var(--sws-shadow);
    transform: translateY(-52%) rotate(1.1deg);
}

.browser-bar { height: 35px; display: flex; align-items: center; gap: 6px; padding: 0 12px; background: #eaf0f5; }
.browser-bar > span { width: 8px; height: 8px; border-radius: 50%; background: #9babbc; }
.browser-bar > span:first-child { background: #ff5f57; }
.browser-bar > span:nth-child(2) { background: #ffbd2e; }
.browser-bar > span:nth-child(3) { background: #28c840; }
.browser-address { min-width: 0; max-width: 260px; margin-left: 12px; padding: 4px 13px; color: #5b6d7e; background: #fff; border-radius: 999px; font-size: 9px; line-height: 1; }
.browser-card img { display: block; width: 100%; height: auto; aspect-ratio: 1.4; object-fit: cover; object-position: top center; }

.phone-card {
    position: absolute;
    z-index: 2;
    right: -6px;
    bottom: 20px;
    width: 178px;
    padding: 8px;
    overflow: hidden;
    background: #08111f;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 30px;
    box-shadow: 0 28px 60px rgba(0, 7, 20, .5);
    transform: rotate(-3deg);
}

.phone-speaker { position: absolute; z-index: 2; top: 13px; left: 50%; width: 48px; height: 5px; border-radius: 999px; background: #0a1320; transform: translateX(-50%); }
.phone-card img { display: block; width: 100%; height: auto; aspect-ratio: .52; object-fit: cover; object-position: 50% 18%; border-radius: 23px; }

.showcase-note {
    position: absolute;
    z-index: 3;
    bottom: 56px;
    left: -18px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: .75rem .9rem;
    color: var(--sws-ink);
    background: rgba(255, 255, 255, .95);
    border-radius: 14px;
    box-shadow: 0 18px 50px rgba(0, 9, 25, .34);
}

.note-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--sws-success); box-shadow: 0 0 0 5px rgba(55, 206, 128, .14); }
.showcase-note div { display: flex; flex-direction: column; line-height: 1.25; }
.showcase-note strong { font-size: .78rem; }
.showcase-note small { color: var(--sws-muted); font-size: .65rem; }

.trust-strip { color: #fff; background: #0d1e34; border-top: 1px solid rgba(255, 255, 255, .08); border-bottom: 1px solid rgba(255, 255, 255, .08); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid > div { padding: 1.1rem 1.25rem; text-align: center; border-right: 1px solid rgba(255, 255, 255, .08); font-size: .83rem; font-weight: 700; }
.trust-grid > div:last-child { border-right: 0; }
.trust-grid span { margin-right: 7px; color: var(--sws-success); }

.modal { position: fixed; z-index: 1055; inset: 0; display: none; overflow-x: hidden; overflow-y: auto; outline: 0; }
.modal.show { display: block; }
.modal.fade { opacity: 0; transition: opacity 160ms ease; }
.modal.fade.show { opacity: 1; }
.modal-dialog { position: relative; width: auto; margin: 1rem auto; pointer-events: none; }
.modal-dialog-centered { display: flex; align-items: center; min-height: calc(100% - 2rem); }
.modal-content { position: relative; display: flex; flex-direction: column; width: 100%; color: var(--sws-ink); background: #fff; pointer-events: auto; }
.modal-header, .modal-footer { display: flex; flex-shrink: 0; }
.modal-header { justify-content: space-between; }
.modal-footer { align-items: center; }
.modal-title { margin: 0; }
.modal-backdrop { position: fixed; z-index: 1050; inset: 0; background: #000; opacity: .62; }
body.modal-open { overflow: hidden; }
.btn-close { position: relative; flex: 0 0 34px; width: 34px; height: 34px; padding: 0; color: var(--sws-ink); background: transparent; border: 0; border-radius: 50%; cursor: pointer; }
.btn-close::before { content: "\00d7"; position: absolute; inset: 0; display: grid; place-items: center; font-size: 1.7rem; line-height: 1; }
.btn-close:hover { background: rgba(16, 35, 61, .08); }

.quote-modal .modal-content { overflow: hidden; border: 0; border-radius: var(--sws-radius); box-shadow: 0 28px 90px rgba(0, 9, 25, .35); }
.quote-modal .modal-header { align-items: flex-start; padding: 1.5rem 1.5rem 1rem; border: 0; }
.modal-step-label { margin: 0 0 .35rem; color: var(--sws-blue); font-size: .72rem; font-weight: 800; letter-spacing: .14em; }
.quote-modal .modal-title { max-width: 23ch; font-size: 1.55rem; font-weight: 900; line-height: 1.15; letter-spacing: -.035em; }
.quote-modal .modal-body { padding: 0 1.5rem 1.5rem; }
.quote-progress { height: 7px; margin-bottom: 1.5rem; background: #e6eef7; }
.quote-progress .progress-bar { background: linear-gradient(90deg, var(--sws-blue), var(--sws-cyan)); }
.quote-modal legend { margin-bottom: 1rem; font-size: 1.08rem; font-weight: 800; }
.choice-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.choice-button { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 62px; padding: .9rem; color: var(--sws-ink); background: #fff; border: 1px solid var(--sws-border); border-radius: 12px; font-weight: 700; text-align: left; cursor: pointer; transition: border-color var(--sws-transition), background-color var(--sws-transition), color var(--sws-transition), transform var(--sws-transition); }
.choice-button small { color: var(--sws-muted); font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.choice-button:hover { color: var(--sws-blue-dark); border-color: var(--sws-blue); background: #f6fbff; transform: translateY(-1px); }
.choice-input { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; }
.choice-input:focus-visible + .choice-button { outline: 3px solid rgba(22, 140, 255, .24); outline-offset: 2px; }
.choice-input:checked + .choice-button { color: var(--sws-blue-dark); background: #eef8ff; border-color: var(--sws-blue); box-shadow: inset 0 0 0 1px var(--sws-blue); }
.choice-input:checked + .choice-button small { color: var(--sws-blue-dark); }

.section { position: relative; padding-block: clamp(82px, 8vw, 126px); }
.section-heading { max-width: 760px; margin: 0 auto clamp(38px, 5vw, 66px); }
.section-heading.text-center > p { margin-inline: auto; }
.section-heading-wide { max-width: none; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(280px, .7fr); align-items: end; gap: clamp(30px, 5vw, 74px); }
.section-heading-wide > p { margin-bottom: .3rem; }
.section-kicker { margin: 0 0 .9rem; color: var(--sws-blue-dark); font-size: .75rem; font-weight: 900; letter-spacing: .16em; }
.section h2 { margin: 0; color: var(--sws-ink); font-size: clamp(2.1rem, 4.25vw, 4.1rem); font-weight: 900; line-height: 1.04; letter-spacing: -.052em; text-wrap: balance; }
.section-heading > p:not(.section-kicker), .why-intro > p:not(.section-kicker) { max-width: 65ch; margin-top: 1.2rem; color: var(--sws-muted); font-size: 1.05rem; line-height: 1.7; }

body.reveal-ready [data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity 520ms ease, transform 520ms ease; }
body.reveal-ready [data-reveal].is-visible { opacity: 1; transform: translateY(0); }

.portfolio-section { background: var(--sws-surface-soft); overflow: hidden; }
.portfolio-section::before { content: ""; position: absolute; top: -240px; right: -240px; width: 520px; height: 520px; border: 1px solid rgba(22, 140, 255, .12); border-radius: 50%; box-shadow: inset 0 0 0 72px rgba(22, 140, 255, .025), inset 0 0 0 144px rgba(240, 19, 121, .02); }
.portfolio-carousel { position: relative; }
.portfolio-grid { position: relative; display: flex; gap: 22px; overflow-x: auto; margin: -8px -4px 0; padding: 8px 4px 24px; scroll-snap-type: x mandatory; scroll-padding-inline: 4px; overscroll-behavior-inline: contain; scrollbar-width: none; }
.portfolio-grid::-webkit-scrollbar { display: none; }
.portfolio-card { flex: 0 0 calc((100% - 44px) / 3); min-width: 0; scroll-snap-align: start; }
.portfolio-card-featured { grid-column: auto; }
.portfolio-frame { overflow: hidden; background: #dfe7ee; border: 1px solid rgba(8, 21, 37, .1); border-radius: 17px; box-shadow: 0 18px 52px rgba(12, 23, 40, .1); transition: transform 240ms ease, box-shadow 240ms ease; }
.portfolio-card:hover .portfolio-frame { transform: translateY(-5px); box-shadow: 0 28px 62px rgba(12, 23, 40, .16); }
.portfolio-bar { height: 28px; display: flex; align-items: center; gap: 5px; padding: 0 10px; background: #fff; }
.portfolio-bar span { width: 7px; height: 7px; border-radius: 50%; background: #c2ccd6; }
.portfolio-bar span:first-child { background: #ff5f57; }
.portfolio-bar span:nth-child(2) { background: #ffbd2e; }
.portfolio-bar span:last-child { background: #28c840; }
.portfolio-frame img { display: block; width: 100%; height: auto; aspect-ratio: 1.4; object-fit: cover; object-position: top center; transition: transform 500ms ease; }
.portfolio-card:hover .portfolio-frame img { transform: scale(1.018); }
.portfolio-meta { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; padding: 15px 4px 5px; }
.portfolio-meta span { color: var(--sws-blue-dark); font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.portfolio-meta h3 { margin: .2rem 0 0; font-size: 1.05rem; font-weight: 900; letter-spacing: -.02em; }
.portfolio-meta p { margin: 0; color: var(--sws-muted); font-size: .72rem; white-space: nowrap; }
.portfolio-nav { position: absolute; z-index: 3; top: calc(50% - 45px); display: grid; place-items: center; width: 48px; height: 48px; padding: 0; color: #fff; background: var(--sws-navy-900); border: 1px solid rgba(255, 255, 255, .16); border-radius: 50%; box-shadow: 0 14px 34px rgba(6, 16, 30, .28); cursor: pointer; transition: transform var(--sws-transition), opacity var(--sws-transition), background var(--sws-transition); }
.portfolio-nav:hover { background: var(--sws-blue-dark); transform: translateY(-2px); }
.portfolio-nav:disabled { opacity: .28; cursor: default; transform: none; }
.portfolio-nav svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.portfolio-nav-prev { left: -20px; }
.portfolio-nav-next { right: -20px; }
.portfolio-dots { display: flex; align-items: center; justify-content: center; gap: 0; min-height: 24px; margin-top: 4px; }
.portfolio-dots button { position: relative; width: 24px; height: 24px; padding: 0; background: transparent; border: 0; border-radius: 999px; cursor: pointer; }
.portfolio-dots button::before { content: ""; position: absolute; top: 50%; left: 50%; width: 8px; height: 8px; background: #a9bacb; border-radius: inherit; transform: translate(-50%, -50%); transition: width var(--sws-transition), background var(--sws-transition); }
.portfolio-dots button.is-active::before { width: 24px; background: var(--sws-blue); }
.section-action { margin-top: clamp(36px, 5vw, 62px); text-align: center; }
.section-action p { margin: .7rem 0 0; color: var(--sws-muted); font-size: .82rem; }

.discount-popup[hidden] { display: none; }
.discount-popup { position: fixed; z-index: 2147483000; inset: 0; display: grid; place-items: center; padding: 22px; opacity: 0; transition: opacity 220ms ease; }
.discount-popup.is-open { opacity: 1; }
.discount-popup-backdrop { position: absolute; inset: 0; background: rgba(3, 10, 20, .78); backdrop-filter: blur(8px); }
.discount-popup-card { position: relative; display: grid; grid-template-columns: minmax(270px, .76fr) minmax(0, 1.24fr); width: min(960px, 100%); max-height: calc(100vh - 44px); overflow: hidden; background: #fff; border: 1px solid rgba(255, 255, 255, .2); border-radius: 28px; box-shadow: 0 40px 120px rgba(0, 5, 15, .52); transform: translateY(18px) scale(.985); transition: transform 220ms ease; }
.discount-popup.is-open .discount-popup-card { transform: translateY(0) scale(1); }
.discount-offer-panel { position: relative; isolation: isolate; display: flex; flex-direction: column; justify-content: space-between; min-height: 100%; padding: clamp(30px, 4vw, 48px); color: #fff; background: linear-gradient(145deg, #06101e 0%, #0b2340 70%, #123e64 100%); overflow: hidden; }
.discount-offer-panel::before { content: ""; position: absolute; z-index: -1; right: -95px; bottom: -90px; width: 290px; height: 290px; border: 1px solid rgba(46, 213, 244, .22); border-radius: 50%; box-shadow: inset 0 0 0 48px rgba(46, 213, 244, .035), inset 0 0 0 96px rgba(240, 19, 121, .04); }
.discount-offer-panel .section-kicker { color: var(--sws-cyan); }
.discount-amount { display: flex; align-items: flex-start; margin: 10px 0 18px; color: #fff; font-size: clamp(4.4rem, 9vw, 7.2rem); font-weight: 900; line-height: .8; letter-spacing: -.08em; }
.discount-amount span { margin: 5px 0 0 7px; color: var(--sws-cyan); font-size: .28em; letter-spacing: -.04em; }
.discount-offer-panel h2 { max-width: 9ch; margin: 0; color: #fff; font-size: clamp(1.8rem, 3vw, 2.7rem); font-weight: 900; line-height: 1.02; letter-spacing: -.045em; }
.discount-offer-panel > p { max-width: 30ch; margin: 18px 0 0; color: #b8c9da; font-size: .92rem; line-height: 1.65; }
.discount-benefits { display: grid; gap: 10px; margin: 30px 0 0; padding: 0; list-style: none; }
.discount-benefits li { display: flex; align-items: center; gap: 9px; color: #dceaf7; font-size: .78rem; font-weight: 700; }
.discount-benefits li::before { content: "\2713"; display: grid; place-items: center; width: 22px; height: 22px; color: #07111f; background: var(--sws-cyan); border-radius: 50%; font-size: .7rem; font-weight: 900; }
.discount-form-panel { min-width: 0; overflow-y: auto; padding: clamp(30px, 4vw, 48px); }
.discount-form-panel h3 { margin: 0; color: var(--sws-ink); font-size: clamp(1.65rem, 3vw, 2.3rem); font-weight: 900; line-height: 1.08; letter-spacing: -.04em; }
.discount-form-intro { max-width: 48ch; margin: .8rem 0 1.45rem; color: var(--sws-muted); font-size: .88rem; line-height: 1.6; }
.discount-error { margin: 0 0 14px; padding: 11px 13px; color: #842029; background: #f8d7da; border: 1px solid #f1aeb5; border-radius: 10px; font-size: .76rem; line-height: 1.5; }
.discount-field-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.discount-field { min-width: 0; }
.discount-field-wide { grid-column: 1 / -1; }
.discount-field label { display: block; margin-bottom: 6px; color: var(--sws-ink); font-size: .72rem; font-weight: 900; }
.discount-field input { width: 100%; min-height: 49px; padding: .72rem .85rem; color: var(--sws-ink); background: #f7fafd; border: 1px solid #cfdae5; border-radius: 11px; font: inherit; font-size: .84rem; outline: none; transition: border-color var(--sws-transition), box-shadow var(--sws-transition), background var(--sws-transition); }
.discount-field input:focus { background: #fff; border-color: var(--sws-blue); box-shadow: 0 0 0 4px rgba(22, 140, 255, .11); }
.discount-form-panel .btn { width: 100%; margin-top: 16px; }
.discount-consent { margin: 12px 0 0; color: #6d7c8e; font-size: .68rem; line-height: 1.5; text-align: center; }
.discount-consent a { color: var(--sws-blue-dark); font-weight: 800; }
.discount-close { position: absolute; z-index: 4; top: 16px; right: 16px; display: grid; place-items: center; width: 38px; height: 38px; padding: 0; color: #54677b; background: #edf3f8; border: 1px solid #dbe5ee; border-radius: 50%; cursor: pointer; }
.discount-close:hover { color: var(--sws-ink); background: #e3edf5; }
.discount-close svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }
body.discount-open { overflow: hidden; }
body.discount-open .mobile-conversion { transform: translateY(110%); }

.pain-section { color: #fff; background: var(--sws-navy-950); overflow: hidden; }
.pain-section::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 50% 0, rgba(22, 140, 255, .16), transparent 37%), linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px) 0 0 / 76px 76px; }
.pain-section > .container { position: relative; z-index: 1; }
.pain-section .section-kicker { color: #73dfff; }
.pain-section h2 { color: #fff; }
.pain-section .section-heading > p:not(.section-kicker) { color: #b7c6d8; }
.pain-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.pain-card { min-height: 270px; padding: clamp(24px, 2.6vw, 36px); background: rgba(255, 255, 255, .045); border: 1px solid rgba(255, 255, 255, .1); border-radius: var(--sws-radius); }
.pain-icon { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 42px; color: var(--sws-cyan); background: rgba(46, 213, 244, .08); border: 1px solid rgba(46, 213, 244, .2); border-radius: 14px; }
.pain-icon svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.pain-card h3 { margin: 0 0 .8rem; font-size: 1.2rem; font-weight: 900; letter-spacing: -.025em; }
.pain-card p { margin: 0; color: #aebed1; font-size: .92rem; line-height: 1.65; }
.pain-statement { max-width: 850px; margin: 50px auto 0; color: #aebed1; text-align: center; }
.pain-statement span { color: #fff; font-size: 1.2rem; font-weight: 900; }

.benefits-section { background: #fff; }
.benefits-layout { display: grid; grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr); align-items: start; gap: clamp(46px, 8vw, 118px); }
.section-heading-sticky { position: sticky; top: 120px; margin: 0; }
.text-link { padding: 0 0 .25rem; color: var(--sws-blue-dark); background: transparent; border: 0; border-bottom: 1px solid rgba(8, 119, 223, .28); font-size: .92rem; font-weight: 800; }
.text-link:hover { color: var(--sws-pink); border-color: currentColor; }
.benefit-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.benefit-card { min-height: 245px; padding: clamp(24px, 3vw, 38px); background: var(--sws-surface-soft); border: 1px solid var(--sws-border); border-radius: var(--sws-radius); transition: transform var(--sws-transition), border-color var(--sws-transition); }
.benefit-card:hover { transform: translateY(-4px); border-color: rgba(22, 140, 255, .35); }
.benefit-icon { display: grid; place-items: center; width: 46px; height: 46px; margin-bottom: 40px; color: var(--sws-blue-dark); background: #fff; border: 1px solid rgba(22, 140, 255, .18); border-radius: 14px; font-size: 1.15rem; box-shadow: 0 10px 24px rgba(12, 23, 40, .06); }
.benefit-card h3 { margin: 0 0 .65rem; font-size: 1.12rem; font-weight: 900; letter-spacing: -.02em; }
.benefit-card p { margin: 0; color: var(--sws-muted); font-size: .9rem; line-height: 1.65; }

.pricing-section { background: #edf4fa; }
.pricing-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: stretch; gap: 20px; }
.pricing-card { position: relative; display: flex; flex-direction: column; padding: clamp(26px, 3vw, 40px); background: #fff; border: 1px solid rgba(16, 35, 61, .1); border-radius: 24px; box-shadow: 0 14px 44px rgba(12, 23, 40, .07); }
.pricing-card-popular { color: #fff; background: var(--sws-navy-900); border-color: rgba(22, 140, 255, .55); box-shadow: 0 28px 74px rgba(6, 16, 30, .22); transform: translateY(-14px); }
.package-layout .pricing-card-popular { transform: none; }
.pricing-badge { align-self: flex-start; margin: 0 0 1.1rem; padding: .38rem .65rem; color: var(--sws-blue-dark); background: #eaf6ff; border-radius: 999px; font-size: .64rem; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.pricing-card-popular .pricing-badge { color: #07111f; background: var(--sws-cyan); }
.pricing-card h3 { margin: 0 0 1.5rem; font-size: 1.3rem; font-weight: 900; letter-spacing: -.025em; }
.price-label { margin: 0; color: var(--sws-muted); font-size: .74rem; font-weight: 700; }
.pricing-card-popular .price-label, .pricing-card-popular .pricing-summary, .pricing-card-popular .feature-list { color: #aebed1; }
.price { margin: .2rem 0 .85rem; color: var(--sws-ink); font-size: 4rem; font-weight: 900; line-height: 1; letter-spacing: -.07em; }
.pricing-card-popular .price { color: #fff; }
.price sup { position: relative; top: -.65em; margin-right: 3px; font-size: 1.3rem; }
.price-custom { min-height: 64px; display: flex; align-items: center; font-size: 2.1rem; letter-spacing: -.045em; }
.pricing-summary { min-height: 84px; margin: 0 0 1.2rem; color: var(--sws-muted); font-size: .86rem; line-height: 1.6; }
.feature-list { display: grid; gap: 10px; margin: 0 0 2rem; padding: 1.4rem 0 0; color: #405168; border-top: 1px solid var(--sws-border); font-size: .82rem; list-style: none; }
.feature-list li { position: relative; padding-left: 23px; }
.feature-list li::before { content: "✓"; position: absolute; left: 0; color: var(--sws-success); font-weight: 900; }
.pricing-card .btn { margin-top: auto; }
.btn-outline-primary { min-height: 54px; color: var(--sws-blue-dark); background: transparent; border-color: rgba(8, 119, 223, .38); }
.btn-outline-primary:hover { color: #fff; background: var(--sws-blue); border-color: var(--sws-blue); }
.pricing-disclaimer { max-width: 780px; margin: 30px auto 0; color: var(--sws-muted); font-size: .78rem; text-align: center; }

.combo-package { grid-column: 1 / -1; overflow: hidden; padding: clamp(28px, 4vw, 50px); border-color: rgba(22, 140, 255, .24); box-shadow: 0 24px 65px rgba(12, 39, 70, .12); }
.combo-package::before { content: ""; position: absolute; top: 0; right: 0; left: 0; height: 4px; background: linear-gradient(90deg, var(--sws-pink), var(--sws-blue), var(--sws-cyan)); }
.combo-package-top { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: clamp(30px, 6vw, 88px); padding-bottom: 30px; border-bottom: 1px solid var(--sws-border); }
.combo-package h3 { margin-bottom: .8rem; font-size: clamp(2rem, 4vw, 3.25rem); line-height: 1; letter-spacing: -.055em; }
.combo-package .pricing-summary { min-height: 0; max-width: 60ch; margin: 0; font-size: .92rem; }
.combo-package-offer { min-width: 265px; }
.combo-package-offer .price { margin-bottom: 1rem; }
.combo-package-offer .btn { width: 100%; min-height: 54px; margin-top: 0; }
.package-columns { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-top: 24px; }
.package-group { min-width: 0; padding: 24px; background: #f7fafe; border: 1px solid var(--sws-border); border-radius: 18px; }
.package-group-label { margin: 0 0 1.2rem; color: var(--sws-blue-dark); font-size: .64rem; font-weight: 900; letter-spacing: .14em; }
.package-group h4 { margin: 0; color: var(--sws-ink); font-size: 1.05rem; font-weight: 900; letter-spacing: -.025em; }
.package-group .feature-list { gap: 9px; margin: 1rem 0 0; padding-top: 1rem; font-size: .76rem; line-height: 1.55; }
.package-group .feature-list sup { color: var(--sws-blue-dark); font-weight: 900; }
.package-addons { margin-top: 18px; background: #081525; border: 1px solid rgba(22, 140, 255, .26); border-radius: 18px; }
.package-addons summary { padding: 17px 20px; color: #fff; font-size: .84rem; font-weight: 900; cursor: pointer; }
.package-addons summary::marker { color: var(--sws-cyan); }
.package-addons ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; margin: 0; padding: 1px; background: rgba(255, 255, 255, .08); border-top: 1px solid rgba(255, 255, 255, .08); list-style: none; }
.package-addons li { display: flex; justify-content: space-between; gap: 18px; padding: 12px 16px; color: #b6c7da; background: #0b1b30; font-size: .73rem; }
.package-addons strong { flex: 0 0 auto; color: var(--sws-cyan); }
.package-terms { margin: 16px 2px 0; color: #5f7085; font-size: .67rem; line-height: 1.6; }
.package-terms sup { color: var(--sws-blue-dark); font-weight: 900; }

.why-section { color: #fff; background: linear-gradient(135deg, #07111f 0%, #0b1d35 65%, #11162f 100%); }
.why-section::before { content: ""; position: absolute; top: 0; right: 8%; width: 40%; height: 3px; background: linear-gradient(90deg, transparent, var(--sws-pink), var(--sws-blue), transparent); }
.why-intro { max-width: 820px; margin-bottom: clamp(45px, 6vw, 80px); }
.why-intro .section-kicker { color: #7fe3f6; }
.why-intro h2 { color: #fff; }
.why-intro > p:not(.section-kicker) { color: #adbed3; }
.why-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid rgba(255, 255, 255, .1); border-left: 1px solid rgba(255, 255, 255, .1); }
.why-grid article { min-height: 250px; padding: clamp(25px, 3vw, 40px); border-right: 1px solid rgba(255, 255, 255, .1); border-bottom: 1px solid rgba(255, 255, 255, .1); }
.why-grid .why-icon { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 42px; color: var(--sws-cyan); background: rgba(46, 213, 244, .08); border: 1px solid rgba(46, 213, 244, .2); border-radius: 14px; }
.why-icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.why-grid h3 { margin: 0 0 .7rem; font-size: 1.08rem; font-weight: 900; }
.why-grid p { margin: 0; color: #9fb1c8; font-size: .87rem; line-height: 1.65; }

.comparison-section { background: #fff; }

.section-cta-row { display: flex; grid-column: 1 / -1; justify-content: center; flex-wrap: wrap; gap: 12px; width: 100%; margin-top: clamp(34px, 5vw, 58px); }
.section-cta-row .btn { min-width: 178px; }
.section-cta-row .btn strong, .final-actions .btn strong, .mobile-conversion strong { font-weight: 900; }
.section-cta-row .btn-call { color: var(--sws-blue-dark); background: #fff; border-color: rgba(8, 119, 223, .34); }
.section-cta-row .btn-call:hover { color: #fff; background: var(--sws-blue); border-color: var(--sws-blue); }
.section-cta-row-dark .btn-call { color: #fff; background: rgba(255, 255, 255, .055); border-color: rgba(255, 255, 255, .22); }
.section-cta-row-dark .btn-call:hover { background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .36); }
.comparison-wrap { overflow-x: auto; background: #fff; border: 1px solid var(--sws-border); border-radius: 22px; box-shadow: 0 18px 58px rgba(12, 23, 40, .07); }
.comparison-wrap:focus-visible { outline-offset: 5px; }
.comparison-table { width: 100%; min-width: 850px; border-collapse: collapse; font-size: .84rem; }
.comparison-table th, .comparison-table td { padding: 1.15rem 1.25rem; border-bottom: 1px solid var(--sws-border); text-align: center; }
.comparison-table thead th { color: #506178; background: #f8fafc; font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; }
.comparison-table th:first-child { width: 26%; text-align: left; }
.comparison-table tbody th { color: var(--sws-ink); font-weight: 800; }
.comparison-table td { color: #64758b; }
.comparison-table .sws-column { color: var(--sws-ink); background: #eef8ff; font-weight: 800; }
.comparison-table thead .sws-column { color: #fff; background: var(--sws-blue-dark); }
.comparison-table tbody tr:last-child > * { border-bottom: 0; }

.reviews-section { background: var(--sws-surface-soft); }
.review-platforms { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-top: 1.8rem; }
.review-platforms > div, .review-platforms > a { display: inline-flex; align-items: center; gap: 8px; padding: .7rem .9rem; color: var(--sws-ink); background: #fff; border: 1px solid var(--sws-border); border-radius: 12px; font-size: .8rem; text-decoration: none; }
.review-platforms > a:hover { border-color: rgba(22, 140, 255, .42); }
.review-empty-star { color: #d8e0e7; }
.review-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.review-card { display: flex; flex-direction: column; min-height: 340px; padding: clamp(26px, 3vw, 38px); background: #fff; border: 1px solid var(--sws-border); border-radius: var(--sws-radius); box-shadow: 0 16px 45px rgba(12, 23, 40, .06); }
.review-stars { margin-bottom: 30px; color: var(--sws-gold); letter-spacing: .08em; }
.review-stars span { color: #dfe5eb; }
.review-card blockquote { margin: 0 0 2rem; color: var(--sws-ink); font-size: 1.05rem; font-weight: 700; line-height: 1.65; letter-spacing: -.015em; }
.review-card footer { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review-avatar { display: grid; place-items: center; flex: 0 0 auto; width: 42px; height: 42px; color: #fff; background: linear-gradient(135deg, var(--sws-blue), #7a58e8); border-radius: 50%; font-size: .72rem; font-weight: 900; }
.review-card footer > div:last-child { display: flex; flex-direction: column; }
.review-card footer strong { font-size: .82rem; }
.review-card footer span { color: var(--sws-muted); font-size: .68rem; }
.review-note { margin: 28px 0 0; color: var(--sws-muted); font-size: .76rem; text-align: center; }
.review-note a { color: var(--sws-blue-dark); font-weight: 800; }

.process-section { color: #fff; background: #0b203b; overflow: hidden; }
.process-section::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% -20%, rgba(46, 213, 244, .18), transparent 42%); }
.process-section > .container { position: relative; z-index: 1; }
.process-section .section-kicker { color: #76e6f8; }
.process-section h2 { color: #fff; }
.process-section .section-heading > p:not(.section-kicker) { color: #aabbd0; }
.process-grid { position: relative; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; margin: 0; padding: 0; list-style: none; }
.process-grid::before { content: ""; position: absolute; top: 26px; right: 10%; left: 10%; height: 1px; background: linear-gradient(90deg, rgba(46, 213, 244, .1), rgba(46, 213, 244, .75), rgba(46, 213, 244, .1)); }
.process-grid li { position: relative; padding: 0 clamp(18px, 2.6vw, 34px); text-align: center; }
.process-number { position: relative; z-index: 1; display: grid; place-items: center; width: 54px; height: 54px; margin: 0 auto 28px; color: #07111f; background: var(--sws-cyan); border: 7px solid #0b203b; border-radius: 50%; font-size: .7rem; font-weight: 900; }
.process-grid h3 { margin: 0 0 .8rem; font-size: 1rem; font-weight: 900; text-transform: uppercase; letter-spacing: .03em; }
.process-grid p { margin: 0; color: #9fb2ca; font-size: .84rem; line-height: 1.65; }
.process-note { max-width: 760px; margin: 46px auto 0; color: #7f94ae; font-size: .76rem; text-align: center; }

.faq-section { background: #fff; }
.faq-layout { display: grid; grid-template-columns: minmax(250px, .65fr) minmax(0, 1.35fr); align-items: start; gap: clamp(50px, 8vw, 120px); }
.faq-layout > .section-heading { position: sticky; top: 120px; margin: 0; }
.faq-contact { display: flex; flex-direction: column; margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--sws-border); }
.faq-contact span { color: var(--sws-muted); font-size: .75rem; }
.faq-contact a { color: var(--sws-blue-dark); font-size: 1.05rem; font-weight: 900; text-decoration: none; }
.accordion-item { background: transparent; border-bottom: 1px solid var(--sws-border); }
.accordion-header { margin: 0; }
.accordion-button { position: relative; display: flex; align-items: center; width: 100%; border: 0; text-align: left; cursor: pointer; }
.accordion-button::after { content: "+"; flex: 0 0 auto; margin-left: auto; font-size: 1.35rem; font-weight: 500; line-height: 1; text-align: center; }
.accordion-button:not(.collapsed)::after { content: "\2212"; }
.collapse:not(.show) { display: none; }
.faq-accordion { border-top: 1px solid var(--sws-border); }
.faq-accordion .accordion-item { border-color: var(--sws-border); }
.faq-accordion .accordion-button { padding: 1.25rem .2rem; color: var(--sws-ink); background: transparent; box-shadow: none; font-size: 1rem; font-weight: 900; line-height: 1.4; }
.faq-accordion .accordion-button:not(.collapsed) { color: var(--sws-blue-dark); }
.faq-accordion .accordion-button::after { width: 1rem; height: 1rem; background-size: 1rem; }
.faq-accordion .accordion-body { padding: 0 2.5rem 1.35rem .2rem; color: var(--sws-muted); font-size: .9rem; line-height: 1.7; }

.final-cta { position: relative; overflow: hidden; padding-block: clamp(92px, 10vw, 150px); color: #fff; background: var(--sws-navy-950); text-align: center; }
.final-cta::before, .final-cta::after { content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%; filter: blur(100px); opacity: .14; }
.final-cta::before { top: -220px; left: -140px; background: var(--sws-pink); }
.final-cta::after { right: -150px; bottom: -260px; background: var(--sws-cyan); }
.final-cta-inner { position: relative; z-index: 1; }
.final-cta .section-kicker { color: #7ee7f7; }
.final-cta h2 { max-width: 16ch; margin: 0 auto; color: #fff; font-size: clamp(2.45rem, 5.5vw, 5.4rem); }
.final-cta-inner > p:not(.section-kicker) { max-width: 62ch; margin: 1.3rem auto 1.8rem; color: #afbed1; }
.final-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
.final-trust { display: flex; justify-content: center; flex-wrap: wrap; gap: 20px; margin-top: 1.4rem; color: #d8e5f5; font-size: .8rem; }
.final-trust a { text-decoration: none; }
.final-cta small { display: block; margin-top: .75rem; color: #7e91aa; font-size: .72rem; }
.final-cta small span { padding-inline: .2rem; color: var(--sws-blue); }

.site-footer { padding: 62px 0 24px; color: #c8d6e6; background: #040b14; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr 1fr .65fr; gap: clamp(28px, 5vw, 72px); padding-bottom: 46px; }
.footer-brand img { width: 185px; height: auto; margin-bottom: 17px; }
.footer-brand p { max-width: 32ch; margin: 0; color: #7588a1; font-size: .78rem; }
.footer-contact, .footer-links { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.footer-label { margin: 0 0 10px; color: #71849c; font-size: .65rem; font-weight: 900; text-transform: uppercase; letter-spacing: .13em; }
.footer-contact a, .footer-links a, .footer-links button { color: #c8d6e6; font-size: .78rem; text-decoration: none; }
.footer-links button { margin: 0; padding: 0; background: transparent; border: 0; text-align: left; }
.footer-contact a:hover, .footer-links a:hover, .footer-links button:hover { color: var(--sws-cyan); }
.site-footer address { margin: 0; color: #8fa1b7; font-size: .78rem; font-style: normal; line-height: 1.65; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 22px; color: #8fa3bb; border-top: 1px solid rgba(255, 255, 255, .08); font-size: .68rem; }
.footer-bottom a { color: #8ea2ba; text-decoration: none; }

.mobile-conversion { position: fixed; z-index: 1040; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: 1fr; padding-bottom: env(safe-area-inset-bottom); background: #07111f; border-top: 1px solid rgba(255, 255, 255, .15); box-shadow: 0 -12px 34px rgba(0, 9, 25, .25); transition: transform 180ms ease; }
.mobile-conversion > * { min-height: 58px; display: flex; align-items: center; justify-content: center; gap: 8px; color: #fff; border: 0; font-size: .88rem; font-weight: 900; text-decoration: none; }
.mobile-conversion a { background: #0c1d32; }
.mobile-conversion button { background: var(--sws-blue); }
.mobile-conversion svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
body.modal-open .mobile-conversion { transform: translateY(110%); }

@media (max-width: 767.98px) {
    body { padding-bottom: calc(58px + env(safe-area-inset-bottom)); }
    .header-quote, .desktop-quote-cta, [data-bs-target="#quoteModal"] { display: none !important; }
    .header-phone { min-height: 48px; justify-content: center; padding: 0 1rem; color: #fff; background: linear-gradient(135deg, #168cff, #0877df); border: 1px solid rgba(119, 205, 255, .5); border-radius: 12px; box-shadow: 0 10px 28px rgba(22, 140, 255, .3); font-size: .82rem; font-weight: 900; }
    .header-phone:hover, .header-phone:focus-visible { color: #fff; background: linear-gradient(135deg, #2698ff, #096dcc); border-color: rgba(153, 220, 255, .78); }
    .header-phone svg { display: block; width: 17px; height: 17px; }
    .hero-actions .btn-call { display: inline-flex; width: 100%; }
    .section-cta-row { display: grid; grid-template-columns: 1fr; }
    .section-cta-row .btn-call { width: 100%; }
    .mobile-conversion a { padding-right: 88px; padding-left: 20px; }
    #quoteModal { display: none !important; }
}

.quote-modal .modal-dialog { max-width: 780px; }
.quote-modal .modal-content { max-height: min(820px, calc(100vh - 32px)); }
.quote-modal form { display: flex; flex-direction: column; min-height: 0; overflow: hidden; }
.quote-modal .modal-body { min-height: 380px; overflow-y: auto; }
.quote-modal fieldset { min-width: 0; margin: 0; padding: 0; border: 0; }
.quote-modal legend { float: none; width: auto; }
.form-help { margin: -.55rem 0 1.15rem; color: var(--sws-muted); font-size: .8rem; }
.field-error { min-height: 20px; margin: .65rem 0 0; color: #b42318; font-size: .76rem; }
.hp-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.contact-field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.form-field { min-width: 0; }
.form-field-wide { grid-column: 1 / -1; }
.form-field label { display: flex; justify-content: space-between; gap: 10px; margin-bottom: .38rem; color: #27374b; font-size: .76rem; font-weight: 800; }
.form-field label > span:not([aria-hidden]) { color: var(--sws-muted); font-size: .66rem; font-weight: 500; }
.form-field label > span[aria-hidden] { color: #b42318; }
.form-control { display: block; width: 100%; min-height: 49px; padding: .7rem .85rem; color: var(--sws-ink); background: #fff; border: 1px solid rgba(16, 35, 61, .18); border-radius: 10px; font-size: .88rem; }
textarea.form-control { min-height: 86px; resize: vertical; }
.form-control:focus { border-color: var(--sws-blue); box-shadow: 0 0 0 .22rem rgba(22, 140, 255, .12); }
.was-validated .form-control:invalid, .form-control.is-invalid { border-color: #b42318; }
.invalid-feedback { display: none; margin-top: .25rem; color: #b42318; font-size: .75rem; }
.was-validated .form-control:invalid ~ .invalid-feedback, .form-control.is-invalid ~ .invalid-feedback { display: block; }
.form-error-summary { font-size: .8rem; }
.quote-footer { display: flex; flex-wrap: nowrap; gap: 10px; padding: 1rem 1.5rem; background: #f8fafc; border-top: 1px solid var(--sws-border); }
.quote-footer .btn { min-height: 48px; padding-inline: 1rem; font-size: .82rem; }
.btn-step-back { color: #405168; background: #fff; border: 1px solid var(--sws-border); }
.btn-step-back:hover { color: var(--sws-ink); border-color: rgba(16, 35, 61, .24); }
.btn-step-next, .btn-step-submit { margin-left: auto; }
.secure-note { display: flex; align-items: center; gap: 5px; margin: 0 auto 0 0; color: var(--sws-muted); font-size: .68rem; }
.secure-note span { color: var(--sws-success); }
.submit-note { margin: 1rem 0 0; padding: .72rem .8rem; color: #52647a; background: #f3f7fb; border: 1px solid var(--sws-border); border-radius: 10px; font-size: .7rem; line-height: 1.5; text-align: left; }
.submit-note a { color: var(--sws-blue-dark); font-weight: 800; }

.cookie-consent { position: fixed; z-index: 1040; right: 20px; bottom: 20px; width: min(680px, calc(100% - 40px)); display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 22px; padding: 20px; color: #dbe8f7; background: rgba(6, 16, 30, .98); border: 1px solid rgba(255, 255, 255, .14); border-radius: 18px; box-shadow: 0 24px 70px rgba(0, 8, 22, .42); }
.cookie-consent[hidden] { display: none; }
.cookie-consent strong { display: block; margin-bottom: .35rem; color: #fff; font-size: .92rem; }
.cookie-consent p { margin: 0; color: #aabbd0; font-size: .75rem; line-height: 1.55; }
.cookie-consent-links { display: flex; flex-wrap: wrap; gap: 14px; margin-top: .55rem; }
.cookie-consent-links a { color: var(--sws-cyan); font-size: .7rem; font-weight: 800; }
.cookie-consent-actions { display: flex; gap: 9px; }
.cookie-consent-actions .btn { min-height: 44px; padding-inline: 1rem; font-size: .72rem; white-space: nowrap; }
.btn-cookie-secondary { color: #fff; background: transparent; border: 1px solid rgba(255, 255, 255, .25); }
.btn-cookie-secondary:hover { color: #fff; background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .4); }

.thank-you-body { min-height: 100vh; display: flex; flex-direction: column; color: #fff; background: var(--sws-navy-950); }
.thank-you-header { position: relative; z-index: 2; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.thank-you-header .container { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.thank-you-header img { display: block; width: 205px; height: auto; }
.thank-you-header a:last-child { color: #fff; font-size: .86rem; font-weight: 800; text-decoration: none; }
.thank-you-main { position: relative; isolation: isolate; flex: 1; display: grid; place-items: center; overflow: hidden; padding: 70px 20px; background: linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px) 0 0 / 72px 72px, linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px) 0 0 / 72px 72px; }
.thank-you-glow { position: absolute; z-index: -1; top: 50%; left: 50%; width: 620px; height: 620px; background: radial-gradient(circle, rgba(22, 140, 255, .22), rgba(240, 19, 121, .08) 35%, transparent 67%); transform: translate(-50%, -50%); }
.thank-you-card { width: min(100%, 760px); padding: clamp(35px, 6vw, 70px); background: rgba(9, 24, 43, .92); border: 1px solid rgba(255, 255, 255, .12); border-radius: 30px; box-shadow: 0 36px 100px rgba(0, 5, 15, .45); text-align: center; backdrop-filter: blur(12px); }
.thank-you-check { display: grid; place-items: center; width: 68px; height: 68px; margin: 0 auto 24px; color: #06101e; background: var(--sws-success); border-radius: 50%; font-size: 1.8rem; font-weight: 900; box-shadow: 0 0 0 10px rgba(55, 206, 128, .1); }
.thank-you-card .section-kicker { color: var(--sws-cyan); }
.thank-you-card h1 { margin: 0 auto; font-size: clamp(2.2rem, 5.5vw, 4.5rem); font-weight: 900; line-height: 1.04; letter-spacing: -.055em; text-wrap: balance; }
.thank-you-card > p:not(.section-kicker):not(.lead-reference) { max-width: 58ch; margin: 1.3rem auto; color: #aebfd2; }
.lead-reference { margin: 0 auto 1.5rem; color: #718aa6; font-size: .75rem; }
.thank-you-callout { display: flex; flex-direction: column; align-items: center; gap: 11px; margin-top: 1.6rem; }
.thank-you-callout > span { color: #8ca0b9; font-size: .8rem; }
.thank-you-back { display: inline-flex; gap: 8px; margin-top: 1.5rem; color: #c8d8e9; font-size: .82rem; font-weight: 800; text-decoration: none; }
.thank-you-back:hover { color: var(--sws-cyan); }
.thank-you-footer { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px 24px; padding: 20px; color: #526982; background: #040b14; font-size: .68rem; text-align: center; }
.thank-you-footer nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.thank-you-footer a, .thank-you-footer button { color: #8ca0b9; }
.thank-you-footer button { padding: 0; background: transparent; border: 0; font: inherit; }
.thank-you-footer a:hover, .thank-you-footer button:hover { color: var(--sws-cyan); }

@media (max-width: 1199.98px) {
    .header-inner { grid-template-columns: 1fr auto; }
    .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(440px, .88fr); gap: 44px; }
    .hero-showcase { min-height: 500px; }
    .phone-card { width: 150px; }
    .pain-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .pain-card { min-height: 235px; }
    .pain-icon { margin-bottom: 34px; }
    .why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .footer-grid { grid-template-columns: 1.2fr .8fr 1fr; }
    .footer-links { grid-column: 2 / 4; flex-direction: row; gap: 24px; }
}

@media (max-width: 991.98px) {
    .hero { min-height: auto; }
    .hero-grid { min-height: auto; grid-template-columns: 1fr; gap: 48px; padding-block: 68px 80px; }
    .hero-copy { max-width: 760px; }
    .hero h1 { max-width: 13ch; }
    .hero-showcase { width: min(100%, 690px); min-height: 500px; margin-inline: auto; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-grid > div:nth-child(2) { border-right: 0; }
    .trust-grid > div:nth-child(-n+2) { border-bottom: 1px solid rgba(255, 255, 255, .08); }
    .section-heading-wide { grid-template-columns: 1fr; align-items: start; gap: 8px; }
    .portfolio-card { flex-basis: calc((100% - 22px) / 2); }
    .benefits-layout { grid-template-columns: 1fr; gap: 46px; }
    .section-heading-sticky, .faq-layout > .section-heading { position: static; }
    .benefit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .pricing-grid { grid-template-columns: 1fr; max-width: 660px; margin-inline: auto; }
    .package-layout { max-width: 780px; }
    .package-columns { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .package-group:last-child { grid-column: 1 / -1; }
    .package-addons ul { grid-template-columns: 1fr; }
    .pricing-card-popular { transform: none; }
    .pricing-summary { min-height: 0; }
    .review-grid { grid-template-columns: 1fr; max-width: 720px; margin-inline: auto; }
    .review-card { min-height: 0; }
    .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px 0; }
    .process-grid::before { display: none; }
    .faq-layout { grid-template-columns: 1fr; gap: 46px; }
}

@media (max-width: 767.98px) {
    .discount-popup { padding: 12px; }
    .discount-popup-card { grid-template-columns: 1fr; grid-template-rows: auto minmax(0, 1fr); max-height: calc(100vh - 24px); border-radius: 22px; }
    .discount-offer-panel { min-height: 0; padding: 26px 26px 24px; }
    .discount-offer-panel::before { right: -110px; bottom: -150px; }
    .discount-amount { margin: 6px 0 12px; font-size: 4.3rem; }
    .discount-offer-panel h2 { max-width: 12ch; font-size: 1.85rem; }
    .discount-offer-panel > div > p:not(.section-kicker) { display: none; }
    .discount-benefits { display: flex; flex-wrap: wrap; gap: 8px 16px; margin-top: 19px; }
    .discount-benefits li { font-size: .72rem; }
    .discount-form-panel { padding: 26px; }
}

@media (max-width: 575.98px) {
    .modal-fullscreen-sm-down { width: 100%; max-width: none; min-height: 100%; margin: 0; }
    .modal-fullscreen-sm-down .modal-content { min-height: 100vh; border-radius: 0; }
    body { padding-bottom: calc(58px + env(safe-area-inset-bottom)); font-size: 16px; }
    .header-inner { min-height: 68px; gap: 12px; }
    .brand img { width: 132px; }
    .header-actions { gap: 8px; }
    .header-phone { min-width: 112px; min-height: 48px; padding: 0 .85rem; border-radius: 12px; font-size: .78rem; }
    .header-phone svg { display: block; }
    .header-quote { min-height: 44px; padding-inline: .78rem; font-size: .76rem; }
    .hero-grid { padding-block: 44px 60px; }
    .eyebrow { margin-bottom: .85rem; font-size: .65rem; letter-spacing: .11em; }
    .hero h1 { max-width: 12ch; font-size: clamp(2.45rem, 12.5vw, 3.45rem); }
    .hero-lede { margin-top: 1.1rem; font-size: 1rem; }
    .offer-line { align-items: center; gap: 9px; margin-bottom: .85rem; font-size: .88rem; }
    .offer-line strong { font-size: 1.8rem; }
    .hero-benefits { display: grid; grid-template-columns: 1fr; gap: 5px; margin-bottom: 1.25rem; }
    .hero-actions { display: grid; grid-template-columns: 1fr; }
    .hero-actions .btn { width: 100%; }
    .hero-actions .btn-call { display: inline-flex; }
    .hero-microcopy { text-align: center; }
    .rating-row { display: grid; grid-template-columns: 1fr 1fr; }
    .rating-chip { justify-content: center; flex-wrap: wrap; gap: 4px 7px; padding-inline: .45rem; }
    .hero-showcase { min-height: 330px; margin-top: 4px; }
    .browser-card { top: 46%; border-radius: 14px; }
    .browser-bar { height: 26px; }
    .browser-address { max-width: 170px; }
    .phone-card { right: 0; bottom: -8px; width: 100px; padding: 5px; border-radius: 19px; }
    .phone-card img { border-radius: 15px; }
    .phone-speaker { top: 8px; width: 30px; height: 3px; }
    .showcase-note { left: 5px; bottom: 13px; padding: .6rem .7rem; }
    .trust-grid > div { padding: .9rem .55rem; font-size: .75rem; }
    .choice-grid { grid-template-columns: 1fr; }
    .section { padding-block: 72px; }
    .section-heading { margin-bottom: 36px; }
    .section h2 { font-size: clamp(2rem, 11vw, 3rem); }
    .section-heading > p:not(.section-kicker), .why-intro > p:not(.section-kicker) { font-size: .98rem; }
    .portfolio-carousel { display: grid; grid-template-columns: 48px minmax(0, 1fr) 48px; align-items: center; gap: 12px; }
    .portfolio-grid { grid-row: 1; grid-column: 1 / -1; gap: 14px; margin-inline: -2px; padding-inline: 2px; }
    .portfolio-card { flex-basis: 88%; }
    .portfolio-nav { position: static; grid-row: 2; width: 44px; height: 44px; }
    .portfolio-nav-prev { grid-column: 1; }
    .portfolio-nav-next { grid-column: 3; }
    .portfolio-dots { grid-row: 2; grid-column: 2; margin: 0; }
    .portfolio-meta { align-items: flex-start; }
    .portfolio-meta p { white-space: normal; text-align: right; }
    .pain-grid { grid-template-columns: 1fr; }
    .pain-card { min-height: 220px; }
    .benefit-grid { grid-template-columns: 1fr; }
    .benefit-card { min-height: 220px; }
    .benefit-icon { margin-bottom: 30px; }
    .combo-package-top { grid-template-columns: 1fr; align-items: start; gap: 22px; }
    .combo-package-offer { min-width: 0; }
    .package-columns { grid-template-columns: 1fr; }
    .package-group:last-child { grid-column: auto; }
    .package-group { padding: 20px; }
    .package-addons li { align-items: flex-start; }
    .why-intro { margin-bottom: 34px; }
    .why-grid { grid-template-columns: 1fr; gap: 14px; border: 0; }
    .why-grid article { min-height: 0; padding: 24px; background: linear-gradient(145deg, rgba(255, 255, 255, .055), rgba(46, 213, 244, .025)); border: 1px solid rgba(127, 227, 246, .15); border-radius: 18px; box-shadow: 0 14px 34px rgba(0, 8, 22, .18); }
    .why-grid .why-icon { width: 44px; height: 44px; margin-bottom: 20px; border-radius: 13px; }
    .why-grid h3 { margin-bottom: .45rem; }
    .why-grid p { line-height: 1.6; }
    .review-platforms { display: grid; grid-template-columns: 1fr; }
    .review-platforms > div, .review-platforms > a { justify-content: center; }
    .process-grid { grid-template-columns: 1fr; gap: 14px; }
    .process-grid li { display: grid; grid-template-columns: 46px minmax(0, 1fr); column-gap: 16px; align-items: center; padding: 22px; background: rgba(255, 255, 255, .045); border: 1px solid rgba(118, 230, 248, .14); border-radius: 18px; text-align: left; }
    .process-number { grid-row: 1 / 3; width: 42px; height: 42px; margin: 0; border-width: 4px; }
    .process-grid h3 { grid-column: 2; margin: 0 0 .35rem; font-size: .92rem; }
    .process-grid p { grid-column: 2; line-height: 1.55; }
    .process-note { margin-top: 28px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-links { grid-column: auto; flex-direction: column; gap: 8px; }
    .footer-bottom { align-items: flex-start; flex-direction: column; }
    .quote-modal .modal-content { max-height: 100vh; border-radius: 0; }
    .quote-modal .modal-header { padding: 1.15rem 1rem .75rem; }
    .quote-modal .modal-title { font-size: 1.3rem; }
    .quote-modal .modal-body { min-height: 0; padding: 0 1rem 1rem; }
    .contact-field-grid { grid-template-columns: 1fr; }
    .form-field-wide { grid-column: auto; }
    .quote-footer { position: sticky; bottom: 0; z-index: 2; padding: .85rem 1rem calc(.85rem + env(safe-area-inset-bottom)); }
    .secure-note { display: none; }
    .submit-note { margin-top: .8rem; font-size: .66rem; }
    .quote-footer .btn { min-height: 50px; }
    .cookie-consent { right: 10px; left: 10px; bottom: calc(68px + env(safe-area-inset-bottom)); width: auto; grid-template-columns: 1fr; gap: 14px; padding: 16px; border-radius: 14px; }
    .cookie-consent-actions { display: grid; grid-template-columns: 1fr 1fr; }
    .cookie-consent-actions .btn { width: 100%; padding-inline: .55rem; }
    .discount-popup { padding: 8px; }
    .discount-popup-card { max-height: calc(100vh - 16px); border-radius: 18px; }
    .discount-offer-panel { padding: 18px 20px 15px; }
    .discount-offer-panel .section-kicker { margin-bottom: .45rem; font-size: .62rem; }
    .discount-amount { margin: 2px 0 8px; font-size: 3.25rem; }
    .discount-offer-panel h2 { max-width: 15ch; font-size: 1.3rem; }
    .discount-benefits { margin-top: 11px; }
    .discount-benefits li:nth-child(n+3) { display: none; }
    .discount-form-panel { padding: 20px; }
    .discount-form-panel h3 { padding-right: 34px; font-size: 1.5rem; }
    .discount-form-intro { margin: .5rem 0 .85rem; font-size: .75rem; }
    .discount-field-grid { grid-template-columns: 1fr; gap: 8px; }
    .discount-field-wide { grid-column: auto; }
    .discount-field input { min-height: 43px; }
    .discount-form-panel form { padding-bottom: calc(88px + env(safe-area-inset-bottom)); }
    .discount-submit { position: fixed; z-index: 6; right: 20px; bottom: max(14px, env(safe-area-inset-bottom)); left: 20px; width: auto !important; margin: 0 !important; box-shadow: 0 14px 34px rgba(9, 72, 135, .3); }
    .discount-popup-card::after { content: ""; position: absolute; z-index: 5; right: 0; bottom: 0; left: 0; height: calc(78px + env(safe-area-inset-bottom)); pointer-events: none; background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff 28%); }
    .discount-close { top: 12px; right: 12px; width: 34px; height: 34px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
