﻿/* =========================================================
   Aufenhilfe · aufenhilfe.info – Papierkram & Alltag am Telefon
   Pure HTML/CSS/JS – Static landing focused on conversion
   ========================================================= */

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

:root {
    --color-bg: #f3f2ed;
    --color-bg-alt: #ffffff;
    --color-bg-dark: #15467a;
    --color-bg-soft: #ebe9e3;

    --color-primary: #15467a;
    --color-primary-dark: #0e3258;
    --color-primary-soft: #e4eaf2;

    --color-accent: #d97706;
    --color-accent-dark: #b45309;
    --color-accent-shadow: #92400e;

    --color-success: #1f5c3a;
    --color-success-soft: #eef6f0;

    --color-text: #1c2430;
    --color-text-muted: #4a5568;
    --color-text-light: #6b7280;
    --color-border: #c5cdd8;
    --color-border-soft: #d8dee6;

    --shadow-sm: none;
    --shadow-md: none;
    --shadow-lg: none;
    --shadow-xl: none;

    --radius-sm: 0;
    --radius-md: 0;
    --radius-lg: 0;
    --radius-xl: 0;

    --font-base: Arial, Helvetica, sans-serif;
    --font-heading: Georgia, "Times New Roman", Times, serif;

    --container: 1180px;
    --inst-border: 2px solid var(--color-primary);
    --inst-border-accent: 3px solid var(--color-accent);
}

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

body {
    font-family: var(--font-base);
    font-size: 16px;
    line-height: 1.65;
    color: var(--color-text);
    background: var(--color-bg);
}

h1, h2, h3, h4, h5, h6,
.hero h1,
.section h2,
.topic-card h3,
.benefit-card h3,
.step-card h3,
.cta-final h2,
.call-popup-box h3 {
    font-family: var(--font-heading);
    letter-spacing: 0;
}
/* ---------- Google Ads Compliance Banner ---------- */
.compliance-banner {
    background-color: var(--color-bg-dark);
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    z-index: 100;
    position: relative;
}
.compliance-banner strong {
    color: #fff;
    font-weight: 600;
}

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

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

a:hover {
    text-decoration: underline;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: 0;
    background: transparent;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

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

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 0;
    border: var(--inst-border-accent);
    font-weight: 700;
    font-size: 15px;
    line-height: 1.2;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.12s ease, box-shadow 0.12s ease;
    white-space: nowrap;
    text-decoration: none;
    box-shadow: none;
    cursor: pointer;
}

.btn:hover {
    text-decoration: none;
}

.btn-primary {
    background: #f0f4f8;
    color: var(--color-primary);
    border: var(--inst-border);
    box-shadow: none;
}

.btn-primary:hover {
    background: var(--color-primary-soft);
    color: var(--color-primary-dark);
    transform: none;
    box-shadow: none;
}

.btn-accent {
    background: var(--color-accent);
    color: #fff;
    border: 2px solid var(--color-accent-dark);
    box-shadow: 0 4px 0 var(--color-accent-shadow);
}

.btn-accent:hover {
    background: #f59e0b;
    border-color: var(--color-accent-dark);
    color: #1a1208;
    box-shadow: 0 2px 0 var(--color-accent-shadow);
    transform: translateY(2px);
}

.btn-accent:active {
    background: var(--color-accent-dark);
    color: #fff;
    box-shadow: none;
    transform: translateY(4px);
}

.btn-lg {
    padding: 18px 32px;
    font-size: 17px;
    min-height: 56px;
}

.btn-block {
    width: 100%;
}

.btn-phone-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* --- Big call CTA (icon + label + number) --- */
.btn-call {
    padding: 16px 26px;
    gap: 14px;
    align-items: center;
}

.btn-call .btn-call-pulse {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
}

.btn-call .btn-call-pulse::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    animation: ring-pulse 2s ease-out infinite;
}

.btn-call .btn-phone-icon {
    width: 20px;
    height: 20px;
    position: relative;
    z-index: 1;
}

