:root {
    --blue: #0265ff;
    --blue-2: #2a7cff;
    --blue-dark: #0047c7;
    --ink: #061226;
    --ink-2: #14213d;
    --muted: #68748a;
    --soft: #f4f7fb;
    --soft-2: #eaf2ff;
    --line: #dbe5f4;
    --white: #ffffff;
    --dark: #050b15;
    --dark-2: #081526;
    --glass: rgba(255, 255, 255, 0.1);
    --glass-line: rgba(255, 255, 255, 0.18);
    --accent: #d7ff42;
    --success: #0f8d4d;
    --danger: #c62828;
    --radius: 8px;
    --container: 1180px;
    --shadow: 0 24px 70px rgba(6, 18, 38, 0.14);
    --blue-shadow: 0 24px 70px rgba(2, 101, 255, 0.24);
}

* {
    box-sizing: border-box;
}

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

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

body {
    margin: 0;
    font-family: "Open Sans", Arial, "Segoe UI", sans-serif;
    background: var(--white);
    color: var(--ink);
    line-height: 1.65;
    text-align: right;
    overflow-x: hidden;
}

body.nav-open {
    overflow: hidden;
}

img,
svg {
    display: block;
}

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

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

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

button {
    cursor: pointer;
}

::selection {
    background: rgba(2, 101, 255, 0.18);
}

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

.narrow {
    max-width: 860px;
}

.skip-link {
    position: fixed;
    top: 12px;
    right: 12px;
    z-index: 1000;
    transform: translateY(-160%);
    background: var(--blue);
    color: var(--white);
    padding: 10px 14px;
    border-radius: var(--radius);
    font-weight: 800;
}

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 90;
    background: rgba(255, 255, 255, 0.86);
    border-bottom: 1px solid rgba(219, 229, 244, 0.76);
    backdrop-filter: blur(18px);
    transition: box-shadow 0.2s ease, background 0.2s ease;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 34px rgba(6, 18, 38, 0.08);
}

.header-inner {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    color: var(--ink);
    font-weight: 900;
}

.brand-logo {
    width: 178px;
    height: auto;
}

.brand-logo-white {
    width: 190px;
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), #3d8bff);
    color: var(--white);
    font-size: 1.9rem;
    line-height: 1;
    box-shadow: 0 12px 28px rgba(2, 101, 255, 0.25);
}

.brand-text {
    font-size: 1.2rem;
    line-height: 1;
    text-transform: lowercase;
}

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

.site-nav a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    border-radius: var(--radius);
    padding: 8px 13px;
    color: var(--ink-2);
    font-size: 0.94rem;
    font-weight: 800;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    background: var(--soft-2);
    color: var(--blue);
    outline: none;
}

.site-nav .nav-cta {
    background: var(--blue);
    color: var(--white);
    box-shadow: 0 12px 28px rgba(2, 101, 255, 0.24);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
    background: var(--blue-dark);
    color: var(--white);
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span:not(.sr-only) {
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: var(--ink);
}

.hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 18%, rgba(2, 101, 255, 0.32), transparent 34%),
        linear-gradient(135deg, #06162a 0%, #06101e 42%, #02060d 100%);
    color: var(--white);
    padding: 70px 0 78px;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(215, 255, 66, 0.8), rgba(2, 101, 255, 0.9), transparent);
}

.hero-noise {
    position: absolute;
    inset: 0;
    opacity: 0.38;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(180deg, #000, transparent 88%);
}

.hero-shell {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(430px, 0.92fr);
    gap: 42px;
    align-items: center;
}

.hero-copy h1,
.section-heading h2,
.split-heading h2,
.difference-copy h2,
.growth-copy h2,
.lead-copy h2,
.thanks-card h1 {
    margin: 0;
    line-height: 1.12;
    letter-spacing: 0;
}

.hero-copy h1 {
    max-width: 760px;
    margin-top: 18px;
    font-size: 3.45rem;
    font-weight: 900;
}

.hero-copy h1 span {
    display: block;
}

.hero-logo {
    width: 174px;
    height: auto;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.92);
    padding: 10px 12px;
    margin-bottom: 18px;
    box-shadow: 0 14px 40px rgba(2, 101, 255, 0.12);
}

.hero-lead {
    max-width: 700px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.13rem;
}

.eyebrow,
.section-kicker,
.mini-label,
.tag {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 30px;
    border-radius: 999px;
    padding: 5px 11px;
    background: rgba(2, 101, 255, 0.1);
    color: var(--blue);
    font-size: 0.82rem;
    font-weight: 900;
}

.glass-pill,
.hero .section-kicker,
.portfolio-section .section-kicker,
.growth-section .section-kicker,
.lead-section .section-kicker {
    color: var(--accent);
    background: rgba(215, 255, 66, 0.12);
    border: 1px solid rgba(215, 255, 66, 0.18);
}

.hero-offer {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    width: min(100%, 620px);
    display: grid;
    gap: 12px;
    margin-top: 24px;
    padding: 24px;
    border: 1px solid rgba(215, 255, 66, 0.28);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.09);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.22), 0 0 38px rgba(215, 255, 66, 0.08);
    backdrop-filter: blur(16px);
}

.hero-offer::before {
    content: "";
    position: absolute;
    inset: -180px;
    z-index: -2;
    background: conic-gradient(from 0deg, transparent 0deg, transparent 110deg, rgba(215, 255, 66, 0.85) 150deg, rgba(2, 101, 255, 0.55) 190deg, transparent 240deg, transparent 360deg);
    animation: offerGlowSpin 13s linear infinite;
}

.hero-offer::after {
    content: "";
    position: absolute;
    inset: 1px;
    z-index: -1;
    border-radius: calc(var(--radius) - 1px);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.045)),
        rgba(8, 18, 32, 0.92);
    backdrop-filter: blur(18px);
}

.offer-badge {
    width: fit-content;
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 5px 11px;
    background: rgba(215, 255, 66, 0.13);
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 900;
}

.offer-main {
    display: grid;
    justify-items: start;
    gap: 7px;
}

.offer-main small {
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 999px;
    padding: 3px 10px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.78);
    font-weight: 900;
}

.hero-offer strong {
    font-size: clamp(2.6rem, 6vw, 4.25rem);
    line-height: 1;
}

.hero-offer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
}

.offer-includes {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 4px 0 0;
    padding: 0;
    list-style: none;
}

