@font-face {
    font-family: 'Jost';
    src: url('../fonts/Jost-Light.woff2') format('woff2'),
        url('../fonts/Jost-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Jost';
    src: url('../fonts/Jost-Regular.woff2') format('woff2'),
        url('../fonts/Jost-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* ═══════════════════ DESIGN TOKENS ═══════════════════ */
:root {
    --c-bg: #152621;
    --c-bg-deep: #0d1a16;
    --c-text: #F2F1ED;
    --c-gold: #DCCBB3;
    --c-gold-dim: rgba(220, 203, 179, 0.35);
    --c-muted: rgba(242, 241, 237, 0.6);
    --c-card: rgba(220, 203, 179, 0.06);
    --c-border: rgba(220, 203, 179, 0.25);
    --c-danger: #e74c3c;
    --c-success: #4caf50;

    --ff-serif: 'Cormorant Garamond', Georgia, serif;
    --ff-sans: 'Jost', Arial, Helvetica, sans-serif;

    --fs-h1: clamp(36px, 5vw, 72px);
    --fs-h2: clamp(28px, 4vw, 56px);
    --fs-h3: clamp(20px, 2.5vw, 28px);
    --fs-body: clamp(15px, 1.1vw, 18px);
    --fs-small: clamp(12px, 0.9vw, 14px);
    --fs-label: clamp(11px, 0.75vw, 13px);

    --radius: 8px;
    --ease: cubic-bezier(0.19, 1, 0.22, 1);
    --transition: 0.35s var(--ease);
}

/* ═══════════════════ RESET ═══════════════════ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--c-bg);
    overflow-x: hidden;
}

body {
    min-height: 100vh;
    color: var(--c-text);
    font-family: var(--ff-sans);
    font-size: var(--fs-body);
    font-weight: 300;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

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

a {
    color: var(--c-gold);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: #fff;
}

ul {
    list-style: none;
}

::selection {
    background: #8A7960;
    color: #fff;
}

/* ═══════════════════ LAYOUT ═══════════════════ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 48px);
    width: 100%;
    box-sizing: border-box;
}

.section {
    padding: clamp(60px, 8vw, 140px) 0;
}

.section+.section {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ═══════════════════ TYPOGRAPHY ═══════════════════ */
h1,
h2,
h3 {
    font-family: var(--ff-serif);
    font-weight: 400;
    line-height: 1.1;
}

h1 {
    font-size: var(--fs-h1);
    letter-spacing: -0.02em;
}

h2 {
    font-size: var(--fs-h2);
    letter-spacing: -0.015em;
    color: var(--c-gold);
}

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

.section-label {
    font-size: var(--fs-label);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--c-gold-dim);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: var(--fs-body);
    color: var(--c-muted);
    max-width: 700px;
    margin: 20px auto 0;
    text-align: center;
    line-height: 1.7;
}

/* ═══════════════════ HEADER ═══════════════════ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 300;
    padding: 20px 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
    transition: background 0.4s ease, padding 0.4s ease;
}

.header.scrolled {
    background: rgba(21, 38, 33, 0.95);
    backdrop-filter: blur(12px);
    padding: 12px 0;
}

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

.header-logo img {
    height: clamp(40px, 4vw, 60px);
}

.header-nav {
    display: flex;
    align-items: center;
    gap: clamp(16px, 2.5vw, 36px);
}

.header-nav a {
    font-size: var(--fs-small);
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: var(--c-text);
    position: relative;
}

.header-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--c-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s var(--ease);
}

.header-nav a:hover::after {
    transform: scaleX(1);
}

.header-nav a:hover {
    color: var(--c-gold);
}

.lang-switch {
    display: flex;
    gap: 4px;
    border: 1px solid var(--c-border);
    border-radius: 20px;
    padding: 4px;
}

.lang-switch a {
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--c-muted);
    transition: all 0.3s ease;
}

.lang-switch a.active {
    background: var(--c-gold);
    color: var(--c-bg);
    font-weight: 600;
}

.lang-switch a:hover:not(.active) {
    color: #fff;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 28px;
    height: 1.5px;
    background: var(--c-text);
    transition: all 0.3s ease;
}

/* ═══════════════════ HERO ═══════════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    padding: 0 0 clamp(60px, 10vw, 140px);
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(21, 38, 33, 0.3) 0%,
            rgba(21, 38, 33, 0.6) 40%,
            rgba(0, 0, 0, 0.85) 100%);
    z-index: 1;
}

.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: url('/images/hero-bg.webp?v=2') center/cover no-repeat;
}

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

.hero-content {
    max-width: 800px;
    width: 100%;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid var(--c-border);
    border-radius: 20px;
    font-size: var(--fs-label);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--c-gold);
    margin-bottom: 28px;
    animation: fadeUp 0.8s ease 0.5s both;
}

.hero h1 {
    margin-bottom: 24px;
    animation: fadeUp 0.8s ease 0.7s both;
}

.hero h1 em {
    font-style: normal;
    color: var(--c-gold);
}

.hero-subtitle {
    font-size: clamp(16px, 1.3vw, 20px);
    color: var(--c-muted);
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 40px;
    animation: fadeUp 0.8s ease 0.9s both;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 36px;
    border: 1px solid var(--c-gold);
    color: var(--c-gold);
    font-size: var(--fs-small);
    text-transform: uppercase;
    letter-spacing: 1.6px;
    transition: all var(--transition);
    animation: fadeUp 0.8s ease 1.1s both;
}

.hero-cta:hover {
    background: var(--c-gold);
    color: var(--c-bg);
}

.hero-cta svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.hero-cta:hover svg {
    transform: translateX(4px);
}

/* ═══════════════════ STAT BAR ═══════════════════ */
.stat-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-top: -1px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item {
    padding: clamp(24px, 3vw, 40px) clamp(16px, 2vw, 32px);
    text-align: center;
    background: var(--c-card);
    transition: background 0.3s ease;
}

.stat-item:hover {
    background: rgba(220, 203, 179, 0.1);
}

.stat-number {
    font-family: var(--ff-serif);
    font-size: clamp(28px, 3vw, 44px);
    color: var(--c-gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: var(--fs-label);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--c-muted);
    word-break: break-word;
    hyphens: auto;
}

/* ═══════════════════ CONTENT CARDS ═══════════════════ */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
    gap: clamp(16px, 2vw, 24px);
    margin-top: 48px;
}

.card {
    border-top: 2px solid var(--c-gold);
    background: linear-gradient(180deg, var(--c-card) 0%, rgba(255, 255, 255, 0.02) 100%);
    padding: clamp(28px, 3vw, 40px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.card-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.card h3 {
    margin-bottom: 12px;
}

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

.card-numeral {
    font-family: var(--ff-serif);
    font-size: clamp(36px, 3vw, 52px);
    color: var(--c-gold-dim);
    line-height: 1;
    margin-bottom: 16px;
}

/* ═══════════════════ COMPARISON TABLE ═══════════════════ */
.compare-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 40px;
    font-size: var(--fs-body);
}

.compare-table th {
    background: rgba(220, 203, 179, 0.1);
    color: var(--c-gold);
    font-family: var(--ff-serif);
    font-weight: 400;
    font-size: var(--fs-h3);
    padding: 20px 24px;
    text-align: left;
    border-bottom: 2px solid var(--c-gold-dim);
}

.compare-table td {
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    vertical-align: top;
    color: var(--c-muted);
    line-height: 1.6;
}

.compare-table tr:hover td {
    background: rgba(220, 203, 179, 0.04);
}

.compare-table td:first-child {
    font-weight: 400;
    color: var(--c-text);
    white-space: nowrap;
    width: 180px;
}

/* Responsive table wrapper */
.table-scroll-wrap {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    position: relative;
}

.compare-table .check {
    color: var(--c-success);
    font-weight: 600;
}

.compare-table .cross {
    color: var(--c-danger);
    font-weight: 600;
}

/* ═══════════════════ INFO BLOCKS ═══════════════════ */
.info-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 4vw, 80px);
    align-items: center;
    max-width: 100%;
    overflow: hidden;
}

