@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --navy: #1a2b4a;
    --navy-light: #2d4368;
    --slate: #5a6b85;
    --bg: #f0f3f8;
    --surface: #ffffff;
    --surface-muted: #e8edf4;
    --line: #d4dce8;
    --accent: #d4243b;
    --accent-hover: #b81e34;
    --accent-soft: rgba(212, 36, 59, 0.1);
    --success: #0d7a5f;
    --shadow: 0 16px 40px rgba(26, 43, 74, 0.1);
    --shadow-sm: 0 4px 16px rgba(26, 43, 74, 0.07);
    --radius: 12px;
    --radius-lg: 20px;
    --max-width: 1140px;
    --transition: 0.2s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    color: var(--navy);
    background: var(--bg);
    line-height: 1.65;
}

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

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

a:hover {
    color: var(--accent-hover);
}

h1, h2, h3 {
    margin: 0;
    font-family: 'DM Serif Display', serif;
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

p, ul, ol {
    margin: 0;
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 22px;
    border-radius: 8px;
    border: 1px solid transparent;
    font-family: inherit;
    font-weight: 700;
    font-size: 0.94rem;
    cursor: pointer;
    transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.button:focus-visible,
.text-link:focus-visible,
.site-nav a:focus-visible,
.footer-links a:focus-visible,
.contact-list a:focus-visible,
.faq-question:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.button--primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 4px 14px rgba(212, 36, 59, 0.28);
}

.button--primary:hover {
    background: var(--accent-hover);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(212, 36, 59, 0.32);
}

.button--ghost {
    border-color: var(--line);
    background: var(--surface);
    color: var(--navy);
}

.button--ghost:hover {
    border-color: var(--navy-light);
    background: var(--surface-muted);
    color: var(--navy);
}

.button--compact {
    padding: 9px 16px;
    font-size: 0.88rem;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--navy);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
    gap: 20px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: #fff;
}

.brand img {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.brand small {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.03em;
}

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

.site-nav a {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
    font-weight: 600;
}

.site-nav a:hover,
.site-nav a.active {
    color: #fff;
}

.menu-toggle {
    display: none;
    padding: 8px;
    border: 0;
    background: transparent;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px 0;
    background: #fff;
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero {
    position: relative;
    padding: 48px 0 56px;
    background: linear-gradient(145deg, #152238 0%, #1a2b4a 45%, #243a5e 100%);
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 70px 0 auto;
    height: 320px;
    background: radial-gradient(ellipse 80% 60% at 70% 0%, rgba(212, 36, 59, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

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

.hero__wrap {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    align-items: center;
}

.hero__content {
    color: #fff;
}

.hero__content .eyebrow {
    color: rgba(255, 255, 255, 0.72);
}

.hero__content h1 {
    font-size: clamp(2.1rem, 4.2vw, 3.25rem);
    margin-bottom: 18px;
    color: #fff;
    max-width: 16ch;
}

.hero__lead {
    max-width: 48ch;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.02rem;
    line-height: 1.7;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.hero__actions .button--primary {
    min-width: 200px;
}

.hero__actions .button--ghost {
    border-color: rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    backdrop-filter: blur(4px);
}

.hero__actions .button--ghost:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.75);
    color: #fff;
}

.hero__image {
    position: relative;
}

.hero__image::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
    pointer-events: none;
}

.hero__image img {
    width: 100%;
    border-radius: var(--radius-lg);
    object-fit: cover;
    aspect-ratio: 5 / 4;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
    display: block;
}

.trust-strip {
    padding: 28px 0 40px;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
}

.trust-strip__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.trust-strip__item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--surface);
    border: 1px solid var(--line);
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--navy);
    box-shadow: var(--shadow-sm);
}

.trust-strip__item strong {
    color: var(--accent);
}

.section {
    padding: 64px 0;
}

.section--muted {
    background: var(--surface-muted);
}

.section-heading {
    max-width: 680px;
    margin-bottom: 32px;
}

.section-heading h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    margin-bottom: 12px;
}

.section-heading p {
    color: var(--slate);
}

.compare-table {
    display: grid;
    gap: 12px;
}