.offer-includes li {
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 999px;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.82rem;
    font-weight: 900;
}

@keyframes offerGlowSpin {
    to {
        transform: rotate(1turn);
    }
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.btn {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    padding: 12px 20px;
    font-weight: 900;
    line-height: 1.2;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-2px);
    outline: none;
}

.btn-primary {
    background: var(--blue);
    color: var(--white);
    box-shadow: 0 16px 34px rgba(2, 101, 255, 0.3);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background: var(--blue-dark);
}

.btn-glass {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
}

.btn-glass:hover,
.btn-glass:focus-visible {
    background: rgba(255, 255, 255, 0.14);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.86);
    color: var(--blue);
    border-color: rgba(2, 101, 255, 0.22);
}

.btn-outline:hover,
.btn-outline:focus-visible {
    border-color: rgba(2, 101, 255, 0.45);
    box-shadow: 0 14px 34px rgba(2, 101, 255, 0.14);
}

.btn-full {
    width: 100%;
}

.hero-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    max-width: 560px;
    margin: 22px 0 0;
}

.hero-proof div {
    min-height: 88px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    padding: 14px;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(12px);
}

.hero-proof dt {
    color: var(--white);
    font-size: 1.62rem;
    font-weight: 900;
    line-height: 1;
    unicode-bidi: isolate;
}

.hero-proof dt,
.trust-stats strong {
    unicode-bidi: isolate;
}

.hero-proof dd {
    margin: 7px 0 0;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 800;
    font-size: 0.88rem;
}

.hero-visual {
    min-width: 0;
}

.hero-fan {
    --phone-w: clamp(128px, 11vw, 164px);
    --phone-border: clamp(5px, 0.6vw, 8px);
    position: relative;
    width: min(100%, 560px);
    min-height: 540px;
    margin-inline: auto;
}

.hero-fan::before {
    content: "";
    position: absolute;
    inset: 12% 7% 9%;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(2, 101, 255, 0.4), transparent 58%),
        radial-gradient(circle at 78% 62%, rgba(215, 255, 66, 0.16), transparent 38%);
    filter: blur(18px);
    opacity: 0.78;
    animation: softPulse 7s ease-in-out infinite;
}

.fan-stage {
    position: relative;
    min-height: 480px;
    perspective: 1200px;
}

.fan-phone {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: var(--z, 1);
    width: var(--phone-w);
    overflow: hidden;
    border: var(--phone-border) solid rgba(11, 18, 31, 0.96);
    border-radius: clamp(20px, 2vw, 30px);
    background: #101826;
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%) translate(var(--x), var(--y)) rotate(var(--r)) scale(var(--s, 1));
    transition: transform 0.35s ease, filter 0.35s ease;
}

.fan-phone::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(115deg, rgba(255, 255, 255, 0.24), transparent 24%, transparent 76%, rgba(255, 255, 255, 0.13));
    mix-blend-mode: screen;
}

.fan-phone img {
    width: 100%;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    object-position: top center;
}

.fan-1 {
    --x: -178px;
    --y: 36px;
    --r: -18deg;
    --s: 0.91;
    --z: 1;
}

.fan-2 {
    --x: -88px;
    --y: -8px;
    --r: -7deg;
    --s: 1;
    --z: 3;
}

.fan-3 {
    --x: 8px;
    --y: -18px;
    --r: 4deg;
    --s: 1.06;
    --z: 5;
}

.fan-4 {
    --x: 104px;
    --y: 2px;
    --r: 12deg;
    --s: 0.99;
    --z: 4;
}

.fan-5 {
    --x: 178px;
    --y: 48px;
    --r: 20deg;
    --s: 0.89;
    --z: 2;
}

.hero-fan:hover .fan-phone {
    filter: saturate(1.05) brightness(1.05);
}

.hero-chips {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 18px;
    z-index: 8;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-chips span {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    padding: 7px 13px;
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(18px);
    font-size: 0.9rem;
    font-weight: 900;
}

@keyframes softPulse {
    50% {
        opacity: 1;
        transform: scale(1.04);
    }
}

.hero-showcase {
    width: min(100%, 540px);
    margin-inline: auto;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06));
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32), var(--blue-shadow);
    backdrop-filter: blur(24px);
}

.showcase-header {
    min-height: 48px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.1);
}

.showcase-header span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.48);
}

.showcase-header p {
    margin: 0 auto 0 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.82rem;
    direction: ltr;
}

.showcase-stage {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    min-height: 520px;
    padding: 24px;
    background:
        radial-gradient(circle at 30% 22%, rgba(2, 101, 255, 0.22), transparent 42%),
        rgba(5, 11, 21, 0.42);
}

.showcase-phone {
    align-self: center;
    overflow: hidden;
    border: 8px solid #101826;
    border-radius: 28px;
    background: #101826;
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.34);
}

.showcase-phone img {
    width: 100%;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    object-position: top center;
    border-radius: 18px;
}

.second-phone {
    transform: translateY(44px);
    opacity: 0.82;
}

.showcase-benefits {
    position: absolute;
    right: 22px;
    left: 22px;
    bottom: 22px;
    display: grid;
    gap: 4px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
    padding: 16px;
}

.showcase-benefits span {
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 900;
}

.showcase-benefits strong {
    color: var(--white);
    font-size: 1.06rem;
}

.showcase-benefits small {
    color: rgba(255, 255, 255, 0.72);
    font-weight: 800;
}

.browser-glass {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05));
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32), var(--blue-shadow);
    backdrop-filter: blur(22px);
}

.browser-top {
    min-height: 48px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
}

.browser-top span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
}

.browser-top p {
    margin: 0 auto 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.82rem;
    direction: ltr;
}

.browser-body {
    position: relative;
    min-height: 560px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 250px;
    gap: 20px;
    padding: 26px;
    background:
        linear-gradient(135deg, rgba(2, 101, 255, 0.12), rgba(215, 255, 66, 0.06)),
        rgba(5, 11, 21, 0.46);
}

.dashboard-card,
.floating-card {
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(14px);
}

.primary-card {
    align-self: start;
    padding: 24px;
}

.primary-card h2 {
    max-width: 360px;
    margin: 14px 0 0;
    color: var(--white);
    font-size: 1.65rem;
    line-height: 1.22;
}

.metric-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 24px;
}

