:root {
    --bg: #f3f8ff;
    --bg-soft: #edf5ff;
    --white: #ffffff;
    --text: #13253c;
    --muted: #60728a;
    --primary: #0b63ce;
    --primary-2: #0056b3;
    --primary-3: #003f88;
    --primary-soft: #eaf3ff;
    --line: rgba(140, 177, 235, 0.30);
    --line-strong: rgba(109, 154, 231, 0.34);
    --shadow-sm: 0 8px 24px rgba(16, 42, 84, 0.06);
    --shadow-md: 0 16px 40px rgba(16, 42, 84, 0.10);
    --shadow-lg: 0 26px 70px rgba(0, 63, 136, 0.18);
    --radius-sm: 16px;
    --radius-md: 24px;
    --radius-lg: 32px;
    --max: 1360px;
    --transition: 0.28s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 0% 0%, rgba(91, 188, 255, 0.16), transparent 26%),
        radial-gradient(circle at 100% 0%, rgba(11, 99, 206, 0.12), transparent 26%),
        linear-gradient(180deg, #eef5ff 0%, #f7fbff 46%, #f2f7ff 100%);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.5;
}

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

.landing-v2 {
    width: 100%;
    padding: 14px 14px 120px;
}

/* TOPBAR STICKY */
.topbar-sticky {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 14px 0;
}

.topbar-sticky__inner {
    max-width: 1600px;
    margin: 0 auto;
    background: rgba(255,255,255,0.78);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(158, 188, 236, 0.34);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(17, 43, 88, 0.08);
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
}

.topbar-sticky__info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.topbar-sticky__info strong {
    color: #103a68;
    font-size: 0.95rem;
}

.topbar-sticky__info span {
    color: var(--muted);
    font-size: 0.88rem;
}

.topbar-sticky__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 22px;
    border-radius: 999px;
    font-weight: 700;
    border: 1px solid transparent;
    transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
}

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

.btn--sm {
    min-height: 42px;
    padding: 10px 16px;
    font-size: 0.9rem;
}

.btn--primary {
    background: linear-gradient(135deg, #ffffff 0%, #f6faff 100%);
    color: var(--primary);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.btn--primary:hover {
    background: #ffffff;
}

.btn--secondary {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.22);
    color: white;
}

.btn--secondary:hover {
    background: rgba(255,255,255,0.16);
}

.topbar-sticky .btn--secondary {
    color: var(--primary);
    border-color: rgba(105, 154, 232, 0.30);
    background: #eef5ff;
}

.topbar-sticky .btn--secondary:hover {
    background: #e8f1ff;
}

.btn--ghost {
    color: #dcecff;
    background: transparent;
}

.btn--ghost:hover {
    color: white;
}

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

/* HERO */
.hero-v2 {
    max-width: 1600px;
    margin: 14px auto 22px;
    position: relative;
    overflow: hidden;
    border-radius: 36px;
    background: linear-gradient(135deg, #0b63ce 0%, #0056b3 48%, #003f88 100%);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255,255,255,0.10);
}

.hero-v2__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
    opacity: 0.55;
}

.hero-v2__glow--1 {
    width: 320px;
    height: 320px;
    background: rgba(91,188,255,0.22);
    top: -60px;
    right: -40px;
}

.hero-v2__glow--2 {
    width: 260px;
    height: 260px;
    background: rgba(255,255,255,0.12);
    bottom: -80px;
    left: 10%;
}

.hero-v2__inner {
    position: relative;
    z-index: 1;
    max-width: var(--max);
    margin: 0 auto;
    padding: 60px 34px;
}

.hero-v2__content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 34px;
    align-items: center;
}

.hero-v2__badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.16);
    color: #fff;
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.hero-v2__eyebrow,
.section-v2__kicker {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.82rem;
    font-weight: 800;
}

.hero-v2__eyebrow {
    color: #cfe3ff;
    margin-bottom: 14px;
}

.hero-v2 h1 {
    font-size: clamp(2.5rem, 5vw, 5.1rem);
    line-height: 0.96;
    letter-spacing: -0.045em;
    font-weight: 900;
    color: white;
    margin-bottom: 16px;
    max-width: 820px;
    text-wrap: balance;
}

.hero-v2 h1 span {
    display: block;
    color: #d4e8ff;
    font-size: clamp(1.1rem, 1.9vw, 1.65rem);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-top: 12px;
}