.info-text {
    min-width: 0;
    overflow: hidden;
}

.info-block.reverse {
    direction: rtl;
}

.info-block.reverse>* {
    direction: ltr;
}

.info-text h2 {
    text-align: left;
    margin-bottom: 20px;
}

.info-text p {
    color: var(--c-muted);
    line-height: 1.8;
}

.info-visual {
    position: relative;
    border: 1px solid var(--c-border);
    padding: clamp(24px, 3vw, 40px);
    background: var(--c-card);
}

/* Alert blocks inside info */
.alert {
    padding: 20px 24px;
    border-left: 4px solid var(--c-gold);
    background: rgba(220, 203, 179, 0.06);
    margin: 16px 0;
    font-size: var(--fs-body);
    line-height: 1.65;
    color: var(--c-muted);
}

.alert-danger {
    border-left-color: var(--c-danger);
    background: rgba(231, 76, 60, 0.06);
}

.alert-title {
    font-weight: 400;
    color: var(--c-text);
    margin-bottom: 8px;
    font-size: var(--fs-body);
}

/* ═══════════════════ SANCTIONS TABLE ═══════════════════ */
.sanctions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    margin-top: 32px;
}

.sanction-card {
    padding: clamp(24px, 3vw, 36px);
    background: var(--c-card);
    border-top: 2px solid var(--c-gold-dim);
}

