/* ========================================
   guidedesplateformes — Style principal
   Palette tricolore éditoriale
   ======================================== */

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

:root {
    /* Palette de base */
    --deep-space-blue: #003049;
    --flag-red: #d62828;
    --vivid-tangerine: #f77f00;
    --sunflower-gold: #fcbf49;
    --vanilla-custard: #eae2b7;

    /* Variantes dérivées (opacités / mélanges) */
    --blue-90: rgba(0, 48, 73, 0.92);
    --blue-80: rgba(0, 48, 73, 0.80);
    --blue-60: rgba(0, 48, 73, 0.60);
    --blue-40: rgba(0, 48, 73, 0.40);
    --blue-20: rgba(0, 48, 73, 0.20);
    --blue-12: rgba(0, 48, 73, 0.12);
    --blue-06: rgba(0, 48, 73, 0.06);

    --red-soft: rgba(214, 40, 40, 0.10);
    --red-line: rgba(214, 40, 40, 0.30);

    --gold-soft: rgba(252, 191, 73, 0.18);
    --gold-line: rgba(252, 191, 73, 0.45);

    --tangerine-soft: rgba(247, 127, 0, 0.14);
    --tangerine-line: rgba(247, 127, 0, 0.45);

    --custard-deep: #e1d59a;
    --paper: #f6efd2;

    --shadow-card: 0 18px 36px -22px rgba(0, 48, 73, 0.35);
    --shadow-soft: 0 6px 18px -10px rgba(0, 48, 73, 0.28);
    --shadow-deep: 0 28px 60px -30px rgba(0, 48, 73, 0.55);

    --radius-s: 4px;
    --radius-m: 10px;
    --radius-l: 18px;

    --transition: 0.25s ease;

    --font-display: 'Fraunces', 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', 'Courier New', monospace;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--vanilla-custard);
    color: var(--deep-space-blue);
    line-height: 1.65;
    font-size: 16px;
    font-weight: 400;
    min-height: 100vh;
    overflow-x: hidden;
    background-image:
        radial-gradient(circle at 0% 0%, var(--paper), transparent 45%),
        radial-gradient(circle at 100% 100%, var(--gold-soft), transparent 50%);
    background-attachment: fixed;
}

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

a {
    color: var(--flag-red);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--vivid-tangerine);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--deep-space-blue);
    font-weight: 600;
    line-height: 1.18;
    letter-spacing: -0.01em;
}

p {
    margin-bottom: 1rem;
}

ul, ol {
    list-style: none;
}

/* ---------- Container ---------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}

@media (max-width: 480px) {
    .container {
        padding: 0 18px;
    }
}

/* ---------- Section spacing ---------- */
.section {
    padding: 88px 0;
    position: relative;
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-mono);
    font-size: 0.74rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--flag-red);
    margin-bottom: 18px;
    font-weight: 600;
}

.section-eyebrow::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--flag-red);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.2vw, 3.2rem);
    margin-bottom: 18px;
    color: var(--deep-space-blue);
    font-weight: 600;
}

.section-subtitle {
    color: var(--blue-80);
    font-size: 1.05rem;
    max-width: 720px;
    margin-bottom: 52px;
    line-height: 1.7;
}

/* ========================================
   HEADER
   ======================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(234, 226, 183, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--blue-12);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--deep-space-blue);
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: -0.01em;
    font-weight: 600;
}

.brand:hover {
    color: var(--flag-red);
}

.brand-mark {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    background: var(--deep-space-blue);
    color: var(--sunflower-gold);
    border-radius: 8px;
    position: relative;
    transition: all var(--transition);
}

.brand-mark::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--flag-red) 33%, var(--vanilla-custard) 33% 66%, var(--vivid-tangerine) 66%);
    border-radius: 0 0 8px 8px;
}

.brand:hover .brand-mark {
    background: var(--flag-red);
    color: var(--vanilla-custard);
}

.brand-mark i {
    width: 20px;
    height: 20px;
    margin-bottom: 4px;
}

.brand-text {
    font-weight: 600;
    text-transform: uppercase;
}

/* Desktop nav */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 36px;
    align-items: center;
}

.nav-link {
    color: var(--blue-80);
    font-size: 0.94rem;
    letter-spacing: 0.02em;
    padding: 8px 2px;
    position: relative;
    font-weight: 500;
    transition: color var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--flag-red);
    transition: width var(--transition);
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--deep-space-blue);
}