.hero-v2__text {
    color: #ebf4ff;
    max-width: 760px;
    font-size: 1.08rem;
    line-height: 1.76;
    margin-bottom: 22px;
}

.hero-v2__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.hero-v2__trust span {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.12);
    color: #eff7ff;
    font-size: 0.92rem;
    font-weight: 600;
}

.hero-v2__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.hero-v2__actions--center {
    justify-content: center;
}

.hero-v2__proof {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.proof-item {
    min-width: 120px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.12);
}

.proof-item strong {
    display: block;
    color: white;
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.proof-item span {
    color: #dbeaff;
    font-size: 0.9rem;
}

/* VISUAL HERO */
.hero-stack {
    position: relative;
    min-height: 500px;
}

.hero-stack__card {
    position: absolute;
    width: 100%;
    max-width: 390px;
    border-radius: 28px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.14);
    padding: 18px;
}

.hero-stack__card--front {
    top: 40px;
    right: 10px;
    z-index: 3;
    transform: rotate(-3deg);
}

.hero-stack__card--middle {
    top: 150px;
    left: 10px;
    z-index: 2;
    transform: rotate(5deg);
}

.hero-stack__card--back {
    top: 270px;
    right: 40px;
    z-index: 1;
    transform: rotate(-5deg);
}

.mini-window {
    background: white;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(17, 43, 88, 0.10);
}

.mini-window__top {
    display: flex;
    gap: 8px;
    padding: 12px 14px;
    background: #f5f8fc;
    border-bottom: 1px solid rgba(194, 210, 232, 0.45);
}

.mini-window__top span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d0dae9;
}

.mini-window__body {
    padding: 18px;
}

.mini-window__body h3 {
    color: #14395f;
    font-size: 1rem;
    line-height: 1.35;
    margin-bottom: 14px;
}

.mini-tag {
    display: inline-flex;
    padding: 7px 10px;
    border-radius: 999px;
    background: #ecfdf3;
    color: #12804a;
    font-size: 0.78rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.mini-tag--blue {
    background: #eaf3ff;
    color: #0b63ce;
}

.mini-tag--dark {
    background: #eef2ff;
    color: #3043a8;
}

.fake-bars,
.fake-lines {
    display: grid;
    gap: 10px;
}

.fake-bars span,
.fake-lines span {
    display: block;
    border-radius: 999px;
    background: linear-gradient(90deg, #e9f2ff, #d9e9ff);
    height: 12px;
}

.fake-bars span:nth-child(1) { width: 100%; }
.fake-bars span:nth-child(2) { width: 86%; }
.fake-bars span:nth-child(3) { width: 72%; }
.fake-bars span:nth-child(4) { width: 58%; }

.fake-lines span:nth-child(1) { width: 100%; }
.fake-lines span:nth-child(2) { width: 82%; }
.fake-lines span:nth-child(3) { width: 64%; }

.hero-price-float {
    position: absolute;
    left: 10px;
    top: 0;
    z-index: 5;
    background: white;
    color: var(--text);
    border-radius: 22px;
    padding: 16px 18px;
    box-shadow: 0 18px 40px rgba(17, 43, 88, 0.14);
    border: 1px solid rgba(167, 194, 236, 0.32);
}

.hero-price-float span {
    display: block;
    font-size: 0.82rem;
    color: var(--muted);
    margin-bottom: 6px;
}

.hero-price-float strong {
    display: block;
    font-size: 2rem;
    line-height: 1;
    color: var(--primary);
    font-weight: 900;
}

.hero-price-float small {
    color: var(--muted);
    font-size: 0.82rem;
}

/* SECTIONS */
.section-v2 {
    max-width: 1600px;
    margin: 0 auto 22px;
    padding: 34px;
    border-radius: 30px;
    background: rgba(255,255,255,0.76);
    border: 1px solid var(--line);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
}

.section-v2--soft {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.78) 0%, rgba(240,247,255,0.82) 100%);
}

.section-v2--cta {
    background:
        linear-gradient(135deg, rgba(11,99,206,0.06), rgba(91,188,255,0.08)),
        rgba(255,255,255,0.78);
}

.section-v2--final {
    background: linear-gradient(135deg, #f6faff 0%, #ecf5ff 100%);
}

.section-v2--split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}