.sanction-card.grave {
    border-top-color: var(--c-danger);
}

.sanction-amount {
    font-family: var(--ff-serif);
    font-size: clamp(24px, 2.5vw, 36px);
    color: var(--c-gold);
    margin-bottom: 8px;
}

.sanction-card.grave .sanction-amount {
    color: var(--c-danger);
}

/* ═══════════════════ FAQ ═══════════════════ */
.faq-list {
    max-width: 800px;
    margin: 48px auto 0;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    cursor: pointer;
    font-size: var(--fs-body);
    color: var(--c-text);
    font-weight: 400;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--c-gold);
}

.faq-icon {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--c-gold);
    transition: transform 0.3s ease;
}

.faq-icon::before {
    width: 16px;
    height: 1px;
    top: 50%;
    left: 4px;
}

.faq-icon::after {
    width: 1px;
    height: 16px;
    top: 4px;
    left: 50%;
}

.faq-item.active .faq-icon::after {
    transform: rotate(90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease);
}

.faq-answer-inner {
    padding: 0 0 24px;
    color: var(--c-muted);
    line-height: 1.8;
}

/* ═══════════════════ CTA SECTION ═══════════════════ */
.cta-section {
    text-align: center;
    padding: clamp(80px, 10vw, 160px) 0;
    background: linear-gradient(180deg, var(--c-bg) 0%, var(--c-bg-deep) 100%);
}

.cta-section h2 {
    margin-bottom: 20px;
}

.cta-section p {
    color: var(--c-muted);
    max-width: 600px;
    margin: 0 auto 40px;
}

/* ═══════════════════ CONTACT FORM ═══════════════════ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 4vw, 80px);
    margin-top: 48px;
}

.contact-info p {
    color: var(--c-muted);
    line-height: 1.8;
    margin-bottom: 24px;
}

.contact-info a {
    color: var(--c-gold);
}

.contact-detail {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-detail-label {
    font-size: var(--fs-label);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--c-gold-dim);
    min-width: 80px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: flex;
    gap: 16px;
}

.form-row>* {
    flex: 1;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    color: var(--c-text);
    font-family: var(--ff-sans);
    font-size: var(--fs-body);
    transition: border-color 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--c-gold);
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    display: inline-block;
    padding: 16px 40px;
    background: var(--c-gold);
    color: var(--c-bg);
    font-weight: 600;
    font-size: var(--fs-small);
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.submit-btn:hover {
    background: #c9b89e;
    transform: translateY(-2px);
}

.submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.privacy-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: var(--fs-small);
    color: var(--c-muted);
    cursor: pointer;
}

.privacy-consent input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-top: 2px;
    accent-color: var(--c-gold);
    cursor: pointer;
}

#form-status {
    margin-top: 16px;
    padding: 16px 20px;
    border-radius: var(--radius);
    display: none;
    text-align: center;
}

#form-status.success {
    display: block;
    background: rgba(76, 175, 80, 0.15);
    border: 1px solid rgba(76, 175, 80, 0.4);
    color: #a5d6a7;
}

#form-status.error {
    display: block;
    background: rgba(231, 76, 60, 0.15);
    border: 1px solid rgba(231, 76, 60, 0.4);
    color: #ef9a9a;
}

.honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
}

/* ═══════════════════ FOOTER ═══════════════════ */
.footer {
    padding: clamp(40px, 5vw, 60px) 0 clamp(20px, 3vw, 40px);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-brand p {
    color: var(--c-muted);
    font-size: var(--fs-small);
    margin-top: 12px;
    max-width: 300px;
}

.footer-links {
    display: flex;
    gap: clamp(24px, 4vw, 60px);
}

.footer-col h4 {
    font-size: var(--fs-label);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--c-gold-dim);
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    color: var(--c-muted);
    font-size: var(--fs-small);
    margin-bottom: 10px;
}

