/* ==========================================================================
   Design Tokens — Modern Pelephone
   ========================================================================== */
:root {
    --a11y-scale: 1;
    --color-primary: #0066cc;
    --color-primary-dark: #003d7a;
    --color-primary-light: #e8f4ff;
    --color-cta: #e4007f;
    --color-cta-hover: #ff1493;
    --color-surface: #ffffff;
    --color-bg: #f0f4f8;
    --color-bg-alt: #e8eef5;
    --color-text: #0f172a;
    --color-muted: #64748b;
    --color-success: #10b981;
    --color-error: #ef4444;
    --color-border: #e2e8f0;
    --color-call-bg: #0066cc;
    --color-call-hover: #0052a3;

    --font-body: "Assistant", "Segoe UI", Tahoma, sans-serif;
    --font-display: "Assistant", "Segoe UI", Tahoma, sans-serif;
    --radius-sm: 10px;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
    --shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.12);
    --shadow-glow-cta: 0 8px 28px rgba(228, 0, 127, 0.35);
    --shadow-glow-primary: 0 8px 28px rgba(0, 102, 204, 0.3);
    --gradient-hero: linear-gradient(145deg, #001233 0%, #002855 35%, #004494 65%, #0066cc 100%);
    --gradient-cta: linear-gradient(135deg, #e4007f 0%, #ff2d9a 100%);
    --gradient-surface: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    --header-h: 68px;
    --sticky-h: 80px;
    --container: 1140px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-size: calc(100% * var(--a11y-scale));
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--color-text);
    background: var(--color-bg);
    overflow-x: hidden;
}

body::after {
    content: "";
    position: fixed;
    inset: -15%;
    pointer-events: none;
    z-index: -2;
    background:
        radial-gradient(ellipse 55% 45% at 18% 25%, rgba(0, 102, 204, 0.1) 0%, transparent 68%),
        radial-gradient(ellipse 50% 40% at 82% 72%, rgba(228, 0, 127, 0.06) 0%, transparent 65%),
        radial-gradient(ellipse 42% 38% at 65% 12%, rgba(77, 163, 255, 0.07) 0%, transparent 60%);
    animation: siteBgDrift 28s ease-in-out infinite alternate;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: radial-gradient(rgba(0, 102, 204, 0.04) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: -1;
    animation: siteDotDrift 48s linear infinite;
}

@keyframes siteBgDrift {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-1.5%, 2%) scale(1.04);
    }

    100% {
        transform: translate(2%, -1.5%) scale(1.02);
    }
}

@keyframes siteDotDrift {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 56px 56px;
    }
}

body.popup-open {
    overflow: hidden;
}

img,
svg {
    display: block;
    max-width: 100%;
}

a {
    color: var(--color-primary);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

ul {
    list-style: none;
}

button,
input {
    font: inherit;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 1.25rem;
}

.section {
    padding-block: 4rem;
    position: relative;
}

.section--decor {
    overflow: hidden;
}

.section--decor > .container,
.section--decor > .about__inner {
    position: relative;
    z-index: 2;
}

.section--alt {
    background: rgba(232, 238, 245, 0.78);
}

.section--alt::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, transparent 100%);
    pointer-events: none;
}

.section__side-decor {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.side-decor__float {
    position: absolute;
    display: block;
    color: var(--color-primary);
    opacity: 0.12;
    pointer-events: none;
}

.side-decor__float svg {
    width: 100%;
    height: 100%;
    display: block;
}

.side-decor__float--accent {
    color: var(--color-cta);
    opacity: 0.09;
}

.side-decor__float--phone-1 {
    width: clamp(56px, 5.5vw, 78px);
    inset-inline-start: clamp(0.25rem, 2.5vw, 3.5%);
    top: 8%;
    animation: sideDecorFloatA 17s ease-in-out infinite;
}

.side-decor__float--phone-2 {
    width: clamp(44px, 4vw, 62px);
    inset-inline-end: clamp(0.25rem, 3vw, 4%);
    top: 32%;
    animation: sideDecorFloatB 21s ease-in-out infinite;
}

.side-decor__float--phone-3 {
    width: clamp(36px, 3.2vw, 50px);
    inset-inline-end: clamp(0.5rem, 4vw, 5.5%);
    bottom: 12%;
    animation: sideDecorFloatD 19s ease-in-out infinite;
}

.side-decor__float--5g {
    width: clamp(48px, 4.5vw, 64px);
    inset-inline-start: clamp(0.5rem, 3.5vw, 5%);
    top: 42%;
    animation: sideDecorFloatC 15s ease-in-out infinite;
}

.side-decor__float--signal {
    width: clamp(40px, 3.8vw, 54px);
    inset-inline-start: clamp(0.25rem, 2vw, 3%);
    bottom: 18%;
    animation: sideDecorFloatB 23s ease-in-out infinite reverse;
}

.side-decor__float--sim {
    width: clamp(34px, 3vw, 46px);
    inset-inline-end: clamp(0.25rem, 2.5vw, 3.5%);
    top: 10%;
    animation: sideDecorFloatA 20s ease-in-out infinite reverse;
}

.side-decor__float--waves {
    width: clamp(42px, 4vw, 58px);
    inset-inline-start: clamp(0.5rem, 3vw, 4%);
    top: 22%;
    opacity: 0.08;
    animation: sideDecorPulse 13s ease-in-out infinite;
    transition: opacity 0.35s ease, filter 0.35s ease, transform 0.35s ease;
}

.side-decor__float--waves:hover {
    opacity: 0.28;
    animation: none;
    transform: scale(1.12);
}

@keyframes sideDecorFloatA {
    0%, 100% {
        transform: translateY(0) rotate(-6deg);
    }

    50% {
        transform: translateY(-22px) rotate(4deg);
    }
}

@keyframes sideDecorFloatB {
    0%, 100% {
        transform: translateY(0) rotate(14deg);
    }

    50% {
        transform: translateY(16px) rotate(-4deg);
    }
}

@keyframes sideDecorFloatC {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-14px) rotate(8deg);
    }
}

