/* ================================================================
   HogaCloud — Stylesheet
   Designkonzept: ruhig, vertrauenswürdig, redaktionell.
   Inspiriert vom Layout von andrea-frank.ch (großzügige Whitespaces,
   Frage-orientierte Sektionen, klare Karten-Grids).
   Farbwelt: Royal-Blau aus dem HogaCloud-Logo (#063985) als
   Hauptfarbe, kombiniert mit warmen Cream-Tönen für Hospitality-
   Wärme und einem hellen Sky-Blue als Akzent.
   ================================================================ */

:root {
    /* HogaCloud Markenfarben (direkt aus dem Logo extrahiert) */
    --hc-blue-900: #02214d;     /* sehr dunkel — Footer, Headlines */
    --hc-blue-800: #032a66;
    --hc-blue-700: #063985;     /* PRIMARY — exaktes Logo-Blau */
    --hc-blue-600: #0a4aa8;
    --hc-blue-500: #1b4e91;
    --hc-blue-300: #6789c2;
    --hc-blue-100: #dbe5f5;
    --hc-blue-50:  #eef3fb;

    /* Akzent: helles Sky-Blue für Highlights & Pills */
    --hc-sky-700:  #1e6fd9;
    --hc-sky-500:  #3b82f6;
    --hc-sky-300:  #93b9f6;
    --hc-sky-50:   #eaf2ff;

    /* Wärme/Hospitality: dezenter Cream-Ton als Sekundär-Hintergrund */
    --hc-cream:    #faf6ee;
    --hc-cream-2:  #f4ecdb;

    /* Funktionale Töne */
    --hc-paper:    #ffffff;
    --hc-ink:      #0e1a33;
    --hc-muted:    #5b6a82;
    --hc-line:     #e3e8f0;

    --hc-success:  #1f8a4a;
    --hc-error:    #b3261e;

    /* Typo */
    --ff-display: 'Fraunces', 'Playfair Display', Georgia, serif;
    --ff-body:    'Inter Tight', system-ui, -apple-system, 'Helvetica Neue', sans-serif;

    /* Layout */
    --container: 1180px;
    --radius-lg: 18px;
    --radius-md: 12px;
    --radius-sm: 8px;

    --shadow-sm: 0 1px 2px rgba(6, 57, 133, .06), 0 2px 8px rgba(6, 57, 133, .04);
    --shadow-md: 0 6px 20px rgba(6, 57, 133, .10), 0 2px 6px rgba(6, 57, 133, .05);
    --shadow-lg: 0 24px 60px rgba(6, 57, 133, .14), 0 8px 16px rgba(6, 57, 133, .06);
}

/* -------------------- Reset & Base -------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: var(--ff-body);
    font-size: 17px;
    line-height: 1.65;
    color: var(--hc-ink);
    background: var(--hc-paper);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--hc-blue-700); text-decoration: none; transition: color .2s; }
a:hover { color: var(--hc-sky-700); }
button { font: inherit; }
h1, h2, h3, h4 {
    font-family: var(--ff-display);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--hc-blue-900);
    margin: 0 0 .6em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 400; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.4rem); }
p  { margin: 0 0 1em; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.skip-link {
    position: absolute; left: -9999px; top: 0;
    background: var(--hc-blue-700); color: #fff;
    padding: .75rem 1rem; z-index: 1000;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* -------------------- Header -------------------- */
.site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--hc-line);
}
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 24px; gap: 24px;
}
.brand { display: inline-flex; align-items: center; }
.brand-logo { height: 44px; width: auto; display: block; }
@media (max-width: 600px) { .brand-logo { height: 36px; } }

.primary-nav { display: flex; align-items: center; gap: 28px; }
.primary-nav ul {
    display: flex; gap: 24px; list-style: none; margin: 0; padding: 0;
}
.primary-nav a {
    color: var(--hc-ink); font-size: .95rem; font-weight: 500;
    padding: 8px 0; position: relative;
}
.primary-nav a[aria-current="page"]::after,
.primary-nav a:hover::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
    height: 2px; background: var(--hc-blue-700);
}
.nav-cta { white-space: nowrap; }