.section-v2__head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 24px;
    margin-bottom: 24px;
}

.section-v2__kicker {
    color: var(--primary);
    margin-bottom: 10px;
}

.section-v2 h2,
.info-panel h2,
.final-box h2,
.cta-panel h2 {
    font-size: clamp(1.9rem, 3vw, 3.1rem);
    line-height: 1.04;
    letter-spacing: -0.03em;
    color: #12385f;
}

.section-v2__intro,
.info-panel p,
.final-box p,
.cta-panel p {
    color: var(--muted);
    line-height: 1.75;
    max-width: 660px;
}

/* BENEFITS CARDS */
.benefit-grid-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.benefit-card-v2 {
    background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(247,251,255,0.92) 100%);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.benefit-card-v2:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--line-strong);
}

.benefit-card-v2__icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: linear-gradient(135deg, #eaf3ff, #f7fbff);
    border: 1px solid rgba(138, 177, 241, 0.34);
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.benefit-card-v2 h3 {
    color: #103a68;
    font-size: 1.08rem;
    margin-bottom: 10px;
}

.benefit-card-v2 p {
    color: var(--muted);
    line-height: 1.7;
}

/* BUNDLE */
.bundle-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.bundle-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.97) 0%, rgba(244,249,255,0.94) 100%);
    border: 1px solid var(--line);
    border-radius: 26px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.bundle-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.bundle-pill {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-3));
    color: white;
    font-weight: 800;
    box-shadow: 0 12px 24px rgba(11, 99, 206, 0.22);
}

.bundle-card h3 {
    color: #123b68;
    font-size: 1.12rem;
}

.bundle-card ul {
    list-style: none;
    display: grid;
    gap: 12px;
}

.bundle-card li {
    position: relative;
    padding-left: 18px;
    color: var(--muted);
    line-height: 1.65;
}

.bundle-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    font-weight: 900;
}

/* SHOWCASE */
.showcase-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 18px;
}

.showcase-card {
    min-height: 240px;
    border-radius: 24px;
    padding: 22px;
    background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(240,247,255,0.94) 100%);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.showcase-card--large {
    min-height: 240px;
}