@keyframes sideDecorFloatD {
    0%, 100% {
        transform: translateY(0) rotate(-10deg);
    }

    50% {
        transform: translateY(-12px) rotate(6deg);
    }
}

@keyframes sideDecorPulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }
}

.section__head {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section__eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-cta);
    background: rgba(228, 0, 127, 0.08);
    padding: 0.35rem 1rem;
    border-radius: 999px;
    margin-bottom: 0.75rem;
}

.section__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.35rem);
    font-weight: 800;
    color: var(--color-primary-dark);
    text-align: center;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.section__title--light {
    color: #fff;
}

.section__lead {
    text-align: center;
    color: var(--color-muted);
    margin-bottom: 0;
    font-size: 1.05rem;
    max-width: 36rem;
    margin-inline: auto;
}

/* Accessibility */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: #fff;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-sm);
    z-index: 9999;
    font-weight: 600;
}

.skip-link:focus {
    top: 0.5rem;
}

.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;
}

:focus-visible {
    outline: 3px solid var(--color-cta);
    outline-offset: 2px;
}

html.a11y-contrast {
    --color-bg: #000;
    --color-bg-alt: #111;
    --color-surface: #000;
    --color-text: #fff;
    --color-muted: #e0e0e0;
    --color-primary: #4db8ff;
    --color-primary-dark: #fff;
    --color-primary-light: #222;
    --color-border: #fff;
    --color-cta: #ff69b4;
    --color-cta-hover: #ff8cc8;
    --color-call-bg: #4db8ff;
    --color-call-hover: #7ccaff;
}

html.a11y-contrast body::after,
html.a11y-contrast .section__side-decor {
    display: none;
}

html.a11y-contrast .hero,
html.a11y-contrast .final-cta {
    background: #000;
}

html.a11y-contrast .section--alt {
    background: var(--color-bg-alt);
}

html.a11y-contrast .btn--cta {
    background: #ff69b4;
    color: #000;
}

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

html.a11y-links a:focus-visible {
    outline: 3px solid #ff0;
    background: rgba(255, 255, 0, 0.2);
}

html.a11y-readable body {
    font-family: Arial, Helvetica, sans-serif;
}

html.a11y-motion-off *,
html.a11y-motion-off *::before,
html.a11y-motion-off *::after {
    animation: none !important;
    transition: none !important;
}

html.a11y-motion-off .reveal {
    opacity: 1;
    transform: none;
}

/* Accessibility Widget */
.a11y-widget {
    position: fixed;
    bottom: calc(var(--sticky-h) + 0.75rem);
    inset-inline-start: 0.75rem;
    z-index: 10000;
}

@media (max-width: 767px) {
    .a11y-widget {
        bottom: calc(var(--sticky-h) + 4.75rem);
    }

    body:has(#cookie-bar:not([hidden])) .a11y-widget {
        bottom: calc(var(--sticky-h) + 7rem);
    }
}

@media (min-width: 768px) {
    .a11y-widget {
        bottom: 1rem;
    }
}

.thank-you-page .a11y-widget {
    bottom: max(1rem, env(safe-area-inset-bottom, 0px));
    inset-inline-start: max(0.75rem, env(safe-area-inset-inline-start, 0px));
}

.a11y-widget.a11y-widget--positioned {
    bottom: auto !important;
    inset-inline-start: auto !important;
}

.a11y-widget--panel-below .a11y-panel {
    bottom: auto;
    top: calc(100% + 0.5rem);
}

.a11y-widget__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3.25rem;
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    background: var(--gradient-cta);
    color: #fff;
    cursor: grab;
    touch-action: none;
    box-shadow: var(--shadow-glow-cta);
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.a11y-widget--dragging .a11y-widget__toggle {
    cursor: grabbing;
    transform: scale(1.04);
    box-shadow: 0 14px 40px rgba(228, 0, 127, 0.5);
}

.a11y-widget__toggle:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 36px rgba(228, 0, 127, 0.45);
}

.a11y-widget--dragging .a11y-widget__toggle:hover {
    transform: scale(1.04);
}

.a11y-widget__toggle svg {
    width: 1.5rem;
    height: 1.5rem;
}

.a11y-panel {
    position: absolute;
    bottom: calc(100% + 0.5rem);
    inset-inline-start: 0;
    width: min(18rem, calc(100vw - 1.5rem));
    background: var(--color-surface);
    border: 2px solid var(--color-primary);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 1rem;
}

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

.a11y-panel__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--color-border);
}

.a11y-panel__title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--color-primary-dark);
}