.metric-row div {
    min-height: 82px;
    display: grid;
    align-content: center;
    gap: 4px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.08);
    padding: 12px;
}

.metric-row strong {
    color: var(--accent);
    font-size: 1.15rem;
}

.metric-row span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.82rem;
    font-weight: 800;
}

.phone-stack {
    position: relative;
    min-height: 480px;
}

.phone-card {
    position: absolute;
    width: 178px;
    border: 8px solid #101826;
    border-radius: 28px;
    overflow: hidden;
    background: #101826;
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.36);
}

.phone-card img {
    width: 100%;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    object-position: top center;
    border-radius: 18px;
}

.phone-main {
    right: 16px;
    top: 10px;
    z-index: 2;
}

.phone-back {
    right: 94px;
    top: 118px;
    z-index: 1;
    opacity: 0.74;
    transform: rotate(-3deg);
}

.floating-card {
    position: absolute;
    display: grid;
    gap: 2px;
    min-width: 190px;
    padding: 14px;
}

.floating-card strong {
    color: var(--white);
    font-size: 0.94rem;
}

.floating-card small {
    color: rgba(255, 255, 255, 0.68);
    font-weight: 700;
}

.card-google {
    right: 28px;
    bottom: 36px;
}

.card-speed {
    left: 28px;
    bottom: 92px;
}

.icon-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}

.icon-dot.blue {
    background: var(--blue-2);
}

.icon-dot.lime {
    background: var(--accent);
}

.section {
    padding: 92px 0;
}

.trust-band {
    padding: 58px 0;
    background: linear-gradient(180deg, #ffffff, #f7faff);
    border-bottom: 1px solid var(--line);
}

.trust-grid,
.split-heading,
.difference-grid,
.growth-grid,
.lead-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: 42px;
    align-items: center;
}

.trust-copy h2,
.split-heading h2,
.section-heading h2,
.difference-copy h2,
.growth-copy h2,
.lead-copy h2 {
    margin-top: 12px;
    font-size: 2.45rem;
    font-weight: 900;
}

.trust-copy h2 {
    max-width: 520px;
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.trust-stats article {
    min-height: 118px;
    display: grid;
    align-content: center;
    gap: 4px;
    border: 1px solid rgba(2, 101, 255, 0.12);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.82);
    padding: 18px;
    box-shadow: 0 16px 44px rgba(6, 18, 38, 0.08);
}

.trust-stats strong {
    color: var(--blue);
    font-size: 2.15rem;
    line-height: 1;
}

.trust-stats span {
    color: var(--muted);
    font-weight: 800;
}

.logo-strip {
    display: grid;
    gap: 18px;
    margin-top: 34px;
}

.logo-strip > span {
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 900;
    text-align: center;
}

.logo-cloud {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 10px;
}

.logo-cloud img {
    width: 100%;
    height: 74px;
    object-fit: contain;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    padding: 12px;
    filter: grayscale(1);
    opacity: 0.78;
}

.portfolio-section {
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(2, 101, 255, 0.18), transparent 44%),
        var(--dark);
    color: var(--white);
}

.portfolio-heading {
    display: grid;
    justify-items: center;
    gap: 14px;
    margin-bottom: 34px;
    text-align: center;
}

.portfolio-heading h2 {
    margin: 0;
    color: var(--white);
    font-size: 2.35rem;
    line-height: 1.14;
}

.portfolio-slider {
    position: relative;
    width: 100vw;
    margin-inline: calc(50% - 50vw);
}

.portfolio-slider::before,
.portfolio-slider::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 12px;
    z-index: 3;
    width: 78px;
    pointer-events: none;
}

.portfolio-slider::before {
    right: 0;
    background: linear-gradient(90deg, transparent, var(--dark));
}

.portfolio-slider::after {
    left: 0;
    background: linear-gradient(90deg, var(--dark), transparent);
}

.portfolio-track {
    display: flex;
    gap: clamp(16px, 1.6vw, 26px);
    overflow-x: auto;
    direction: ltr;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scroll-padding-inline: clamp(10px, 1.35vw, 18px);
    padding: 10px clamp(10px, 1.35vw, 18px) 34px;
    margin-inline: 0;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    cursor: grab;
    touch-action: pan-x pan-y;
    -webkit-overflow-scrolling: touch;
    will-change: scroll-position;
}

.portfolio-track.is-auto {
    scroll-snap-type: none;
}

.portfolio-track::-webkit-scrollbar {
    display: none;
}

.portfolio-track figure {
    flex: 0 0 clamp(238px, 19vw, 292px);
    height: clamp(510px, 38vw, 620px);
    margin: 0;
    scroll-snap-align: start;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06)),
        rgba(255, 255, 255, 0.08);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
    transform: translateZ(0);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.portfolio-track.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
    user-select: none;
}

.portfolio-track,
.portfolio-track * {
    -webkit-user-drag: none;
}

.portfolio-track img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.45s ease;
}

.portfolio-track figure:hover img {
    transform: scale(1.025);
}

.portfolio-track figure:hover {
    border-color: rgba(215, 255, 66, 0.36);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(215, 255, 66, 0.08);
    transform: translateY(-4px);
}

.slider-btn {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    color: var(--white);
    backdrop-filter: blur(16px);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
    transform: translateY(-50%);
}

.slider-btn svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.slider-left {
    left: 22px;
}

.slider-right {
    right: 22px;
}

.split-heading {
    margin-bottom: 42px;
}

.split-heading p,
.section-heading p,
.difference-copy p,
.growth-copy p,
.lead-copy p {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 1.05rem;
}

.portfolio-section .split-heading p,
.growth-section .growth-copy p,
.lead-section .lead-copy p {
    color: rgba(255, 255, 255, 0.72);
}

.portfolio-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 16px;
}

.work-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.24);
}

.work-card.tall {
    grid-row: span 2;
}

.work-card.wide {
    grid-column: span 2;
}

.work-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.45s ease, filter 0.45s ease;
}

.work-card:hover img {
    transform: scale(1.035);
    filter: saturate(1.08);
}

.work-card div {
    position: absolute;
    right: 14px;
    left: 14px;
    bottom: 14px;
    display: grid;
    gap: 4px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    background: rgba(5, 11, 21, 0.62);
    backdrop-filter: blur(14px);
    padding: 12px;
}

.work-card span {
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 900;
}