.compare-row {
    display: grid;
    grid-template-columns: 44px 88px 1fr auto 140px;
    align-items: center;
    gap: 16px;
    padding: 20px 22px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--navy);
    box-shadow: var(--shadow-sm);
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.compare-row:hover {
    border-color: var(--navy-light);
    box-shadow: var(--shadow);
    transform: translateY(-1px);
    color: var(--navy);
}

.compare-row__rank {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--navy);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 800;
}

.compare-row__logo {
    padding: 10px;
    border-radius: 10px;
    background: #fafbfc;
    border: 1px solid var(--line);
}

.compare-row__logo img {
    width: 100%;
    height: 56px;
    object-fit: contain;
}

.compare-row__body h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.compare-row__body p {
    font-size: 0.92rem;
    color: var(--slate);
    margin-bottom: 10px;
}

.compare-row__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    list-style: none;
}

.compare-row__tags li {
    padding: 4px 10px;
    border-radius: 6px;
    background: var(--surface-muted);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--navy-light);
}

.compare-row__rating {
    text-align: center;
    min-width: 72px;
}

.compare-row__rating strong {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
}

.compare-row__rating span {
    font-size: 0.75rem;
    color: var(--slate);
    font-weight: 600;
}

.compare-row__cta {
    justify-self: end;
    width: 100%;
    text-align: center;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.highlight-card {
    padding: 24px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.highlight-card__logo {
    width: 72px;
    height: 72px;
    padding: 10px;
    margin-bottom: 16px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: #fafbfc;
}

.highlight-card__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.highlight-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.highlight-card p {
    font-size: 0.92rem;
    color: var(--slate);
    margin-bottom: 14px;
}

.highlight-card__score {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--success);
    margin-bottom: 14px;
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.method-step {
    padding: 22px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.method-step__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin-bottom: 14px;
    border-radius: 8px;
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 800;
}

.method-step h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.method-step p {
    font-size: 0.9rem;
    color: var(--slate);
}

.split-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.split-block__media img {
    width: 100%;
    border-radius: var(--radius-lg);
    object-fit: cover;
    aspect-ratio: 4 / 3;
    box-shadow: var(--shadow);
}

.split-block__content h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 14px;
}

.split-block__content p {
    color: var(--slate);
    margin-bottom: 14px;
}

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

.check-list li {
    position: relative;
    padding-left: 28px;
    color: var(--slate);
    font-size: 0.95rem;
}

.check-list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 800;
}

.text-link {
    display: inline-flex;
    font-weight: 700;
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.faq-list {
    display: grid;
    gap: 10px;
    max-width: 800px;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border: 0;
    background: transparent;
    color: var(--navy);
    font: inherit;
    font-weight: 700;
    font-size: 0.98rem;
    text-align: left;
    cursor: pointer;
}

.faq-question__icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: var(--surface-muted);
    font-size: 1.1rem;
    font-weight: 400;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease;
}

.faq-answer p {
    padding: 0 20px 18px;
    color: var(--slate);
    font-size: 0.94rem;
}

.faq-item.active .faq-answer {
    max-height: 280px;
}

.faq-item.active .faq-question__icon {
    background: var(--accent);
    color: #fff;
}

.rg-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 32px 36px;
    border-radius: var(--radius-lg);
    background: var(--navy);
    color: #fff;
}

.rg-panel h2 {
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    margin-bottom: 10px;
    color: #fff;
}

.rg-panel p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 58ch;
}

.rg-panel a {
    color: #fff;
    text-decoration: underline;
}

.rg-panel a:hover {
    color: rgba(255, 255, 255, 0.85);
}

.rg-panel .button--primary {
    flex-shrink: 0;
    background: #fff;
    color: var(--navy);
    box-shadow: none;
}

.rg-panel .button--primary:hover {
    background: var(--surface-muted);
    color: var(--navy);
}

.page-hero {
    padding: 44px 0 24px;
    background: var(--navy);
    color: #fff;
}

.page-hero--simple {
    padding-bottom: 28px;
}

.page-hero__grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 32px;
    align-items: center;
}

.page-hero .eyebrow {
    color: rgba(255, 255, 255, 0.7);
}

.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 12px;
    color: #fff;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.82);
}

.page-hero__grid img {
    border-radius: var(--radius-lg);
    object-fit: cover;
    aspect-ratio: 4 / 3;
    box-shadow: var(--shadow);
}