.a11y-panel__close {
    background: none;
    border: none;
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    color: var(--color-muted);
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.a11y-panel__close:hover {
    background: var(--color-bg);
}

.a11y-panel__group {
    margin-bottom: 0.75rem;
}

.a11y-panel__label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.375rem;
}

.a11y-panel__row {
    display: flex;
    gap: 0.375rem;
}

.a11y-panel__btn {
    flex: 1;
    padding: 0.5rem 0.625rem;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: var(--color-bg);
    color: var(--color-text);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition), border-color var(--transition);
}

.a11y-panel__btn:hover {
    border-color: var(--color-primary);
}

.a11y-panel__btn--active,
.a11y-panel__btn[aria-pressed="true"] {
    background: var(--color-primary-light);
    border-color: var(--color-primary);
    color: var(--color-primary-dark);
}

.a11y-panel__row + .a11y-panel__row {
    margin-top: 0.375rem;
}

.a11y-panel__btn--reset {
    width: 100%;
    margin-top: 0.25rem;
    background: transparent;
    color: var(--color-muted);
}

.a11y-panel__footer {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--color-border);
    font-size: 0.75rem;
    text-align: center;
}

.a11y-panel__footer a {
    color: var(--color-primary);
    font-weight: 600;
}

.a11y-statement {
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    line-height: 1.7;
}

.a11y-statement h2 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: #fff;
}

.a11y-statement p {
    margin-bottom: 0.625rem;
}

.a11y-statement ul {
    list-style: disc;
    padding-inline-start: 1.25rem;
    margin-bottom: 0.625rem;
}

.a11y-statement li {
    margin-bottom: 0.25rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transform: translateY(0) scale(1);
    transition:
        background var(--transition),
        color var(--transition),
        border-color var(--transition),
        transform 0.28s cubic-bezier(0.34, 1.4, 0.64, 1),
        box-shadow var(--transition),
        filter var(--transition);
    white-space: nowrap;
}

.btn svg {
    flex-shrink: 0;
    transition: transform var(--transition);
}

.btn:hover {
    text-decoration: none;
    transform: translateY(-3px) scale(1.02);
}

.btn:focus-visible {
    outline: 3px solid rgba(0, 102, 204, 0.45);
    outline-offset: 3px;
}

.btn:active {
    transform: translateY(-1px) scale(0.98);
    transition-duration: 0.12s;
}

.btn--block {
    width: 100%;
}

.btn--sm {
    padding: 0.55rem 1.15rem;
    font-size: 0.85rem;
}

.btn--sm:hover {
    transform: translateY(-2px) scale(1.03);
}

.btn--primary {
    background: var(--color-primary);
    color: #fff;
    box-shadow: none;
}

.btn--primary:hover {
    background: var(--color-primary-dark);
    box-shadow: none;
}

.btn--primary:active {
    box-shadow: none;
}

.btn--cta {
    background: var(--gradient-cta);
    color: #fff;
    box-shadow: none;
}

.btn--cta:hover {
    background: linear-gradient(135deg, #ff1493 0%, #e4007f 100%);
    box-shadow: none;
    filter: brightness(1.04);
}

.btn--cta:active {
    box-shadow: none;
    filter: brightness(0.98);
}

.btn--outline {
    background: rgba(255, 255, 255, 0.8);
    color: var(--color-primary);
    border-color: rgba(0, 102, 204, 0.25);
    backdrop-filter: blur(8px);
    box-shadow: var(--shadow-sm);
}

.btn--outline:hover {
    background: var(--color-primary-light);
    border-color: var(--color-primary);
    box-shadow: none;
}

.btn--call {
    background: var(--color-call-bg);
    color: #fff;
    border: none;
    box-shadow: none;
}

.btn--call:hover {
    background: var(--color-call-hover);
    box-shadow: none;
}

.btn--call:hover svg {
    transform: rotate(-12deg) scale(1.12);
}

.btn--call:active {
    box-shadow: none;
}

.btn--call-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-primary);
    border: 2px solid rgba(0, 102, 204, 0.2);
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.btn--call-secondary:hover {
    background: var(--color-primary-light);
    border-color: var(--color-primary);
    box-shadow: none;
}

/* Header */
.header {
    position: relative;
    z-index: 100;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    height: var(--header-h);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 1rem;
}

.header__brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.1rem;
    flex-shrink: 0;
}

.header__tagline {
    font-size: 0.68rem;
    font-weight: 400;
    color: var(--color-muted);
    line-height: 1.2;
    letter-spacing: 0.01em;
}

.header__logo-link {
    display: flex;
    align-items: center;
    line-height: 0;
}

.header__logo-link:hover {
    text-decoration: none;
}

.header__logo-img,
.header__logo-svg {
    height: 48px;
    width: auto;
    display: block;
    object-fit: contain;
}

.header__logo-img {
    mix-blend-mode: multiply;
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header__actions .btn--outline {
    display: none;
}

/* Hero */
.hero {
    background: #003da5;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.hero__media {
    padding-inline: 0;
    max-width: none;
}

.hero__banner {
    display: block;
    width: 100%;
    line-height: 0;
}

.hero__banner img {
    display: block;
    width: 100%;
    height: auto;
}

.hero-form {
    padding-block: 0 2.5rem;
    background: #003da5;
}

.hero-form__container {
    max-width: 32rem;
}

.hero-form__card {
    display: block;
}

.hero-form .hero__form-wrap {
    scroll-margin-top: calc(var(--header-h) + 1rem);
}

.hero-form__divider {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.25rem;
}

.hero-form__divider::before,
.hero-form__divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 102, 204, 0.25) 50%, transparent 100%);
}