.footer-col a:hover {
    color: var(--c-gold);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: space-between;
    font-size: var(--fs-small);
    color: var(--c-muted);
}

/* ═══════════════════ ANIMATIONS ═══════════════════ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.reveal-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s var(--ease);
}

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

/* ═══════════════════ MOBILE ═══════════════════ */

/* --- TABLET (max 1024px) --- */
@media (max-width: 1024px) {
    .info-block {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .info-block.reverse {
        direction: ltr;
    }

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

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

    .header-nav {
        gap: 8px;
    }

    .header-nav a {
        font-size: 10px;
        letter-spacing: 0.5px;
    }
}

/* --- NAV COLLAPSE (max 900px) --- */
@media (max-width: 900px) {
    .header-nav {
        display: none;
    }

    .header-nav.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        height: 100dvh;
        background: rgba(13, 26, 22, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        justify-content: center;
        align-items: center;
        gap: 24px;
        z-index: 350;
        padding: 80px 20px 40px;
        overflow-y: auto;
    }

    .header-nav.open a {
        font-size: 20px;
        letter-spacing: 2px;
        padding: 8px 0;
    }

    .header-nav.open .lang-switch {
        margin-top: 16px;
    }

    .mobile-toggle {
        display: flex;
        z-index: 351;
        position: relative;
    }
}

/* --- MOBILE (max 768px) --- */
@media (max-width: 768px) {

    .hero {
        min-height: 85vh;
        padding-bottom: 60px;
    }

    .hero-bg {
        width: 100%;
    }

    .hero-img {
        width: 100%;
        background-position: center;
        background-size: cover;
    }

    .hero h1 {
        font-size: clamp(28px, 8vw, 42px);
    }

    .hero h1 br {
        display: none;
    }

    .hero-content {
        padding: 0 4px;
    }

    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 28px;
    }

    .hero-cta {
        padding: 12px 28px;
        font-size: 12px;
        width: 100%;
        justify-content: center;
    }

    /* Stat Bar */
    .stat-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-number {
        font-size: clamp(22px, 6vw, 32px);
    }

    .stat-label {
        font-size: 10px;
        letter-spacing: 1px;
    }

    /* Cards */
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .card {
        padding: 24px;
    }

    /* Comparison Table - horizontal scroll */
    .compare-table {
        font-size: 13px;
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .compare-table thead,
    .compare-table tbody,
    .compare-table tr,
    .compare-table th,
    .compare-table td {
        display: revert;
    }

    .compare-table th,
    .compare-table td {
        padding: 12px 14px;
        min-width: 120px;
    }

    .compare-table td:first-child {
        white-space: normal;
        width: auto;
        min-width: 140px;
        position: sticky;
        left: 0;
        background: var(--c-bg-deep);
        z-index: 1;
        border-right: 1px solid var(--c-border);
    }

    .compare-table th:first-child {
        position: sticky;
        left: 0;
        background: rgba(220, 203, 179, 0.1);
        z-index: 2;
    }

    /* Info blocks */
    .info-text h2 {
        font-size: clamp(24px, 6vw, 36px);
    }

    .info-visual {
        padding: 20px;
    }

    .alert {
        padding: 16px 18px;
        font-size: 14px;
    }

    .alert-title {
        font-size: 14px;
    }

    /* Sanctions grid */
    .sanctions-grid {
        grid-template-columns: 1fr;
    }

    .sanction-card {
        padding: 20px;
    }

    .sanction-amount {
        font-size: clamp(20px, 5vw, 28px);
    }

    /* FAQ */
    .faq-list {
        margin-top: 32px;
    }

    .faq-question {
        padding: 20px 0;
        font-size: 15px;
        gap: 12px;
    }

    /* Contact */
    .contact-grid {
        gap: 32px;
    }

    .form-row {
        flex-direction: column;
        gap: 12px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 12px 14px;
        font-size: 16px;
        /* prevents iOS zoom on focus */
    }

    .contact-form select {
        font-size: 16px;
        padding: 12px 14px;
    }

    .submit-btn {
        width: 100%;
        text-align: center;
        padding: 14px 32px;
    }

    .privacy-consent {
        font-size: 12px;
        gap: 12px;
    }

    /* Footer */
    .footer-inner {
        flex-direction: column;
        gap: 32px;
    }

    .footer-links {
        flex-direction: column;
        gap: 24px;
        width: 100%;
    }

    .footer-col {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    /* Section titles */
    h2 {
        font-size: clamp(24px, 7vw, 40px);
    }

    .section {
        padding: clamp(48px, 8vw, 100px) 0;
    }

    .section-subtitle {
        font-size: 14px;
    }

    /* WhatsApp - above cookie banner */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 80px;
        right: 16px;
    }

    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }

    /* Cookie Banner */
    .cookie-banner {
        padding: 14px 20px;
    }

    .cookie-banner-inner {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .cookie-banner p {
        font-size: 12px;
        line-height: 1.5;
    }

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

    .cookie-btn {
        width: 100%;
        padding: 10px 20px;
    }

    .cookie-accept {
        width: 100%;
        padding: 10px 20px;
    }

    .cookie-config-panel {
        padding: 12px 16px;
    }

    .cookie-config-buttons {
        flex-direction: column;
    }

    /* Blog article tables - scrollable */
    .blog-article table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* Inline tables responsive */
    .table-scroll-wrap {
        margin: 16px 0;
    }

    .table-scroll-wrap table {
        min-width: 0;
    }

    /* CTA section */
    .cta-section {
        padding: clamp(48px, 8vw, 100px) 0;
    }

    .cta-section p {
        font-size: 14px;
    }
}

/* --- SMALL PHONES (max 480px) --- */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        min-height: 80vh;
        padding-bottom: 40px;
    }

    .hero h1 {
        font-size: 26px;
        line-height: 1.15;
    }

    .hero-badge {
        font-size: 10px;
        padding: 4px 12px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .stat-bar {
        grid-template-columns: 1fr 1fr;
    }

    .stat-item {
        padding: 16px 12px;
    }

    .stat-number {
        font-size: clamp(20px, 5vw, 26px);
    }

    .cards-grid {
        margin-top: 32px;
    }

    .card {
        padding: 20px;
    }

    .card h3 {
        font-size: 18px;
    }

    .header {
        padding: 14px 0;
    }

    .header-logo img {
        height: 36px;
    }

    .section-label {
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    /* Info blocks tighter */
    .info-visual {
        padding: 16px;
    }

    .alert {
        padding: 14px 16px;
        font-size: 13px;
    }

    .alert-title {
        font-size: 13px;
    }

    /* Comparison table tighter */
    .compare-table th,
    .compare-table td {
        padding: 10px 12px;
        min-width: 110px;
        font-size: 12px;
    }

    .compare-table td:first-child {
        min-width: 120px;
    }

    /* Blog grid single column */
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 24px;
    }

    .blog-card {
        padding: 20px;
    }

    .blog-card h3 {
        font-size: 18px;
    }

    /* Blog article */
    .blog-article {
        padding: 100px 16px 60px;
    }

    .blog-article h1 {
        font-size: clamp(24px, 7vw, 36px);
    }

    .blog-article h2 {
        font-size: 20px;
        margin-top: 36px;
    }

    .blog-article h3 {
        font-size: 17px;
    }

    .blog-article .cta-box {
        padding: 24px 20px;
        margin: 32px 0;
    }

    .blog-article .article-intro {
        font-size: 15px;
        margin-bottom: 28px;
        padding-bottom: 28px;
    }

    /* Footer */
    .footer-brand p {
        max-width: 100%;
    }

    .footer-disclaimer p {
        font-size: 10px;
    }

    /* FAQ */
    .faq-question {
        font-size: 14px;
        padding: 16px 0;
    }

    .faq-answer-inner {
        font-size: 14px;
    }

    /* Cookie banner compact */
    .cookie-banner {
        padding: 12px 16px;
    }

    .cookie-banner p {
        font-size: 11px;
    }

    .cookie-btn {
        padding: 8px 16px;
        font-size: 11px;
    }

    /* Contact form tighter */
    .contact-detail-label {
        min-width: 60px;
        font-size: 10px;
    }
}

