﻿/* ====================================================================
   Digital Media Marketing – STYLE.CSS
   Mobile-First | CSS Grid & Flexbox | Custom Properties | Kein Framework
   CI-Farben übernommen von scholz-marketing.de
   ==================================================================== */

/* --------------------------------------------------------------------
   0. LOKALE WEBFONTS (DSGVO-konform – kein Request an Google-Server)
   Die Variable-Fonts liegen in /assets/fonts/ und decken alle
   benötigten Schriftschnitte (400–800) mit je EINER Datei ab.
   -------------------------------------------------------------------- */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400 700;            /* Variable Font: deckt 400–700 ab */
    font-display: swap;
    src: url('../assets/fonts/inter-variable-latin.woff2') format('woff2');
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 500 800;            /* Variable Font: deckt 500–800 ab */
    font-display: swap;
    src: url('../assets/fonts/plus-jakarta-sans-variable-latin.woff2') format('woff2');
}

/* --------------------------------------------------------------------
   1. CSS CUSTOM PROPERTIES – Corporate Identity scholz-marketing.de
   -------------------------------------------------------------------- */
:root {
    /* CI-Farben (von scholz-marketing.de übernommen) */
    --color-navy: #232e5e;           /* Primär: dunkles Markenblau */
    --color-navy-deep: #181f43;      /* Abdunkelung für Verläufe/Footer */
    --color-blue: #0b70f5;           /* Aktionsblau (CTAs, Links) */
    --color-blue-dark: #0857c4;      /* Hover-Variante */
    --color-sky: #6fa8ff;            /* Hellblau (Akzente, Verläufe) */
    --color-magenta: #c712b9;        /* Magenta-Akzent (sparsam!) */
    --color-mint: #29c4a9;           /* Erfolg/Positiv-Signal */

    /* Neutrale Farben */
    --color-text: #232e5e;
    --color-text-light: #5a6175;
    --color-text-muted: #8b91a5;
    --color-bg: #ffffff;
    --color-bg-alt: #f5f7fc;
    --color-border: #e4e7f0;
    --color-white: #ffffff;

    /* Typografie */
    --font-display: 'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif;
    --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;
    --fs-sm: 0.875rem;
    --fs-base: 1rem;
    --fs-lg: 1.125rem;
    --fs-xl: 1.375rem;
    --fs-2xl: 1.75rem;
    --fs-3xl: 2.25rem;
    --fs-4xl: 3.25rem;

    /* Abstände */
    --sp-xs: 0.5rem;
    --sp-sm: 1rem;
    --sp-md: 1.5rem;
    --sp-lg: 2rem;
    --sp-xl: 3rem;
    --sp-2xl: 5rem;
    --section-pad: 4.5rem 0;
    --section-pad-lg: 7rem 0;

    /* Layout */
    --container-max: 1240px;
    --container-pad: 1.25rem;
    --radius: 0.875rem;
    --radius-lg: 1.5rem;

    /* Schatten */
    --shadow-sm: 0 1px 3px rgba(35, 46, 94, 0.08);
    --shadow-md: 0 6px 18px rgba(35, 46, 94, 0.10);
    --shadow-lg: 0 14px 40px rgba(35, 46, 94, 0.14);
    --shadow-glow-blue: 0 8px 28px rgba(11, 112, 245, 0.35);

    /* Verläufe */
    --grad-brand: linear-gradient(120deg, var(--color-blue), var(--color-magenta));
    --grad-cta: linear-gradient(120deg, var(--color-blue), #4a3fd6);

    /* Transition */
    --t-fast: 0.2s ease;
    --t-norm: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
    font-family: var(--font-body);
    font-size: var(--fs-base);
    line-height: 1.65;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

a {
    color: var(--color-blue);
    text-decoration: none;
    transition: color var(--t-fast);
}

ul,
ol {
    list-style: none;
}

button {
    font: inherit;
}

::selection {
    background: var(--color-blue);
    color: #fff;
}

.skip-link {
    position: absolute;
    top: -48px;
    left: 0;
    background: var(--color-navy);
    color: #fff;
    padding: 0.75rem 1.25rem;
    z-index: 2000;
    border-radius: 0 0 var(--radius) 0;
}

.skip-link:focus {
    top: 0;
}

/* --------------------------------------------------------------------
   3. TYPOGRAFIE
   -------------------------------------------------------------------- */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    line-height: 1.15;
    font-weight: 800;
    color: var(--color-navy);
    letter-spacing: -0.02em;
}

h1 { font-size: var(--fs-3xl); margin-bottom: var(--sp-md); }
h2 { font-size: var(--fs-2xl); margin-bottom: var(--sp-sm); }
h3 { font-size: var(--fs-lg); margin-bottom: var(--sp-xs); }

.text-gradient {
    background: var(--grad-brand);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.text-gradient-light {
    background: linear-gradient(120deg, var(--color-sky), #e879d8);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-eyebrow {
    display: inline-block;
    font-size: var(--fs-sm);
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-blue);
    margin-bottom: var(--sp-xs);
}

.section-eyebrow.light {
    color: var(--color-sky);
}

.section-subtitle {
    color: var(--color-text-light);
    max-width: 640px;
    margin: 0 0 var(--sp-xl);
    font-size: var(--fs-lg);
}

/* Zentrierte Sektionsköpfe */
.topics .section-eyebrow,
.cases .section-eyebrow,
.testimonials .section-eyebrow,
.process .section-eyebrow,
.faq .section-eyebrow {
    display: block;
    text-align: center;
}

.topics h2,
.cases h2,
.testimonials h2,
.process h2,
.faq h2 {
    text-align: center;
}

.topics .section-subtitle,
.cases .section-subtitle,
.testimonials .section-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* --------------------------------------------------------------------
   4. LAYOUT
   -------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

section {
    padding: var(--section-pad);
}

/* --------------------------------------------------------------------
   5. GIMMICKS: Custom Cursor & Scroll-Progress
   -------------------------------------------------------------------- */
.cursor-dot,
.cursor-ring {
    display: none;                    /* nur auf Desktop via body-Klasse aktiv */
}

body.has-cursor .cursor-dot {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-magenta);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
}

body.has-cursor .cursor-ring {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid rgba(11, 112, 245, 0.6);
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.25s ease, height 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

body.has-cursor .cursor-ring.is-hovering {
    width: 56px;
    height: 56px;
    border-color: rgba(199, 18, 185, 0.55);
    background: rgba(199, 18, 185, 0.07);
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 100%;
    z-index: 1500;
    background: transparent;
    pointer-events: none;
}

.scroll-progress::before {
    content: '';
    display: block;
    height: 100%;
    width: 100%;
    background: var(--grad-brand);
    transform: scaleX(var(--scroll-progress, 0));
    transform-origin: left;
}

/* --------------------------------------------------------------------
   6. HEADER / NAVIGATION
   -------------------------------------------------------------------- */
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color var(--t-fast), box-shadow var(--t-fast);
}

.site-header.scrolled {
    border-bottom-color: var(--color-border);
    box-shadow: var(--shadow-sm);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 74px;
}

.logo {
    color: var(--color-navy);
    flex-shrink: 0;
}

.nav-list {
    display: none;
}

.nav-list a {
    color: var(--color-navy);
    font-weight: 500;
    position: relative;
}

.nav-list a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: var(--grad-brand);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t-norm);
}