.btn-call .btn-call-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    text-align: left;
}

.btn-call .btn-call-label {
    font-size: 13px;
    font-weight: 600;
    opacity: 0.85;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.btn-call .btn-call-number {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.3px;
}

@keyframes ring-pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    80% {
        transform: scale(1.8);
        opacity: 0;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .btn-call .btn-call-pulse::before,
    .mobile-cta-icon::before {
        animation: none;
    }
}

/* ---------- Header ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    border-bottom: 3px solid var(--color-primary);
}

.header-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 16px;
}

.header-title {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--color-text);
    text-decoration: none;
}

a.header-title:hover {
    color: var(--color-primary);
    text-decoration: none;
}

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

.header-title-link {
    color: var(--color-text);
    text-decoration: none;
}

.header-title-link:hover {
    color: var(--color-primary);
    text-decoration: none;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.brand:hover {
    text-decoration: none;
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 0;
    background: var(--color-primary);
    border: 2px solid var(--color-primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: none;
}

.brand-mark img {
    width: 22px;
    height: 22px;
    display: block;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.brand-name {
    font-size: 19px;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: -0.3px;
}

.brand-tagline {
    font-size: 12px;
    color: var(--color-text-muted);
    font-weight: 500;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav a {
    color: var(--color-text);
    font-weight: 500;
    font-size: 15px;
    padding: 6px 2px;
    position: relative;
}

.main-nav a:hover {
    color: var(--color-primary);
    text-decoration: none;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--color-bg-soft);
    align-items: center;
    justify-content: center;
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    background: var(--color-text);
    position: relative;
    display: block;
    border-radius: 2px;
}

.nav-toggle span::before,
.nav-toggle span::after {
    content: "";
    position: absolute;
    left: 0;
    width: 20px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
}

.nav-toggle span::before {
    top: -6px;
}

.nav-toggle span::after {
    top: 6px;
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    padding: 64px 0 80px;
    background: #fff;
    border-bottom: 1px solid var(--color-border);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 56px;
    align-items: center;
}

.hero-eyebrow {
    margin: 0 0 14px;
    font-size: 15px;
    font-weight: 400;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.hero h1 {
    font-size: clamp(30px, 4.4vw, 46px);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.8px;
    color: var(--color-text);
    margin-bottom: 20px;
}

.hero-sub {
    font-size: 17px;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 580px;
}

.hero-cta-wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 18px;
}

.hero-cta-wrap .btn {
    align-self: flex-start;
}

.hero-country-photo {
    margin: 0 0 18px;
    max-width: 580px;
    border-radius: 0;
    overflow: hidden;
    border: var(--inst-border);
    box-shadow: none;
}

.hero-country-photo img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 220px;
    object-fit: cover;
    object-position: center;
}

.hero-country-photo__caption {
    margin: 0;
    padding: 8px 12px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-text-muted);
    background: #fff;
    text-align: center;
    letter-spacing: 0.02em;
}

.price-line {
    font-size: 14px;
    color: var(--color-text);
    font-weight: 600;
}

.price-note {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.hero-disclaimer {
    margin-top: 22px;
    padding: 12px 16px;
    background: #fff7ed;
    border-left: 3px solid var(--color-accent);
    border-radius: 6px;
    font-size: 13px;
    color: #7c4a03;
    line-height: 1.5;
}

/* Trust strip */
.trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    margin-top: 22px;
    padding: 0;
}

.trust-strip li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-success);
    background: #fff;
    padding: 6px 12px;
    border-radius: 0;
    border: 1px solid var(--color-border);
}

.trust-strip svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* Hero visual card */
.hero-card {
    background: #fff;
    border-radius: 0;
    padding: 28px;
    box-shadow: none;
    border: var(--inst-border);
    position: relative;
}

.hero-card-visual img {
    width: min(200px, 72%);
    height: auto;
    max-height: 140px;
    object-fit: contain;
    filter: none;
}