.nav-link:hover::after,
.nav-link.is-active::after {
    width: 100%;
}

/* Hamburger */
.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: var(--deep-space-blue);
    color: var(--sunflower-gold);
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.nav-toggle:hover {
    background: var(--flag-red);
    color: var(--vanilla-custard);
}

.nav-toggle i {
    width: 22px;
    height: 22px;
}

/* Mobile drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(340px, 88vw);
    height: 100vh;
    background: var(--vanilla-custard);
    border-left: 4px solid var(--flag-red);
    padding: 90px 32px 30px;
    z-index: 200;
    transition: right 0.35s ease;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-deep);
}

.mobile-drawer.is-open {
    right: 0;
}

.mobile-drawer .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
}

.mobile-drawer .nav-link {
    font-size: 1.3rem;
    font-family: var(--font-display);
    color: var(--deep-space-blue);
    font-weight: 600;
}

.drawer-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: var(--deep-space-blue);
    color: var(--sunflower-gold);
    display: grid;
    place-items: center;
    transition: all var(--transition);
}

.drawer-close:hover {
    background: var(--flag-red);
    color: var(--vanilla-custard);
}

.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 48, 73, 0.55);
    z-index: 150;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.drawer-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

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

/* ========================================
   HERO (index)
   ======================================== */
.hero {
    padding: 88px 0 72px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 30%;
    right: -180px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--gold-soft), transparent 70%);
    z-index: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 72px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text .section-eyebrow {
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(2.3rem, 5.4vw, 4.2rem);
    line-height: 1.05;
    margin-bottom: 26px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.hero-title em {
    font-style: italic;
    color: var(--flag-red);
    font-weight: 500;
    position: relative;
    display: inline-block;
}

.hero-title em::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 4px;
    background: var(--sunflower-gold);
    z-index: -1;
}

.hero-lead {
    font-size: 1.1rem;
    color: var(--blue-80);
    margin-bottom: 28px;
    max-width: 540px;
    line-height: 1.7;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.hero-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: var(--paper);
    border: 1px solid var(--blue-12);
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--deep-space-blue);
    font-weight: 500;
}

.hero-meta-item i {
    width: 15px;
    height: 15px;
    color: var(--flag-red);
}

/* Hero visual block - editorial card */
.hero-visual {
    position: relative;
    padding: 0;
    background: var(--deep-space-blue);
    color: var(--vanilla-custard);
    border-radius: var(--radius-l);
    box-shadow: var(--shadow-deep);
    overflow: hidden;
}

.hero-visual-header {
    padding: 26px 32px 18px;
    border-bottom: 1px solid rgba(252, 191, 73, 0.25);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-visual-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-visual-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--sunflower-gold);
    box-shadow: 0 0 0 4px var(--gold-soft);
}

.hero-visual-label {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--sunflower-gold);
}

.hero-visual-count {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--vanilla-custard);
}

.hero-visual-body {
    padding: 26px 32px 32px;
}

.hero-visual-title {
    font-family: var(--font-display);
    font-size: 1.45rem;
    color: var(--vanilla-custard);
    margin-bottom: 22px;
    line-height: 1.3;
}

.hero-points {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hero-point {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 14px 16px;
    background: rgba(252, 191, 73, 0.06);
    border-radius: var(--radius-m);
    border-left: 3px solid var(--sunflower-gold);
}

.hero-point-icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: var(--sunflower-gold);
    color: var(--deep-space-blue);
}

.hero-point-icon i {
    width: 18px;
    height: 18px;
}

.hero-point-text strong {
    display: block;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.98rem;
    color: var(--vanilla-custard);
    margin-bottom: 4px;
}

.hero-point-text span {
    font-size: 0.86rem;
    color: rgba(234, 226, 183, 0.75);
    line-height: 1.5;
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 56px 0 50px;
    }
    .hero-visual-header,
    .hero-visual-body {
        padding-left: 22px;
        padding-right: 22px;
    }
}

/* ========================================
   OFFERS LIST
   ======================================== */
.offers-section {
    position: relative;
    background: linear-gradient(180deg, transparent 0%, var(--paper) 100%);
    border-top: 1px solid var(--blue-12);
}

.offers-section::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 4px;
    background: linear-gradient(90deg, var(--flag-red) 33%, var(--vanilla-custard) 33% 66%, var(--vivid-tangerine) 66%);
    border-radius: 2px;
}