.showcase-card__label {
    display: inline-flex;
    padding: 7px 10px;
    border-radius: 999px;
    background: #eaf3ff;
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.showcase-card h3 {
    color: #12385f;
    font-size: 1.06rem;
    line-height: 1.35;
    margin-bottom: 18px;
}

.showcase-card__image {
    width: 100%;
    display: block;
    border-radius: 18px;
    margin-bottom: 16px;
    border: 1px solid rgba(140, 177, 235, 0.22);
    box-shadow: 0 12px 28px rgba(17, 43, 88, 0.08);
    background: #f8fbff;
    object-fit: cover;
}

.showcase-card--large .showcase-card__image {
    min-height: 220px;
    max-height: 320px;
}

.showcase-card:not(.showcase-card--large) .showcase-card__image {
    min-height: 180px;
    max-height: 240px;
}

.showcase-card__text {
    color: var(--muted);
    line-height: 1.65;
    font-size: 0.95rem;
    margin-top: 2px;
}

.showcase-card {
    display: flex;
    flex-direction: column;
}

.showcase-card h3 {
    margin-bottom: 14px;
}

@media (max-width: 920px) {
    .showcase-card--large .showcase-card__image,
    .showcase-card:not(.showcase-card--large) .showcase-card__image {
        min-height: auto;
        max-height: none;
    }
}

.sheet-ui,
.doc-ui,
.check-ui {
    display: grid;
    gap: 10px;
}

.sheet-ui__row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.sheet-ui__row span,
.doc-ui span,
.check-ui span {
    display: block;
    border-radius: 12px;
    background: linear-gradient(135deg, #eaf2ff, #dcecff);
}

.sheet-ui__row span {
    height: 48px;
}

.doc-ui span {
    height: 12px;
}

.doc-ui span:nth-child(1) { width: 100%; }
.doc-ui span:nth-child(2) { width: 86%; }
.doc-ui span:nth-child(3) { width: 74%; }
.doc-ui span:nth-child(4) { width: 58%; }

.check-ui span {
    height: 18px;
    position: relative;
    padding-left: 28px;
}

.check-ui span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1px;
    width: 18px;
    height: 18px;
    border-radius: 6px;
    background: #cfe4ff;
}

/* INFO PANELS */
.info-panel {
    background: rgba(255,255,255,0.78);
    border: 1px solid var(--line);
    border-radius: 30px;
    padding: 32px;
    box-shadow: var(--shadow-sm);
}

.info-panel--accent {
    background: linear-gradient(180deg, rgba(234,243,255,0.95) 0%, rgba(255,255,255,0.90) 100%);
}

.info-panel ul {
    list-style: none;
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.info-panel li {
    position: relative;
    padding-left: 22px;
    color: var(--muted);
    line-height: 1.7;
}

.info-panel li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #16a34a;
    font-weight: 900;
}

/* COMPARISON */
.comparison-table {
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    background: white;
}

.comparison-table__head,
.comparison-row {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1.2fr;
}

.comparison-table__head {
    background: linear-gradient(135deg, #123f74, #0b63ce);
    color: white;
    font-weight: 700;
}

.comparison-table__head > div,
.comparison-row > div {
    padding: 16px 18px;
    border-bottom: 1px solid rgba(202, 220, 245, 0.52);
}

.comparison-row {
    background: white;
}

.comparison-row:nth-child(even) {
    background: #f8fbff;
}

.comparison-row > div {
    color: #2b4763;
}

.featured-col {
    background: rgba(234,243,255,0.85);
    font-weight: 700;
    color: #0b63ce !important;
}

.comparison-table__head .featured-col {
    background: rgba(255,255,255,0.12);
    color: white !important;
}

.featured-col--strong {
    font-size: 1.2rem;
    font-weight: 900;
}

.comparison-row--price > div {
    font-weight: 800;
}

/* CTA PANEL */
.cta-panel {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
    align-items: center;
}

.cta-panel__right {
    background: white;
    border: 1px solid var(--line);
    border-radius: 26px;
    padding: 26px;
    box-shadow: var(--shadow-md);
}

.cta-price {
    font-size: clamp(2.8rem, 5vw, 4.4rem);
    line-height: 1;
    color: var(--primary);
    font-weight: 900;
    margin-bottom: 12px;
}

.cta-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}

.cta-points span {
    background: #eef5ff;
    color: #12416f;
    border: 1px solid rgba(126, 165, 236, 0.28);
    border-radius: 999px;
    padding: 10px 14px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* FAQ */
.faq-v2 {
    display: grid;
    gap: 14px;
}

.faq-v2__item {
    background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(247,251,255,0.94) 100%);
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-v2__item summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 22px;
    color: #12385f;
    font-weight: 700;
    position: relative;
    padding-right: 56px;
}

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

.faq-v2__item summary::after {
    content: "+";
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.35rem;
    color: var(--primary);
}

.faq-v2__item[open] summary::after {
    content: "–";
}

.faq-v2__item p {
    padding: 0 22px 20px;
    color: var(--muted);
    line-height: 1.75;
}

.final-box {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.final-box .section-v2__kicker {
    text-align: center;
    margin-bottom: 12px;
}

.final-box h2 {
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
}

.final-box p {
    margin-top: 18px;
    max-width: 760px;
    text-align: center;
    color: var(--muted);
    line-height: 1.75;
}

.final-box .hero-v2__actions {
    justify-content: center;
    width: 100%;
    margin-top: 26px;
}

/* RESPONSIVE */
@media (max-width: 1250px) {
    .hero-v2__content,
    .cta-panel {
        grid-template-columns: 1fr;
    }

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

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

    .showcase-card--large {
        grid-column: span 2;
    }

    .section-v2--split {
        grid-template-columns: 1fr;
    }

    .comparison-table__head,
    .comparison-row {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

@media (max-width: 920px) {
    .topbar-sticky__inner,
    .section-v2__head {
        flex-direction: column;
        align-items: flex-start;
    }

    .topbar-sticky__actions {
        width: 100%;
    }

    .topbar-sticky__actions .btn {
        flex: 1;
    }

    .hero-v2__inner,
    .section-v2 {
        padding: 24px 18px;
    }

    .hero-v2,
    .section-v2 {
        border-radius: 24px;
    }

    .hero-v2__actions {
        flex-direction: column;
    }

    .btn,
    .btn--full {
        width: 100%;
    }

    .hero-v2__trust,
    .hero-v2__proof,
    .cta-points {
        flex-direction: column;
        align-items: flex-start;
    }

    .benefit-grid-v2,
    .bundle-columns,
    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .showcase-card--large {
        grid-column: auto;
    }

    .hero-stack {
        min-height: 620px;
    }
}

@media (max-width: 720px) {
    .landing-v2 {
        padding: 10px 10px 110px;
    }

    .topbar-sticky {
        padding: 8px 10px 0;
    }

    .topbar-sticky__actions {
        flex-direction: column;
    }

    .comparison-table {
        overflow-x: auto;
    }

    .comparison-table__head,
    .comparison-row {
        min-width: 760px;
    }

    .hero-stack {
        min-height: 540px;
    }

    .hero-stack__card {
        max-width: 300px;
    }

    .hero-stack__card--front {
        top: 30px;
        right: 0;
    }

    .hero-stack__card--middle {
        top: 170px;
        left: 0;
    }

    .hero-stack__card--back {
        top: 310px;
        right: 0;
    }

    .hero-price-float {
        left: 0;
        top: -6px;
    }
}

.section-v2--alternatives {
    background: linear-gradient(180deg, rgba(255,255,255,0.78) 0%, rgba(244,249,255,0.88) 100%);
}

.alternatives-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.alt-pack-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(247,251,255,0.94) 100%);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.alt-pack-card__tag {
    display: inline-flex;
    padding: 7px 10px;
    border-radius: 999px;
    background: #eef5ff;
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.alt-pack-card h3 {
    color: #12385f;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.alt-pack-card__price {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 12px;
}

.alt-pack-card p {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 14px;
}

.alt-pack-card ul {
    list-style: none;
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
}

.alt-pack-card li {
    position: relative;
    padding-left: 18px;
    color: var(--muted);
    line-height: 1.6;
}

.alt-pack-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    font-weight: 900;
}

.alt-pack-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.btn--outline {
    background: transparent;
    color: var(--primary);
    border: 1px solid rgba(109, 154, 231, 0.35);
}

.btn--outline:hover {
    background: #eef5ff;
}

.btn--ghost-light {
    background: #f7fbff;
    color: #31506f;
    border: 1px solid rgba(140, 177, 235, 0.24);
}

.btn--ghost-light:hover {
    background: #eef5ff;
}

@media (max-width: 920px) {
    .alternatives-grid {
        grid-template-columns: 1fr;
    }

    .alt-pack-card__actions {
        flex-direction: column;
    }
}

/* =========================
   FOOTER LEGAL
========================= */
.footer-legal {
    width: 100%;
    background: transparent;
    text-align: center;
    padding: 22px 16px 28px;
    z-index: 10;
}

.footer-legal a,
#cookie-settings-btn {
    color: #3b5f86;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 8px;
    transition: color 0.25s ease, opacity 0.25s ease;
    cursor: pointer;
}

.footer-legal a:hover,
#cookie-settings-btn:hover {
    color: #0b63ce;
    opacity: 1;
}

.footer-legal a:not(:last-child)::after,
.footer-legal #cookie-settings-btn::after {
    content: "";
}