.hero-card::before {
    display: none;
}

.hero-card-visual {
    display: flex;
    justify-content: center;
    margin: 0 0 14px;
}

.hero-card-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-card-title::before {
    content: "";
    width: 32px;
    height: 2px;
    background: var(--color-primary);
}

.topic-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.topic-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    background: #fff;
    border-radius: 0;
    border: 1px solid var(--color-border-soft);
    font-weight: 500;
    color: var(--color-text);
    transition: background 0.15s ease;
}

.topic-list li:hover {
    background: var(--color-primary-soft);
    transform: none;
}

.topic-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 0;
    background: var(--color-bg-soft);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 13px;
    box-shadow: none;
}

/* ---------- Sections common ---------- */
.section {
    padding: 80px 0;
}

.section-alt {
    background: var(--color-bg-alt);
}

.section-head {
    text-align: center;
    margin-bottom: 50px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.section-eyebrow {
    display: inline-block;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 12px;
}

.section h2 {
    font-size: clamp(26px, 3.4vw, 36px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text);
    letter-spacing: -0.5px;
    margin-bottom: 14px;
}

.section-sub {
    font-size: 17px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

#hinweis.section {
    padding: 24px 0 28px;
    border-top: none;
    border-bottom: none;
}

#hinweis .section-head {
    margin-bottom: 10px;
}

#hinweis .section-eyebrow {
    font-size: 9px;
    letter-spacing: 0.07em;
    margin-bottom: 4px;
}

#hinweis h2 {
    font-size: clamp(14px, 1.9vw, 17px);
    margin-bottom: 6px;
}

#hinweis .hinweis-lead {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.65rem;
    line-height: 1.4;
    color: var(--color-text-muted);
}

#hinweis .hinweis-lead + .hinweis-lead {
    margin-top: 1rem;
}

/* ---------- Topic cards (6) ---------- */
.topics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.topic-card {
    background: #fff;
    border: var(--inst-border);
    border-radius: 0;
    padding: 24px;
    transition: background 0.15s ease;
    display: flex;
    flex-direction: column;
}

.topic-card:hover {
    transform: none;
    box-shadow: none;
    background: var(--color-bg-soft);
    border-color: var(--color-primary);
}

.topic-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 0;
    background: var(--color-bg-soft);
    border: 1px solid var(--color-border);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.topic-card-icon svg {
    width: 24px;
    height: 24px;
}

.topic-card h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-text);
    letter-spacing: -0.2px;
}

.topic-card p {
    font-size: 15px;
    color: var(--color-text-muted);
    line-height: 1.55;
    margin-bottom: 16px;
}

.topic-card ul {
    border-top: 1px dashed var(--color-border);
    padding-top: 16px;
    margin-top: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 12px;
}

.topic-card ul li {
    font-size: 13.5px;
    color: var(--color-text);
    padding-left: 18px;
    position: relative;
    line-height: 1.4;
}

.topic-card ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 8px;
    height: 8px;
    border-radius: 0;
    background: var(--color-primary-soft);
    border: 2px solid var(--color-primary);
}

/* ---------- Benefits (Warum) ---------- */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.benefit-card {
    background: #fff;
    border-radius: 0;
    padding: 24px 20px;
    text-align: left;
    border: var(--inst-border);
}

.benefit-num {
    width: 32px;
    height: 32px;
    border-radius: 0;
    background: var(--color-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 14px;
    border: 2px solid var(--color-primary-dark);
}

.benefit-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-text);
}

.benefit-card p {
    font-size: 14.5px;
    color: var(--color-text-muted);
    line-height: 1.55;
}

/* ---------- Process steps ---------- */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
}

.step-card {
    background: #fff;
    border-radius: 0;
    padding: 28px 20px 24px;
    border: var(--inst-border);
    position: relative;
}