/* --- VERY SMALL (max 360px) --- */
@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }

    .hero h1 {
        font-size: 22px;
    }

    .hero-subtitle {
        font-size: 13px;
    }

    .stat-bar {
        grid-template-columns: 1fr;
    }

    .stat-item {
        padding: 14px 10px;
    }

    .lang-switch a {
        padding: 3px 10px;
        font-size: 11px;
    }

    .header-nav.open a {
        font-size: 18px;
    }

    .info-visual {
        padding: 14px;
    }

    .alert {
        padding: 12px 14px;
        font-size: 12px;
    }

    .card {
        padding: 16px;
    }

    .card h3 {
        font-size: 16px;
    }

    .sanction-card {
        padding: 16px;
    }

    .faq-question {
        font-size: 13px;
    }

    .footer {
        padding: 30px 0 20px;
    }
}

/* ═══════════════════ CARD LINKS ═══════════════════ */
.card-link {
    display: inline-block;
    margin-top: 12px;
    font-size: var(--fs-small);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--c-gold);
    transition: all 0.3s ease;
}

.card-link:hover {
    color: #fff;
    letter-spacing: 1.6px;
}

/* ═══════════════════ WHATSAPP FLOAT ═══════════════════ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 500;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

/* ═══════════════════ COOKIE BANNER (AEPD compliant) ═══════════════════ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(21, 38, 33, 0.97);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--c-border);
    padding: 20px clamp(20px, 4vw, 48px);
    z-index: 600;
    font-size: var(--fs-small);
    color: var(--c-muted);
}

.cookie-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-banner p {
    margin: 0;
    line-height: 1.5;
    flex: 1;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 8px 20px;
    border: none;
    border-radius: 4px;
    font-size: var(--fs-small);
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s ease, color 0.3s ease;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: var(--c-gold);
    color: var(--c-bg);
}

.cookie-btn-accept:hover {
    background: #c9b89e;
}

.cookie-btn-reject {
    background: transparent;
    color: var(--c-gold);
    border: 1px solid var(--c-gold);
}

.cookie-btn-reject:hover {
    background: rgba(220, 203, 179, 0.1);
}

.cookie-btn-config {
    background: transparent;
    color: var(--c-muted);
    border: 1px solid var(--c-border);
    font-weight: 400;
}

.cookie-btn-config:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--c-text);
}

/* Cookie config panel (second layer) */
.cookie-config-panel {
    display: none;
    max-width: 1200px;
    margin: 16px auto 0;
    padding: 16px 20px;
    background: rgba(13, 26, 22, 0.8);
    border: 1px solid var(--c-border);
    border-radius: 6px;
}