.offers-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.offer-card-wrap {
    background: var(--paper);
    border: 1px solid var(--blue-12);
    border-radius: var(--radius-l);
    overflow: hidden;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
    position: relative;
}

.offer-card-wrap::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: var(--sunflower-gold);
    transition: background var(--transition);
}

.offer-card-wrap:hover {
    transform: translateY(-3px);
    border-color: var(--blue-20);
    box-shadow: var(--shadow-card);
}

.offer-card-wrap:hover::before {
    background: var(--flag-red);
}

.offer-card {
    display: grid;
    grid-template-columns: 64px 160px 1fr auto;
    gap: 28px;
    align-items: center;
    padding: 28px 32px 28px 38px;
}

.offer-rank {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--deep-space-blue);
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.04em;
    position: relative;
}

.offer-rank::after {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--flag-red);
    margin-top: 10px;
}

.offer-logo {
    width: 120px;
    height: 60px;
    object-fit: contain;
    background: var(--deep-space-blue);
    padding: 8px;
    border-radius: var(--radius-s);
    border: 1px solid var(--blue-12);
}

.offer-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.offer-name {
    font-family: var(--font-display);
    font-size: 1.7rem;
    color: var(--deep-space-blue);
    font-weight: 600;
    letter-spacing: -0.01em;
}

.offer-desc {
    font-size: 0.95rem;
    color: var(--blue-80);
    line-height: 1.55;
}

.offer-details {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 8px;
}

.offer-detail {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--blue-60);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 600;
}

.offer-detail i {
    width: 13px;
    height: 13px;
    color: var(--flag-red);
}

.offer-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    min-width: 170px;
}

.offer-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.offer-score-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 18px;
    background: var(--deep-space-blue);
    border-radius: var(--radius-m);
    color: var(--vanilla-custard);
    min-width: 92px;
    position: relative;
    overflow: hidden;
}

.offer-score-bar::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--flag-red) 33%, var(--vanilla-custard) 33% 66%, var(--vivid-tangerine) 66%);
}

.offer-score-value {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
    margin-top: 4px;
    color: var(--sunflower-gold);
}

.offer-score-label {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.7;
    margin-top: 2px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: var(--radius-s);
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    font-weight: 600;
    text-align: center;
    transition: all var(--transition);
    cursor: pointer;
    border: 1px solid transparent;
    white-space: nowrap;
    font-family: inherit;
}

.btn i {
    width: 16px;
    height: 16px;
}

.btn-primary {
    background: var(--flag-red);
    color: var(--vanilla-custard);
    border-color: var(--flag-red);
}

.btn-primary:hover {
    background: var(--deep-space-blue);
    border-color: var(--deep-space-blue);
    color: var(--sunflower-gold);
}

.btn-outline {
    background: transparent;
    color: var(--deep-space-blue);
    border-color: var(--blue-20);
}

.btn-outline:hover {
    background: var(--deep-space-blue);
    border-color: var(--deep-space-blue);
    color: var(--vanilla-custard);
}

.btn-block {
    width: 100%;
}

.offer-micro {
    font-size: 0.78rem;
    color: var(--blue-60);
    padding: 16px 32px 22px 38px;
    border-top: 1px dashed var(--blue-12);
    line-height: 1.55;
    background: var(--vanilla-custard);
}

@media (max-width: 900px) {
    .offer-card {
        grid-template-columns: 52px 120px 1fr;
        gap: 20px;
        padding: 24px 24px 24px 30px;
    }
    .offer-action {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: space-between;
        padding-top: 18px;
        border-top: 1px solid var(--blue-12);
        min-width: 0;
        width: 100%;
    }
    .offer-rank {
        font-size: 2.4rem;
    }
    .offer-name {
        font-size: 1.4rem;
    }
    .offer-micro {
        padding: 16px 24px 22px;
    }
}

@media (max-width: 560px) {
    .offer-card {
        grid-template-columns: 1fr;
        gap: 18px;
        text-align: center;
    }
    .offer-rank,
    .offer-logo {
        justify-self: center;
    }
    .offer-rank::after {
        margin: 10px auto 0;
    }
    .offer-info {
        align-items: center;
    }
    .offer-details {
        justify-content: center;
    }
    .offer-action {
        flex-direction: column;
        gap: 18px;
    }
    .offer-action .btn {
        width: 100%;
    }
}

/* ========================================
   DISCLAIMER BLOCK (pre-footer)
   ======================================== */