.step-num {
    position: absolute;
    top: -14px;
    left: 20px;
    width: 36px;
    height: 36px;
    border-radius: 0;
    background: var(--color-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    border: 2px solid var(--color-primary-dark);
    box-shadow: none;
}

.step-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin: 14px 0 8px;
    color: var(--color-text);
}

.step-card p {
    font-size: 14.5px;
    color: var(--color-text-muted);
    line-height: 1.55;
}

/* ---------- Notice section ---------- */
.notice {
    background: var(--color-bg-soft);
    border-left: 5px solid var(--color-primary);
    border-radius: var(--radius-lg);
    padding: 36px 40px;
    box-shadow: var(--shadow-sm);
}

.notice h2 {
    color: var(--color-text);
    font-size: 24px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.notice-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--color-primary-soft);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    flex-shrink: 0;
}

.notice p {
    color: var(--color-text-muted);
    font-size: 15.5px;
    line-height: 1.7;
}

/* ---------- Final CTA ---------- */
.cta-final {
    background: var(--color-primary);
    border-top: 4px solid var(--color-accent);
    border-bottom: 4px solid var(--color-accent);
    color: #fff;
    padding: 72px 0;
    text-align: center;
}

.cta-final h2 {
    color: #fff;
    font-size: clamp(26px, 3.4vw, 36px);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.cta-final p.section-sub {
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 30px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.cta-final .btn {
    margin-bottom: 18px;
}

.cta-final .cta-disclosure {
    max-width: 32rem;
    margin-bottom: 1rem;
    padding: 0.5rem 0.7rem;
}

.cta-final .cta-disclosure__list li {
    font-size: 0.68rem;
    line-height: 1.38;
    padding-left: 0.7rem;
}

.cta-final .cta-disclosure__list li::before {
    top: 0.42rem;
    width: 0.25rem;
    height: 0.25rem;
}

.cta-final .cta-disclosure__links {
    margin-top: 0.35rem;
    font-size: 0.65rem;
}

.cta-final__number {
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 5vw, 1.75rem);
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    letter-spacing: 0.02em;
    margin-top: 0.5rem;
    text-shadow: none;
}

/* ---------- Country landscape (between CTA & disclaimer) ---------- */
.country-visual {
    padding: 0 0 72px;
    background: var(--color-bg-alt, #f4f7fb);
}

.country-visual__figure {
    margin: 0;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    border: var(--inst-border);
}

.country-visual__figure img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: cover;
    object-position: center;
}

.country-visual__caption {
    padding: 12px 18px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-muted, #5a6b7d);
    background: #fff;
    text-align: center;
    letter-spacing: 0.02em;
}

.cta-final .price-line {
    color: #fff;
    font-size: 15px;
}

.cta-final .price-note {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    background: rgba(255, 255, 255, 0.10);
    color: #fff;
    border-radius: 999px;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 22px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.cta-badge::before {
    content: "";
    width: 7px;
    height: 7px;
    background: var(--color-accent);
    border-radius: 50%;
}

/* ---------- Footer ---------- */
.site-footer {
    background: var(--color-primary-dark);
    color: rgba(255, 255, 255, 0.82);
    padding: 56px 0 24px;
    font-size: 14px;
    border-top: 4px solid var(--color-accent);
}

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

.footer-provider p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    line-height: 1.65;
    margin: 0;
}

.footer-brand .brand-name {
    color: #fff;
    font-size: 22px;
}

.footer-brand .brand-tagline {
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
}

.footer-brand .brand-mark {
    box-shadow: none;
}

.footer-brand-text {
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.6;
    max-width: 380px;
}

.footer-col h4 {
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
    font-weight: 600;
}

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

.footer-col a,
.footer-col button {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    font-size: 14.5px;
    font-family: inherit;
    padding: 0;
    text-align: left;
}

.footer-col a:hover,
.footer-col button:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-contact-line {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 12px;
}

.footer-contact-line strong {
    color: #fff;
    font-weight: 600;
}

.footer-disclaimer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

/* ---------- Mobile sticky CTA ---------- */
.mobile-cta {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    background: #fff;
    border-top: 3px solid var(--color-primary);
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    box-shadow: none;
}

.mobile-cta-link {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 14px 16px;
    background: var(--color-accent);
    color: #fff;
    border-radius: 0;
    border: 2px solid var(--color-accent-dark);
    text-decoration: none;
    box-shadow: 0 4px 0 var(--color-accent-shadow);
    transition: background 0.15s ease, transform 0.12s ease, box-shadow 0.12s ease;
    position: relative;
    overflow: visible;
    cursor: pointer;
}

.mobile-cta-link:hover,
.mobile-cta-link:active {
    text-decoration: none;
    background: #f59e0b;
    border-color: var(--color-accent-dark);
    color: #1a1208;
    box-shadow: 0 2px 0 var(--color-accent-shadow);
    transform: translateY(2px);
}

.mobile-cta-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.45);
    flex-shrink: 0;
    color: #fff;
}

