/* ============================================================
   MatchEuropean - design system
   Navy & gold editorial luxury with violet / coral accents
   ============================================================ */

:root {
    /* Surfaces */
    --ink: #0F172A;
    --navy-900: #08183A;
    --navy-800: #0B2149;
    --navy-700: #123163;
    --navy-600: #1B417E;
    --cream: #FAF3E4;
    --cream-deep: #F3E9D5;
    --lavender: #F5F3FF;
    --white: #FFFFFF;

    /* Accents */
    --gold: #C99542;
    --gold-400: #D9A94C;
    --gold-300: #E9C57E;
    --gold-200: #F3DCA9;
    --amber: #FBBF24;
    --violet: #7C3AED;
    --coral: #FF2E93;

    /* Text */
    --text: #0F172A;
    --text-muted: #4A5568;
    --text-on-dark: #F2F6FD;
    --text-on-dark-muted: #C3D2E9;

    /* Lines */
    --line: #E4E0D5;
    --line-dark: rgba(233, 197, 126, 0.28);

    /* Type */
    --font-display: 'Playfair Display', 'Iowan Old Style', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

    --fs-h1: clamp(2.05rem, 1.35rem + 3.1vw, 3.6rem);
    --fs-h2: clamp(1.6rem, 1.22rem + 1.7vw, 2.6rem);
    --fs-h3: clamp(1.14rem, 1.04rem + 0.42vw, 1.45rem);
    --fs-body: clamp(1rem, 0.975rem + 0.12vw, 1.075rem);
    --fs-sm: 0.9375rem;
    --fs-xs: 0.8125rem;

    /* Geometry */
    --radius: 20px;
    --radius-sm: 12px;
    --radius-pill: 999px;
    --shell: 1200px;
    --space-section: clamp(3.25rem, 2rem + 5vw, 6rem);

    /* Shadows */
    --shadow-soft: 0 18px 40px -24px rgba(8, 24, 58, 0.45);
    --shadow-offset: 10px 12px 0 rgba(124, 58, 237, 0.13);
    --shadow-offset-coral: 10px 12px 0 rgba(255, 46, 147, 0.13);
    --shadow-lift: 0 24px 48px -26px rgba(8, 24, 58, 0.55);
}

/* ============================================
   OVERFLOW PREVENTION - Safety Net
   ============================================ */
*,
*::before,
*::after { box-sizing: border-box; }

img, video, iframe, embed, object, svg { max-width: 100%; height: auto; }

[class*="grid"] > *,
[class*="flex"] > * { min-width: 0; }

pre, code, .code-block, [class*="code"] { max-width: 100%; overflow-x: auto; }
pre code, .code-block code { display: block; min-width: 0; }

.table-wrapper,
[class*="table-"] { max-width: 100%; overflow-x: auto; }

p, li, td, th { overflow-wrap: break-word; }

details { height: fit-content; }

:where(p, li, blockquote, figcaption, dd, .prose, .seo-text, article)
  a:not([class]) {
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

input, textarea, select { max-width: 100%; }

section { overflow: clip; }

/* ============================================
   BASE
   ============================================ */
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--lavender);
    color: var(--text);
    font-family: var(--font-body);
    font-size: var(--fs-body);
    line-height: 1.68;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin: 0 0 0.6em;
    text-wrap: balance;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--navy-700); }
a:focus-visible,
button:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
    outline: 3px solid var(--amber);
    outline-offset: 3px;
    border-radius: 4px;
}

ul, ol { padding-left: 1.15rem; }

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

.skip-link {
    position: absolute; left: -9999px; top: 0; z-index: 200;
    background: var(--gold-400); color: var(--ink);
    padding: 0.75rem 1.25rem; font-weight: 600; border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

.shell {
    width: min(100% - 2rem, var(--shell));
    margin-inline: auto;
}

.icon { width: 1.25em; height: 1.25em; flex: none; }

/* ============================================
   SECTIONS
   ============================================ */
.section {
    position: relative;
    padding-block: var(--space-section);
}
.section--cream { background: var(--cream); }
.section--lavender { background: var(--lavender); }
.section--white { background: var(--white); }
.section--navy {
    background: linear-gradient(160deg, var(--navy-800) 0%, var(--navy-900) 55%, var(--ink) 100%);
    color: var(--text-on-dark);
}
.section--navy h2,
.section--navy h3,
.section--navy .section-title { color: var(--white); }
.section--navy p { color: var(--text-on-dark-muted); }
.section--navy a:not(.btn) { color: var(--gold-300); }

.section-head { margin-bottom: clamp(1.75rem, 1rem + 2vw, 2.75rem); max-width: 62ch; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-title { margin-bottom: 0.5rem; }
.section-rule {
    display: block; width: 74px; height: 3px; border-radius: 3px;
    background: linear-gradient(90deg, var(--gold-400), var(--gold-200));
}
.section-head--center .section-rule { margin-inline: auto; }
.section-lead { margin-top: 1rem; color: var(--text-muted); }
.section--navy .section-lead { color: var(--text-on-dark-muted); }

.eyebrow {
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 700;
    color: #8A5A11;
    margin-bottom: 0.6rem;
}
.eyebrow--light { color: var(--gold-300); }

.text-link {
    display: inline-flex; align-items: center; gap: 0.35rem;
    font-weight: 600; color: var(--violet);
    text-decoration: underline; text-underline-offset: 0.18em;
}

/* Layout helpers */
.grid { display: grid; gap: clamp(1rem, 0.6rem + 1.4vw, 1.75rem); }
.grid-2, .grid-3, .grid-4 { display: grid; gap: clamp(1rem, 0.6rem + 1.4vw, 1.75rem); grid-template-columns: minmax(0, 1fr); }
.split {
    display: grid; gap: clamp(1.5rem, 1rem + 2vw, 3rem);
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
}
.stack > * + * { margin-top: 1rem; }

/* ============================================
   BUTTONS, PILLS, CHIPS
   ============================================ */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
    min-height: 48px; padding: 0.75rem 1.6rem;
    border-radius: var(--radius-pill); border: 1px solid transparent;
    font-family: var(--font-body); font-size: 0.975rem; font-weight: 700;
    letter-spacing: 0.01em; text-decoration: none; cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}
.btn--gold {
    background: linear-gradient(120deg, var(--gold-300) 0%, var(--gold-400) 45%, var(--gold) 100%);
    color: var(--ink);
    box-shadow: 0 10px 24px -14px rgba(201, 149, 66, 0.9), 4px 5px 0 rgba(8, 24, 58, 0.18);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -16px rgba(201, 149, 66, 0.95), 6px 8px 0 rgba(8, 24, 58, 0.2); }
.btn--outline { background: transparent; border-color: var(--navy-700); color: var(--navy-700); }
.btn--outline:hover { background: var(--navy-700); color: var(--white); }
.btn--outline-light { background: rgba(255, 255, 255, 0.06); border-color: var(--gold-300); color: var(--gold-200); }
.btn--outline-light:hover { background: rgba(233, 197, 126, 0.16); color: var(--white); }
.btn--violet {
    background: linear-gradient(120deg, var(--violet), var(--coral));
    color: var(--white);
    box-shadow: 0 12px 26px -16px rgba(124, 58, 237, 0.9);
}
.btn--violet:hover { transform: translateY(-2px); }
.btn--block { width: 100%; }
.btn__compass { width: 20px; height: 20px; color: rgba(15, 23, 42, 0.6); }

.pill {
    display: inline-flex; align-items: center; gap: 0.35rem;
    padding: 0.3rem 0.75rem; border-radius: var(--radius-pill);
    font-size: var(--fs-xs); font-weight: 700; letter-spacing: 0.04em;
}
.pill--gold { background: linear-gradient(120deg, var(--gold-300), var(--gold-400)); color: var(--ink); }
.pill--violet { background: linear-gradient(120deg, var(--violet), var(--coral)); color: var(--white); }
.pill--ink { background: var(--navy-800); color: var(--gold-200); }
.pill__icon { width: 0.95rem; height: 0.95rem; }

.trust-chips {
    list-style: none; margin: 1.5rem 0 0; padding: 0;
    display: flex; flex-wrap: wrap; gap: 0.6rem;
}
.trust-chip {
    display: inline-flex; align-items: center; gap: 0.45rem;
    padding: 0.5rem 0.9rem; border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--line-dark);
    color: var(--text-on-dark); font-size: var(--fs-xs); font-weight: 600;
}
.trust-chip__icon { width: 1rem; height: 1rem; color: var(--gold-300); }
.section--cream .trust-chip,
.section--white .trust-chip,
.section--lavender .trust-chip {
    background: var(--white); border-color: var(--line); color: var(--text);
}
.section--cream .trust-chip__icon,
.section--white .trust-chip__icon,
.section--lavender .trust-chip__icon { color: var(--gold); }

/* ============================================
   MOTIFS
   ============================================ */
.ribbon {
    position: absolute; pointer-events: none;
    color: var(--gold-300);
    filter: drop-shadow(0 0 10px rgba(233, 197, 126, 0.4));
    opacity: 0.85;
}
.compass { color: var(--gold-300); }

/* ============================================
   HEADER + NAVIGATION
   ============================================ */
.site-header {
    position: sticky; top: 0; z-index: 90;
    background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
    border-bottom: 1px solid var(--line-dark);
}
.site-header.is-scrolled { box-shadow: 0 12px 30px -20px rgba(0, 0, 0, 0.8); }

.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 1rem; min-height: 68px; padding-block: 0.6rem;
}

.site-brand {
    display: inline-flex; align-items: center; gap: 0.6rem;
    text-decoration: none; color: var(--white); min-height: 44px;
}
.site-brand__mark { width: 36px; height: 36px; flex: none; }
.site-brand__text {
    font-family: var(--font-display); font-weight: 700;
    font-size: clamp(1.15rem, 1rem + 0.6vw, 1.4rem); letter-spacing: 0.01em;
}