.nav-list a:not(.nav-cta):hover::after {
    transform: scaleX(1);
}

.nav-cta {
    background: var(--color-navy);
    color: #fff !important;
    padding: 0.65rem 1.35rem;
    border-radius: 999px;
    font-weight: 600;
    transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
}

.nav-cta:hover {
    background: var(--color-blue);
    transform: translateY(-1px);
    box-shadow: var(--shadow-glow-blue);
}

.mobile-nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 24px;
    height: 2px;
    border-radius: 2px;
    background-color: var(--color-navy);
    transition: all var(--t-fast);
}

.hamburger {
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.mobile-nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.mobile-nav-toggle[aria-expanded="true"] .hamburger::before { transform: rotate(45deg); top: 0; }
.mobile-nav-toggle[aria-expanded="true"] .hamburger::after { transform: rotate(-45deg); top: 0; }

/* Hinweis: backdrop-filter auf .site-header macht den Header zum
   Containing Block – daher absolute (relativ zum Header) statt fixed. */
.nav-list.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: calc(100vh - 74px);
    overflow-y: auto;
    background: var(--color-bg);
    border-top: 1px solid var(--color-border);
    padding: var(--sp-lg);
    gap: var(--sp-md);
    z-index: 999;
    font-size: var(--fs-xl);
}