.work-card h3 {
    margin: 0;
    color: var(--white);
    font-size: 1rem;
}

.problem-section,
.pricing-section,
.faq-section {
    background: var(--white);
}

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

.section-heading .section-kicker {
    margin-inline: auto;
}

.cards-grid {
    display: grid;
    gap: 16px;
}

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

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

.insight-card,
.method-card,
.price-card,
.testimonial-card,
.growth-cards article,
.timeline article,
.faq-list details {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
}

.insight-card {
    min-height: 280px;
    padding: 28px;
    box-shadow: 0 16px 42px rgba(6, 18, 38, 0.06);
}

.svg-icon {
    width: 46px;
    height: 46px;
    display: inline-grid;
    place-items: center;
    border-radius: var(--radius);
    background: var(--soft-2);
    color: var(--blue);
    margin-bottom: 18px;
}

.svg-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.insight-card h3,
.method-card h3,
.price-card h3,
.growth-cards h3,
.timeline h3,
.testimonial-card strong {
    margin: 0;
    line-height: 1.25;
}

.insight-card p,
.method-card p,
.price-card p,
.growth-cards p,
.timeline p,
.testimonial-card p {
    margin: 12px 0 0;
    color: var(--muted);
}

.difference-section {
    background:
        linear-gradient(180deg, #f7faff, #eef4ff);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.difference-copy .btn {
    margin-top: 26px;
}

.method-stack {
    display: grid;
    gap: 14px;
}

.method-card {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 16px;
    align-items: start;
    padding: 20px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(12px);
    box-shadow: 0 16px 45px rgba(6, 18, 38, 0.07);
}

.method-card .svg-icon {
    margin: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.86), transparent 32%),
        linear-gradient(135deg, rgba(2, 101, 255, 0.14), rgba(2, 101, 255, 0.06));
    box-shadow: inset 0 0 0 1px rgba(2, 101, 255, 0.08);
}

.method-card .svg-icon svg {
    width: 26px;
    height: 26px;
    stroke-width: 2.05;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.95fr 0.95fr;
    gap: 20px;
    align-items: stretch;
}

.price-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 28px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.84));
    box-shadow: 0 16px 46px rgba(6, 18, 38, 0.07);
    transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.price-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 18% 0%, rgba(2, 101, 255, 0.11), transparent 28%);
    opacity: 0;
    transition: opacity 0.24s ease;
}

.price-card:hover {
    border-color: rgba(2, 101, 255, 0.22);
    box-shadow: 0 22px 58px rgba(6, 18, 38, 0.1);
    transform: translateY(-3px);
}

.price-card:hover::before {
    opacity: 1;
}

.price-card > * {
    position: relative;
    z-index: 1;
}

.price-card.featured {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.14);
    background:
        radial-gradient(circle at 18% 0%, rgba(215, 255, 66, 0.18), transparent 24%),
        linear-gradient(135deg, rgba(2, 101, 255, 0.95), rgba(6, 18, 38, 0.98)),
        var(--blue);
    box-shadow: var(--blue-shadow);
}

.price-card.featured .tag {
    color: var(--accent);
    background: rgba(215, 255, 66, 0.13);
    border: 1px solid rgba(215, 255, 66, 0.16);
}

.price-card.featured p,
.price-card.featured .check-list li {
    color: rgba(255, 255, 255, 0.78);
}

.package-fit {
    min-height: 76px;
}

.price-card .btn {
    margin-top: auto;
}

.tag {
    margin-bottom: 18px;
}

.price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 20px 0 6px;
}

.price strong {
    color: var(--blue);
    font-size: 3.5rem;
    line-height: 0.9;
    font-weight: 900;
}

.price-card.featured .price strong {
    color: var(--white);
}

.price span {
    color: var(--ink-2);
    font-weight: 900;
}

.price-card.featured .price span {
    color: rgba(255, 255, 255, 0.9);
}

.text-price strong {
    font-size: 2.4rem;
}

.price-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0 14px;
}

.price-meta span,
.package-highlight {
    border: 1px solid rgba(255, 255, 255, 0.13);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
}

.price-meta span {
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 3px 9px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.8rem;
    font-weight: 900;
}

.price-meta span:first-child {
    color: var(--accent);
    border-color: rgba(215, 255, 66, 0.22);
    background: rgba(215, 255, 66, 0.12);
}

.package-highlight {
    display: grid;
    gap: 3px;
    border-radius: var(--radius);
    padding: 12px;
    color: var(--white);
}

.package-highlight strong {
    color: var(--accent);
}

.package-highlight span {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.9rem;
}

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

.check-list li {
    position: relative;
    padding-right: 28px;
    color: var(--muted);
}

.check-list li::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0.48em;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--blue);
}

.check-list li::after {
    content: "✓";
    position: absolute;
    right: 0;
    top: 0.48em;
    width: 16px;
    height: 16px;
    display: grid;
    place-items: center;
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 900;
    line-height: 1;
}

.check-list.inverse li {
    color: rgba(255, 255, 255, 0.8);
}

.check-list.inverse li::before {
    background: var(--accent);
}

.check-list.inverse li::after {
    border-color: var(--ink);
}

.process-section {
    background: var(--soft);
}

.timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.timeline article {
    min-height: 230px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 12px 36px rgba(6, 18, 38, 0.06);
}

.timeline span {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    border-radius: 999px;
    background: var(--soft-2);
    color: var(--blue);
    padding: 5px 11px;
    font-weight: 900;
    margin-bottom: 18px;
}

.growth-section {
    padding: 92px 0;
    background:
        radial-gradient(circle at 76% 22%, rgba(2, 101, 255, 0.28), transparent 34%),
        linear-gradient(135deg, #07111f, #02060d);
    color: var(--white);
}

.growth-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.growth-cards article {
    padding: 22px;
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
}

.growth-cards .svg-icon {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent);
}

.growth-cards h3 {
    color: var(--white);
}

.growth-cards p {
    color: rgba(255, 255, 255, 0.72);
}

.growth-site-btn {
    width: fit-content;
    margin-top: 26px;
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(14px);
}

.growth-site-btn:hover {
    border-color: rgba(215, 255, 66, 0.44);
    background: rgba(255, 255, 255, 0.13);
    color: var(--accent);
}