.nav-toggle {
    display: none;
    flex-direction: column; gap: 5px;
    background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav-toggle span {
    width: 26px; height: 2px; background: var(--hc-blue-900); transition: transform .2s;
}

@media (max-width: 960px) {
    .nav-toggle { display: inline-flex; }
    .primary-nav {
        position: absolute; top: 100%; left: 0; right: 0;
        background: #fff; border-bottom: 1px solid var(--hc-line);
        padding: 16px 24px 24px;
        flex-direction: column; align-items: stretch; gap: 12px;
        transform: translateY(-8px); opacity: 0; pointer-events: none;
        transition: transform .2s, opacity .2s;
    }
    .primary-nav.is-open { transform: none; opacity: 1; pointer-events: auto; }
    .primary-nav ul { flex-direction: column; gap: 4px; }
    .primary-nav a { padding: 10px 0; border-bottom: 1px solid var(--hc-line); }
    .nav-cta { margin-top: 8px; text-align: center; }
}

/* -------------------- Buttons -------------------- */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 500; font-size: .98rem;
    border: 1px solid transparent;
    cursor: pointer; transition: all .2s;
    text-decoration: none;
    line-height: 1;
}
.btn-primary { background: var(--hc-blue-700); color: #fff; }
.btn-primary:hover { background: var(--hc-blue-900); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--hc-blue-700); border-color: var(--hc-blue-700); }
.btn-ghost:hover { background: var(--hc-blue-700); color: #fff; }
.btn-light { background: #fff; color: var(--hc-blue-700); border-color: rgba(255,255,255,.4); }
.btn-light:hover { background: var(--hc-cream); color: var(--hc-blue-900); }
.btn-lg { padding: 16px 28px; font-size: 1.05rem; }

/* -------------------- Hero -------------------- */
.hero {
    position: relative;
    padding: 80px 0 100px;
    background:
        radial-gradient(circle at 88% 12%, rgba(59, 130, 246, 0.12), transparent 45%),
        radial-gradient(circle at 5% 90%, rgba(6, 57, 133, 0.08), transparent 50%),
        linear-gradient(180deg, var(--hc-cream) 0%, #ffffff 100%);
    overflow: hidden;
}
.hero-grid {
    display: grid; gap: 56px;
    grid-template-columns: 1.05fr 1fr;
    align-items: center;
}
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--hc-sky-50);
    color: var(--hc-blue-700);
    padding: 6px 14px; border-radius: 999px;
    font-size: .82rem; font-weight: 500;
    margin-bottom: 20px;
    border: 1px solid var(--hc-blue-100);
}
.hero-eyebrow::before {
    content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--hc-sky-500);
}
.hero h1 .hl {
    background: linear-gradient(120deg, var(--hc-blue-700) 0%, var(--hc-sky-500) 100%);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
    font-style: italic;
}
.hero-lead {
    font-size: 1.15rem; color: var(--hc-muted);
    max-width: 540px; margin-bottom: 32px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-meta {
    margin-top: 36px; display: flex; gap: 28px; flex-wrap: wrap;
    font-size: .85rem; color: var(--hc-muted);
}
.hero-meta strong { color: var(--hc-blue-900); display: block; font-size: 1.4rem; font-family: var(--ff-display); }

.hero-visual {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: linear-gradient(160deg, var(--hc-blue-700) 0%, var(--hc-blue-900) 100%);
}
.hero-visual svg { width: 100%; height: 100%; display: block; object-fit: cover; }
.hero-visual::after {
    content: ""; position: absolute; inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(147, 185, 246, 0.18), transparent 40%),
        radial-gradient(circle at 10% 90%, rgba(255, 255, 255, 0.06), transparent 35%);
    pointer-events: none;
}
.hero-badge {
    position: absolute; left: -20px; bottom: 36px;
    background: #fff; border-radius: var(--radius-md);
    padding: 16px 18px;
    box-shadow: var(--shadow-md);
    display: flex; align-items: center; gap: 12px;
    max-width: 240px;
}
.hero-badge-icon {
    width: 40px; height: 40px; border-radius: 10px;
    background: var(--hc-blue-50); color: var(--hc-blue-700);
    display: grid; place-items: center; flex: 0 0 auto;
}
.hero-badge strong { display: block; font-size: .92rem; color: var(--hc-blue-900); }
.hero-badge span { font-size: .8rem; color: var(--hc-muted); }