/* --------------------------------------------------------------------
   7. HERO
   -------------------------------------------------------------------- */
.hero {
    position: relative;
    padding: calc(74px + 3.5rem) 0 4rem;
    background: linear-gradient(160deg, var(--color-navy-deep) 0%, var(--color-navy) 55%, #2c3a78 100%);
    color: #fff;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.5;
}

.hero-orb-1 {
    width: 480px;
    height: 480px;
    background: var(--color-blue);
    top: -160px;
    right: -120px;
    animation: orbFloat 14s ease-in-out infinite alternate;
}

.hero-orb-2 {
    width: 380px;
    height: 380px;
    background: var(--color-magenta);
    bottom: -180px;
    left: -140px;
    opacity: 0.3;
    animation: orbFloat 18s ease-in-out infinite alternate-reverse;
}

.hero-orb-3 {
    width: 420px;
    height: 420px;
    background: var(--color-blue);
    top: -120px;
    right: -100px;
    opacity: 0.35;
}

@keyframes orbFloat {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(-50px, 40px) scale(1.12); }
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 30%, transparent 75%);
}

.hero-grid {
    position: relative;
    display: grid;
    gap: var(--sp-2xl);
}

.hero h1 {
    color: #fff;
    font-size: clamp(2.1rem, 6vw, var(--fs-4xl));
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: var(--fs-sm);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    padding: 0.45rem 1.1rem;
    margin-bottom: var(--sp-md);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-mint);
    box-shadow: 0 0 0 0 rgba(41, 196, 169, 0.6);
    animation: pulse 2.2s infinite;
}

@keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(41, 196, 169, 0.6); }
    70%  { box-shadow: 0 0 0 9px rgba(41, 196, 169, 0); }
    100% { box-shadow: 0 0 0 0 rgba(41, 196, 169, 0); }
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.78);
    font-size: var(--fs-lg);
    max-width: 560px;
    margin-bottom: var(--sp-lg);
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-sm);
    margin-bottom: var(--sp-xl);
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-lg) var(--sp-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding-top: var(--sp-md);
}

.hero-stats li {
    display: flex;
    flex-direction: column;
}

.hero-stats strong {
    font-family: var(--font-display);
    font-size: var(--fs-2xl);
    font-weight: 800;
    background: linear-gradient(120deg, #fff, var(--color-sky));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-stats span:last-child {
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, 0.65);
}

/* Hero-Visual: Dashboard-Mockup */
.hero-visual {
    position: relative;
    max-width: 540px;
}

.dash-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: var(--sp-md);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
    animation: cardFloat 7s ease-in-out infinite;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-12px); }
}

.dash-head {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: var(--sp-md);
}

.dash-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
}

.dash-dot:first-child { background: #ff5f57; }
.dash-dot:nth-child(2) { background: #febc2e; }
.dash-dot:nth-child(3) { background: #28c840; }

.dash-title {
    margin-left: auto;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
}

.dash-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-xs);
    margin-bottom: var(--sp-md);
}

.dash-kpi {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: var(--radius);
    padding: 0.8rem 0.7rem;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dash-kpi-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.dash-kpi-value {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.25rem;
    color: #fff;
}

.dash-kpi-trend {
    font-size: 0.7rem;
}

.dash-kpi-trend.up { color: var(--color-mint); }

.dash-chart {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
}

.float-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: #fff;
    color: var(--color-navy);
    font-size: var(--fs-sm);
    padding: 0.7rem 1rem;
    border-radius: 999px;
    box-shadow: var(--shadow-lg);
    white-space: nowrap;
}

.float-badge strong { font-weight: 700; }

.float-badge-1 {
    top: -18px;
    right: 4px;
    animation: cardFloat 6s ease-in-out infinite 0.8s;
}

.float-badge-2 {
    bottom: -16px;
    left: 8px;
    animation: cardFloat 8s ease-in-out infinite 1.6s;
}

/* --------------------------------------------------------------------
   8. BUTTONS & MIKRO-INTERAKTIONEN
   -------------------------------------------------------------------- */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.95rem 1.9rem;
    font-family: var(--font-display);
    font-size: var(--fs-base);
    font-weight: 700;
    border-radius: 999px;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    transition: transform var(--t-fast), box-shadow var(--t-fast), background-color var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}