.testimonial-section {
    overflow: hidden;
    background:
        linear-gradient(180deg, #ffffff, #f7faff);
}

.testimonial-slider {
    position: relative;
    width: 100vw;
    margin-inline: calc(50% - 50vw);
    overflow: hidden;
    padding: 4px 0 18px;
    mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}

.testimonial-slider::before,
.testimonial-slider::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    width: clamp(44px, 8vw, 110px);
    pointer-events: none;
}

.testimonial-slider::before {
    right: 0;
    background: linear-gradient(90deg, transparent, rgba(247, 250, 255, 0.96));
}

.testimonial-slider::after {
    left: 0;
    background: linear-gradient(90deg, rgba(247, 250, 255, 0.96), transparent);
}

.testimonial-track {
    display: flex;
    gap: 18px;
    width: max-content;
    padding-inline: max(20px, calc((100vw - var(--container)) / 2));
    animation: testimonialMarquee 48s linear infinite;
    will-change: transform;
}

.testimonial-slider:hover .testimonial-track,
.testimonial-slider:focus-within .testimonial-track {
    animation-play-state: paused;
}

.testimonial-card {
    position: relative;
    flex: 0 0 clamp(292px, 29vw, 382px);
    min-height: 260px;
    display: grid;
    align-content: start;
    padding: 26px;
    border-color: rgba(219, 229, 244, 0.9);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(244, 247, 251, 0.86));
    box-shadow: 0 16px 44px rgba(6, 18, 38, 0.07);
    transform: translateZ(0);
}

.featured-testimonial {
    border-color: rgba(2, 101, 255, 0.24);
    box-shadow: 0 20px 58px rgba(2, 101, 255, 0.14);
}

.testimonial-card img {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 18px;
}

.testimonial-mark {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: var(--radius);
    background: var(--soft-2);
    color: var(--blue);
    font-size: 2.3rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 18px;
}

.testimonial-card p {
    font-size: 1rem;
    line-height: 1.75;
}

.testimonial-card strong {
    margin-top: 18px;
    color: var(--ink);
}

@keyframes testimonialMarquee {
    to {
        transform: translateX(50%);
    }
}

.lead-section {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(2, 101, 255, 0.22), rgba(215, 255, 66, 0.08)),
        var(--dark);
    color: var(--white);
}

.lead-grid {
    align-items: start;
}

.lead-copy {
    position: sticky;
    top: 110px;
}

.glass-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(18px);
    padding: 26px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.26);
}

.field,
.consent {
    display: grid;
    gap: 7px;
}

.field-wide {
    grid-column: 1 / -1;
}

.field span,
.consent span {
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.9rem;
    font-weight: 900;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.92);
    color: var(--ink);
    padding: 11px 13px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.field textarea {
    min-height: 114px;
    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(2, 101, 255, 0.18);
    background: var(--white);
}

[aria-invalid="true"] {
    border-color: var(--danger) !important;
}

.consent {
    grid-template-columns: 18px 1fr;
    align-items: start;
}

.consent input {
    width: 18px;
    height: 18px;
    margin-top: 4px;
    accent-color: var(--blue);
}