.hero-form__divider .hero-form__form-title {
    margin-bottom: 0;
    padding-top: 0;
    font-size: 1rem;
    white-space: nowrap;
}

.hero-form__divider .hero-form__form-title::before {
    display: none;
}

@media (min-width: 768px) {
    .hero {
        background: #f4f7fb;
    }

    .hero__media {
        max-width: none;
        padding: 0;
    }

    .hero__banner {
        border-radius: 0;
        box-shadow: none;
    }

    .hero-form {
        padding-block: 2rem 3rem;
        background: #f4f7fb;
    }

    .hero-form.section {
        padding-block: 2rem 3rem;
    }

    .hero-form__container {
        max-width: var(--container);
    }

    .hero-form__mobile-call {
        display: none;
    }

    .hero-form__card {
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow);
        background: #fff;
    }

    .hero-form .hero__form-wrap {
        background: #fff;
        border-radius: var(--radius-lg);
        box-shadow: none;
        backdrop-filter: none;
        padding: 1.5rem 1.75rem;
    }

    .hero-form .lead-form {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(11rem, 0.75fr);
        gap: 0.85rem 1rem;
        align-items: end;
    }

    .hero-form__divider {
        grid-column: 1 / -1;
        margin-bottom: 0.35rem;
    }

    #selected-package {
        grid-column: 1 / -1;
    }

    .hero-form__fields {
        display: contents;
    }

    .hero-form__fields .form-group {
        margin-bottom: 0;
    }

    .hero-form__fields .form-group:first-child {
        grid-column: 1;
    }

    .hero-form__fields .form-group:last-child {
        grid-column: 2;
    }

    .hero-form__submit {
        grid-column: 3;
        margin-top: 0;
        min-height: 3.15rem;
        width: 100%;
    }

    .hero-form .form-consent-text {
        grid-column: 1 / -1;
        text-align: center;
        font-size: 0.78rem;
        line-height: 1.55;
        margin-top: 0.25rem;
        margin-bottom: 0;
    }

    .hero-form .form-status {
        grid-column: 1 / -1;
    }

    .hero-form__form-title {
        text-align: center;
    }
}

.hero__form-wrap {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
}

/* Forms */
.lead-form__call-title {
    margin: 0 0 0.65rem;
    text-align: center;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--color-primary-dark);
}

.lead-form__call-btn {
    margin-bottom: 1.15rem;
    background: linear-gradient(135deg, #00a86b 0%, #008f5a 100%);
    border: 0;
    color: #fff;
    font-size: 1.18rem;
    font-weight: 900;
    min-height: 3.35rem;
    box-shadow: 0 12px 26px rgba(0, 143, 90, 0.35), 0 0 0 2px rgba(255, 255, 255, 0.85);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.lead-form__call-btn:hover,
.lead-form__call-btn:focus-visible {
    transform: translateY(-1px);
    filter: brightness(1.04);
    box-shadow: 0 14px 30px rgba(0, 143, 90, 0.4), 0 0 0 3px rgba(0, 143, 90, 0.2);
}

.lead-form__call-btn:active {
    transform: translateY(0);
}

.lead-form__title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--color-primary-dark);
    margin-bottom: 1.4rem;
    text-align: center;
    letter-spacing: -0.02em;
    position: relative;
    padding-top: 1rem;
}

.lead-form__title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(0, 102, 204, 0.15) 0%, rgba(0, 102, 204, 0.7) 50%, rgba(0, 102, 204, 0.15) 100%);
}

.selected-package {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    background: var(--color-primary-light);
    border: 1px solid rgba(0, 102, 204, 0.2);
    border-radius: var(--radius);
    padding: 0.65rem 0.85rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--color-primary-dark);
}

.selected-package[hidden] {
    display: none;
}

.selected-package__text strong {
    font-weight: 800;
}

.selected-package__clear {
    flex-shrink: 0;
    width: 1.75rem;
    height: 1.75rem;
    border: none;
    border-radius: 50%;
    background: rgba(0, 102, 204, 0.12);
    color: var(--color-primary-dark);
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
    transition: background var(--transition);
}

.selected-package__clear:hover {
    background: rgba(0, 102, 204, 0.22);
}

.package-card.is-selected {
    border-color: var(--color-primary);
    box-shadow: var(--shadow), 0 0 0 2px rgba(0, 102, 204, 0.15);
}

.package-card--featured.is-selected {
    border-color: var(--color-cta);
    box-shadow: var(--shadow), 0 0 0 2px rgba(228, 0, 127, 0.2);
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.form-group input[type="text"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 0.85rem 1.1rem;
    border: 2px solid var(--color-border);
    border-radius: var(--radius);
    background: var(--color-bg);
    color: var(--color-text);
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

#hero-phone {
    text-align: right;
}

.form-group input:focus {
    border-color: var(--color-primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.1);
    outline: none;
}

.form-group--checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
}

.form-group--checkbox input {
    margin-top: 0.25rem;
    flex-shrink: 0;
    width: 1.1rem;
    height: 1.1rem;
    accent-color: var(--color-cta);
}