/* Glanz-Effekt, der beim Hover über den Button läuft */
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -80%;
    width: 50%;
    height: 100%;
    background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transform: skewX(-20deg);
    transition: left 0.55s ease;
}

.btn-primary:hover::before {
    left: 130%;
}

.btn-primary {
    background: var(--grad-cta);
    color: #fff;
    box-shadow: var(--shadow-glow-blue);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 34px rgba(11, 112, 245, 0.45);
    color: #fff;
}

.btn-primary:active {
    transform: translateY(0) scale(0.98);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.28);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

.btn-back {
    background: transparent;
    color: var(--color-text-light);
    border-color: var(--color-border);
}

.btn-back:hover {
    border-color: var(--color-text-muted);
    color: var(--color-text);
}

/* --------------------------------------------------------------------
   9. TRUST-LEISTE
   -------------------------------------------------------------------- */
.trust-bar {
    padding: var(--sp-lg) 0;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
}

.trust-label {
    text-align: center;
    color: var(--color-text-muted);
    font-size: var(--fs-sm);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--sp-md);
}

.trust-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--sp-md) var(--sp-xl);
}

/* USP-Leiste ohne Kundennamen */
.trust-usp {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--color-navy);
    opacity: 0.85;
    white-space: nowrap;
    transition: opacity var(--t-fast);
}

.trust-usp:hover {
    opacity: 1;
}

/* --------------------------------------------------------------------
   10. EXPERTISE-GRID (Top 20 Themen)
   -------------------------------------------------------------------- */
.topics {
    background: var(--color-bg-alt);
}

.topics-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-sm);
}

.topic-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 1.4rem 1.3rem;
    color: var(--color-text);
    transition: transform var(--t-norm), box-shadow var(--t-norm), border-color var(--t-norm);
    overflow: hidden;
}

/* Verlaufslinie, die beim Hover oben einblendet */
.topic-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad-brand);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t-norm);
}

.topic-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.topic-card:hover::before {
    transform: scaleX(1);
}

.topic-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(11, 112, 245, 0.09);
    color: var(--color-blue);
    margin-bottom: 0.35rem;
    transition: background var(--t-norm), color var(--t-norm), transform var(--t-norm);
}

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

.topic-card:hover .topic-icon {
    background: var(--grad-brand);
    color: #fff;
    transform: scale(1.08) rotate(-4deg);
}

.topic-card h3 {
    font-size: 1.05rem;
    margin: 0;
}

.topic-card p {
    font-size: var(--fs-sm);
    color: var(--color-text-light);
    line-height: 1.5;
}

/* --------------------------------------------------------------------
   11. FALLSTUDIEN
   -------------------------------------------------------------------- */
.cases-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-lg);
}

.case-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    transition: transform var(--t-norm), box-shadow var(--t-norm);
    display: flex;
    flex-direction: column;
}