.consent a {
    color: var(--accent);
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.hp-field {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.form-status {
    min-height: 22px;
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 900;
}

.form-status.is-error {
    color: #ffb7b7;
}

.is-busy .btn {
    opacity: 0.76;
    cursor: wait;
}

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

.faq-list details {
    overflow: hidden;
    padding: 0;
    border: 1px solid rgba(219, 229, 244, 0.9);
    border-radius: 14px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(244, 247, 251, 0.82)),
        var(--white);
    box-shadow: 0 12px 34px rgba(6, 18, 38, 0.05);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.faq-list details[open],
.faq-list details.is-opening {
    border-color: rgba(2, 101, 255, 0.24);
    background:
        radial-gradient(circle at 8% 0%, rgba(2, 101, 255, 0.12), transparent 30%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(234, 242, 255, 0.74));
    box-shadow: 0 18px 48px rgba(2, 101, 255, 0.1);
}

.faq-list summary {
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    position: relative;
    cursor: pointer;
    color: var(--ink);
    font-weight: 900;
    padding: 18px 20px;
    list-style: none;
}

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

.faq-list summary:focus-visible {
    outline: 3px solid rgba(2, 101, 255, 0.24);
    outline-offset: -4px;
}

.faq-list summary::after {
    content: "+";
    width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50%;
    background: rgba(2, 101, 255, 0.1);
    color: var(--blue);
    font-size: 1.15rem;
    box-shadow: inset 0 0 0 1px rgba(2, 101, 255, 0.12);
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.faq-list details[open] summary::after {
    content: "+";
    transform: rotate(45deg);
    background: var(--blue);
    color: var(--white);
}

.faq-answer {
    overflow: hidden;
    transition: height 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-list p {
    margin: 0;
    padding: 0 20px 20px;
    color: var(--muted);
    font-size: 1.02rem;
}

.site-footer {
    background: #02060d;
    color: rgba(255, 255, 255, 0.68);
    padding: 32px 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.footer-brand {
    color: var(--white);
}

.site-footer p {
    margin: 0;
}

.site-footer nav {
    display: flex;
    gap: 14px;
}

.site-footer a:hover,
.site-footer a:focus-visible {
    color: var(--white);
    outline: none;
}

.policy-page {
    background: var(--soft);
}

.policy-main {
    background:
        radial-gradient(circle at 16% 10%, rgba(2, 101, 255, 0.12), transparent 32%),
        var(--soft);
}

.policy-hero {
    padding: 72px 0 44px;
    background:
        radial-gradient(circle at 80% 20%, rgba(2, 101, 255, 0.22), transparent 32%),
        linear-gradient(135deg, #06162a, #02060d);
    color: var(--white);
}

.policy-hero h1 {
    margin: 18px 0 12px;
    font-size: clamp(2.25rem, 5vw, 4rem);
    line-height: 1.12;
}

.policy-hero p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 1.08rem;
}

.policy-date {
    margin-top: 14px !important;
    font-weight: 900;
}

.policy-content article,
.policy-note {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 14px 40px rgba(6, 18, 38, 0.05);
    padding: 22px;
    margin-bottom: 14px;
}

.policy-content h2 {
    margin: 0 0 8px;
    font-size: 1.25rem;
}

.policy-content p {
    margin: 0;
    color: var(--muted);
}

.policy-content a {
    color: var(--blue);
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.policy-note {
    color: var(--ink) !important;
    background: rgba(215, 255, 66, 0.12);
    border-color: rgba(215, 255, 66, 0.35);
    font-weight: 800;
}

.cookie-notice {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 120;
    width: min(460px, calc(100% - 36px));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 16px;
    background: rgba(6, 18, 38, 0.72);
    color: var(--white);
    box-shadow: 0 18px 56px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(22px) saturate(1.25);
    padding: 12px;
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.cookie-notice.is-hidden {
    opacity: 0;
    transform: translateY(14px);
    pointer-events: none;
}

.cookie-copy {
    display: grid;
    gap: 3px;
}

.cookie-copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.82rem;
    line-height: 1.42;
}

.cookie-links {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.cookie-links a {
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cookie-accept {
    min-height: 38px;
    flex: 0 0 auto;
    border: 0;
    border-radius: var(--radius);
    background: var(--blue);
    color: var(--white);
    padding: 8px 14px;
    font-weight: 900;
    font-size: 0.86rem;
}

.accessibility-widget {
    position: fixed;
    right: 18px;
    bottom: 156px;
    z-index: 121;
}

.a11y-toggle,
.a11y-panel button,
.a11y-panel a {
    min-height: 42px;
    border-radius: var(--radius);
    font-weight: 900;
}

.a11y-toggle {
    position: relative;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.34), transparent 34%),
        linear-gradient(135deg, var(--blue), #0047c7);
    color: var(--white);
    box-shadow:
        0 16px 38px rgba(2, 101, 255, 0.32),
        0 8px 22px rgba(6, 18, 38, 0.22);
    padding: 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.a11y-toggle::before {
    content: "";
    position: absolute;
    inset: 5px;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.28);
    pointer-events: none;
}

.a11y-toggle:hover,
.a11y-toggle[aria-expanded="true"] {
    transform: translateY(-2px);
    box-shadow:
        0 20px 46px rgba(2, 101, 255, 0.42),
        0 10px 26px rgba(6, 18, 38, 0.26);
}

.a11y-toggle:focus-visible {
    outline: 3px solid rgba(215, 255, 66, 0.86);
    outline-offset: 4px;
}

.a11y-icon {
    width: 31px;
    height: 31px;
    fill: currentColor;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.18));
}

.a11y-panel {
    position: absolute;
    right: 0;
    bottom: 68px;
    width: 245px;
    display: grid;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.36);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--ink);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    padding: 12px;
}

.a11y-panel[hidden] {
    display: none !important;
}

.a11y-panel strong {
    font-size: 0.95rem;
}

.a11y-panel button,
.a11y-panel a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--ink);
    padding: 8px 10px;
    font-size: 0.9rem;
}

.a11y-panel button[aria-pressed="true"] {
    border-color: rgba(2, 101, 255, 0.4);
    background: var(--soft-2);
    color: var(--blue);
}

html.a11y-text-large {
    font-size: 18px;
}

html.a11y-text-xlarge {
    font-size: 20px;
}

html.a11y-highlight-links a {
    text-decoration: underline !important;
    text-underline-offset: 4px;
}

html.a11y-high-contrast body {
    background: #ffffff;
    color: #000000;
}

html.a11y-high-contrast .site-header,
html.a11y-high-contrast .price-card,
html.a11y-high-contrast .insight-card,
html.a11y-high-contrast .method-card,
html.a11y-high-contrast .testimonial-card,
html.a11y-high-contrast .faq-list details,
html.a11y-high-contrast .policy-content article {
    border-color: #000000 !important;
}

html.a11y-high-contrast .btn-primary,
html.a11y-high-contrast .nav-cta,
html.a11y-high-contrast .a11y-toggle {
    background: #000000 !important;
    color: #ffffff !important;
    border-color: #ffffff !important;
}

html.a11y-reduce-motion *,
html.a11y-reduce-motion *::before,
html.a11y-reduce-motion *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
}

.whatsapp-float {
    position: fixed;
    left: 22px;
    bottom: 22px;
    z-index: 80;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #25d366;
    color: var(--white);
    border: 4px solid var(--white);
    box-shadow: 0 14px 34px rgba(6, 18, 38, 0.24);
    font-weight: 900;
}

.whatsapp-float svg,
.mobile-whatsapp-btn svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.mobile-whatsapp-btn {
    min-width: 54px;
    padding-inline: 12px;
}

.mobile-sticky-cta {
    display: none;
}

.js-enabled .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.js-enabled .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.js-enabled .lead-section .reveal {
    opacity: 1;
    transform: none;
}

.thank-you-page {
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 18% 16%, rgba(2, 101, 255, 0.34), transparent 34%),
        radial-gradient(circle at 86% 78%, rgba(215, 255, 66, 0.13), transparent 32%),
        linear-gradient(135deg, #06162a 0%, #06101e 48%, #02060d 100%);
    color: var(--white);
}

.thank-you-page::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.44;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(circle at center, #000 0%, transparent 76%);
}

.thanks-shell {
    position: relative;
    z-index: 1;
    min-height: 100svh;
    display: grid;
    place-items: center;
    padding: 34px 20px;
}

.thanks-card {
    position: relative;
    isolation: isolate;
    width: min(1080px, 100%);
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
    gap: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055)),
        rgba(6, 18, 38, 0.66);
    box-shadow: 0 32px 90px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(24px);
    padding: 24px;
    text-align: right;
}

.thanks-card::before {
    content: "";
    position: absolute;
    inset: -45% auto auto -18%;
    z-index: -1;
    width: 380px;
    height: 380px;
    border-radius: 999px;
    background: rgba(2, 101, 255, 0.32);
    filter: blur(50px);
}

.thanks-main,
.thanks-side {
    border-radius: 14px;
}

.thanks-main {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 560px;
    padding: 30px;
    background:
        linear-gradient(150deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045)),
        rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.thanks-side {
    align-self: stretch;
    padding: 30px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--ink);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.thanks-brand {
    width: fit-content;
    margin-bottom: auto;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
}

.thanks-brand .brand-logo {
    width: 168px;
}

.success-mark {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    margin: 54px 0 18px;
    border-radius: 18px;
    color: var(--white);
    background:
        radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.36), transparent 34%),
        linear-gradient(135deg, var(--blue), #0f7cff 56%, #15d06e);
    box-shadow: 0 22px 50px rgba(2, 101, 255, 0.34);
}