.form-group--checkbox label {
    margin-bottom: 0;
    font-size: 0.82rem;
    font-weight: 400;
    color: var(--color-muted);
    line-height: 1.5;
}

.form-group--checkbox label a {
    color: var(--color-primary);
    font-weight: 600;
}

.form-consent-text {
    margin-top: 0.75rem;
    font-size: 0.8rem;
    line-height: 1.5;
    color: var(--color-muted);
}

.form-status {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    text-align: center;
    min-height: 1.25rem;
}

.form-status--error {
    color: var(--color-error);
}

.form-status--success {
    color: var(--color-success);
}

.form-hidden {
    display: none;
}

.lead-form--dark .form-group label {
    color: rgba(255, 255, 255, 0.9);
}

.lead-form--dark .form-group input {
    background: rgba(255, 255, 255, 0.95);
}

.lead-form--dark .form-group--checkbox label {
    color: rgba(255, 255, 255, 0.8);
}

/* Disclosure */
.disclosure {
    font-size: 0.75rem;
    color: var(--color-muted);
    line-height: 1.55;
    margin-top: 1rem;
}

.disclosure--hero {
    text-align: center;
    padding-top: 0.75rem;
    border-top: 1px solid var(--color-border);
}

.disclosure--compact {
    margin-top: 1.5rem;
    text-align: center;
}

/* Packages */
.packages {
    overflow: visible;
    padding-block: 2rem 2.5rem;
}

.packages .section__head {
    margin-bottom: 1rem;
}

.packages .section__title {
    margin-bottom: 0;
}

.packages__title {
    font-size: clamp(1.35rem, 2.8vw, 1.75rem);
}

.packages__grid {
    display: grid;
    gap: 1.75rem;
    grid-template-columns: 1fr;
    padding-top: 0.5rem;
    overflow: visible;
}

.package-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.5rem 1.75rem;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    min-width: 0;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    overflow: visible;
}

.package-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: rgba(0, 102, 204, 0.25);
}

.package-card--featured {
    border-color: rgba(228, 0, 127, 0.35);
    box-shadow: var(--shadow-sm), 0 4px 24px rgba(228, 0, 127, 0.08);
}

.package-card--featured:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow), 0 8px 32px rgba(228, 0, 127, 0.12);
    border-color: rgba(228, 0, 127, 0.5);
}

.package-card__network {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    display: inline-block;
    background: var(--color-primary-light);
    color: var(--color-primary);
    font-size: 0.68rem;
    font-weight: 800;
    padding: 0.45rem 0.9rem 0.45rem 0.75rem;
    border-radius: var(--radius-lg) 0 var(--radius-sm) 0;
    margin: 0;
    letter-spacing: 0.04em;
    border: 1px solid rgba(0, 102, 204, 0.12);
    border-top: 0;
    border-left: 0;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.1);
    transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}

.package-card--featured .package-card__network {
    background: rgba(228, 0, 127, 0.12);
    color: var(--color-cta);
    border-color: rgba(228, 0, 127, 0.22);
    box-shadow: 0 4px 12px rgba(228, 0, 127, 0.12);
}

.package-card:hover .package-card__network {
    background: rgba(0, 102, 204, 0.14);
    box-shadow: 0 6px 16px rgba(0, 102, 204, 0.16);
}

.package-card--featured:hover .package-card__network {
    background: rgba(228, 0, 127, 0.16);
    box-shadow: 0 6px 16px rgba(228, 0, 127, 0.16);
    color: var(--color-cta);
}

.package-card__name,
.package-card__data,
.package-card__price {
    text-align: center;
    width: 100%;
}

.package-card__name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--color-primary-dark);
    margin-bottom: 0.35rem;
    letter-spacing: -0.01em;
}

.package-card__data {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--color-primary) 0%, #0078e8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.85rem;
    line-height: 1;
}

.package-card__from {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-muted);
    margin-inline-end: 0.2rem;
    vertical-align: 0.35em;
}

.package-card__amount {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 900;
    background: var(--gradient-cta);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.package-card__period {
    display: block;
    font-size: 0.85rem;
    color: var(--color-muted);
    margin-top: 0.25rem;
}

.package-card__features {
    flex: 1;
    margin-bottom: 1.25rem;
    text-align: start;
    width: 100%;
}

.package-card__features li {
    position: relative;
    padding-inline-start: 1.25rem;
    margin-bottom: 0.45rem;
    font-size: 0.9rem;
    text-align: start;
}

.package-card__features li::before {
    content: "•";
    position: absolute;
    inset-inline-start: 0;
    color: var(--color-cta);
    font-weight: 900;
}

.package-card__actions {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.package-card__actions .btn {
    white-space: normal;
    min-height: 44px;
}

.package-card__more {
    margin-top: 0.7rem;
    display: inline-flex;
    align-self: center;
    justify-content: center;
    border: 0;
    background: none;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 0.92rem;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.package-card__more:hover {
    color: var(--color-primary-dark);
}

.packages__disclaimer {
    text-align: center;
    font-size: 0.8rem;
    color: var(--color-muted);
    margin-top: 1.75rem;
}

/* Benefits */
.benefits__grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr;
}

.benefit-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: "";
    position: absolute;
    top: 0;
    inset-inline: 0;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 102, 204, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: rgba(0, 102, 204, 0.15);
}

.benefit-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    margin-inline: auto;
    margin-bottom: 1rem;
    padding: 0.65rem;
    color: var(--color-primary);
    background: linear-gradient(135deg, var(--color-primary-light) 0%, rgba(228, 0, 127, 0.06) 100%);
    border-radius: var(--radius);
    border: 1px solid rgba(0, 102, 204, 0.1);
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    box-sizing: border-box;
}