.case-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.case-top {
    padding: var(--sp-lg);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.case-top::after {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    top: -110px;
    right: -70px;
    transition: transform var(--t-norm);
}

.case-card:hover .case-top::after {
    transform: scale(1.35);
}

.case-top-1 { background: linear-gradient(135deg, var(--color-navy), var(--color-blue)); }
.case-top-2 { background: linear-gradient(135deg, #4a3fd6, var(--color-magenta)); }
.case-top-3 { background: linear-gradient(135deg, #0a7d6e, var(--color-mint)); }

.case-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.18);
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    margin-bottom: var(--sp-sm);
}

.case-metric {
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1;
}

.case-metric-label {
    font-size: var(--fs-sm);
    opacity: 0.85;
    margin-top: 0.3rem;
}

.case-body {
    padding: var(--sp-md) var(--sp-lg) var(--sp-lg);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex: 1;
}

.case-body p {
    color: var(--color-text-light);
    font-size: var(--fs-sm);
    flex: 1;
}

.case-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 600;
    font-size: var(--fs-sm);
    color: var(--color-blue);
    margin-top: 0.4rem;
    transition: gap var(--t-fast);
}

.case-card:hover .case-link {
    gap: 0.7rem;
}

/* --------------------------------------------------------------------
   12. ÜBER UNS / AUTORENPROFIL
   -------------------------------------------------------------------- */
.about {
    background: var(--color-bg-alt);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-xl);
    align-items: center;
}

.about-visual {
    position: relative;
    width: min(420px, 100%);
    margin: 0 auto;
}

.about-portrait {
    aspect-ratio: 6 / 7;
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 30% 20%, rgba(111, 168, 255, 0.55), transparent 60%),
        radial-gradient(circle at 80% 90%, rgba(199, 18, 185, 0.35), transparent 55%),
        linear-gradient(160deg, var(--color-navy), var(--color-navy-deep));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.about-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-initials {
    font-family: var(--font-display);
    font-size: 6rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.92);
    letter-spacing: -0.04em;
}

.about-badge {
    position: absolute;
    bottom: -18px;
    right: -8px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 0.9rem 1.2rem;
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.about-badge strong {
    font-family: var(--font-display);
    font-size: var(--fs-xl);
    font-weight: 800;
    background: var(--grad-brand);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.about-badge span {
    font-size: 0.78rem;
    color: var(--color-text-light);
}

.about-content > p {
    color: var(--color-text-light);
    margin-bottom: var(--sp-sm);
}

.about-content > p:first-of-type {
    font-size: var(--fs-lg);
    color: var(--color-text);
}

.about-creds {
    display: grid;
    gap: 0.65rem;
    margin: var(--sp-md) 0 var(--sp-lg);
}

.about-creds li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 500;
}

.about-creds svg {
    flex-shrink: 0;
    color: var(--color-mint);
}

/* --------------------------------------------------------------------
   13. TESTIMONIALS
   -------------------------------------------------------------------- */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-lg);
}

.testimonial-card {
    background: var(--color-white);
    padding: var(--sp-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    transition: transform var(--t-norm), box-shadow var(--t-norm);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    color: #f5a623;
    letter-spacing: 3px;
    margin-bottom: var(--sp-sm);
}

.testimonial-card > p {
    color: var(--color-text-light);
    margin-bottom: var(--sp-md);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: var(--fs-sm);
    color: #fff;
    background: linear-gradient(135deg, var(--color-blue), var(--color-navy));
}

.testimonial-card:nth-child(2) .testimonial-avatar {
    background: linear-gradient(135deg, var(--color-magenta), #4a3fd6);
}

.testimonial-card:nth-child(3) .testimonial-avatar {
    background: linear-gradient(135deg, var(--color-mint), #0a7d6e);
}

.testimonial-author cite {
    font-style: normal;
    font-weight: 700;
    display: block;
}

.testimonial-author span:last-child {
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
}

/* --------------------------------------------------------------------
   14. PROZESS
   -------------------------------------------------------------------- */
.process {
    background: var(--color-bg-alt);
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-lg);
    margin-top: var(--sp-xl);
}

.step {
    position: relative;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--sp-lg);
    transition: transform var(--t-norm), box-shadow var(--t-norm);
}

.step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.step-number {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(160deg, var(--color-sky), var(--color-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: var(--sp-sm);
}

.step p {
    color: var(--color-text-light);
    font-size: var(--fs-sm);
}

/* --------------------------------------------------------------------
   15. KONTAKT-FUNNEL (Multi-Step-Form)
   -------------------------------------------------------------------- */
.funnel-section {
    position: relative;
    background: linear-gradient(165deg, var(--color-navy-deep), var(--color-navy) 70%);
    color: #fff;
    overflow: hidden;
}

.funnel-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.funnel-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-xl);
}

.funnel-section h2 {
    color: #fff;
}

.funnel-intro-text {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: var(--sp-md);
    max-width: 460px;
}

.funnel-benefits {
    display: grid;
    gap: 0.5rem;
    margin-bottom: var(--sp-lg);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.funnel-contact-alt p {
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.35rem;
}

.funnel-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-family: var(--font-display);
    font-size: var(--fs-xl);
    font-weight: 700;
    color: #fff;
}

.funnel-phone:hover {
    color: var(--color-sky);
}

.funnel-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-family: var(--font-display);
    font-size: var(--fs-xl);
    font-weight: 700;
    color: #25D366;
    margin-top: 0.25rem;
    transition: color 0.2s ease, transform 0.2s ease;
}