.nav-toggle {
    display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 48px; height: 48px; padding: 0 12px;
    background: rgba(255, 255, 255, 0.07); border: 1px solid var(--line-dark);
    border-radius: var(--radius-sm); cursor: pointer;
}
.nav-toggle__bar {
    display: block; height: 2px; width: 100%; background: var(--gold-200);
    border-radius: 2px; transition: transform 0.22s ease, opacity 0.22s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.site-nav {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    height: calc(100dvh - 100%);
    overflow-y: auto; -webkit-overflow-scrolling: touch;
    background: linear-gradient(180deg, var(--navy-800), var(--navy-900) 60%, var(--ink));
    border-top: 1px solid var(--line-dark);
    padding: 1.25rem 1rem 3rem;
}
.site-nav.is-open { display: block; animation: drawer-in 0.24s ease both; }
@keyframes drawer-in { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: none; } }

.nav-list { list-style: none; margin: 0; padding: 0; }
.nav-item { border-bottom: 1px solid rgba(233, 197, 126, 0.16); }

.nav-link,
.nav-trigger {
    display: flex; align-items: center; justify-content: space-between; gap: 0.5rem;
    width: 100%; min-height: 52px; padding: 0.6rem 0.25rem;
    background: none; border: 0; cursor: pointer;
    color: var(--text-on-dark); font-family: var(--font-body);
    font-size: 1rem; font-weight: 600; text-decoration: none; text-align: left;
}
.nav-link:hover, .nav-trigger:hover { color: var(--gold-300); }
.nav-trigger__chevron { width: 1.1rem; height: 1.1rem; color: var(--gold-300); transition: transform 0.2s ease; }
.nav-item--has-menu.is-open .nav-trigger__chevron { transform: rotate(180deg); }

.nav-menu { display: none; padding: 0 0 1rem; }
.nav-item--has-menu.is-open .nav-menu { display: block; }
.nav-menu__title {
    font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: 0.14em;
    color: var(--gold-300); font-weight: 700; margin: 0.75rem 0 0.4rem;
}

.link-list { list-style: none; margin: 0; padding: 0; }
.link-list a {
    display: flex; align-items: center; gap: 0.5rem;
    min-height: 44px; padding: 0.35rem 0;
    color: var(--text-on-dark-muted); text-decoration: none; font-size: var(--fs-sm);
}
.link-list a:hover { color: var(--gold-200); }

.nav-drawer-cta { margin-top: 1.5rem; }
.header-actions .header-cta { display: none; }

/* Flags */
.flag-swatch {
    display: inline-block; width: 22px; height: 15px; flex: none;
    border-radius: 3px; border: 1px solid rgba(15, 23, 42, 0.18);
    background: linear-gradient(180deg, var(--f1) 0 33.33%, var(--f2) 33.33% 66.66%, var(--f3) 66.66% 100%);
}
.flag-swatch--v {
    background: linear-gradient(90deg, var(--f1) 0 33.33%, var(--f2) 33.33% 66.66%, var(--f3) 66.66% 100%);
}
.flag-swatch--sm { width: 18px; height: 12px; }

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative; isolation: isolate;
    background: linear-gradient(150deg, var(--navy-800) 0%, var(--navy-900) 55%, var(--ink) 100%);
    color: var(--text-on-dark);
    padding-block: clamp(2.75rem, 1.6rem + 5vw, 6rem);
}
.hero--compact { padding-block: clamp(2.25rem, 1.5rem + 3vw, 3.75rem); }

.hero__media {
    position: absolute; inset: 0; z-index: -3;
    background-size: cover; background-position: 72% 30%; background-repeat: no-repeat;
}
.hero__scrim {
    position: absolute; inset: 0; z-index: -2;
    background:
        linear-gradient(180deg, rgba(8, 24, 58, 0.86) 0%, rgba(8, 24, 58, 0.66) 45%, rgba(8, 24, 58, 0.92) 100%);
}
.hero__ribbon {
    left: -6%; right: -6%; bottom: -10%; width: 112%; height: auto; z-index: -1;
    opacity: 0.55;
}
.hero__compass {
    position: absolute; width: 260px; height: 260px; z-index: -1;
    opacity: 0.12; pointer-events: none;
}
.hero__compass--left { left: -90px; bottom: -70px; }
.hero__compass--right { right: -90px; top: -70px; }