/* =========================
   MODAL GENERAL
========================= */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    overflow: auto;
    background: rgba(15, 23, 42, 0.52);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 24px 16px;
}

/* =========================
   CONTENIDO MODAL
========================= */
.modal-content {
    background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(247,250,255,0.96) 100%);
    margin: 4vh auto;
    padding: 28px 26px;
    border-radius: 24px;
    width: 100%;
    max-width: 860px;
    position: relative;
    border: 1px solid rgba(158, 188, 236, 0.28);
    box-shadow: 0 24px 70px rgba(17, 43, 88, 0.18);
}

.modal-text {
    max-height: 70vh;
    overflow-y: auto;
    font-size: 15px;
    color: #42556d;
    line-height: 1.75;
    padding-right: 6px;
}

/* Scroll bonito */
.modal-text::-webkit-scrollbar {
    width: 10px;
}

.modal-text::-webkit-scrollbar-track {
    background: #edf4ff;
    border-radius: 999px;
}

.modal-text::-webkit-scrollbar-thumb {
    background: #c7dbfa;
    border-radius: 999px;
}

.modal-text::-webkit-scrollbar-thumb:hover {
    background: #a9c7f3;
}

/* =========================
   BOTÓN CERRAR
========================= */
.close {
    position: absolute;
    top: 16px;
    right: 18px;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: #6b7d94;
    cursor: pointer;
    border-radius: 50%;
    background: #f2f7ff;
    border: 1px solid rgba(158, 188, 236, 0.24);
    transition: all 0.25s ease;
}