.funnel-whatsapp:hover {
    color: #128C7E;
    transform: translateY(-2px);
}

/* Formular-Karte */
.funnel-form {
    background: #fff;
    color: var(--color-text);
    border-radius: var(--radius-lg);
    padding: var(--sp-lg);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.funnel-progress {
    margin-bottom: var(--sp-lg);
}

.funnel-progress-bar {
    height: 6px;
    background: var(--color-border);
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 0.8rem;
}

.funnel-progress-bar span {
    display: block;
    height: 100%;
    width: 33.34%;
    background: var(--grad-brand);
    border-radius: inherit;
    transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.funnel-progress-steps {
    display: flex;
    justify-content: space-between;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.funnel-progress-steps li.is-active {
    color: var(--color-blue);
}

.funnel-progress-steps li.is-done {
    color: var(--color-mint);
}

.funnel-step {
    border: none;
}

.funnel-step legend {
    font-family: var(--font-display);
    font-size: var(--fs-xl);
    font-weight: 800;
    color: var(--color-navy);
    margin-bottom: var(--sp-md);
    line-height: 1.25;
}

.funnel-step-count {
    display: block;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.3rem;
}

.funnel-topic-chip {
    display: inline-block;
    font-size: var(--fs-sm);
    background: rgba(199, 18, 185, 0.08);
    color: var(--color-magenta);
    border: 1px solid rgba(199, 18, 185, 0.25);
    border-radius: 999px;
    padding: 0.35rem 0.9rem;
    margin-bottom: var(--sp-sm);
}

/* Auswahl-Karten (Radio) */
.choice-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.7rem;
}

.choice-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius);
    padding: 1rem 1.1rem;
    cursor: pointer;
    transition: border-color var(--t-fast), background-color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
}

.choice-card:hover {
    border-color: var(--color-sky);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.choice-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.choice-card:has(input:checked) {
    border-color: var(--color-blue);
    background: rgba(11, 112, 245, 0.05);
    box-shadow: 0 0 0 3px rgba(11, 112, 245, 0.14);
}

.choice-card:has(input:focus-visible) {
    outline: 2px solid var(--color-blue);
    outline-offset: 2px;
}

.choice-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(11, 112, 245, 0.09);
    color: var(--color-blue);
    margin-bottom: 0.35rem;
}

.choice-icon svg {
    width: 20px;
    height: 20px;
}

.choice-card:has(input:checked) .choice-icon {
    background: var(--grad-brand);
    color: #fff;
}

.choice-title {
    font-weight: 700;
    font-size: 0.98rem;
    color: var(--color-navy);
}

.choice-desc {
    font-size: 0.82rem;
    color: var(--color-text-light);
}

.choice-card-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-sm);
    flex-wrap: wrap;
}

/* Eingabefelder */
.form-fields {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-sm);
}

.form-field label {
    display: block;
    font-size: var(--fs-sm);
    font-weight: 600;
    margin-bottom: 0.35rem;
    color: var(--color-navy);
}

.form-field .optional {
    font-weight: 400;
    color: var(--color-text-muted);
}

.form-field input,
.form-field textarea {
    width: 100%;
    font: inherit;
    color: var(--color-text);
    padding: 0.8rem 1rem;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius);
    background: var(--color-bg-alt);
    transition: border-color var(--t-fast), background-color var(--t-fast), box-shadow var(--t-fast);
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--color-blue);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(11, 112, 245, 0.14);
}

.form-field input.has-error,
.form-field textarea.has-error {
    border-color: #e0356b;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: var(--fs-sm);
    color: var(--color-text-light);
    cursor: pointer;
}