.legal-page {
    padding: 40px 0 72px;
}

.legal-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 32px;
    align-items: start;
}

.legal-layout--single {
    grid-template-columns: minmax(0, 1fr);
}

.legal-summary {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    position: sticky;
    top: 90px;
}

.legal-summary h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.legal-content h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    margin: 28px 0 10px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p,
.legal-content li {
    color: var(--slate);
    margin-bottom: 16px;
}

.legal-content ul {
    padding-left: 22px;
}

.legal-content a,
.rg-panel a,
.faq-answer a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.contact-list,
.support-list,
.footer-links {
    padding: 0;
    list-style: none;
}

.contact-list,
.support-list {
    display: grid;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--slate);
}

.site-footer {
    padding: 48px 0 28px;
    background: #111c30;
    color: rgba(255, 255, 255, 0.85);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.brand--footer {
    color: #fff;
}

.brand--footer small,
.footer-copy,
.footer-bottom p,
.footer-links a,
.site-footer .contact-list,
.site-footer .support-list {
    color: rgba(255, 255, 255, 0.65);
}

.site-footer h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 14px;
    color: #fff;
}

.footer-links {
    display: grid;
    gap: 10px;
}

.footer-links a:hover,
.contact-list a:hover {
    color: #fff;
}

.footer-copy {
    margin: 14px 0 16px;
    font-size: 0.9rem;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    padding-top: 20px;
    font-size: 0.85rem;
}

.age-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(17, 28, 48, 0.85);
    backdrop-filter: blur(8px);
}

.age-modal.hidden {
    display: none;
}

.age-modal__panel {
    width: min(420px, 100%);
    padding: 32px;
    border-radius: var(--radius-lg);
    background: var(--surface);
    text-align: center;
    box-shadow: var(--shadow);
}

.age-modal__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 800;
}

.age-modal__panel h2 {
    margin-bottom: 10px;
    font-size: 1.75rem;
}

.age-modal__panel p {
    color: var(--slate);
    font-size: 0.94rem;
}

.age-modal__actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 22px;
    flex-wrap: wrap;
}

.cookie-banner {
    position: fixed;
    left: 50%;
    bottom: 16px;
    z-index: 1100;
    width: min(720px, calc(100% - 32px));
    transform: translateX(-50%);
    transition: opacity var(--transition), transform var(--transition);
}

.cookie-banner.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(16px);
}

.cookie-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.cookie-banner__inner p {
    color: var(--slate);
    font-size: 0.85rem;
    line-height: 1.5;
}

.cookie-banner__actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .compare-row {
        grid-template-columns: 40px 80px 1fr auto;
    }

    .compare-row__cta {
        grid-column: 2 / -1;
        justify-self: start;
        width: auto;
    }

    .highlights-grid,
    .method-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero__wrap {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .split-block,
    .page-hero__grid,
    .legal-layout {
        grid-template-columns: 1fr;
    }

    .legal-summary {
        position: static;
    }

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

@media (max-width: 768px) {
    .site-nav {
        position: fixed;
        top: 70px;
        right: 16px;
        left: 16px;
        display: grid;
        gap: 4px;
        padding: 16px;
        border-radius: var(--radius);
        background: var(--navy-light);
        box-shadow: var(--shadow);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity var(--transition), transform var(--transition);
    }

    .site-nav.active {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .site-nav a {
        padding: 10px 12px;
        border-radius: 8px;
    }

    .site-nav a:hover {
        background: rgba(255, 255, 255, 0.08);
    }

    .menu-toggle {
        display: inline-block;
    }

    .compare-row {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .compare-row__rank {
        justify-self: start;
    }

    .compare-row__rating {
        text-align: left;
    }

    .compare-row__cta {
        width: 100%;
    }

    .highlights-grid,
    .method-grid {
        grid-template-columns: 1fr;
    }

    .rg-panel {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
    }

    .rg-panel .button--primary {
        width: 100%;
    }

    .cookie-banner__inner {
        flex-direction: column;
        align-items: stretch;
    }

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

    .hero {
        padding: 32px 0 40px;
    }

    .hero__content h1 {
        max-width: none;
    }

    .hero__actions .button--primary,
    .hero__actions .button--ghost {
        width: 100%;
        min-width: 0;
    }
}