.disclaimer-block {
    padding: 72px 0;
    background: var(--deep-space-blue);
    color: var(--vanilla-custard);
    border-top: 6px solid var(--flag-red);
    position: relative;
}

.disclaimer-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--flag-red) 33%, var(--vanilla-custard) 33% 66%, var(--vivid-tangerine) 66%);
}

.disclaimer-inner {
    max-width: 920px;
    margin: 0 auto;
}

.disclaimer-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 28px;
    color: var(--sunflower-gold);
    display: flex;
    align-items: center;
    gap: 16px;
}

.disclaimer-title i {
    width: 28px;
    height: 28px;
}

.disclaimer-inner p {
    color: rgba(234, 226, 183, 0.86);
    font-size: 0.98rem;
    line-height: 1.8;
    margin-bottom: 18px;
}

.disclaimer-help {
    margin-top: 32px;
    padding: 26px;
    border: 1px solid rgba(252, 191, 73, 0.30);
    border-radius: var(--radius-m);
    background: rgba(252, 191, 73, 0.06);
}

.disclaimer-help h4 {
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--sunflower-gold);
    margin-bottom: 14px;
    font-size: 0.84rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.disclaimer-help ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.disclaimer-help li {
    font-size: 0.92rem;
    color: rgba(234, 226, 183, 0.86);
   
    line-height: 1.55;
}

.disclaimer-help li i {
    width: 16px;
    height: 16px;
    color: var(--sunflower-gold);
    flex-shrink: 0;
    margin-top: 4px;
}

.disclaimer-help a {
    color: var(--sunflower-gold);
    text-decoration: underline;
    text-decoration-color: rgba(252, 191, 73, 0.3);
}

.disclaimer-help a:hover {
    color: var(--vanilla-custard);
    text-decoration-color: var(--vanilla-custard);
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
    background: #002238;
    color: rgba(234, 226, 183, 0.7);
    padding: 64px 0 26px;
    font-size: 0.92rem;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 56px;
    margin-bottom: 44px;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--sunflower-gold);
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: var(--vanilla-custard);
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
}

.footer-brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--sunflower-gold);
    color: var(--deep-space-blue);
    display: grid;
    place-items: center;
}

.footer-brand-mark i {
    width: 18px;
    height: 18px;
}
.footer-brand{
    text-transform: uppercase !important;
}

.footer-desc {
    color: rgba(234, 226, 183, 0.65);
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 360px;
    margin-bottom: 0;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(234, 226, 183, 0.78);
    font-size: 0.9rem;
    transition: color var(--transition), padding var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--sunflower-gold);
    padding-left: 6px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: rgba(234, 226, 183, 0.78);
    font-size: 0.9rem;
    line-height: 1.55;
}

.footer-contact-item i {
    width: 16px;
    height: 16px;
    color: var(--sunflower-gold);
    flex-shrink: 0;
    margin-top: 4px;
}

.footer-contact-item a {
    color: rgba(234, 226, 183, 0.78);
}

.footer-contact-item a:hover {
    color: var(--sunflower-gold);
}

.footer-regulators {
    border-top: 1px solid rgba(252, 191, 73, 0.18);
    border-bottom: 1px solid rgba(252, 191, 73, 0.18);
    padding: 30px 0;
    margin-bottom: 28px;
}

.regulators-label {
    font-family: var(--font-mono);
    font-size: 0.74rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(252, 191, 73, 0.6);
    margin-bottom: 22px;
    text-align: center;
    font-weight: 600;
}

.regulators-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 38px;
}

.regulator-link {
    display: inline-flex;
    align-items: center;
    opacity: 0.72;
    transition: opacity var(--transition), transform var(--transition);
    filter: brightness(0.95);
}

.regulator-link:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.regulator-link img {
    height: 50px;
    width: auto;
    object-fit: contain;
    max-width: 170px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    padding-top: 26px;
    border-top: 1px solid rgba(252, 191, 73, 0.18);
    font-size: 0.82rem;
    color: rgba(234, 226, 183, 0.55);
}

.age-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border: 2px solid var(--flag-red);
    background: rgba(214, 40, 40, 0.18);
    border-radius: 100px;
    color: var(--sunflower-gold);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
}