.success-mark svg {
    width: 32px;
    height: 32px;
    fill: none;
    stroke: currentColor;
    stroke-width: 3.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.thanks-card .eyebrow {
    margin: 0 0 16px;
    color: var(--accent);
    background: rgba(215, 255, 66, 0.12);
    border: 1px solid rgba(215, 255, 66, 0.2);
}

.thanks-card h1 {
    max-width: 620px;
    color: var(--white);
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 900;
}

.thanks-main p {
    max-width: 650px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 1.08rem;
}

.thanks-actions {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.thanks-actions svg {
    width: 23px;
    height: 23px;
    fill: currentColor;
}

.next-steps {
    display: grid;
    gap: 12px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.next-steps li {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 4px 12px;
    align-items: start;
    padding: 16px;
    border: 1px solid rgba(2, 101, 255, 0.12);
    border-radius: 12px;
    background:
        linear-gradient(135deg, rgba(2, 101, 255, 0.075), rgba(215, 255, 66, 0.055)),
        rgba(255, 255, 255, 0.72);
}

.next-steps li span {
    grid-row: span 2;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    direction: ltr;
    border-radius: 12px;
    background: var(--blue);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 900;
    box-shadow: 0 14px 28px rgba(2, 101, 255, 0.2);
}

.next-steps strong {
    color: var(--ink);
    font-size: 1rem;
}

.next-steps small {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.55;
}

.thanks-note {
    display: grid;
    gap: 5px;
    margin-top: 18px;
    padding: 16px;
    border: 1px solid rgba(2, 101, 255, 0.14);
    border-radius: 12px;
    background: var(--ink);
    color: var(--white);
}

.thanks-note span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
}

@media (max-width: 900px) {
    .thanks-shell {
        align-items: start;
        padding: 18px 14px;
    }

    .thanks-card {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 14px;
        border-radius: 16px;
    }

    .thanks-main {
        min-height: auto;
    }

    .thanks-brand {
        margin-bottom: 48px;
    }

    .thanks-main,
    .thanks-side {
        padding: 22px;
    }

    .success-mark {
        margin-top: 0;
    }

    .thanks-actions {
        width: 100%;
        display: grid;
    }
}

@media (max-width: 1120px) {
    .trust-grid,
    .split-heading,
    .difference-grid,
    .growth-grid,
    .lead-grid {
        grid-template-columns: 1fr;
    }

    .hero-copy h1 {
        font-size: 3rem;
    }

    .hero-fan {
        --phone-w: clamp(122px, 13vw, 154px);
        width: min(100%, 470px);
        min-height: 450px;
    }

    .fan-stage {
        min-height: 395px;
    }

    .fan-1 {
        --x: -132px;
        --y: 34px;
    }

    .fan-2 {
        --x: -66px;
        --y: -4px;
    }

    .fan-3 {
        --x: 12px;
        --y: -14px;
    }

    .fan-4 {
        --x: 82px;
        --y: 6px;
    }

    .fan-5 {
        --x: 132px;
        --y: 42px;
    }

    .hero-chips {
        left: 74px;
        bottom: 34px;
    }

    .browser-body {
        grid-template-columns: 1fr 230px;
    }

    .cards-grid.four,
    .cards-grid.three,
    .pricing-grid,
    .growth-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline,
    .logo-cloud {
        grid-template-columns: repeat(4, 1fr);
    }

    .lead-copy {
        position: static;
    }

    .package-fit {
        min-height: auto;
    }
}

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

    .hero-logo {
        display: none;
    }
}

@media (max-width: 820px) {
    [id] {
        scroll-margin-top: 78px;
    }

    .container {
        width: min(100% - 28px, var(--container));
    }

    .header-inner {
        min-height: 68px;
        direction: ltr;
    }

    .brand {
        order: 2;
        direction: ltr;
    }

    .nav-toggle {
        order: 1;
    }

    .brand-mark {
        width: 38px;
        height: 38px;
        font-size: 1.65rem;
    }

    .brand-text {
        font-size: 1.06rem;
    }

    .brand-logo {
        width: 148px;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: fixed;
        top: 68px;
        right: 14px;
        left: 14px;
        display: grid;
        gap: 6px;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: var(--white);
        box-shadow: var(--shadow);
        padding: 12px;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-12px);
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    }

    .site-nav.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .site-nav a {
        justify-content: center;
    }

    .hero,
    .section,
    .growth-section {
        padding: 68px 0;
    }

    .hero-shell {
        gap: 34px;
    }

    .hero-logo {
        width: 154px;
    }

    .hero-copy h1,
    .trust-copy h2,
    .split-heading h2,
    .section-heading h2,
    .difference-copy h2,
    .growth-copy h2,
    .lead-copy h2,
    .thanks-card h1 {
        font-size: 2.15rem;
    }

    .hero-lead,
    .split-heading p,
    .section-heading p,
    .difference-copy p,
    .growth-copy p,
    .lead-copy p {
        font-size: 1rem;
    }

    .hero-actions {
        display: grid;
    }

    .hero-proof,
    .trust-stats,
    .cards-grid.four,
    .cards-grid.three,
    .pricing-grid,
    .growth-cards,
    .timeline {
        grid-template-columns: 1fr;
    }

    .browser-body {
        min-height: 620px;
        grid-template-columns: 1fr;
        padding: 18px;
    }

    .hero-showcase {
        width: min(100%, 430px);
    }

    .hero-fan {
        width: min(100%, 560px);
        min-height: 500px;
    }

    .fan-stage {
        min-height: 440px;
    }

    .showcase-stage {
        min-height: 430px;
        padding: 16px;
        gap: 12px;
    }

    .showcase-benefits {
        right: 16px;
        left: 16px;
        bottom: 16px;
    }

    .phone-stack {
        min-height: 360px;
    }

    .phone-card {
        width: 150px;
    }

    .phone-main {
        right: 38px;
    }

    .phone-back {
        right: 132px;
        top: 96px;
    }

    .floating-card {
        position: relative;
        right: auto;
        left: auto;
        bottom: auto;
        min-width: 0;
    }

    .metric-row,
    .glass-form {
        grid-template-columns: 1fr;
    }

    .portfolio-bento {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 250px;
    }

    .portfolio-heading h2 {
        font-size: 1.9rem;
    }

    .portfolio-track figure {
        flex-basis: 210px;
        height: 455px;
    }

    .portfolio-slider::before,
    .portfolio-slider::after {
        width: 34px;
    }

    .slider-btn {
        display: none;
    }

    .work-card.tall,
    .work-card.wide {
        grid-row: span 1;
        grid-column: span 1;
    }

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

    .footer-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-footer nav {
        flex-wrap: wrap;
    }

    .policy-nav {
        display: flex;
        position: static;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        box-shadow: none;
        border: 0;
        background: transparent;
        padding: 0;
        flex-wrap: wrap;
    }

    .cookie-notice {
        right: 10px;
        left: auto;
        bottom: 78px;
        width: min(330px, calc(100vw - 20px));
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        gap: 10px;
        border-radius: 15px;
        padding: 10px;
        background: rgba(6, 18, 38, 0.74);
    }

    .cookie-copy p {
        font-size: 0.76rem;
        line-height: 1.35;
    }

    .cookie-links {
        gap: 8px;
    }

    .cookie-links a {
        font-size: 0.73rem;
    }

    .cookie-accept {
        width: auto;
        min-height: 34px;
        padding: 7px 12px;
        border-radius: 11px;
        font-size: 0.8rem;
        white-space: nowrap;
    }

    .accessibility-widget {
        right: 10px;
        top: 128px;
        bottom: auto;
    }

    .a11y-toggle {
        width: 48px;
        height: 48px;
    }

    .a11y-icon {
        width: 25px;
        height: 25px;
    }

    .a11y-panel {
        top: 56px;
        bottom: auto;
        width: min(232px, calc(100vw - 20px));
    }

    .whatsapp-float {
        display: none;
    }

    .mobile-sticky-cta {
        position: fixed;
        right: 12px;
        left: 12px;
        bottom: 12px;
        z-index: 85;
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 8px;
        padding: 8px;
        border: 1px solid rgba(255, 255, 255, 0.22);
        border-radius: var(--radius);
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(16px);
        box-shadow: var(--shadow);
        transform: translateY(130%);
        transition: transform 0.25s ease;
    }

    .mobile-sticky-cta.is-visible {
        transform: translateY(0);
    }

    .mobile-sticky-cta .btn {
        min-height: 46px;
        padding-inline: 12px;
    }
}