.mobile-cta-icon::before {
    display: none;
}

.mobile-cta-icon svg {
    width: 22px;
    height: 22px;
    position: relative;
    z-index: 1;
}

.mobile-cta-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    flex: 1;
    min-width: 0;
}

.mobile-cta-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.92);
}

.mobile-cta-number {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 21px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.03em;
    white-space: nowrap;
    text-shadow: none;
}

.mobile-cta-arrow {
    width: 28px;
    height: 28px;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.45);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
}

.mobile-cta-arrow svg {
    width: 16px;
    height: 16px;
    color: #1a1a1a;
}

.mobile-cta-note {
    text-align: center;
    font-size: 11.5px;
    color: var(--color-text-muted);
    margin-top: 6px;
    font-weight: 500;
}

/* ---------- Floating desktop CTA ---------- */
.float-cta {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 80;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    background: #fff;
    padding: 12px 14px;
    border-radius: 0;
    box-shadow: none;
    border: var(--inst-border);
    max-width: 220px;
}

.float-cta .btn {
    padding: 12px 22px;
    font-size: 15px;
    width: 100%;
}

.float-cta-note {
    font-size: 11.5px;
    color: var(--color-text-muted);
    text-align: center;
    line-height: 1.35;
}

/* ---------- Cookie banner ---------- */
.cookie-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 200;
    background: #fff;
    border-radius: 0;
    box-shadow: none;
    border: var(--inst-border);
    padding: 12px 16px;
    max-width: 400px;
    display: none;
}

.cookie-banner.is-visible {
    display: block;
}

.cookie-banner h3 {
    font-size: 14px;
    margin-bottom: 4px;
    color: var(--color-text);
}

.cookie-banner p {
    font-size: 12px;
    color: var(--color-text-muted);
    margin-bottom: 10px;
    line-height: 1.4;
}

.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 8px;
}

.cookie-actions .btn {
    padding: 6px 10px;
    font-size: 12px;
    flex: 1 1 auto;
}

.cookie-btn-secondary {
    background: var(--color-bg-soft);
    color: var(--color-text);
}

.cookie-btn-secondary:hover {
    background: var(--color-border);
}

.cookie-link {
    font-size: 11px;
    color: var(--color-text-muted);
}

.cookie-link a {
    color: var(--color-primary);
}

/* Cookie settings modal */
.cookie-modal {
    position: fixed;
    inset: 0;
    z-index: 300;
    background: rgba(15, 27, 45, 0.55);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-modal.is-visible {
    display: flex;
}

.cookie-modal-inner {
    background: #fff;
    border-radius: 0;
    border: var(--inst-border);
    max-width: 560px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 28px;
    box-shadow: none;
}

.cookie-modal h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.cookie-modal > p {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 20px;
    line-height: 1.55;
}

.cookie-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-top: 1px solid var(--color-border);
}

.cookie-row:last-of-type {
    border-bottom: 1px solid var(--color-border);
}