.checkbox-label input {
    margin-top: 3px;
    width: 17px;
    height: 17px;
    accent-color: var(--color-blue);
    flex-shrink: 0;
}

.funnel-error {
    color: #e0356b;
    font-size: var(--fs-sm);
    font-weight: 500;
    margin-top: var(--sp-sm);
}

.funnel-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--sp-sm);
    margin-top: var(--sp-lg);
}

/* Honeypot-Feld für Menschen unsichtbar */
.hp-field {
    position: absolute !important;
    left: -9999px !important;
    opacity: 0;
    height: 0;
    width: 0;
}

/* Schritt-Übergänge */
.funnel-step.is-active {
    animation: stepIn 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes stepIn {
    from { opacity: 0; transform: translateX(24px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* Erfolgsmeldung */
.funnel-success {
    text-align: center;
    padding: var(--sp-xl) var(--sp-sm);
    animation: stepIn 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    margin: 0 auto var(--sp-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(41, 196, 169, 0.12);
    color: var(--color-mint);
    animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s both;
}

.success-icon svg {
    width: 34px;
    height: 34px;
}

@keyframes popIn {
    from { transform: scale(0.4); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}

.funnel-success p {
    color: var(--color-text-light);
    max-width: 380px;
    margin: 0 auto;
}

/* --------------------------------------------------------------------
   16. FAQ
   -------------------------------------------------------------------- */
.faq-list {
    max-width: 800px;
    margin: var(--sp-xl) auto 0;
}

.faq-item {
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 0 var(--sp-md);
    margin-bottom: 0.8rem;
    background: var(--color-white);
    transition: border-color var(--t-fast), box-shadow var(--t-fast);
}

.faq-item[open] {
    border-color: rgba(11, 112, 245, 0.4);
    box-shadow: var(--shadow-sm);
}

.faq-item summary {
    cursor: pointer;
    font-weight: 600;
    font-family: var(--font-display);
    padding: 1.1rem 2.2rem 1.1rem 0;
    position: relative;
    list-style: none;
    color: var(--color-navy);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(11, 112, 245, 0.09);
    color: var(--color-blue);
    font-size: 1.2rem;
    font-weight: 500;
    transition: transform var(--t-norm), background var(--t-fast);
}

.faq-item[open] summary::after {
    content: '−';
    transform: translateY(-50%) rotate(180deg);
    background: var(--color-blue);
    color: #fff;
}

.faq-answer {
    padding: 0 0 1.2rem;
    color: var(--color-text-light);
}

/* --------------------------------------------------------------------
   17. FOOTER
   -------------------------------------------------------------------- */
.site-footer {
    background: var(--color-navy-deep);
    color: rgba(255, 255, 255, 0.75);
    padding-top: var(--sp-2xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-xl);
}

.site-footer h4 {
    color: #fff;
    margin-bottom: var(--sp-sm);
    font-size: var(--fs-base);
}

.site-footer a {
    color: rgba(255, 255, 255, 0.7);
}

.site-footer a:hover {
    color: #fff;
}

.site-footer ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-brand p {
    margin-top: var(--sp-sm);
    font-size: var(--fs-sm);
    max-width: 320px;
}

.footer-contact address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    font-size: var(--fs-sm);
}

.footer-trust-note {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: var(--sp-md);
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
    margin-top: var(--sp-xl);
    padding: var(--sp-md) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, 0.5);
}

/* --------------------------------------------------------------------
   18. SCROLL-REVEAL-ANIMATIONEN
   -------------------------------------------------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
}

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

/* Gestaffelte Themen-Karten */
.topics-grid .topic-card:nth-child(4n+2) { --reveal-delay: 60ms; }
.topics-grid .topic-card:nth-child(4n+3) { --reveal-delay: 120ms; }
.topics-grid .topic-card:nth-child(4n+4) { --reveal-delay: 180ms; }

/* --------------------------------------------------------------------
   18b. UNTERSEITEN (Leistungs-Detailseiten, Vorlage: leistungen/seo.html)
   -------------------------------------------------------------------- */
.subpage-hero {
    position: relative;
    padding: calc(74px + 3rem) 0 3.5rem;
    background: linear-gradient(160deg, var(--color-navy-deep) 0%, var(--color-navy) 60%, #2c3a78 100%);
    color: #fff;
    overflow: hidden;
}

.subpage-hero h1 {
    color: #fff;
    font-size: clamp(1.9rem, 5vw, 2.9rem);
    max-width: 800px;
}

.subpage-hero .hero-subtitle {
    max-width: 680px;
}

.breadcrumb {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--sp-md);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.75);
}

.breadcrumb a:hover {
    color: #fff;
}

.breadcrumb .sep {
    opacity: 0.5;
}

/* Häkchen-Liste (Leistungsumfang, Vorteile) */
.check-list {
    display: grid;
    gap: 0.65rem;
    margin: var(--sp-md) 0;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    color: var(--color-text-light);
}

.check-list li::before {
    content: '✓';
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    background: rgba(41, 196, 169, 0.14);
    color: var(--color-mint);
    margin-top: 2px;
}

/* Zweispalter Text + Aside auf Unterseiten */
.subpage-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-xl);
    align-items: start;
}

@media (min-width: 1024px) {
    .subpage-split {
        grid-template-columns: 1.2fr 0.8fr;
        gap: var(--sp-2xl);
    }
}

.subpage-split h2 {
    text-align: left;
}

.subpage-split .section-subtitle {
    margin-left: 0;
}

.aside-card {
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--sp-lg);
    position: sticky;
    top: calc(74px + 1.5rem);
}