@media (max-width: 480px) {
    .hero-copy h1,
    .trust-copy h2,
    .split-heading h2,
    .section-heading h2,
    .difference-copy h2,
    .growth-copy h2,
    .lead-copy h2,
    .thanks-card h1 {
        font-size: 1.86rem;
    }

    .hero-offer strong {
        font-size: 2.35rem;
    }

    .hero-offer {
        gap: 8px;
        margin-top: 18px;
        padding: 16px;
    }

    .offer-badge {
        min-height: 26px;
        padding: 4px 9px;
        font-size: 0.76rem;
    }

    .offer-main {
        gap: 4px;
    }

    .offer-main small {
        min-height: 24px;
        padding: 2px 8px;
        font-size: 0.76rem;
    }

    .hero-offer p {
        font-size: 0.86rem;
        line-height: 1.45;
    }

    .offer-includes {
        gap: 6px;
    }

    .offer-includes li {
        min-height: 26px;
        padding: 3px 8px;
        font-size: 0.72rem;
    }

    .portfolio-bento {
        grid-template-columns: 1fr;
    }

    .phone-main {
        right: 14px;
    }

    .phone-back {
        right: 118px;
    }

    .showcase-stage {
        grid-template-columns: 1fr;
    }

    .hero-fan {
        min-height: 380px;
    }

    .fan-stage {
        min-height: 318px;
    }

    .fan-phone {
        width: min(136px, 34vw);
        border-width: 5px;
    }

    .fan-1,
    .fan-5 {
        display: none;
    }

    .fan-2 {
        --x: -86px;
        --y: 8px;
        --r: -11deg;
        --s: 0.95;
    }

    .fan-3 {
        --x: 0px;
        --y: -10px;
        --r: 2deg;
        --s: 1.05;
    }

    .fan-4 {
        --x: 86px;
        --y: 10px;
        --r: 12deg;
        --s: 0.95;
    }

    .hero-chips {
        bottom: 2px;
        gap: 7px;
    }

    .hero-chips span {
        min-height: 32px;
        padding: 5px 9px;
        font-size: 0.76rem;
    }

    .second-phone {
        display: none;
    }

    .showcase-phone {
        width: min(210px, 74%);
        justify-self: center;
    }

    .portfolio-track figure {
        flex-basis: 190px;
        height: 412px;
    }

    .portfolio-track {
        gap: 12px;
        scroll-padding-inline: 14px;
        padding-inline: 14px;
        margin-inline: 0;
        overscroll-behavior-inline: auto;
    }

    .testimonial-slider {
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x proximity;
        scrollbar-width: none;
        mask-image: none;
        touch-action: pan-x pan-y;
        -webkit-overflow-scrolling: touch;
    }

    .testimonial-slider::-webkit-scrollbar {
        display: none;
    }

    .testimonial-slider::before,
    .testimonial-slider::after {
        display: none;
    }

    .testimonial-track {
        width: max-content;
        padding-inline: 14px;
        animation: none;
        will-change: auto;
    }

    .testimonial-card {
        flex-basis: min(82vw, 330px);
        scroll-snap-align: start;
    }

    .price {
        display: grid;
        gap: 4px;
    }

    .price-meta {
        gap: 6px;
    }

    .price-meta span {
        min-height: 26px;
        font-size: 0.74rem;
    }

    .package-highlight {
        padding: 10px;
    }

    .price strong {
        font-size: 3rem;
    }

    .thank-you-page .thanks-card {
        padding: 10px;
    }

    .thank-you-page .thanks-main,
    .thank-you-page .thanks-side {
        padding: 18px;
    }

    .thanks-brand {
        margin-bottom: 36px;
    }

    .thanks-brand .brand-logo {
        width: 142px;
    }

    .success-mark {
        width: 52px;
        height: 52px;
        border-radius: 14px;
    }

    .thanks-main p {
        font-size: 0.98rem;
    }

    .next-steps li {
        grid-template-columns: 1fr;
    }

    .next-steps li span {
        grid-row: auto;
        width: 38px;
        height: 38px;
    }
}

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

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

    .hero-offer::before,
    .hero-fan::before {
        animation: none !important;
    }
}