.benefit-card__icon svg {
    width: 1.7rem;
    height: 1.7rem;
    max-width: none;
    flex-shrink: 0;
}

.benefit-card__icon path {
    fill: currentColor;
}

.benefit-card:hover .benefit-card__icon {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.15);
    background: linear-gradient(135deg, var(--color-primary-light) 0%, rgba(228, 0, 127, 0.12) 100%);
}

.benefit-card h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--color-primary-dark);
    margin-bottom: 0.4rem;
}

.benefit-card p {
    font-size: 0.875rem;
    color: var(--color-muted);
    line-height: 1.6;
}

/* About */
.about__inner {
    max-width: 760px;
    margin-inline: auto;
}

.about__inner .section__head {
    margin-bottom: 1.75rem;
}

.about__inner p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.about__highlight {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    margin-block: 1.75rem;
    border-inline-start: 4px solid var(--color-cta);
    box-shadow: var(--shadow-sm);
}

.about__highlight h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--color-primary-dark);
    margin-bottom: 0.85rem;
}

.about__highlight li {
    position: relative;
    padding-inline-start: 1.25rem;
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
}

.about__highlight li::before {
    content: "✓";
    position: absolute;
    inset-inline-start: 0;
    color: var(--color-cta);
    font-weight: 700;
}

.about__note {
    font-size: 0.875rem;
    color: var(--color-muted);
    background: var(--color-bg-alt);
    padding: 1rem;
    border-radius: var(--radius-sm);
}

/* FAQ */
.faq__list {
    max-width: 720px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq__item {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition), border-color var(--transition);
}

.faq__item:hover {
    border-color: rgba(0, 102, 204, 0.15);
}

.faq__item[open] {
    box-shadow: var(--shadow);
    border-color: rgba(0, 102, 204, 0.2);
}

.faq__item summary {
    padding: 1.15rem 1.5rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transition: background var(--transition);
}

.faq__item summary:hover {
    background: rgba(0, 102, 204, 0.03);
}

.faq__item summary::after {
    content: "+";
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--color-cta);
    flex-shrink: 0;
    width: 1.75rem;
    height: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(228, 0, 127, 0.08);
    border-radius: 50%;
    transition: transform var(--transition), background var(--transition);
}

.faq__item[open] summary::after {
    transform: rotate(45deg);
    background: rgba(228, 0, 127, 0.15);
}

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

.faq__item p {
    padding: 0 1.5rem 1.25rem;
    color: var(--color-muted);
    font-size: 0.925rem;
    line-height: 1.7;
}

/* Final CTA */
.final-cta {
    background: var(--gradient-hero);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 80% at 100% 50%, rgba(228, 0, 127, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse 50% 60% at 0% 100%, rgba(77, 163, 255, 0.12) 0%, transparent 55%);
    pointer-events: none;
}

.final-cta .container {
    position: relative;
    z-index: 1;
}

.final-cta__grid {
    display: grid;
    gap: 2rem;
    align-items: center;
}

.final-cta__text p {
    opacity: 0.92;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.final-cta .lead-form {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-xl);
    padding: 2rem;
    backdrop-filter: blur(16px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #002855 0%, #001233 100%);
    color: rgba(255, 255, 255, 0.85);
    padding-block: 3rem calc(3rem + var(--sticky-h));
    position: relative;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    inset-inline: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-cta) 0%, var(--color-primary) 50%, var(--color-cta) 100%);
}

.footer a {
    color: rgba(255, 255, 255, 0.9);
}

.footer a:hover {
    color: #fff;
}

.footer__grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer__brand {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
}

.footer__heading {
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}

.footer__links li {
    margin-bottom: 0.4rem;
}

.footer__disclosure {
    font-size: 0.75rem;
    line-height: 1.6;
    opacity: 0.75;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 1rem;
}

.footer__copy {
    font-size: 0.8rem;
    opacity: 0.6;
    text-align: center;
}

/* Sticky Bar */
.sticky-bar {
    display: flex;
    justify-content: center;
    position: fixed;
    bottom: 0;
    inset-inline: 0;
    z-index: 200;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-top: 1px solid rgba(226, 232, 240, 0.8);
    padding: 0.65rem 1.15rem calc(0.65rem + env(safe-area-inset-bottom, 0px));
    box-shadow: 0 -8px 32px rgba(15, 23, 42, 0.08);
}