.footer-disclaimer {
    text-align: center;
    font-size: 0.8rem;
    color: rgba(234, 226, 183, 0.5);
    margin-top: 18px;
    line-height: 1.6;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .regulators-row {
        gap: 22px;
    }
    .regulator-link img {
        height: 40px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ========================================
   PAGE HERO (inner pages)
   ======================================== */
.page-hero {
    padding: 80px 0 60px;
    border-bottom: 1px solid var(--blue-12);
    text-align: center;
    position: relative;
    background: var(--paper);
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 3px;
    background: linear-gradient(90deg, var(--flag-red) 33%, var(--vanilla-custard) 33% 66%, var(--vivid-tangerine) 66%);
}

.page-hero h1 {
    font-size: clamp(2.1rem, 4.5vw, 3.4rem);
    margin-bottom: 18px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.page-hero p {
    color: var(--blue-80);
    max-width: 660px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.7;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--blue-60);
    margin-bottom: 22px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 600;
}

.breadcrumb i {
    width: 12px;
    height: 12px;
}

.breadcrumb a {
    color: var(--blue-60);
}

.breadcrumb a:hover {
    color: var(--flag-red);
}

/* ========================================
   ARTICLE / CONTENT
   ======================================== */
.content-block {
    max-width: 840px;
    margin: 0 auto;
}

.content-block h2 {
    font-size: 1.8rem;
    margin: 48px 0 18px;
    color: var(--deep-space-blue);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 14px;
}

.content-block h2::before {
    content: '';
    width: 6px;
    height: 28px;
    background: var(--flag-red);
    border-radius: 2px;
    flex-shrink: 0;
}

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

.content-block h3 {
    font-size: 1.25rem;
    margin: 30px 0 12px;
    color: var(--deep-space-blue);
    font-weight: 600;
}

.content-block p {
    color: var(--blue-80);
    line-height: 1.8;
    margin-bottom: 16px;
}

.content-block ul {
    list-style: none;
    padding-left: 0;
    margin: 16px 0 22px;
}

.content-block ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    color: var(--blue-80);
    line-height: 1.7;
}

.content-block ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 16px;
    height: 2px;
    background: var(--flag-red);
}

.content-block strong {
    color: var(--deep-space-blue);
    font-weight: 700;
}

.content-block a {
    color: var(--flag-red);
    text-decoration: underline;
    text-decoration-color: rgba(214, 40, 40, 0.4);
}

.content-block a:hover {
    color: var(--vivid-tangerine);
    text-decoration-color: var(--vivid-tangerine);
}

.update-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--paper);
    border: 1px solid var(--blue-12);
    border-radius: 100px;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--blue-80);
    margin-bottom: 30px;
    font-weight: 600;
}

.update-date i {
    width: 14px;
    height: 14px;
    color: var(--flag-red);
}

.info-callout {
    margin: 30px 0;
    padding: 24px 28px;
    border-left: 4px solid var(--vivid-tangerine);
    background: var(--tangerine-soft);
    border-radius: 0 var(--radius-m) var(--radius-m) 0;
}

.info-callout p {
    margin: 0;
    color: var(--deep-space-blue);
    font-size: 0.95rem;
    line-height: 1.6;
}

.info-callout strong {
    color: var(--deep-space-blue);
}

/* ---------- Cards grid (values etc.) ---------- */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
    margin: 36px 0;
}

.value-card {
    padding: 28px;
    background: var(--paper);
    border: 1px solid var(--blue-12);
    border-radius: var(--radius-m);
    transition: border-color var(--transition), transform var(--transition);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--sunflower-gold);
    transition: background var(--transition);
}

.value-card:hover {
    border-color: var(--blue-20);
    transform: translateY(-3px);
}

.value-card:hover::before {
    background: var(--flag-red);
}

.value-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: var(--deep-space-blue);
    color: var(--sunflower-gold);
    display: grid;
    place-items: center;
    margin-bottom: 18px;
}

.value-card-icon i {
    width: 22px;
    height: 22px;
}

.value-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--deep-space-blue);
    font-weight: 700;
}