.cookie-row h4 {
    font-size: 15px;
    margin-bottom: 4px;
}

.cookie-row p {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.cookie-modal-actions {
    margin-top: 22px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-modal-actions .btn {
    flex: 1 1 auto;
}

/* Switch */
.switch {
    position: relative;
    width: 46px;
    height: 26px;
    flex-shrink: 0;
    margin-top: 2px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch-slider {
    position: absolute;
    inset: 0;
    background: #cbd5e0;
    border-radius: 999px;
    transition: background 0.2s ease;
    cursor: pointer;
}

.switch-slider::before {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.switch input:checked + .switch-slider {
    background: var(--color-primary);
}

.switch input:checked + .switch-slider::before {
    transform: translateX(20px);
}

.switch input:disabled + .switch-slider {
    opacity: 0.7;
    cursor: not-allowed;
}

/* ---------- Compliance banner & disclosures ---------- */
.site-affiliation-banner {
    background: #fff;
    border: none;
    color: var(--color-text-muted);
}

.site-affiliation-banner .container {
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
}

.site-affiliation-banner__text {
    display: block;
    max-width: 980px;
    margin: 0 auto;
    font-size: 0.6rem;
    line-height: 1.35;
    text-align: center;
}

@media (min-width: 768px) {
    .site-affiliation-banner__text {
        font-size: 0.62rem;
    }
}

.cta-disclosure {
    width: 100%;
    max-width: 37rem;
    margin-top: 1rem;
    padding: 0.85rem 1rem;
    border: var(--inst-border);
    border-radius: 0;
    background: #fff;
    box-shadow: none;
    text-align: left;
}

.cta-disclosure--compact {
    max-width: 35rem;
    margin: 0 auto 1.25rem;
    padding: 0.75rem 0.9rem;
}

.cta-disclosure__title {
    margin: 0 0 0.45rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.cta-disclosure__list {
    display: grid;
    gap: 0.35rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.cta-disclosure__list li {
    position: relative;
    padding-left: 0.85rem;
    font-size: 0.8rem;
    line-height: 1.45;
    color: var(--color-text-muted);
}

.cta-disclosure__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 0.3rem;
    height: 0.3rem;
    border-radius: 0;
    background: var(--color-primary);
}

.cta-disclosure__links {
    margin: 0.5rem 0 0;
    font-size: 0.78rem;
    line-height: 1.4;
}

.cta-disclosure__links a {
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-inline-action {
    margin: 1rem 0 1.25rem;
}

/* ---------- Legal pages ---------- */
.legal-hero {
    background: linear-gradient(180deg, #ffffff 0%, var(--color-bg) 100%);
    padding: 50px 0 30px;
    border-bottom: 1px solid var(--color-border);
}

.legal-hero h1 {
    font-size: clamp(28px, 3.6vw, 38px);
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: -0.5px;
    margin-bottom: 8px;
}

.legal-hero p {
    color: var(--color-text-muted);
    font-size: 15.5px;
}

.legal {
    padding: 50px 0 80px;
}

.legal-content {
    max-width: 820px;
    margin: 0 auto;
    background: #fff;
    padding: 44px 48px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.legal-content h2 {
    font-size: 22px;
    margin: 32px 0 12px;
    color: var(--color-text);
    letter-spacing: -0.3px;
}

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

.legal-content h3 {
    font-size: 17px;
    margin: 22px 0 8px;
    color: var(--color-text);
}

.legal-content p,
.legal-content li {
    font-size: 15px;
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: 12px;
}

.legal-content ul,
.legal-content ol {
    padding-left: 20px;
    margin-bottom: 16px;
}

.legal-content ul li,
.legal-content ol li {
    list-style: disc;
    margin-bottom: 6px;
}

.legal-content ol li {
    list-style: decimal;
}

.legal-content a {
    color: var(--color-primary);
    word-break: break-word;
}

.legal-content .data-block {
    background: var(--color-bg-soft);
    border-radius: var(--radius-md);
    padding: 18px 22px;
    margin: 14px 0 18px;
    font-size: 14.5px;
    line-height: 1.7;
}

.legal-content .data-block strong {
    display: inline-block;
    min-width: 130px;
}

.legal-content .highlight {
    background: #fff7ed;
    border-left: 3px solid var(--color-accent);
    padding: 14px 18px;
    border-radius: 6px;
    font-size: 14.5px;
    color: #7c4a03;
    margin: 16px 0;
    line-height: 1.6;
}

.back-home {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 30px;
    padding: 10px 18px;
    background: var(--color-bg-soft);
    border-radius: 8px;
    font-size: 14px;
    color: var(--color-text);
}

.back-home:hover {
    background: var(--color-border);
    text-decoration: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
    .topics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .footer-provider {
        grid-column: 1 / -1;
    }
}

@media (max-width: 720px) {
    .header-bar {
        min-height: 44px;
        padding: 0 12px;
    }

    .header-title {
        font-size: 22px;
        font-weight: 700;
        letter-spacing: -0.01em;
    }

    .hero {
        padding: 28px 0 50px;
    }

    /* En móvil: contenido del hero compacto + CTA arriba; la tarjeta de temas se ve DESPUÉS */
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hero-content {
        order: 1;
    }

    .hero-card {
        order: 2;
        padding: 22px 20px;
    }

    .hero-eyebrow {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .hero h1 {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 14px;
    }

    .hero-sub {
        font-size: 15.5px;
        margin-bottom: 22px;
    }

    .hero-cta-wrap .btn {
        align-self: stretch;
        width: 100%;
    }

    .hero-country-photo {
        max-width: none;
    }

    .hero-country-photo img {
        max-height: 180px;
    }

    .btn-call {
        padding: 14px 18px;
        gap: 12px;
        justify-content: flex-start;
    }

    .btn-call .btn-call-pulse {
        width: 36px;
        height: 36px;
    }

    .btn-call .btn-call-number {
        font-size: 19px;
    }

    .btn-call .btn-call-label {
        font-size: 12px;
    }

    .trust-strip {
        gap: 6px 10px;
        margin-top: 18px;
    }

    .trust-strip li {
        font-size: 12.5px;
        padding: 5px 10px;
    }

    .hero-disclaimer {
        font-size: 12.5px;
        padding: 10px 14px;
        margin-top: 18px;
    }

    .section {
        padding: 48px 0;
    }

    .section-head {
        margin-bottom: 32px;
    }

    .topics-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .topic-card {
        padding: 22px 20px;
    }

    .topic-card ul {
        grid-template-columns: 1fr 1fr;
    }

    .benefit-card,
    .step-card {
        padding: 22px 20px;
    }

    .notice {
        padding: 24px 20px;
    }

    .notice h2 {
        font-size: 20px;
    }

    .legal-content {
        padding: 28px 22px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .mobile-cta {
        display: block;
    }

    .float-cta {
        display: none;
    }

    .cta-final {
        padding: 56px 0 80px;
    }

    .country-visual {
        padding: 0 0 48px;
    }

    .country-visual__figure img {
        max-height: 260px;
    }

    .cta-final .btn-call {
        width: 100%;
        justify-content: flex-start;
    }

    /* Espacio para el sticky bottom CTA — aprox. 86px + safe-area */
    body {
        padding-bottom: 96px;
    }
}

@media (max-width: 480px) {
    .header-bar {
        min-height: 46px;
    }

    .header-title {
        font-size: 23px;
    }

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

    .hero-card-title {
        font-size: 13px;
    }

    .topic-list li {
        padding: 12px 14px;
        font-size: 14.5px;
    }

    .topic-card ul {
        grid-template-columns: 1fr;
    }

    .mobile-cta-link {
        padding: 12px 14px;
        gap: 12px;
    }

    .mobile-cta-icon {
        width: 40px;
        height: 40px;
    }

    .mobile-cta-number {
        font-size: 19px;
    }

    .cookie-banner {
        left: 10px;
        right: 10px;
        padding: 10px 12px;
    }
}

/* On desktop the floating CTA is shown, on mobile hidden */
@media (min-width: 721px) {
    .mobile-cta {
        display: none !important;
    }
}

/* ---------- Immediate Call Popup ---------- */
body.popup-blur-active > header,
body.popup-blur-active > main,
body.popup-blur-active > .mobile-cta,
body.popup-blur-active > .float-cta {
    filter: blur(8px);
    transition: filter 0.3s ease;
}

.call-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    visibility: hidden;
    pointer-events: none;
}

.call-popup-overlay.is-active {
    visibility: visible;
    pointer-events: auto;
}

.call-popup-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 27, 45, 0.5);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.call-popup-overlay.is-active .call-popup-backdrop {
    opacity: 1;
}

.call-popup-box {
    position: relative;
    z-index: 1;
    background: #fff;
    width: 100%;
    max-width: 500px;
    border-radius: 0;
    border: var(--inst-border);
    padding: 44px 36px 36px;
    text-align: center;
    box-shadow: none;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    font-family: Arial, Helvetica, sans-serif;
}

.call-popup-overlay.is-active .call-popup-box {
    opacity: 1;
    transform: translateY(0);
}

.call-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: auto;
    height: auto;
    padding: 6px;
    border: none;
    border-radius: 0;
    background: transparent;
    color: var(--color-text-muted);
    font-size: 20px;
    font-weight: 300;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: color 0.2s;
    font-family: Arial, Helvetica, sans-serif;
}

.call-popup-close:hover {
    background: transparent;
    color: var(--color-text);
}

.call-popup-box h3 {
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: clamp(1.35rem, 4.2vw, 1.65rem);
    color: var(--color-text);
    margin: 0 0 16px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: 0;
    max-width: 22rem;
    margin-left: auto;
    margin-right: auto;
}

.call-popup-availability {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    margin: 0 0 20px;
}

.call-popup-status-line {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-muted);
}

.call-popup-online-dot {
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 50%;
    background: #22c55e;
    flex-shrink: 0;
}

.call-popup-hours {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-muted);
}

.call-popup-points {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    text-align: left;
    display: grid;
    gap: 0.65rem;
}

.call-popup-points li {
    position: relative;
    padding-left: 1.35rem;
    font-size: 0.92rem;
    line-height: 1.45;
    color: var(--color-text-muted);
}

.call-popup-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 0.35rem;
    height: 0.35rem;
    border-radius: 50%;
    background: var(--color-primary);
}

.call-popup-btn.btn-accent {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    padding: 16px 24px;
    margin-bottom: 0;
    border-radius: 0;
    background: var(--color-accent);
    border: 2px solid var(--color-accent-dark);
    box-shadow: 0 4px 0 var(--color-accent-shadow);
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    letter-spacing: normal;
    text-transform: none;
    min-height: auto;
    transition: background 0.15s ease, transform 0.12s ease, box-shadow 0.12s ease;
}

.call-popup-btn.btn-accent:hover {
    background: #f59e0b;
    border-color: var(--color-accent-dark);
    color: #1a1208;
    box-shadow: 0 2px 0 var(--color-accent-shadow);
    transform: translateY(2px);
    text-decoration: none;
}

.call-popup-btn.btn-accent:hover .call-popup-btn-label,
.call-popup-btn.btn-accent:hover .call-popup-btn-number {
    color: #1a1208;
}

.call-popup-btn-label {
    display: block;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.25;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    text-shadow: none;
    color: #fff;
}

.call-popup-btn-number {
    display: block;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.03em;
    color: #fff;
    text-shadow: none;
    text-transform: none;
    font-variant-numeric: tabular-nums;
}

.call-popup-note {
    font-size: 12px;
    color: var(--color-text-light);
}