.sticky-bar__call-now {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    min-height: 3.35rem;
    padding: 0.85rem 1.75rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #00b870 0%, #008f5a 55%, #007a4e 100%);
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(1.05rem, 4.5vw, 1.2rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    text-decoration: none;
    border: none;
    box-shadow:
        0 10px 24px rgba(0, 143, 90, 0.45),
        0 0 0 2px rgba(255, 255, 255, 0.85),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.sticky-bar__call-now svg {
    flex-shrink: 0;
}

.sticky-bar__call-now:active {
    transform: scale(0.98);
    filter: brightness(0.96);
}

/* Exit Popup */
.exit-popup {
    position: fixed;
    inset: 0;
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.exit-popup[hidden] {
    display: none;
}

.exit-popup__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
}

.exit-popup__content {
    position: relative;
    background: rgba(255, 255, 255, 0.98);
    border-radius: var(--radius-xl);
    padding: 2rem;
    max-width: 440px;
    width: 100%;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    animation: popupIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: none;
}

@keyframes popupIn {
    from {
        opacity: 0;
        transform: scale(0.92) translateY(10px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.exit-popup__close {
    position: absolute;
    top: 0.75rem;
    inset-inline-start: 0.75rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-muted);
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.exit-popup__close:hover {
    background: var(--color-bg);
}

.exit-popup__headline {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--color-primary-dark);
    margin: 0 0 1.25rem;
    padding-inline: 2rem 0.5rem;
    text-align: center;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.lead-form--popup .lead-form__title {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
}

.lead-form--popup #exit-phone {
    text-align: right;
}

.package-popup__content {
    max-width: 500px;
}

.package-popup__list {
    list-style: none;
    margin: 0 0 1.25rem;
    padding: 0;
    display: grid;
    gap: 0.55rem;
}

.package-popup__list li {
    position: relative;
    padding-inline-start: 1.1rem;
    color: var(--color-text);
}

.package-popup__list li::before {
    content: "•";
    position: absolute;
    inset-inline-start: 0;
    color: var(--color-cta);
    font-weight: 900;
}

/* Cookie Bar */
.cookie-bar {
    position: fixed;
    bottom: var(--sticky-h);
    inset-inline: 0;
    z-index: 320;
    background: rgba(0, 40, 85, 0.95);
    backdrop-filter: blur(12px);
    color: #fff;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.85rem;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-bar[hidden] {
    display: none;
}

/* Thank You */
.thank-you-page {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-hero);
    padding: 2rem 1.25rem 5rem;
    position: relative;
    overflow: hidden;
}

.thank-you-page::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(228, 0, 127, 0.15) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 10% 80%, rgba(77, 163, 255, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

.thank-you {
    width: 100%;
    max-width: 440px;
    position: relative;
    z-index: 1;
}

.thank-you__card {
    background: rgba(255, 255, 255, 0.97);
    border-radius: var(--radius-xl);
    padding: 2.75rem 2rem;
    max-width: 440px;
    width: 100%;
    text-align: center;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
}

.thank-you__icon {
    width: 4.5rem;
    height: 4.5rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0.05) 100%);
    color: var(--color-success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline: auto;
    margin-bottom: 1.5rem;
    font-size: 1.85rem;
    font-weight: 700;
    border: 2px solid rgba(16, 185, 129, 0.2);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.15);
}

.thank-you__card h1 {
    font-family: var(--font-display);
    font-size: 1.65rem;
    font-weight: 900;
    color: var(--color-primary-dark);
    margin-bottom: 0.85rem;
    letter-spacing: -0.02em;
}

.thank-you__card>p {
    color: var(--color-muted);
    margin-bottom: 1.5rem;
}

.thank-you__actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 0.25rem;
}

.thank-you__card .disclosure--compact {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
}

.thank-you__card .disclosure--compact + .disclosure--compact {
    margin-top: 0.5rem;
    padding-top: 0;
    border-top: none;
}

/* Inner Pages */
.inner-page-body {
    background: var(--color-bg);
}

.page-hero {
    position: relative;
    overflow: hidden;
    background: var(--gradient-hero);
    color: #fff;
    padding: 2.5rem 0 3rem;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 80% at 100% 50%, rgba(228, 0, 127, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse 50% 60% at 0% 100%, rgba(77, 163, 255, 0.12) 0%, transparent 55%);
    pointer-events: none;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero__breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    opacity: 0.85;
}

.page-hero__breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.page-hero__breadcrumb a:hover {
    text-decoration: underline;
}

.page-hero__breadcrumb span[aria-hidden="true"] {
    opacity: 0.6;
}

.page-hero__title {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 900;
    letter-spacing: -0.02em;
}

.page-hero__lead {
    margin: 0.75rem 0 0;
    max-width: 40rem;
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.92;
}

.inner-content {
    padding: 2.5rem 0 4rem;
    margin-top: -1.5rem;
    position: relative;
    z-index: 2;
}

.inner-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    padding: 2rem 1.5rem;
}

.inner-card + .inner-card {
    margin-top: 1.25rem;
}

.inner-card__title {
    margin: 0 0 0.75rem;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-primary-dark);
}

.inner-card p {
    color: var(--color-text);
    line-height: 1.75;
}

.inner-card p + p {
    margin-top: 0.75rem;
}

.inner-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.65rem;
}

.inner-list li {
    position: relative;
    padding-inline-start: 1.25rem;
    line-height: 1.6;
}

.inner-list li::before {
    content: "•";
    position: absolute;
    inset-inline-start: 0;
    color: var(--color-cta);
    font-weight: 900;
}

.inner-highlight {
    background: var(--color-primary-light);
    border: 1px solid rgba(0, 102, 204, 0.15);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    margin-top: 1.25rem;
}

.inner-highlight p:last-child {
    margin-bottom: 0;
}

.inner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
}