.close:hover {
    color: #0b63ce;
    background: #e9f2ff;
    transform: rotate(90deg);
}

/* =========================
   TIPOGRAFÍA MODAL
========================= */
.modal-text h2,
.modal-text h3 {
    margin-top: 1.5em;
    margin-bottom: 0.6em;
    color: #12385f;
    line-height: 1.25;
}

.modal-text h2 {
    font-size: 1.55rem;
    font-weight: 800;
}

.modal-text h3 {
    font-size: 1.12rem;
    font-weight: 700;
}

.modal-text p {
    margin-bottom: 1em;
    color: #4f6278;
    line-height: 1.75;
    font-size: 0.98rem;
}

.modal-text ul {
    margin: 0 0 1.5em 1.25em;
    color: #4f6278;
    font-size: 0.98rem;
    line-height: 1.75;
}

.modal-text ul li {
    margin-bottom: 0.55em;
}

/* =========================
   COOKIE BANNER
========================= */
#cookie-banner {
    display: none;
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(158, 188, 236, 0.30);
    box-shadow: 0 20px 50px rgba(17, 43, 88, 0.16);
    border-radius: 22px;
    padding: 18px 20px;
    max-width: 760px;
    width: min(92%, 760px);
    z-index: 10000;
    color: #30455f;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

#cookie-banner .cookie-text {
    flex: 1 1 340px;
    min-width: 240px;
}

#cookie-banner .cookie-text p {
    margin: 0;
    line-height: 1.65;
    font-weight: 500;
    font-size: 0.95rem;
    color: #4b5f76;
}

.cookie-buttons {
    flex: 0 1 auto;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* =========================
   BOTONES COOKIES
========================= */
#cookie-banner button,
#modal-preferencias button {
    padding: 10px 16px;
    font-size: 0.92rem;
    font-weight: 700;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.25s ease;
}

#accept-cookies,
#modal-preferencias button:first-of-type {
    background: linear-gradient(135deg, #0b63ce, #0056b3);
    color: white;
    box-shadow: 0 10px 22px rgba(11, 99, 206, 0.18);
}

#accept-cookies:hover,
#modal-preferencias button:first-of-type:hover {
    background: linear-gradient(135deg, #0958b8, #004792);
    transform: translateY(-1px);
}

#reject-cookies {
    background: #f3f7fd;
    color: #294864;
    border: 1px solid rgba(158, 188, 236, 0.28);
}

#reject-cookies:hover {
    background: #eaf2ff;
    color: #0b63ce;
    transform: translateY(-1px);
}

/* =========================
   PREFERENCIAS
========================= */
#modal-preferencias .modal-text label {
    display: block;
    margin: 14px 0 10px;
    font-weight: 700;
    cursor: pointer;
    font-size: 0.98rem;
    color: #12385f;
    line-height: 1.5;
}

#modal-preferencias .modal-text input[type="checkbox"] {
    margin-right: 8px;
    cursor: pointer;
    accent-color: #0b63ce;
    transform: scale(1.08);
}

.botones {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

#modal-preferencias button:last-of-type {
    background: #eef5ff;
    color: #294864;
    border: 1px solid rgba(158, 188, 236, 0.28);
    margin-left: 0;
}

#modal-preferencias button:last-of-type:hover {
    background: #e2edff;
    color: #0b63ce;
    transform: translateY(-1px);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
    .footer-legal {
        padding: 20px 14px 26px;
    }

    .footer-legal a,
    #cookie-settings-btn {
        display: inline-block;
        margin: 4px 8px;
        font-size: 0.92rem;
    }

    .modal-content {
        padding: 22px 18px;
        border-radius: 20px;
    }

    .modal-text {
        max-height: 68vh;
    }

    #cookie-banner {
        bottom: 14px;
        width: calc(100% - 20px);
        padding: 16px;
        border-radius: 18px;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    #cookie-banner button,
    #modal-preferencias button {
        width: 100%;
    }
}