.hero__inner { position: relative; max-width: 720px; }
.hero__title { color: var(--white); margin-bottom: 0.4rem; }
.hero__rule {
    display: block; width: 96px; height: 3px; border-radius: 3px; margin-bottom: 1.25rem;
    background: linear-gradient(90deg, var(--gold-300), rgba(233, 197, 126, 0.1));
}
.hero__lead { color: #E4ECF9; font-size: clamp(1.02rem, 0.98rem + 0.3vw, 1.15rem); max-width: 56ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }

.hero--flat .hero__inner { max-width: 780px; }

/* Breadcrumbs */
.breadcrumbs { margin-bottom: 1.1rem; }
.breadcrumbs__list {
    list-style: none; margin: 0; padding: 0;
    display: flex; flex-wrap: wrap; align-items: center; gap: 0.4rem;
    font-size: var(--fs-xs); letter-spacing: 0.04em;
}
.breadcrumbs__item { display: inline-flex; align-items: center; gap: 0.4rem; }
.breadcrumbs a { color: var(--gold-200); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs [aria-current="page"] { color: #DCE6F7; }
.breadcrumbs__sep { color: rgba(233, 197, 126, 0.6); }
.section--cream .breadcrumbs a,
.section--lavender .breadcrumbs a { color: var(--navy-700); }

/* ============================================
   CARDS
   ============================================ */
.card {
    background: var(--white); border-radius: var(--radius);
    border: 1px solid var(--line); padding: clamp(1.25rem, 1rem + 1vw, 2rem);
    box-shadow: var(--shadow-soft);
}
.section--navy .card { border-color: var(--line-dark); }

.icon-card {
    background: var(--white); border-radius: var(--radius);
    border: 1px solid var(--line); border-top: 3px solid var(--gold-400);
    padding: clamp(1.25rem, 1rem + 1vw, 1.85rem);
    box-shadow: var(--shadow-offset);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.icon-card:hover { transform: translate(-3px, -3px); box-shadow: 14px 16px 0 rgba(124, 58, 237, 0.16); }
.icon-card__title { margin-bottom: 0.5rem; }
.icon-card__text { color: var(--text-muted); font-size: var(--fs-sm); margin-bottom: 0.75rem; }

.medallion {
    position: relative; display: inline-flex; align-items: center; justify-content: center;
    width: 58px; height: 58px; border-radius: 50%;
    background: radial-gradient(circle at 30% 25%, #FFF7E6, #F6E9CD);
    border: 1px solid rgba(201, 149, 66, 0.45);
    margin-bottom: 1rem; color: var(--gold);
}
.medallion__rose { position: absolute; inset: 4px; width: auto; height: auto; opacity: 0.35; }
.medallion__icon { width: 26px; height: 26px; color: var(--navy-700); position: relative; }

/* Profile cards */
.profile-card {
    background: var(--white); border-radius: var(--radius); overflow: hidden;
    border: 1px solid var(--line); box-shadow: var(--shadow-soft);
    display: flex; flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.profile-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.profile-card__media { position: relative; aspect-ratio: 9 / 11; }
.profile-card__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }
.profile-card__flag { position: absolute; top: 0.75rem; right: 0.75rem; }
.profile-card__flag .flag-swatch { width: 30px; height: 20px; box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3); }
.profile-card__badge { position: absolute; left: 0.75rem; bottom: 0.75rem; }
.profile-card__body { padding: 1rem 1.1rem 1.25rem; border-top: 2px solid var(--gold-200); }
.profile-card__name { font-size: 1.1rem; margin-bottom: 0.35rem; }
.profile-card__name a { color: var(--navy-800); text-decoration: none; }
.profile-card__name a:hover { text-decoration: underline; }
.profile-card__meta {
    display: flex; flex-wrap: wrap; gap: 0.75rem;
    font-size: var(--fs-sm); color: var(--text-muted); margin: 0;
}
.profile-card__loc { display: inline-flex; align-items: center; gap: 0.3rem; }
.profile-card__pin { width: 1rem; height: 1rem; color: var(--gold); }

/* Story cards */
.story-card {
    background: var(--white); border-radius: var(--radius); overflow: hidden;
    border: 1px solid var(--line); box-shadow: var(--shadow-offset-coral);
    display: flex; flex-direction: column;
}
.story-card__media { position: relative; aspect-ratio: 4 / 3; }
.story-card__media img { width: 100%; height: 100%; object-fit: cover; }
.story-card__shield {
    position: absolute; left: 50%; bottom: -20px; transform: translateX(-50%);
    width: 40px; height: 40px; border-radius: 50%;
    display: grid; place-items: center;
    background: linear-gradient(140deg, var(--gold-300), var(--gold));
    color: var(--navy-900); border: 2px solid var(--white);
}
.story-card__body { padding: 2rem 1.25rem 1.4rem; text-align: center; }
.story-card__label { font-size: 1.08rem; margin-bottom: 0.5rem; }
.story-card__text { color: var(--text-muted); font-size: var(--fs-sm); }
.story-card__foot { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin: 0.9rem 0 0; }
.story-card__heart { width: 1.15rem; height: 1.15rem; color: var(--coral); }

/* Country cards */
.country-card {
    position: relative; display: flex; flex-direction: column;
    background: var(--white); border-radius: var(--radius); overflow: hidden;
    border: 1px solid var(--line); text-decoration: none; color: inherit;
    box-shadow: var(--shadow-offset);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.country-card:hover { transform: translate(-3px, -3px); box-shadow: 14px 16px 0 rgba(124, 58, 237, 0.16); }
.country-card__band {
    display: block; height: 10px;
    background: linear-gradient(90deg, var(--navy-800), var(--violet) 55%, var(--coral));
    position: relative;
}
.country-card__flag { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); }
.country-card__media { display: block; aspect-ratio: 5 / 6; }
.country-card__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.country-card__body { display: block; padding: 1.1rem 1.15rem 1.35rem; }
.country-card__title { display: block; font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--navy-800); }
.country-card__teaser { display: block; margin-top: 0.4rem; font-size: var(--fs-sm); color: var(--text-muted); }
.country-card__go { display: inline-flex; margin-top: 0.85rem; color: var(--gold); }
.country-card__go .icon { width: 1.5rem; height: 1.5rem; }

/* Post cards */
.post-card {
    background: var(--white); border-radius: var(--radius); overflow: hidden;
    border: 1px solid var(--line); box-shadow: var(--shadow-soft);
    display: flex; flex-direction: column;
}
.post-card__media { display: block; aspect-ratio: 4 / 3; }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; }
.post-card__body { padding: 1.1rem 1.15rem 1.35rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.post-card__title { font-size: 1.1rem; margin: 0; }
.post-card__title a { color: var(--navy-800); text-decoration: none; }
.post-card__title a:hover { text-decoration: underline; }
.post-card__teaser { color: var(--text-muted); font-size: var(--fs-sm); margin: 0; }
.post-card__go {
    margin-top: auto; display: inline-flex; align-items: center; gap: 0.4rem;
    font-size: var(--fs-sm); font-weight: 700; color: var(--violet);
}

/* ============================================
   STAT DIALS
   ============================================ */
.dial { text-align: center; }
.dial__ring { position: relative; width: min(160px, 60vw); margin-inline: auto; }
.dial__ring svg { width: 100%; height: auto; transform: rotate(-90deg); }
.dial__track { fill: none; stroke: rgba(233, 197, 126, 0.18); stroke-width: 9; }
.dial__arc {
    fill: none; stroke: url(#none); stroke: var(--gold-300); stroke-width: 9;
    stroke-linecap: round; stroke-dashoffset: var(--dial-offset, 90);
    filter: drop-shadow(0 0 6px rgba(233, 197, 126, 0.45));
}
.dial.is-visible .dial__arc { animation: dial-fill 1.4s cubic-bezier(0.25, 0.8, 0.3, 1) both; }
@keyframes dial-fill { from { stroke-dashoffset: 327; } to { stroke-dashoffset: var(--dial-offset, 90); } }
.dial__value {
    position: absolute; inset: 0; display: grid; place-items: center;
    font-family: var(--font-display); font-size: clamp(1.4rem, 1.1rem + 1.2vw, 2rem);
    font-weight: 700; color: var(--white);
}
.dial__label { margin: 0.9rem 0 0.2rem; font-weight: 700; color: var(--gold-200); }
.dial__note { font-size: var(--fs-sm); color: var(--text-on-dark-muted); margin: 0; }
.section--cream .dial__value,
.section--white .dial__value { color: var(--navy-800); }
.section--cream .dial__label,
.section--white .dial__label { color: var(--navy-700); }
.section--cream .dial__note,
.section--white .dial__note { color: var(--text-muted); }
.section--cream .dial__track,
.section--white .dial__track { stroke: rgba(11, 33, 73, 0.12); }
.section--cream .dial__arc,
.section--white .dial__arc { stroke: var(--gold); }

/* ============================================
   TIMELINE
   ============================================ */
.timeline { list-style: none; margin: 0; padding: 0; position: relative; display: grid; gap: 1.25rem; }
.timeline::before {
    content: ""; position: absolute; left: 22px; top: 12px; bottom: 12px; width: 2px;
    background: linear-gradient(180deg, rgba(233, 197, 126, 0.1), var(--gold-400), rgba(233, 197, 126, 0.1));
}
.timeline__step { position: relative; display: grid; grid-template-columns: 46px minmax(0, 1fr); gap: 1rem; align-items: start; }
.timeline__num {
    display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%;
    font-family: var(--font-display); font-weight: 700; font-size: 1.1rem;
    background: var(--navy-800); color: var(--gold-200);
    border: 2px solid var(--gold-400); position: relative; z-index: 1;
}
.timeline__body {
    background: var(--white); border-radius: var(--radius); border: 1px solid var(--line);
    padding: 1.1rem 1.25rem; box-shadow: var(--shadow-soft);
}
.section--navy .timeline__body { background: rgba(255, 255, 255, 0.05); border-color: var(--line-dark); }
.timeline__title { font-size: 1.1rem; margin-bottom: 0.4rem; }
.timeline__text { margin: 0; font-size: var(--fs-sm); color: var(--text-muted); }
.section--navy .timeline__text { color: var(--text-on-dark-muted); }

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-list { display: grid; gap: 0.85rem; align-items: start; max-width: 860px; }
.faq-item {
    background: var(--white); border: 1px solid var(--line);
    border-radius: var(--radius); overflow: hidden; align-self: start;
}
.section--navy .faq-item { background: rgba(255, 255, 255, 0.05); border-color: var(--line-dark); }
.faq-item__q {
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
    min-height: 56px; padding: 0.9rem 1.15rem; cursor: pointer;
    font-family: var(--font-body); font-weight: 700; font-size: 1rem;
    color: var(--navy-800); list-style: none;
}
.section--navy .faq-item__q { color: var(--white); }
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__chevron { width: 1.25rem; height: 1.25rem; color: var(--gold); flex: none; transition: transform 0.22s ease; }
.faq-item[open] .faq-item__chevron { transform: rotate(180deg); }
.faq-item[open] { border-left: 4px solid var(--gold-400); }
.faq-item__a {
    padding: 0 1.15rem 1.15rem; color: var(--text-muted); font-size: var(--fs-sm);
    border-top: 1px solid var(--line);
    padding-top: 1rem;
}
.section--navy .faq-item__a { color: var(--text-on-dark-muted); border-top-color: var(--line-dark); }
.faq-item__a p:last-child { margin-bottom: 0; }

/* ============================================
   COMPARISON TABLE
   ============================================ */
.table-wrap {
    background: var(--white); border-radius: var(--radius);
    border: 1px solid rgba(201, 149, 66, 0.4);
    box-shadow: 0 22px 44px -30px rgba(124, 58, 237, 0.6);
    overflow-x: auto;
}
.compare-table { width: 100%; border-collapse: collapse; min-width: 520px; font-size: var(--fs-sm); }
.compare-table caption { caption-side: top; padding: 1rem 1.15rem 0; text-align: left; font-weight: 600; color: var(--text-muted); }
.compare-table thead th {
    background: var(--navy-800); color: var(--white); text-align: left;
    padding: 0.95rem 1.1rem; font-weight: 700; letter-spacing: 0.02em;
}
.compare-table thead th.compare-table__premium {
    background: linear-gradient(120deg, var(--gold-400), var(--gold));
    color: var(--ink);
}
.compare-table tbody th {
    text-align: left; font-weight: 600; color: var(--navy-800);
    padding: 0.85rem 1.1rem; border-bottom: 1px solid var(--line);
}
.compare-table tbody td {
    padding: 0.85rem 1.1rem; border-bottom: 1px solid var(--line);
    text-align: center; color: var(--text-muted);
}
.compare-table tbody tr:nth-child(even) th,
.compare-table tbody tr:nth-child(even) td { background: var(--lavender); }
.compare-table tbody td.compare-table__premium { background: rgba(233, 197, 126, 0.14); color: var(--navy-800); font-weight: 600; }
.compare-table tbody tr:nth-child(even) td.compare-table__premium { background: rgba(233, 197, 126, 0.24); }
.mark { display: inline-grid; place-items: center; }
.mark--yes { color: #1E7A45; }
.mark--no { color: #7A8395; }
.mark .icon { width: 1.4rem; height: 1.4rem; stroke-width: 2.2; }

/* ============================================
   CTA BAND
   ============================================ */
.cta-band {
    position: relative; isolation: isolate; text-align: center;
    background: linear-gradient(140deg, var(--navy-800) 0%, var(--navy-900) 60%, var(--ink) 100%);
    color: var(--text-on-dark);
    padding-block: clamp(3rem, 2rem + 4vw, 5rem);
}
.cta-band::after {
    content: ""; position: absolute; inset: 0; z-index: -1;
    background-image: url("https://vsesvit-ai.ams3.cdn.digitaloceanspaces.com/files/6/a/7/6a7a61a2961a4719249780.webp");
    background-repeat: no-repeat; background-position: center;
    background-size: min(520px, 90%);
    opacity: 0.07;
}
.cta-band__ribbon { left: -6%; right: -6%; top: -18%; width: 112%; height: auto; z-index: -1; opacity: 0.45; }
.cta-band__inner { position: relative; max-width: 720px; }
.cta-band__title { color: var(--white); }
.cta-band__text { color: var(--text-on-dark-muted); }
.cta-band__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }
.cta-band__note { margin-top: 1rem; font-size: var(--fs-xs); color: var(--text-on-dark-muted); }

/* ============================================
   PROSE
   ============================================ */
.prose { max-width: 72ch; }
.prose h2 { margin-top: 2.25rem; }
.prose h3 { margin-top: 1.75rem; }
.prose ul, .prose ol { margin: 0 0 1.2em; padding-left: 1.35rem; }
.prose li { margin-bottom: 0.45em; }
.prose blockquote {
    margin: 1.5rem 0; padding: 1.1rem 1.35rem;
    border-left: 4px solid var(--gold-400); background: var(--white);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic; color: var(--navy-800);
}
.prose blockquote cite { display: block; margin-top: 0.6rem; font-style: normal; font-size: var(--fs-sm); color: var(--text-muted); }
.callout {
    background: var(--white); border: 1px solid var(--line);
    border-left: 4px solid var(--violet); border-radius: var(--radius-sm);
    padding: 1.1rem 1.25rem; margin: 1.5rem 0; box-shadow: var(--shadow-soft);
    color: var(--text-muted);
}
.section--navy .callout { color: var(--text-muted); }
.updated-line { font-size: var(--fs-xs); letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); font-weight: 600; }

/* ============================================
   CAROUSEL
   ============================================ */
.carousel { position: relative; }
.carousel__track {
    display: grid; grid-auto-flow: column; grid-auto-columns: min(88%, 380px);
    gap: 1.25rem; overflow-x: auto; scroll-snap-type: x mandatory;
    padding-bottom: 0.5rem; scrollbar-width: thin;
}
.carousel__track > * { scroll-snap-align: center; }
.carousel__nav { display: flex; justify-content: center; align-items: center; gap: 0.75rem; margin-top: 1.25rem; }
.carousel__btn {
    width: 46px; height: 46px; border-radius: 50%; cursor: pointer;
    background: transparent; border: 1px solid var(--gold-400); color: var(--gold-300);
    display: grid; place-items: center;
}
.carousel__btn:hover { background: rgba(233, 197, 126, 0.16); }
.carousel__dots { display: flex; gap: 0.4rem; list-style: none; margin: 0; padding: 0; }
.carousel__dot {
    width: 10px; height: 10px; border-radius: 50%; border: 0; padding: 0; cursor: pointer;
    background: rgba(233, 197, 126, 0.35);
}
.carousel__dot.is-active { background: var(--gold-300); }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: linear-gradient(180deg, var(--navy-900), var(--ink));
    color: var(--text-on-dark-muted);
    padding-block: clamp(2.5rem, 1.8rem + 3vw, 4rem) 2rem;
    border-top: 3px solid var(--gold-400);
}
.footer-top { display: grid; gap: 2rem; grid-template-columns: minmax(0, 1fr); }
.site-brand--footer { margin-bottom: 1rem; }
.footer-blurb { font-size: var(--fs-sm); margin-bottom: 1.25rem; max-width: 42ch; }
.footer-title {
    font-family: var(--font-display); font-size: 1.05rem; color: var(--gold-200);
    margin: 0 0 0.75rem; font-weight: 700;
}
.footer-title--spaced { margin-top: 1.5rem; }
.footer-subtitle {
    font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: 0.14em;
    color: var(--gold-300); font-weight: 700; margin: 0 0 0.4rem;
}
.footer-list { list-style: none; margin: 0; padding: 0; }
.footer-list a,
.site-footer .link-list a {
    display: inline-flex; align-items: center; min-height: 40px;
    color: var(--text-on-dark-muted); text-decoration: none; font-size: var(--fs-sm);
}
.footer-list a:hover,
.site-footer .link-list a:hover { color: var(--gold-200); text-decoration: underline; }

.footer-directory {
    margin-top: 2.5rem; padding-top: 2rem;
    border-top: 1px solid var(--line-dark);
}
.footer-directory__grid { display: grid; gap: 1.5rem; grid-template-columns: minmax(0, 1fr); }

.footer-bottom {
    margin-top: 2rem; padding-top: 1.25rem; border-top: 1px solid var(--line-dark);
    display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem; align-items: center; justify-content: space-between;
    font-size: var(--fs-xs);
}
.footer-bottom p { margin: 0; }
.footer-bottom__links { list-style: none; display: flex; gap: 1.25rem; margin: 0; padding: 0; }
.footer-bottom__links a { color: var(--gold-200); text-decoration: none; }
.footer-bottom__links a:hover { text-decoration: underline; }

/* ============================================
   REVEAL
   ============================================ */
[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }
.no-js [data-reveal] { opacity: 1; transform: none; }

/* ============================================
   BREAKPOINTS
   ============================================ */
@media (min-width: 768px) {
    .grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .footer-top { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .footer-directory__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .hero__media { background-position: 70% 25%; }
    .carousel__track { grid-auto-columns: min(60%, 400px); }
    .timeline--horizontal { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
    .header-inner { min-height: 82px; gap: 1.5rem; }
    .nav-toggle { display: none; }

    .site-nav,
    .site-nav.is-open {
        display: flex; align-items: center; position: static;
        height: auto; overflow: visible; background: none;
        border: 0; padding: 0; animation: none; flex: 1;
        justify-content: flex-end;
    }
    .nav-list { display: flex; align-items: center; gap: 0.25rem; }
    .nav-item { border: 0; position: relative; }
    .nav-link,
    .nav-trigger {
        min-height: 44px; padding: 0.5rem 0.7rem; font-size: 0.94rem;
        border-radius: var(--radius-pill); width: auto;
    }
    .nav-link:hover, .nav-trigger:hover { background: rgba(255, 255, 255, 0.07); }
    .nav-drawer-cta { display: none; }
    .header-actions .header-cta { display: inline-flex; }

    .nav-menu {
        position: absolute; top: calc(100% + 14px); left: 0;
        background: linear-gradient(160deg, var(--navy-800), var(--navy-900));
        border: 1px solid var(--line-dark); border-radius: var(--radius);
        box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.8);
        padding: 1.25rem 1.5rem; z-index: 95;
    }
    .nav-menu--mega { width: min(780px, calc(100vw - 3rem)); display: none; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0.5rem 1.5rem; }
    .nav-item--has-menu.is-open .nav-menu--mega { display: grid; }
    .nav-menu--list { width: min(340px, calc(100vw - 3rem)); }
    .nav-menu__title { margin-top: 0; }
    .nav-menu .link-list a { min-height: 36px; padding: 0.2rem 0; }
    .nav-menu--list .link-list a { min-height: 40px; }

    .grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .split { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .split--wide-left { grid-template-columns: 1.15fr 0.85fr; }
    .split--wide-right { grid-template-columns: 0.85fr 1.15fr; }

    .footer-top { grid-template-columns: 1.4fr 1fr 1.2fr 1fr; gap: 2.5rem; }
    .footer-directory__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

    .hero { padding-block: clamp(4rem, 2rem + 5vw, 7rem); }
    .hero__inner { max-width: 640px; }
    .hero__media { background-position: 78% 28%; }
    .hero__scrim {
        background: linear-gradient(100deg, rgba(8, 24, 58, 0.95) 0%, rgba(8, 24, 58, 0.86) 42%, rgba(8, 24, 58, 0.35) 72%, rgba(8, 24, 58, 0.15) 100%);
    }

    .timeline--horizontal { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .timeline--horizontal::before { left: 12px; right: 12px; top: 23px; bottom: auto; width: auto; height: 2px;
        background: linear-gradient(90deg, rgba(233, 197, 126, 0.1), var(--gold-400), rgba(233, 197, 126, 0.1)); }
    .timeline--horizontal .timeline__step { grid-template-columns: minmax(0, 1fr); gap: 1rem; }

    .carousel__track { grid-auto-columns: minmax(0, 380px); }
}

@media (min-width: 1440px) {
    :root { --shell: 1240px; }
}

/* ============================================
   HOMEPAGE
   ============================================ */

/* -- Benefits -- */
.benefit-grid { align-items: start; }

/* -- Regions -- */
.regions-layout {
    display: grid;
    gap: clamp(1.5rem, 1rem + 2vw, 2.5rem);
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
}
.region-block {
    background: var(--white);
    border: 1px solid var(--line);
    border-left: 4px solid var(--gold-400);
    border-radius: var(--radius);
    padding: clamp(1.15rem, 0.9rem + 0.9vw, 1.75rem);
    box-shadow: var(--shadow-soft);
}
.region-block + .region-block { margin-top: 1.25rem; }
.region-block__title { color: var(--navy-800); margin-bottom: 0.55rem; }
.region-block p { color: var(--text-muted); font-size: var(--fs-sm); margin-bottom: 0; }
.region-block .link-list--chip {
    display: flex; flex-wrap: wrap; gap: 0.45rem; margin-top: 1rem;
}
.region-block .link-list--chip li { display: flex; }
.region-block .link-list--chip a {
    min-height: 44px; padding: 0.4rem 0.9rem; gap: 0.4rem;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(201, 149, 66, 0.55);
    background: var(--lavender);
    color: var(--navy-800);
    font-size: var(--fs-xs); font-weight: 600;
    transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.region-block .link-list--chip a:hover {
    background: linear-gradient(120deg, var(--violet), var(--gold));
    color: var(--white); border-color: transparent; transform: translateY(-2px);
    text-decoration: none;
}

.regions-map { display: grid; place-items: center; }
.euro-map { width: min(100%, 460px); height: auto; }
.euro-map__land path { fill: var(--navy-800); stroke: var(--gold-400); stroke-width: 1.3; stroke-linejoin: round; }
.euro-map__arcs path { fill: none; stroke: var(--gold-400); stroke-width: 1.2; stroke-dasharray: 3 7; opacity: 0.55; }
.euro-map__pins circle { fill: var(--gold-300); stroke: var(--gold); stroke-width: 1; filter: drop-shadow(0 0 5px rgba(233, 197, 126, 0.9)); }

/* -- Match questionnaire -- */
.quiz-section { position: relative; }
.quiz-section__compass {
    position: absolute; right: -140px; top: 50%; transform: translateY(-50%);
    width: 460px; height: 460px; opacity: 0.08; pointer-events: none;
    color: var(--gold-300);
}
.quiz { position: relative; max-width: 760px; margin-inline: auto; }
.quiz__rail {
    position: relative; list-style: none; margin: 0 0 clamp(1.75rem, 1.2rem + 2vw, 2.75rem);
    padding: 0 0.25rem; display: flex; justify-content: space-between; align-items: center;
}
.quiz__ribbon {
    left: -4%; right: -4%; width: 108%; top: 50%; transform: translateY(-45%);
    height: 90px; opacity: 0.55;
}
.quiz__node {
    position: relative; z-index: 1; display: grid; place-items: center;
    width: 58px; height: 58px; border-radius: 50%; cursor: pointer;
    background: radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.22), rgba(8, 24, 58, 0.94));
    border: 2px solid rgba(233, 197, 126, 0.38);
    color: var(--gold-200); font-family: var(--font-display); font-size: 1.15rem; font-weight: 700;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}
.quiz__node.is-done { border-color: var(--gold-400); color: var(--gold-200); }
.quiz__node.is-active {
    border-color: var(--gold-300); color: var(--white);
    box-shadow: 0 0 0 5px rgba(233, 197, 126, 0.15), 0 0 22px rgba(233, 197, 126, 0.55);
}
.quiz__panel { display: none; border: 0; margin: 0; padding: 0; min-width: 0; }
.quiz__panel.is-active { display: block; }
.quiz__legend {
    font-family: var(--font-display); font-size: 1.3rem; font-weight: 700;
    color: var(--white); padding: 0; margin-bottom: 1.1rem;
}
.quiz__field { margin-bottom: 1.35rem; }
.quiz__label {
    display: block; font-size: var(--fs-sm); font-weight: 700;
    color: var(--gold-200); margin-bottom: 0.5rem;
}
.quiz__options { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.55rem; }
.quiz__option label { display: inline-flex; }
.quiz__option input {
    position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0;
    overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.quiz__option span {
    display: inline-flex; align-items: center; min-height: 44px;
    padding: 0.5rem 1.05rem; border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(233, 197, 126, 0.38);
    color: var(--text-on-dark); font-size: var(--fs-sm); font-weight: 600;
    cursor: pointer; transition: background-color 0.18s ease, color 0.18s ease;
}
.quiz__option span:hover { background: rgba(233, 197, 126, 0.18); }
.quiz__option input:checked + span {
    background: linear-gradient(120deg, var(--gold-300), var(--gold-400));
    border-color: transparent; color: var(--ink);
}
.quiz__option input:focus-visible + span { outline: 3px solid var(--amber); outline-offset: 3px; }
.quiz__select {
    width: 100%; min-height: 48px; padding: 0.6rem 0.9rem;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(233, 197, 126, 0.5);
    color: var(--navy-800); font-family: var(--font-body); font-size: var(--fs-sm); font-weight: 600;
}
.quiz__range {
    width: 100%; min-height: 44px; accent-color: var(--gold-400); background: transparent;
}
.quiz__hint { margin: 0.5rem 0 0; font-size: var(--fs-xs); color: var(--text-on-dark-muted); }
.quiz__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }

/* -- Success stories -- */
.stories__frame { position: relative; }
.stories__ribbon {
    left: -5%; right: -5%; width: 110%; top: 34%;
    height: 160px; color: var(--gold); opacity: 0.45;
}
.stories .carousel { position: relative; z-index: 1; }
.stories .carousel__btn { border-color: var(--gold); color: var(--gold); background: var(--white); }
.stories .carousel__btn:hover { background: var(--cream-deep); }
.stories .carousel__btn-icon--prev { transform: rotate(90deg); }
.stories .carousel__btn-icon--next { transform: rotate(-90deg); }
.stories .carousel__dot { background: rgba(201, 149, 66, 0.35); }
.stories .carousel__dot.is-active { background: var(--gold); }

/* -- Process ribbon -- */
.process { position: relative; }
.process__ribbon {
    display: none; position: absolute; left: 50%; top: 0; transform: translateX(-50%);
    width: 220px; height: 100%; color: var(--gold-300); opacity: 0.35; pointer-events: none;
}
.process__compass {
    position: absolute; left: 50%; top: 52%; transform: translate(-50%, -50%);
    width: 340px; height: 340px; opacity: 0.09; pointer-events: none; color: var(--gold-300);
}
.process .shell { position: relative; z-index: 1; }

/* -- Trust -- */
.trust-split {
    display: grid; gap: clamp(1.75rem, 1.2rem + 2.5vw, 3rem);
    grid-template-columns: minmax(0, 1fr); align-items: start;
}
.trust-shield-wrap {
    position: relative; display: grid; place-items: center; padding: 0.5rem 0 1.75rem;
}
.trust-shield-wrap::before {
    content: ""; position: absolute; width: min(320px, 80vw); aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(233, 197, 126, 0.28), rgba(233, 197, 126, 0) 68%);
}
.trust-shield { position: relative; width: min(190px, 48vw); height: auto; }
.trust-panel {
    background: var(--white);
    border-radius: var(--radius);
    border-top-left-radius: 56px;
    padding: clamp(1.35rem, 1rem + 1.6vw, 2.25rem);
    box-shadow: var(--shadow-lift);
}
.trust-panel__title { color: var(--navy-800); margin-bottom: 0.75rem; }
.trust-badge {
    display: grid; grid-template-columns: 52px minmax(0, 1fr); gap: 1rem;
    align-items: start; padding: 1rem 0; border-bottom: 1px solid var(--line);
}
.trust-badge:last-child { border-bottom: 0; padding-bottom: 0; }
.trust-badge__emblem {
    width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
    background: radial-gradient(circle at 30% 25%, #FFF7E6, #F0DFBD);
    border: 1px solid rgba(201, 149, 66, 0.55);
    color: var(--navy-800);
}
.trust-badge__emblem .icon { width: 26px; height: 26px; }
.trust-badge h4 {
    font-family: var(--font-display); font-size: 1.05rem; font-weight: 700;
    color: var(--navy-800); margin: 0 0 0.3rem;
}
.trust-badge p { margin: 0; font-size: var(--fs-sm); color: var(--text-muted); }

/* -- Comparison -- */
.compare-note { margin-top: 1.5rem; max-width: 68ch; color: var(--text-muted); }
.compare-cta { margin-top: 1.25rem; }

@media (min-width: 768px) {
    .trust-badge { gap: 1.15rem; }
}

@media (min-width: 1024px) {
    .regions-layout { grid-template-columns: 1.05fr 0.95fr; }
    .regions-map { position: sticky; top: 110px; }
    .trust-split { grid-template-columns: 1.05fr 0.95fr; }
    .process__ribbon { display: block; }
    .stories__ribbon { top: 30%; }
}

/* ============================================
   COUNTRY CATEGORY PAGES
   ============================================ */

/* -- Cultural insight split -- */
.insight-split {
    display: grid;
    gap: clamp(1.5rem, 1rem + 2vw, 2.75rem);
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
}
.insight-figure {
    margin: 0;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-offset);
}
.insight-figure img {
    display: block; width: 100%; height: auto;
    aspect-ratio: 3 / 2; object-fit: cover; object-position: center;
}
.insight-figure figcaption {
    padding: 1.1rem 1.25rem 1.4rem;
    font-size: var(--fs-sm); color: var(--text-muted);
}
.insight-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.35rem; }
.insight-item {
    display: grid; grid-template-columns: 58px minmax(0, 1fr);
    gap: 1rem; align-items: start;
}
.insight-item .medallion { margin-bottom: 0; }
.insight-item__title { font-size: 1.1rem; margin-bottom: 0.35rem; color: var(--navy-800); }
.insight-item p { margin: 0; font-size: var(--fs-sm); color: var(--text-muted); }

/* -- Statistic band -- */
.stat-band { position: relative; }
.stat-band__waves {
    position: absolute; left: 0; right: 0; top: 50%;
    transform: translateY(-30%);
    width: 100%; height: 240px;
    color: var(--gold-300); opacity: 0.3; pointer-events: none;
}
.stat-band .shell { position: relative; z-index: 1; }
.stat-grid {
    display: grid; gap: clamp(2rem, 1.4rem + 2vw, 3rem);
    grid-template-columns: minmax(0, 1fr);
}

/* -- FAQ band ornaments -- */
.faq-band { position: relative; }
.faq-band__compass {
    position: absolute; width: 320px; height: 320px;
    opacity: 0.09; pointer-events: none; color: var(--gold-300);
}
.faq-band__compass--left { left: -120px; top: 14%; }
.faq-band__compass--right { right: -120px; bottom: 6%; }
.faq-band .shell { position: relative; z-index: 1; }
.faq-band .faq-list { margin-inline: auto; }

/* -- Related country cards -- */
.related-grid .country-card__band { height: 14px; }
.related-grid .country-card:nth-child(1) .country-card__band {
    background: linear-gradient(115deg, #002395 0 34%, #FFFFFF 34% 66%, #ED2939 66%);
}
.related-grid .country-card:nth-child(2) .country-card__band {
    background: linear-gradient(115deg, #169B62 0 34%, #FFFFFF 34% 66%, #FF883E 66%);
}
.related-grid .country-card:nth-child(3) .country-card__band {
    background: linear-gradient(115deg, #AE1C28 0 34%, #FFFFFF 34% 66%, #21468B 66%);
}

@media (min-width: 768px) {
    .stat-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
    .insight-split { grid-template-columns: 0.95fr 1.05fr; }
    .insight-split--reverse { grid-template-columns: 1.05fr 0.95fr; }
    .insight-split--reverse .insight-figure { order: 2; }
}

/* ============================================
   SAFETY GRID GLOW (Finnish & similar pages)
   ============================================ */
.safety-grid { position: relative; }
.safety-grid::before {
    content: "";
    position: absolute;
    inset: -10% -6%;
    z-index: -1;
    background: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.14), rgba(124, 58, 237, 0) 70%);
    pointer-events: none;
}

/* ============================================
   VALUE COMPARISON CARDS (Belgian & similar pages)
   ============================================ */
.value-grid { align-items: start; }
.value-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: clamp(1.5rem, 1.15rem + 1.2vw, 2.25rem);
    box-shadow: var(--shadow-soft);
}
.value-card--premium {
    border: 2px solid transparent;
    background:
        linear-gradient(var(--white), var(--white)) padding-box,
        linear-gradient(120deg, var(--violet), var(--coral)) border-box;
    box-shadow: var(--shadow-lift);
}
.value-card__badge {
    position: absolute; top: -14px; right: 1.25rem;
}
.value-card__title { color: var(--navy-800); margin-bottom: 1.1rem; }
.value-card__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.85rem; }
.value-card__list li {
    display: grid; grid-template-columns: 1.4rem minmax(0, 1fr);
    gap: 0.65rem; align-items: start;
    font-size: var(--fs-sm); color: var(--text-muted);
}
.value-card__list .icon { color: #1E7A45; width: 1.3rem; height: 1.3rem; margin-top: 0.1rem; }
.value-card--premium .value-card__list .icon { color: var(--violet); }

@media (min-width: 768px) {
    .value-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ============================================
   FLAG CUTOUT CARDS (Italian & similar pages)
   ============================================ */
.flagcard {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: var(--radius);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: var(--shadow-offset);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.flagcard:hover { transform: translate(-3px, -3px); box-shadow: 14px 16px 0 rgba(124, 58, 237, 0.16); }
.flagcard__art { position: relative; height: 260px; overflow: hidden; background: var(--navy-800); }
.flagcard__bg { position: absolute; inset: 0; }
.flagcard--es .flagcard__bg { background: linear-gradient(180deg, #AA151B 0 28%, #F1BF00 28% 72%, #AA151B 72% 100%); }
.flagcard--gr .flagcard__bg { background: repeating-linear-gradient(180deg, #0D5EAF 0 24px, #FFFFFF 24px 48px); }
.flagcard--pt .flagcard__bg { background: linear-gradient(90deg, #046A38 0 38%, #DA291C 38% 100%); }
.flagcard--it .flagcard__bg { background: linear-gradient(90deg, #008C45 0 34%, #F4F5F0 34% 66%, #CD212A 66%); }
.flagcard--ad .flagcard__bg { background: linear-gradient(90deg, #10069F 0 34%, #FEDD00 34% 66%, #D0103A 66%); }
.flagcard--mt .flagcard__bg { background: linear-gradient(90deg, #FFFFFF 0 62%, #CF142B 62% 100%); }
.flagcard--cy .flagcard__bg { background: linear-gradient(90deg, #FFFFFF 0 62%, #D57800 62% 100%); }
.flagcard--lt .flagcard__bg { background: linear-gradient(180deg, #FDB913 0 34%, #006A44 34% 66%, #C1272D 66%); }
.flagcard--ee .flagcard__bg { background: linear-gradient(180deg, #0072CE 0 34%, #111111 34% 66%, #FFFFFF 66%); }
.flagcard--fi .flagcard__bg { background: #FFFFFF; }
.flagcard--fi .flagcard__bg::before {
    content: "";
    position: absolute; inset: 0;
    background:
        linear-gradient(#003580, #003580) 0 38%/100% 24% no-repeat,
        linear-gradient(#003580, #003580) 32% 0/18% 100% no-repeat;
}
.flagcard--lv .flagcard__bg { background: linear-gradient(180deg, #9E3039 0 42%, #FFFFFF 42% 58%, #9E3039 58% 100%); }
.flagcard--se .flagcard__bg { background: #006AA7; }
.flagcard--se .flagcard__bg::before {
    content: "";
    position: absolute; inset: 0;
    background:
        linear-gradient(#FECC00, #FECC00) 0 38%/100% 24% no-repeat,
        linear-gradient(#FECC00, #FECC00) 32% 0/18% 100% no-repeat;
}
.flagcard__portrait {
    position: absolute; right: 6%; bottom: 0;
    height: 100%; width: auto; max-width: 62%;
    object-fit: contain; object-position: bottom;
}
.flagcard__caption {
    background: var(--white);
    padding: 1.1rem 1.2rem 1.4rem;
    display: flex; flex-direction: column; gap: 0.4rem;
    flex: 1;
}
.flagcard__title { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--navy-800); }
.flagcard__teaser { font-size: var(--fs-sm); color: var(--text-muted); margin: 0; }
.flagcard__go { display: inline-flex; align-items: center; gap: 0.3rem; margin-top: auto; color: #8A5A11; font-weight: 700; font-size: var(--fs-sm); }
.flagcard__chevron { width: 1.1rem; height: 1.1rem; transform: rotate(-90deg); }

/* ============================================
   ABOUT PAGE
   ============================================ */
.mission-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius);
    padding: clamp(1.5rem, 1.1rem + 1.6vw, 2.5rem);
    box-shadow: var(--shadow-offset);
    max-width: 74ch;
}
.mission-card__compass {
    position: absolute; top: -20px; left: -20px;
    width: 64px; height: 64px; opacity: 0.9; color: var(--gold-400);
}
.mission-card p + p { margin-top: 1rem; }
.mission-card__quote {
    margin-top: 1.35rem;
    padding-left: 1.1rem;
    border-left: 4px solid var(--gold-400);
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--navy-800);
}

.about-europe {
    align-items: center;
}
.about-europe__map {
    position: relative;
    display: grid;
    place-items: center;
}
.about-europe__map::before {
    content: "";
    position: absolute;
    width: min(360px, 80%);
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(217, 169, 76, 0.28), rgba(217, 169, 76, 0) 70%);
    z-index: 0;
}
.about-europe__map .euro-map {
    position: relative;
    z-index: 1;
    width: min(100%, 380px);
}

.about-trust__panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line-dark);
    background: rgba(255, 255, 255, 0.04);
}
.about-trust__media { position: relative; min-height: 240px; }
.about-trust__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-trust__media::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(0deg, rgba(8, 24, 58, 0.85) 0%, rgba(8, 24, 58, 0.15) 55%);
}
.about-trust__body { padding: clamp(1.5rem, 1.1rem + 1.6vw, 2.5rem); }
.about-trust__list {
    list-style: none; margin: 1.1rem 0 1.25rem; padding: 0;
    display: grid; gap: 0.6rem;
}
.about-trust__list li {
    position: relative; padding-left: 1.5rem; font-size: var(--fs-sm);
    color: var(--text-on-dark-muted);
}
.about-trust__list li::before {
    content: ""; position: absolute; left: 0; top: 0.5em;
    width: 8px; height: 8px; border-radius: 50%; background: var(--gold-400);
}
.section--lavender .about-trust__list li,
.section--cream .about-trust__list li,
.section--white .about-trust__list li { color: var(--text-muted); }

.benefit-pill-grid { align-items: start; }
.benefit-pill {
    background: var(--white);
    border-radius: var(--radius);
    padding: clamp(1.15rem, 0.95rem + 0.8vw, 1.5rem);
    box-shadow: var(--shadow-offset-coral);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.benefit-pill:hover {
    transform: translate(-3px, -3px);
    box-shadow: 14px 16px 0 rgba(255, 46, 147, 0.18);
}
.benefit-pill__badge {
    display: inline-flex; align-items: center; gap: 0.4rem;
    padding: 0.35rem 0.85rem; border-radius: var(--radius-pill);
    background: linear-gradient(120deg, var(--violet), var(--coral));
    color: var(--white); font-weight: 700; font-size: var(--fs-xs);
    margin-bottom: 0.75rem;
}
.benefit-pill__icon { width: 1rem; height: 1rem; color: var(--amber); }
.benefit-pill p { margin: 0; font-size: var(--fs-sm); color: var(--text-muted); }

@media (min-width: 1024px) {
    .about-europe { grid-template-columns: 1.1fr 0.9fr; }
    .about-trust__panel { grid-template-columns: 0.9fr 1.1fr; }
    .about-trust__media { min-height: 100%; }
    .about-trust__media::after {
        background: linear-gradient(90deg, rgba(8, 24, 58, 0.15) 0%, rgba(8, 24, 58, 0.92) 100%);
    }
}

/* ============================================================
   HOW IT WORKS PAGE
   ============================================================ */
.path-steps__frame { position: relative; }
.path-steps__rail {
    display: none; position: absolute; left: 50%; top: 0; bottom: 0;
    width: 80px; transform: translateX(-50%);
    color: var(--gold-400); opacity: .5; pointer-events: none;
}
.path-steps__list {
    position: relative; z-index: 1; list-style: none; margin: 0; padding: 0;
    display: grid; gap: 1.75rem;
}
.path-steps__item { display: flex; gap: 1rem; align-items: flex-start; }
.path-steps__num {
    flex: none; width: 44px; height: 44px; border-radius: 50%;
    display: grid; place-items: center;
    background: linear-gradient(135deg, var(--gold-300), var(--gold-400));
    color: var(--ink); font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
    box-shadow: 0 0 0 5px var(--cream), 0 0 16px rgba(233, 197, 126, 0.55);
}
.path-steps__card {
    flex: 1; min-width: 0; background: var(--white); border: 1px solid var(--line);
    border-radius: var(--radius); padding: 1.25rem 1.4rem;
    box-shadow: var(--shadow-offset);
}
.path-steps__card h3 { margin-bottom: 0.5rem; font-size: 1.1rem; color: var(--navy-800); }
.path-steps__card p { margin: 0; font-size: var(--fs-sm); color: var(--text-muted); }
.path-steps__icon { display: inline-flex; margin-bottom: 0.6rem; color: var(--gold); }
.path-steps__icon .icon { width: 1.6rem; height: 1.6rem; }

.why-grid { align-items: start; }
.why-card { position: relative; }
.why-card__corner {
    position: absolute; top: -14px; left: -14px; width: 34px; height: 34px;
    color: var(--gold-400); opacity: 0.9; pointer-events: none;
}
.why-card__corner svg { width: 100%; height: 100%; }

.hiw-safety {
    display: grid; gap: clamp(1.75rem, 1.2rem + 2vw, 2.75rem);
    grid-template-columns: minmax(0, 1fr); align-items: start;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line-dark);
    border-radius: var(--radius);
    padding: clamp(1.5rem, 1rem + 2vw, 2.75rem);
    box-shadow: inset 0 0 0 1px rgba(233, 197, 126, 0.14);
}
.hiw-safety__shield-wrap {
    position: relative; display: grid; place-items: center; padding: 0.5rem 0 1rem;
}
.hiw-safety__shield-wrap::before {
    content: ""; position: absolute; width: min(260px, 70vw); aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(233, 197, 126, 0.28), rgba(233, 197, 126, 0) 68%);
}
.hiw-safety__shield { position: relative; width: min(150px, 42vw); height: auto; }
.hiw-safety__list {
    list-style: none; margin: 1.25rem 0 0; padding: 0;
    display: grid; gap: 0.75rem; grid-template-columns: repeat(2, minmax(0, 1fr));
}
.hiw-safety__list li {
    display: flex; align-items: center; gap: 0.6rem;
    font-size: var(--fs-sm); font-weight: 600; color: var(--text-on-dark);
}
.hiw-safety__icon {
    flex: none; width: 40px; height: 40px; border-radius: 50%;
    display: grid; place-items: center;
    background: radial-gradient(circle at 30% 25%, rgba(233, 197, 126, 0.35), rgba(233, 197, 126, 0.05));
    border: 1px solid rgba(233, 197, 126, 0.45);
    color: var(--gold-300);
}
.hiw-safety__icon .icon { width: 20px; height: 20px; }

@media (min-width: 768px) {
    .why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
    .path-steps__rail { display: block; }
    .path-steps__list { max-width: 900px; margin-inline: auto; gap: 2.75rem; }
    .path-steps__item {
        display: grid; grid-template-columns: 1fr 56px 1fr;
        column-gap: 1.75rem; align-items: start;
    }
    .path-steps__num { grid-column: 2; justify-self: center; }
    .path-steps__item:nth-child(odd) .path-steps__card { grid-column: 1; }
    .path-steps__item:nth-child(even) .path-steps__card { grid-column: 3; }

    .why-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

    .hiw-safety { grid-template-columns: 220px 1fr; }
}

/* ============================================================
   PRIVACY POLICY PAGE
   ============================================================ */
.hero .updated-line,
.section--navy .updated-line { margin-top: 0.9rem; color: var(--gold-200); }

.pp-grid {
    display: grid;
    gap: clamp(1rem, 0.7rem + 1.2vw, 1.5rem);
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
}
.pp-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: var(--white);
    border-radius: var(--radius);
    border-left: 4px solid var(--gold-400);
    padding: clamp(1.1rem, 0.9rem + 0.8vw, 1.5rem);
    box-shadow: var(--shadow-soft);
}
.pp-card__icon {
    flex: none; width: 52px; height: 52px; border-radius: 50%;
    display: grid; place-items: center;
    background: radial-gradient(circle at 30% 25%, var(--white), var(--lavender));
    border: 1px solid rgba(201, 149, 66, 0.35);
    color: var(--gold);
}
.pp-card__icon .icon { width: 24px; height: 24px; }
.pp-card__body h3 { font-size: 1.05rem; margin-bottom: 0.4rem; color: var(--navy-800); }
.pp-card__body p { margin: 0; font-size: var(--fs-sm); color: var(--text-muted); }

.pp-use-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: clamp(1.35rem, 1rem + 1.4vw, 2.1rem);
    box-shadow: var(--shadow-offset);
    max-width: 78ch;
}
.pp-use-list { list-style: none; margin: 0 0 1.25rem; padding: 0; display: grid; gap: 0.8rem; }
.pp-use-list li { display: flex; gap: 0.65rem; align-items: flex-start; font-size: var(--fs-sm); color: var(--text-muted); }
.pp-use-list .icon { flex: none; width: 1.3rem; height: 1.3rem; margin-top: 0.15rem; color: var(--amber); }
.pp-use-note { margin: 0; padding-top: 0.9rem; border-top: 1px solid var(--line); font-size: var(--fs-sm); color: var(--text-muted); }

.pp-navy-panel {
    position: relative;
    max-width: 820px;
    margin-inline: auto;
    text-align: center;
    background: linear-gradient(160deg, var(--navy-800), var(--navy-900));
    border-radius: var(--radius);
    padding: clamp(1.75rem, 1.2rem + 2vw, 2.75rem);
    box-shadow: inset 0 0 0 1px rgba(233, 197, 126, 0.22), var(--shadow-lift);
    color: var(--text-on-dark);
}
.pp-navy-panel .section-head { margin-inline: auto; }
.pp-navy-panel__emblem {
    display: grid; place-items: center; margin: 0 auto 1.1rem;
    width: 62px; height: 62px; border-radius: 50%;
    background: radial-gradient(circle at 30% 25%, rgba(251, 191, 36, 0.4), rgba(251, 191, 36, 0.05));
    border: 1px solid rgba(233, 197, 126, 0.5);
    color: var(--gold-300);
    box-shadow: 0 0 26px rgba(251, 191, 36, 0.35);
}
.pp-navy-panel__emblem .icon { width: 28px; height: 28px; }
.pp-navy-panel__text { max-width: 66ch; margin-inline: auto; color: var(--text-on-dark-muted); }
.pp-navy-panel__text + .pp-navy-panel__text { margin-top: 1rem; }
.pp-navy-panel__text a { color: var(--gold-300); }

.pp-contact-card {
    max-width: 620px;
    margin-inline: auto;
    text-align: center;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid rgba(201, 149, 66, 0.4);
    padding: clamp(1.5rem, 1.1rem + 1.6vw, 2.5rem);
    box-shadow: var(--shadow-soft);
}
.pp-contact-card__icon {
    display: grid; place-items: center; margin: 0 auto 1rem;
    width: 54px; height: 54px; border-radius: 50%;
    background: radial-gradient(circle at 30% 25%, #FFF7E6, #F0DFBD);
    border: 1px solid rgba(201, 149, 66, 0.5);
    color: var(--navy-700);
}
.pp-contact-card__icon .icon { width: 24px; height: 24px; }
.pp-contact-card h2 { margin-bottom: 0.75rem; }
.pp-contact-card p { color: var(--text-muted); margin-bottom: 1.25rem; }

@media (min-width: 768px) {
    .pp-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ============================================================
   TERMS & CONDITIONS PAGE
   ============================================================ */
.hero--legal { position: relative; }
.hero--legal::before {
    content: "";
    position: absolute; inset: 0; z-index: -1;
    background: radial-gradient(120% 90% at 15% 100%, rgba(124, 58, 237, 0.35), transparent 60%);
    pointer-events: none;
}
.hero--legal .breadcrumbs__list {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.94);
    padding: 0.4rem 0.9rem;
    border-radius: var(--radius-pill);
    box-shadow: 0 10px 24px -16px rgba(8, 24, 58, 0.55);
}
.hero--legal .breadcrumbs a { color: var(--navy-700); }
.hero--legal .breadcrumbs__sep { color: rgba(15, 23, 42, 0.35); }
.hero--legal .breadcrumbs [aria-current="page"] { color: var(--ink); }

.legal-card {
    background: var(--white);
    border-radius: var(--radius);
    border-left: 4px solid var(--gold-400);
    padding: clamp(1.25rem, 1rem + 1vw, 2rem);
    box-shadow: var(--shadow-offset);
    max-width: 74ch;
}
.legal-card h3 { color: var(--navy-800); margin-bottom: 0.5rem; }
.legal-card a:not(.btn) { color: var(--navy-700); }

.clauses-panel {
    position: relative;
    background: var(--white);
    border-radius: var(--radius);
    padding: clamp(1.5rem, 1.1rem + 1.6vw, 2.25rem);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}
.clauses-panel::before {
    content: "";
    position: absolute; left: 28px; top: 20px; bottom: 20px; width: 2px;
    background: linear-gradient(180deg, rgba(217, 169, 76, 0.1), var(--gold-400), rgba(217, 169, 76, 0.1));
    opacity: 0.6;
}
.clauses-list { position: relative; z-index: 1; list-style: none; margin: 0 0 1.25rem; padding: 0; }
.clauses-list li { display: flex; gap: 1rem; align-items: flex-start; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.clauses-list li:last-child { border-bottom: 0; }
.clauses-list__num {
    flex: none; width: 34px; height: 34px; border-radius: 50%;
    display: grid; place-items: center;
    background: linear-gradient(120deg, var(--violet), var(--coral));
    color: var(--white); font-weight: 700; font-size: 0.85rem;
}
.clauses-list p { margin: 0; font-size: var(--fs-sm); color: var(--text-muted); }
.clauses-panel > p { color: var(--text-muted); font-size: var(--fs-sm); }

.quote-card {
    position: relative;
    background: linear-gradient(135deg, var(--lavender), var(--white));
    border: 1px solid rgba(124, 58, 237, 0.28);
    border-radius: var(--radius);
    padding: clamp(1.25rem, 1rem + 1vw, 2rem);
    max-width: 74ch;
    box-shadow: var(--shadow-soft);
}
.quote-card__mark { position: absolute; top: 14px; left: 16px; width: 34px; height: 34px; color: var(--gold-400); opacity: 0.5; }
.quote-card p + p { margin-top: 1rem; }

.disclaim-band { position: relative; }
.disclaim-band__shield {
    position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
    width: 520px; max-width: 80vw; height: auto; color: var(--gold-300); opacity: 0.08; pointer-events: none;
}
.disclaim-band .shell { position: relative; z-index: 1; }
.disclaim-grid { display: grid; gap: 1.5rem; grid-template-columns: minmax(0, 1fr); align-items: start; }
.disclaim-grid .legal-card { box-shadow: var(--shadow-lift); max-width: none; }

.mini-steps {
    position: relative; list-style: none; margin: 0 0 1.5rem; padding: 0.5rem 0 0;
    display: grid; gap: 1rem; grid-template-columns: minmax(0, 1fr);
}
.mini-step { display: flex; align-items: center; gap: 0.75rem; }
.mini-step__num {
    flex: none; width: 36px; height: 36px; border-radius: 50%;
    display: grid; place-items: center;
    background: linear-gradient(120deg, var(--violet), var(--coral));
    color: var(--white); font-weight: 700; font-family: var(--font-display);
}
.mini-step__pill {
    background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-pill);
    padding: 0.6rem 1.1rem; font-size: var(--fs-sm); color: var(--text-muted); box-shadow: var(--shadow-soft);
}

.legal-link-grid { align-items: start; }
.legal-link-card {
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
    background: var(--white); border-radius: var(--radius);
    padding: 1.1rem 1.25rem; text-decoration: none; color: inherit;
    box-shadow: var(--shadow-offset);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.legal-link-card:hover { transform: translate(-3px, -3px); box-shadow: 14px 16px 0 rgba(255, 46, 147, 0.18); }
.legal-link-card__body h3 { font-size: 1.02rem; margin-bottom: 0.3rem; color: var(--navy-800); }
.legal-link-card__body p { margin: 0; font-size: var(--fs-xs); color: var(--text-muted); }
.legal-link-card__chevron { width: 1.2rem; height: 1.2rem; color: var(--navy-700); transform: rotate(-90deg); flex: none; }

@media (min-width: 768px) {
    .disclaim-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .mini-steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .legal-link-grid { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
    [data-reveal] { opacity: 1; transform: none; }
    .site-nav.is-open { animation: none; }
    .dial.is-visible .dial__arc { animation: none; }
}

/* ============================================================
   FAQ PAGE
   ============================================================ */
.hero--center { position: relative; }
.hero--center .hero__inner { margin-inline: auto; text-align: center; }
.hero--center .hero__rule { margin-inline: auto; }
.hero--center .hero__actions { justify-content: center; }
.hero--center::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
}
.hero__compass--center {
    left: 50%; top: 50%; transform: translate(-50%, -50%);
    width: 420px; height: 420px; opacity: 0.08;
}

.category-badge { margin-bottom: 1.1rem; }

.faq-list .faq-item { position: relative; }
.faq-list .faq-item[open] { border-left: 4px solid transparent; }
.faq-list .faq-item[open]::before {
    content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
    background: linear-gradient(180deg, var(--violet), var(--coral));
}

.safety-panel {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line-dark);
    border-radius: var(--radius);
    padding: clamp(1.5rem, 1rem + 2vw, 2.5rem);
    box-shadow: inset 0 0 0 1px rgba(233, 197, 126, 0.14);
    display: grid; gap: 1.75rem;
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
}
.safety-panel__img {
    width: 100%; height: auto; border-radius: var(--radius-sm);
    display: block; box-shadow: var(--shadow-soft);
}
.safety-emblems {
    list-style: none; margin: 1.25rem 0 0; padding: 0;
    display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap;
}
.safety-emblems li {
    width: 48px; height: 48px; border-radius: 50%;
    display: grid; place-items: center;
    background: radial-gradient(circle at 30% 25%, rgba(233, 197, 126, 0.35), rgba(233, 197, 126, 0.05));
    border: 1px solid rgba(233, 197, 126, 0.45);
    box-shadow: 0 0 14px rgba(233, 197, 126, 0.4);
    color: var(--gold-300);
}
.safety-emblems__icon { width: 22px; height: 22px; }

.culture-faq { position: relative; }
.culture-faq__map {
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
    opacity: 0.12; pointer-events: none; z-index: 0;
}
.culture-faq__map svg { width: min(560px, 88%); height: auto; }
.culture-faq__map .culture-map__land path { fill: none; stroke: var(--gold-400); stroke-width: 1.2; }
.culture-faq__map .culture-map__pins circle { fill: var(--amber); filter: drop-shadow(0 0 6px rgba(251, 191, 36, 0.9)); }
.culture-faq .shell { position: relative; z-index: 1; }

@media (min-width: 1024px) {
    .safety-panel { grid-template-columns: 0.85fr 1.15fr; }
}

/* ============================================================
   COOKIE POLICY PAGE
   ============================================================ */
.cookie-hero { position: relative; }
.cookie-hero .hero__media { background-position: 76% 45%; }
.cookie-hero::after {
    content: "";
    position: absolute; left: 0; right: 0; bottom: 0; height: 42%;
    background: linear-gradient(90deg, rgba(124, 58, 237, 0.4), rgba(255, 46, 147, 0.4));
    mix-blend-mode: soft-light;
    opacity: 0.7;
    pointer-events: none;
    z-index: -1;
}
.cookie-hero__rings {
    position: absolute; right: -50px; top: 50%; transform: translateY(-50%);
    width: 300px; height: 300px; color: var(--gold-300);
    opacity: 0.4; pointer-events: none; z-index: -1;
    -webkit-mask-image: radial-gradient(circle, black 40%, transparent 78%);
    mask-image: radial-gradient(circle, black 40%, transparent 78%);
}
.cookie-hero__rings svg { width: 100%; height: 100%; }

.cookie-card-wrap .legal-card { max-width: 74ch; }

.cookie-table th:nth-child(2),
.cookie-table td:nth-child(2) { text-align: left; min-width: 220px; }
.cookie-table th:first-child,
.cookie-table td:first-child { text-align: left; }
.cookie-table__pill { white-space: nowrap; }
.cookie-table .mark--yes { color: var(--gold); }
.cookie-table .mark--no { color: #7A8395; }

.cookie-manage-band { position: relative; }
.cookie-manage-band__path {
    position: absolute; left: 0; right: 0; top: 50%; transform: translateY(-50%);
    width: 100%; height: 220px; color: var(--gold-300); opacity: 0.5; pointer-events: none;
}
.cookie-manage-band .shell { position: relative; z-index: 1; }
.cookie-manage-grid {
    display: grid; gap: 1.5rem;
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
}
.cookie-manage-grid .legal-card { max-width: none; }
.cookie-manage-grid .legal-card p { color: var(--text-muted); }

.legal-link-card__body .pill { margin-bottom: 0.5rem; }

.cookie-notice {
    position: relative;
    display: flex; align-items: center; gap: 1.1rem;
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    box-shadow: var(--shadow-soft);
    max-width: 760px;
    margin-inline: auto;
    overflow: hidden;
}
.cookie-notice::before {
    content: "";
    position: absolute; left: 0; right: 0; top: 0; height: 3px;
    background: linear-gradient(90deg, var(--violet), var(--coral));
}
.cookie-notice__icon {
    flex: none; width: 44px; height: 44px; border-radius: 50%;
    display: grid; place-items: center;
    background: radial-gradient(circle at 30% 25%, #FFF7E6, #F0DFBD);
    border: 1px solid rgba(201, 149, 66, 0.5);
    color: var(--navy-700);
}
.cookie-notice__icon svg { width: 20px; height: 20px; }
.cookie-notice p { margin: 0; font-size: var(--fs-sm); color: var(--text-muted); }

@media (min-width: 768px) {
    .cookie-manage-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ============================================================
   BLOG - MIDNIGHT SUN NORTHERN EUROPE
   ============================================================ */
.midnight-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: linear-gradient(180deg, var(--navy-900) 0%, var(--ink) 100%);
    color: var(--text-on-dark);
    padding-block: clamp(3rem, 2rem + 5vw, 6rem);
}
.midnight-hero__bloom {
    position: absolute;
    inset: auto 0 -20% 0;
    height: 60%;
    z-index: -2;
    background: radial-gradient(ellipse at center, rgba(251, 191, 36, 0.35), rgba(124, 58, 237, 0.28) 45%, transparent 75%);
    filter: blur(10px);
    pointer-events: none;
}
.midnight-hero__horizon {
    position: absolute;
    left: -5%;
    right: -5%;
    bottom: 22%;
    width: 110%;
    height: auto;
    z-index: -1;
    color: var(--gold-300);
    opacity: 0.55;
    pointer-events: none;
}
.midnight-hero__inner {
    position: relative;
    display: grid;
    gap: clamp(1.75rem, 1rem + 3vw, 3rem);
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
}
.midnight-hero__content { max-width: 560px; }
.midnight-hero .breadcrumbs { margin-bottom: 1.2rem; }
.midnight-hero__title { color: var(--white); margin-bottom: 0.5rem; }
.midnight-hero__lead { color: #E4ECF9; max-width: 50ch; font-size: clamp(1.02rem, 0.98rem + 0.3vw, 1.15rem); }
.midnight-hero__actions { margin-top: 1.5rem; }
.midnight-hero__figure {
    margin: 0;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line-dark);
    box-shadow: var(--shadow-lift);
}
.midnight-hero__figure img { display: block; width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; object-position: center 40%; }

.nordic-card {
    background: var(--white);
    border-radius: var(--radius);
    border-left: 4px solid var(--gold-400);
    box-shadow: var(--shadow-offset);
    padding: clamp(1.35rem, 1rem + 1.4vw, 2.1rem);
    max-width: 78ch;
}
.nordic-card p + p { margin-top: 1rem; }

.nordic-countries { position: relative; }
.nordic-countries__arc {
    position: absolute;
    left: 0; right: 0; top: 46%; transform: translateY(-50%);
    width: 100%; height: 140px;
    color: var(--gold-400);
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}
.nordic-countries__grid {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 1.25rem;
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
}
.nordic-country-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-offset-coral);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.nordic-country-card:hover { transform: translate(-3px, -3px); box-shadow: 14px 16px 0 rgba(124, 58, 237, 0.18); }
.nordic-country-card__band {
    display: flex; align-items: center; justify-content: center;
    height: 64px;
    background: linear-gradient(135deg, var(--lavender), var(--cream));
}
.nordic-country-card__body {
    padding: 1.1rem 1.15rem 1.35rem;
    display: flex; flex-direction: column; gap: 0.5rem; flex: 1;
}
.nordic-country-card__body h3 { font-size: 1.05rem; margin-bottom: 0; color: var(--navy-800); }
.nordic-country-card__body p { margin: 0; font-size: var(--fs-sm); color: var(--text-muted); flex: 1; }
.nordic-country-card__btn { margin-top: 0.75rem; align-self: flex-start; min-height: 44px; padding: 0.55rem 1.15rem; font-size: 0.85rem; }

@media (min-width: 768px) {
    .nordic-countries__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
    .midnight-hero__inner { grid-template-columns: 1.1fr 0.9fr; }
    .nordic-countries__grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}