.cookie-config-panel.active {
    display: block;
}

.cookie-config-panel h4 {
    font-size: 14px;
    color: var(--c-gold);
    margin: 0 0 12px;
    font-weight: 600;
}

.cookie-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.cookie-option:last-child {
    border-bottom: none;
}

.cookie-option-label {
    font-size: 13px;
    color: var(--c-text);
}

.cookie-option-desc {
    font-size: 11px;
    color: var(--c-muted);
}

.cookie-toggle {
    position: relative;
    width: 40px;
    height: 22px;
    flex-shrink: 0;
    margin-left: 16px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 22px;
    transition: 0.3s;
}

.cookie-toggle-slider::before {
    content: '';
    position: absolute;
    height: 16px;
    width: 16px;
    left: 3px;
    bottom: 3px;
    background: white;
    border-radius: 50%;
    transition: 0.3s;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background: var(--c-gold);
}

.cookie-toggle input:checked + .cookie-toggle-slider::before {
    transform: translateX(18px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-config-buttons {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    justify-content: flex-end;
}

/* Persistent cookie settings link */
.cookie-settings-link {
    position: fixed;
    bottom: 12px;
    left: 12px;
    background: rgba(21, 38, 33, 0.9);
    border: 1px solid var(--c-border);
    border-radius: 4px;
    padding: 6px 12px;
    font-size: 11px;
    color: var(--c-muted);
    cursor: pointer;
    z-index: 500;
    transition: color 0.3s ease;
    text-decoration: none;
}

.cookie-settings-link:hover {
    color: var(--c-gold);
}

/* Legacy support */
.cookie-accept {
    padding: 8px 24px;
    background: var(--c-gold);
    color: var(--c-bg);
    border: none;
    border-radius: 4px;
    font-size: var(--fs-small);
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.cookie-accept:hover {
    background: #c9b89e;
}

/* ═══════════════════ FOOTER DISCLAIMER ═══════════════════ */
.footer-disclaimer {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-disclaimer p {
    font-size: 11px;
    color: rgba(242, 241, 237, 0.35);
    line-height: 1.6;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