.value-card p {
    font-size: 0.92rem;
    color: var(--blue-80);
    margin: 0;
    line-height: 1.65;
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 52px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-block {
    padding: 24px;
    background: var(--paper);
    border: 1px solid var(--blue-12);
    border-radius: var(--radius-m);
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: border-color var(--transition);
}

.contact-block:hover {
    border-color: var(--blue-20);
}

.contact-block-icon {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: var(--deep-space-blue);
    color: var(--sunflower-gold);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.contact-block-icon i {
    width: 20px;
    height: 20px;
}

.contact-block h3 {
    font-size: 1.05rem;
    margin-bottom: 6px;
    color: var(--deep-space-blue);
    font-weight: 700;
}

.contact-block p, .contact-block a {
    font-size: 0.92rem;
    color: var(--blue-80);
    margin: 0;
    line-height: 1.55;
}

.contact-block a {
    color: var(--flag-red);
}

.contact-block a:hover {
    color: var(--vivid-tangerine);
}

/* Form */
.contact-form {
    padding: 36px;
    background: var(--paper);
    border: 1px solid var(--blue-12);
    border-radius: var(--radius-l);
    box-shadow: var(--shadow-soft);
}

.form-header {
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--blue-12);
}

.form-header h2 {
    font-size: 1.4rem;
    margin-bottom: 6px;
    color: var(--deep-space-blue);
    font-weight: 700;
}

.form-header p {
    font-size: 0.9rem;
    color: var(--blue-80);
    margin: 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}

.form-field {
    margin-bottom: 18px;
}

.form-field label {
    display: block;
    font-size: 0.84rem;
    color: var(--deep-space-blue);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
    font-weight: 600;
}

.form-field label .req {
    color: var(--flag-red);
    margin-left: 3px;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 13px 14px;
    background: var(--vanilla-custard);
    border: 1px solid var(--blue-20);
    border-radius: var(--radius-s);
    color: var(--deep-space-blue);
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color var(--transition), background var(--transition);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: var(--blue-40);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--flag-red);
    background: #fff;
}

.form-field textarea {
    min-height: 150px;
    resize: vertical;
    font-family: inherit;
}

.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
    border-color: var(--flag-red);
    background: rgba(214, 40, 40, 0.05);
}

.field-error {
    display: none;
    color: var(--flag-red);
    font-size: 0.82rem;
    margin-top: 6px;
    font-weight: 500;
}

.form-field.has-error .field-error {
    display: block;
}

.form-check {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin: 18px 0 22px;
    font-size: 0.88rem;
    color: var(--blue-80);
    line-height: 1.55;
}

.form-check input {
    width: 18px;
    height: 18px;
    margin: 0;
    margin-top: 2px;
    accent-color: var(--flag-red);
    flex-shrink: 0;
    cursor: pointer;
}

.form-check label {
    cursor: pointer;
}

.form-check a {
    color: var(--flag-red);
    text-decoration: underline;
}

.form-status {
    margin-top: 18px;
    padding: 16px;
    border-radius: var(--radius-s);
    font-size: 0.92rem;
    text-align: center;
    display: none;
}

.form-status.is-success {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(252, 191, 73, 0.15);
    border: 1px solid var(--gold-line);
    color: var(--deep-space-blue);
}

.form-status.is-success i {
    width: 18px;
    height: 18px;
    color: var(--flag-red);
}

.form-status.is-loading {
    display: block;
    background: var(--blue-06);
    border: 1px solid var(--blue-12);
    color: var(--blue-80);
}

.btn-submit {
    width: 100%;
    padding: 15px;
    font-size: 0.92rem;
}

.btn-submit i.loader {
    display: none;
    animation: spin 1s linear infinite;
}

.btn-submit.is-loading i.label-icon {
    display: none;
}

.btn-submit.is-loading i.loader {
    display: inline-block;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 900px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 0;
    }
}

@media (max-width: 480px) {
    .contact-form {
        padding: 24px;
    }
}

/* ========================================
   RESOURCES (responsible page)
   ======================================== */
.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
    margin: 32px 0;
}

.resource-card {
    padding: 24px;
    background: var(--paper);
    border: 1px solid var(--blue-12);
    border-radius: var(--radius-m);
    transition: border-color var(--transition), transform var(--transition);
    display: flex;
    flex-direction: column;
}

.resource-card:hover {
    border-color: var(--blue-20);
    transform: translateY(-3px);
}

.resource-card-logo {
    height: 48px;
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.resource-card-logo img {
    height: 42px;
    width: auto;
    object-fit: contain;
    max-width: 160px;
}

.resource-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--deep-space-blue);
    font-weight: 700;
}

.resource-card p {
    font-size: 0.9rem;
    color: var(--blue-80);
    margin-bottom: 14px;
    line-height: 1.55;
    flex-grow: 1;
}

.resource-card .resource-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px dashed var(--blue-12);
}