.contact-grid {
    display: grid;
    gap: 1rem;
    margin: 1.5rem 0;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-card:hover {
    border-color: rgba(0, 102, 204, 0.25);
    box-shadow: var(--shadow-sm);
}

.contact-card__icon {
    flex-shrink: 0;
    width: 2.75rem;
    height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary-light);
    color: var(--color-primary);
    border-radius: var(--radius);
}

.contact-card__icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.contact-card__label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-muted);
    margin-bottom: 0.25rem;
}

.contact-card__value {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-primary-dark);
}

.contact-card a.contact-card__value {
    text-decoration: none;
}

.contact-card a.contact-card__value:hover {
    color: var(--color-primary);
    text-decoration: underline;
}

.contact-cta {
    margin-top: 1.5rem;
    padding: 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.06) 0%, rgba(228, 0, 127, 0.04) 100%);
    border: 1px dashed rgba(0, 102, 204, 0.2);
    border-radius: var(--radius-lg);
}

.contact-cta p {
    margin: 0 0 1rem;
    color: var(--color-muted);
}

.legal-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    margin: 1.25rem 0 1.75rem;
    padding: 0.5rem;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
}

.legal-nav a {
    flex: 1 1 auto;
    text-align: center;
    padding: 0.65rem 1rem;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--color-primary-dark);
    text-decoration: none;
    transition: background var(--transition), color var(--transition);
}

.legal-nav a:hover {
    background: var(--color-primary-light);
    text-decoration: none;
}

.legal-section {
    scroll-margin-top: calc(var(--header-h) + 1rem);
}

.legal-section + .legal-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.legal-section h2 {
    margin: 0 0 0.75rem;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--color-primary-dark);
}

.legal-section ul {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 0;
    display: grid;
    gap: 0.55rem;
}

.legal-section ul li {
    position: relative;
    padding-inline-start: 1.25rem;
    line-height: 1.65;
    color: var(--color-text);
}

.legal-section ul li::before {
    content: "•";
    position: absolute;
    inset-inline-start: 0;
    color: var(--color-cta);
    font-weight: 900;
}

.legal-meta {
    margin-top: 1rem;
    padding: 1rem 1.25rem;
    background: var(--color-bg);
    border-radius: var(--radius);
    font-size: 0.9rem;
    color: var(--color-muted);
}

.about-features {
    display: grid;
    gap: 1rem;
    margin-top: 1.25rem;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1rem 1.15rem;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
}

.about-feature__icon {
    flex-shrink: 0;
    color: var(--color-cta);
}

.about-feature__icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.about-feature strong {
    display: block;
    margin-bottom: 0.15rem;
    color: var(--color-primary-dark);
}

.about-feature span {
    font-size: 0.9rem;
    color: var(--color-muted);
    line-height: 1.5;
}

.inner-page-body .a11y-widget {
    bottom: calc(var(--sticky-h) + 0.75rem);
}

@media (min-width: 768px) {
    .inner-page-body .a11y-widget {
        bottom: 1rem;
    }

    .inner-card {
        padding: 2.5rem;
    }

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

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

    .inner-page-body {
        padding-bottom: 0;
    }
}

/* Reveal */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }

/* Responsive */
@media (min-width: 640px) {
    .benefits__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .header__actions .btn--outline {
        display: inline-flex;
    }

    .hero__call {
        width: auto;
    }

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

@media (min-width: 640px) and (max-width: 767px) {
    .packages__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.75rem 1.5rem;
        padding-top: 1rem;
    }

    .packages__grid .package-card:last-child:nth-child(odd):not(:only-child) {
        grid-column: 1 / -1;
        justify-self: center;
        width: 100%;
        max-width: calc((100% - 1.5rem) / 2);
    }
}

@media (min-width: 768px) {
    .section {
        padding-block: 4.5rem;
    }

    .hero-form.section {
        padding-block: 2rem 3rem;
    }

    .packages.section {
        padding-block: 2.25rem 3rem;
    }

    .packages__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.5rem;
        padding-top: 1.25rem;
    }

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

    .final-cta__grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .sticky-bar {
        display: none;
    }

    .footer {
        padding-bottom: 2.5rem;
    }

    .cookie-bar {
        bottom: 0;
    }
}

@media (min-width: 1100px) {
    .benefits__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 960px) {
    .section__side-decor {
        display: none;
    }
}

@media (max-width: 767px) {
    main {
        display: flex;
        flex-direction: column;
    }

    .hero {
        order: 1;
    }

    #hero-form-section {
        order: 2;
        padding-block: 1.25rem 2rem;
    }

    #packages {
        order: 3;
        padding-block: 1.5rem 2rem;
    }

    #benefits {
        order: 4;
    }

    #faq {
        order: 5;
    }

    #final-cta {
        order: 6;
    }

    .header__actions .btn--outline {
        display: none;
    }

    .header__actions .btn--cta {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }

    #hero-form-section .hero__form-wrap {
        padding: 1.25rem;
    }

    .package-card {
        padding: 1.25rem 1rem;
    }

    .section {
        padding-block: 2.5rem;
    }

    body:not(.thank-you-page) {
        padding-bottom: var(--sticky-h);
    }
}

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

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

    .reveal {
        opacity: 1;
        transform: none;
    }

    body::before,
    .side-decor__float {
        animation: none;
    }

    .btn:hover,
    .package-card:hover,
    .benefit-card:hover,
    .package-card:hover .package-card__network {
        transform: none;
    }
}