@media (max-width: 860px) {
    .hero { padding: 56px 0 72px; }
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { aspect-ratio: 1/1; max-height: 460px; }
    .hero-badge { left: 12px; }
}

/* -------------------- Sections -------------------- */
.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }
.section-cream { background: var(--hc-cream); }
.section-blue  { background: var(--hc-blue-50); }
.section-dark  { background: var(--hc-blue-900); color: #fff; }
.section-dark h1, .section-dark h2, .section-dark h3 { color: #fff; }
.section-dark .lead { color: rgba(255,255,255,.78); }

.section-head {
    max-width: 760px;
    margin: 0 auto 56px;
    text-align: center;
}
.section-head .eyebrow {
    color: var(--hc-blue-700);
    font-size: .82rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: .14em;
    margin-bottom: 16px; display: block;
}
.section-head h2 { margin-bottom: 16px; }
.section-head .lead { color: var(--hc-muted); font-size: 1.1rem; }

/* Frage-Sektion (im Stil von andrea-frank.ch — gut für SEO und KI-Crawling) */
.q-section {
    padding: 88px 0;
    border-top: 1px solid var(--hc-line);
}
.q-section h2 {
    font-style: italic;
    font-weight: 400;
    max-width: 820px;
    margin-bottom: 8px;
    color: var(--hc-blue-900);
}
.q-section .q-sub {
    font-family: var(--ff-display);
    font-size: 1.4rem; color: var(--hc-blue-700);
    margin-bottom: 32px;
    font-weight: 500;
}
.q-section .q-body {
    display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px;
    max-width: 1080px;
}
.q-section .q-body p { font-size: 1.05rem; }
@media (max-width: 800px) {
    .q-section { padding: 64px 0; }
    .q-section .q-body { grid-template-columns: 1fr; gap: 24px; }
}

/* -------------------- Tools-Karten-Grid -------------------- */
.tools-grid {
    display: grid; gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.tool-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--hc-line);
    border-radius: var(--radius-lg);
    padding: 32px 28px 28px;
    transition: all .25s;
    display: flex; flex-direction: column;
}
.tool-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.tool-card .tool-icon {
    width: 52px; height: 52px; border-radius: 14px;
    background: var(--hc-blue-50); color: var(--hc-blue-700);
    display: grid; place-items: center;
    margin-bottom: 20px;
}
.tool-card:hover .tool-icon {
    background: var(--hc-blue-700); color: #fff;
}
.tool-card h3 { font-size: 1.35rem; margin-bottom: 6px; }
.tool-card .tool-lead { font-weight: 500; color: var(--hc-blue-900); margin-bottom: 12px; }
.tool-card p { color: var(--hc-muted); font-size: .96rem; flex-grow: 1; }
.tool-card .tool-link {
    margin-top: 16px;
    display: inline-flex; align-items: center; gap: 6px;
    font-weight: 500; color: var(--hc-blue-700);
}
.tool-card .tool-link::after {
    content: "→"; transition: transform .2s;
}
.tool-card:hover .tool-link::after { transform: translateX(4px); }

/* -------------------- Audience-Bar -------------------- */
.audience-bar {
    background: var(--hc-cream);
    border-top: 1px solid var(--hc-line);
    border-bottom: 1px solid var(--hc-line);
    padding: 48px 0;
}
.audience-grid {
    display: grid; gap: 32px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.audience-grid > div h3 {
    font-size: 1.15rem; margin-bottom: 4px; color: var(--hc-blue-900);
}
.audience-grid > div p { color: var(--hc-muted); font-size: .95rem; margin: 0; }

/* -------------------- Feature-Liste -------------------- */
.feature-list {
    list-style: none; padding: 0; margin: 0;
    display: grid; gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.feature-list li {
    display: flex; gap: 14px; align-items: flex-start;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--hc-line);
    border-radius: var(--radius-md);
}
.feature-list .check-icon {
    flex: 0 0 auto;
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--hc-sky-50); color: var(--hc-blue-700);
    display: grid; place-items: center;
}
.feature-list strong { display: block; color: var(--hc-blue-900); margin-bottom: 2px; font-weight: 600; }
.feature-list span { color: var(--hc-muted); font-size: .92rem; line-height: 1.5; }

/* -------------------- Pricing -------------------- */
.pricing-grid {
    display: grid; gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    margin-top: 16px;
}
.price-card {
    background: #fff;
    border: 1px solid var(--hc-line);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    display: flex; flex-direction: column;
    position: relative;
    transition: all .25s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.price-card.is-featured {
    border-color: var(--hc-blue-700);
    box-shadow: var(--shadow-md);
}
.price-card.is-featured::before {
    content: "Empfohlen";
    position: absolute; top: -12px; right: 24px;
    background: var(--hc-blue-700); color: #fff;
    font-size: .76rem; font-weight: 600;
    padding: 4px 12px; border-radius: 999px;
    letter-spacing: .04em; text-transform: uppercase;
}
.price-card h3 { font-size: 1.4rem; margin-bottom: 4px; }
.price-card .price-sub { color: var(--hc-muted); font-size: .92rem; margin-bottom: 24px; }
.price-card .price {
    font-family: var(--ff-display); font-size: 2.6rem; font-weight: 500;
    color: var(--hc-blue-900); line-height: 1;
}
.price-card .price small {
    font-family: var(--ff-body); font-size: .9rem; font-weight: 400; color: var(--hc-muted);
    margin-left: 4px;
}
.price-card ul {
    list-style: none; padding: 0; margin: 24px 0;
    flex-grow: 1;
}
.price-card ul li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: .95rem;
    border-bottom: 1px dashed var(--hc-line);
}
.price-card ul li:last-child { border-bottom: 0; }
.price-card ul li::before {
    content: ""; position: absolute; left: 0; top: 13px;
    width: 16px; height: 16px;
    background: var(--hc-blue-50); border-radius: 50%;
}
.price-card ul li::after {
    content: ""; position: absolute; left: 4px; top: 17px;
    width: 8px; height: 4px;
    border-left: 2px solid var(--hc-blue-700);
    border-bottom: 2px solid var(--hc-blue-700);
    transform: rotate(-45deg);
}

/* -------------------- FAQ -------------------- */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item {
    border-bottom: 1px solid var(--hc-line);
}
.faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 22px 36px 22px 0;
    font-family: var(--ff-display);
    font-size: 1.15rem;
    color: var(--hc-blue-900);
    position: relative;
    font-weight: 500;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "+";
    position: absolute; right: 4px; top: 22px;
    font-size: 1.6rem;
    line-height: 1;
    color: var(--hc-blue-700);
    font-family: var(--ff-body);
    font-weight: 300;
    transition: transform .2s;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item .faq-answer {
    padding: 0 36px 24px 0;
    color: var(--hc-muted);
}
.faq-item .faq-answer p:last-child { margin-bottom: 0; }

/* -------------------- Forms -------------------- */
.form-grid {
    display: grid; gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .9rem; font-weight: 500; color: var(--hc-blue-900); }
.field input, .field select, .field textarea {
    font: inherit;
    padding: 12px 14px;
    border: 1px solid var(--hc-line);
    border-radius: var(--radius-md);
    background: #fff;
    transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none;
    border-color: var(--hc-blue-700);
    box-shadow: 0 0 0 3px rgba(6, 57, 133, .12);
}
.field textarea { resize: vertical; min-height: 140px; }
.field .check {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: .9rem; color: var(--hc-muted);
}
.field .check input { width: 18px; height: 18px; margin-top: 3px; }
.form-feedback {
    padding: 14px 18px; border-radius: var(--radius-md);
    margin-bottom: 24px;
}
.form-feedback.is-success { background: #e8f3ed; color: #1f5d3a; border: 1px solid #b9d9c5; }
.form-feedback.is-error   { background: #fde8e6; color: #8a1f17; border: 1px solid #f3c2bd; }

/* -------------------- Contact-Layout -------------------- */
.contact-grid {
    display: grid; gap: 56px;
    grid-template-columns: 1fr 1.4fr;
    align-items: start;
}
.contact-info { padding-top: 8px; }
.contact-info h3 { font-size: 1.6rem; margin-bottom: 16px; }
.contact-info dl { margin: 24px 0 0; }
.contact-info dt { font-weight: 600; color: var(--hc-blue-900); margin-top: 16px; font-size: .9rem; text-transform: uppercase; letter-spacing: .04em; }
.contact-info dd { margin: 4px 0 0; color: var(--hc-muted); }
.contact-info dd a { color: var(--hc-blue-700); }
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } }

/* -------------------- App-Stores -------------------- */
.store-row {
    display: flex; gap: 16px; flex-wrap: wrap;
    margin-top: 24px;
}
.store-btn {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 14px 22px;
    background: var(--hc-blue-900); color: #fff;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: transform .2s;
}
.store-btn:hover { transform: translateY(-2px); color: #fff; }
.store-btn small { display: block; font-size: .72rem; opacity: .7; line-height: 1; }
.store-btn strong { display: block; font-size: 1.05rem; font-weight: 500; }

/* -------------------- CTA-Banner -------------------- */
.cta-banner {
    background:
        radial-gradient(circle at 90% 20%, rgba(59, 130, 246, .25), transparent 50%),
        linear-gradient(135deg, var(--hc-blue-700), var(--hc-blue-900));
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 56px 48px;
    text-align: center;
    margin: 0 auto;
    max-width: 1080px;
}
.cta-banner h2 { color: #fff; font-style: italic; font-weight: 400; }
.cta-banner p { color: rgba(255,255,255,.82); margin-bottom: 28px; font-size: 1.1rem; }
@media (max-width: 600px) { .cta-banner { padding: 40px 24px; } }

/* -------------------- Footer -------------------- */
.site-footer {
    background: var(--hc-blue-900);
    color: rgba(255,255,255,.78);
    padding: 64px 0 28px;
}
.site-footer .footer-logo {
    height: 44px;
    width: auto;
    /* Logo wird über CSS-Filter weiß für dunklen Hintergrund. Da Logo Blau auf Weiß ist:
       wir laden eine invertierte Variante via filter */
    filter: brightness(0) invert(1);
    margin-bottom: 12px;
}
.footer-grid {
    display: grid; gap: 48px;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; font-family: var(--ff-body); font-weight: 600; letter-spacing: .02em; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { padding: 4px 0; }
.footer-col a { color: rgba(255,255,255,.7); }
.footer-col a:hover { color: var(--hc-sky-300); }
.footer-lead { color: rgba(255,255,255,.65); margin-top: 16px; font-size: .92rem; max-width: 360px; }
.site-footer address { font-style: normal; color: rgba(255,255,255,.7); font-size: .92rem; line-height: 1.7; }
.site-footer address a { color: rgba(255,255,255,.85); }
.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 24px; flex-wrap: wrap; gap: 16px;
    font-size: .85rem;
    color: rgba(255,255,255,.5);
}
.footer-legal { list-style: none; display: flex; gap: 24px; margin: 0; padding: 0; }
.footer-legal a { color: rgba(255,255,255,.7); font-size: .85rem; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }

/* -------------------- Misc -------------------- */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.divider { height: 1px; background: var(--hc-line); border: 0; margin: 48px 0; }

.subpage-hero {
    padding: 80px 0 56px;
    background:
        radial-gradient(circle at 90% 0%, rgba(59, 130, 246, 0.10), transparent 45%),
        linear-gradient(180deg, var(--hc-cream) 0%, #ffffff 100%);
}
.subpage-hero .eyebrow {
    color: var(--hc-blue-700); font-weight: 600;
    font-size: .82rem; text-transform: uppercase; letter-spacing: .14em;
}
.subpage-hero h1 { max-width: 820px; margin-top: 16px; }
.subpage-hero .lead { font-size: 1.2rem; color: var(--hc-muted); max-width: 720px; }
.subpage-hero .hero-cta { margin-top: 28px; }

@media (prefers-reduced-motion: no-preference) {
    .section, .q-section, .audience-bar, .subpage-hero {
        animation: hc-fade-in .6s ease both;
    }
    @keyframes hc-fade-in {
        from { opacity: 0; transform: translateY(8px); }
        to   { opacity: 1; transform: none; }
    }
}