.aside-card h3 {
    margin-bottom: var(--sp-sm);
}

.aside-card p {
    color: var(--color-text-light);
    font-size: var(--fs-sm);
    margin-bottom: var(--sp-md);
}

/* CTA-Band am Seitenende */
.cta-band {
    position: relative;
    background: linear-gradient(165deg, var(--color-navy-deep), var(--color-navy) 70%);
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.cta-band h2 {
    color: #fff;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-band p {
    color: rgba(255, 255, 255, 0.75);
    max-width: 560px;
    margin: 0 auto var(--sp-lg);
    font-size: var(--fs-lg);
}

.cta-band .cta-trust {
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, 0.65);
    margin: var(--sp-md) auto 0;
}

/* --------------------------------------------------------------------
   19. UTILITIES & ACCESSIBILITY
   -------------------------------------------------------------------- */
/* hidden-Attribut gewinnt immer – auch gegen display-Regeln von Klassen */
[hidden] {
    display: none !important;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Reduzierte Bewegung respektieren (Barrierefreiheit + CWV) */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* --------------------------------------------------------------------
   20. MEDIA QUERIES (Mobile-First aufwärts)
   -------------------------------------------------------------------- */

/* Tablet (768px+) */
@media (min-width: 768px) {
    :root {
        --container-pad: 2rem;
    }

    h1 { font-size: var(--fs-4xl); }
    h2 { font-size: var(--fs-3xl); }

    .topics-grid { grid-template-columns: repeat(2, 1fr); }
    .cases-grid { grid-template-columns: repeat(3, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }

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

    .form-fields { grid-template-columns: repeat(2, 1fr); }
    .form-field-full { grid-column: 1 / -1; }

    .funnel-form { padding: var(--sp-xl); }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
    section { padding: var(--section-pad-lg); }

    .mobile-nav-toggle { display: none; }

    .nav-list {
        display: flex !important;
        align-items: center;
        gap: var(--sp-lg);
        position: static;
        background: none;
        padding: 0;
        font-size: var(--fs-base);
    }

    .hero {
        padding: calc(74px + 5rem) 0 6rem;
    }

    .hero-grid {
        grid-template-columns: 1.05fr 0.95fr;
        align-items: center;
    }

    .topics-grid { grid-template-columns: repeat(4, 1fr); }
    .process-steps { grid-template-columns: repeat(4, 1fr); }
    .about-grid { grid-template-columns: 0.85fr 1.15fr; gap: var(--sp-2xl); }
    .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
    .funnel-grid { grid-template-columns: 0.9fr 1.1fr; align-items: start; gap: var(--sp-2xl); }
}

/* Large Desktop (1280px+) */
@media (min-width: 1280px) {
    :root {
        --container-pad: 2.5rem;
    }
}