.resource-meta a, .resource-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.86rem;
    color: var(--blue-80);
    font-family: var(--font-mono);
    font-weight: 500;
}

.resource-meta a {
    color: var(--flag-red);
}

.resource-meta i {
    width: 14px;
    height: 14px;
    color: var(--flag-red);
}

.resource-meta a:hover {
    color: var(--vivid-tangerine);
}

.resource-meta a:hover i {
    color: var(--vivid-tangerine);
}

/* ========================================
   AGE VERIFICATION POPUP
   ======================================== */
.age-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 48, 73, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.age-popup.is-open {
    display: flex;
}

.age-popup-card {
    max-width: 480px;
    width: 100%;
    background: var(--vanilla-custard);
    border-radius: var(--radius-l);
    padding: 0;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.45);
    position: relative;
}

.age-popup-stripe {
    height: 8px;
    background: linear-gradient(90deg, var(--flag-red) 33%, var(--vanilla-custard) 33% 66%, var(--vivid-tangerine) 66%);
}

.age-popup-content {
    padding: 38px 36px 32px;
}

.age-popup-mark {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    margin: 0 auto 24px;
    background: var(--flag-red);
    color: var(--vanilla-custard);
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    box-shadow: 0 12px 28px rgba(214, 40, 40, 0.35);
    position: relative;
}

.age-popup-mark::before {
    content: '';
    position: absolute;
    inset: -8px;
    border: 2px dashed rgba(214, 40, 40, 0.35);
    border-radius: 50%;
}

.age-popup h2 {
    font-size: 1.55rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.age-popup p {
    color: var(--blue-80);
    font-size: 0.94rem;
    line-height: 1.65;
    margin-bottom: 26px;
}

.age-popup-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.age-popup .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 18px;
    font-size: 0.92rem;
}

.age-popup-small {
    font-size: 0.78rem;
    color: var(--blue-60);
    margin-top: 22px;
    line-height: 1.55;
    padding-top: 18px;
    border-top: 1px dashed var(--blue-12);
}

/* ========================================
   COOKIE BANNER
   ======================================== */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    right: 24px;
    max-width: 420px;
    background: var(--deep-space-blue);
    color: var(--vanilla-custard);
    border-radius: var(--radius-m);
    padding: 0;
    overflow: hidden;
    z-index: 500;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
    display: none;
}

.cookie-banner.is-visible {
    display: block;
    animation: cookie-in 0.4s ease;
}

@keyframes cookie-in {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.cookie-banner-stripe {
    height: 4px;
    background: linear-gradient(90deg, var(--flag-red) 33%, var(--vanilla-custard) 33% 66%, var(--vivid-tangerine) 66%);
}

.cookie-banner-content {
    padding: 22px 24px;
}

.cookie-banner-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--sunflower-gold);
}

.cookie-banner-header i {
    width: 22px;
    height: 22px;
}

.cookie-banner-header h4 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--vanilla-custard);
    margin: 0;
    font-weight: 600;
}

.cookie-banner p {
    font-size: 0.86rem;
    color: rgba(234, 226, 183, 0.78);
    line-height: 1.55;
    margin-bottom: 16px;
}

.cookie-banner p a {
    color: var(--sunflower-gold);
    text-decoration: underline;
    text-decoration-color: rgba(252, 191, 73, 0.4);
}

.cookie-banner p a:hover {
    color: var(--vanilla-custard);
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.cookie-actions .btn {
    flex: 1;
    padding: 11px 14px;
    font-size: 0.8rem;
}

.cookie-actions .btn-outline {
    color: var(--sunflower-gold);
    border-color: rgba(252, 191, 73, 0.4);
}

.cookie-actions .btn-outline:hover {
    background: var(--sunflower-gold);
    color: var(--deep-space-blue);
    border-color: var(--sunflower-gold);
}

.cookie-actions .btn-primary {
    background: var(--flag-red);
    border-color: var(--flag-red);
}

.cookie-actions .btn-primary:hover {
    background: var(--sunflower-gold);
    color: var(--deep-space-blue);
    border-color: var(--sunflower-gold);
}

@media (max-width: 480px) {
    .cookie-banner {
        bottom: 12px;
        left: 12px;
        right: 12px;
        max-width: none;
    }
}

/* ========================================
   UTILS
   ======================================== */
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mt-2 { margin-top: 18px; }
.mb-0 { margin-bottom: 0; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

body.has-modal {
    overflow: hidden;
}
