/* ============================================
   VOYANE — Style System
   Font: Manrope | Brand: #00003D
   Nav/Hero: ADDITIVE+ cinematic style
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap');

/* ── Variables ── */
:root {
    --navy:        #00003D;
    --navy-mid:    #0a0a5c;
    --navy-dark:   #080820;
    --gold:        #ffb73f;
    --gold-light:  #ffd080;
    --white:       #FFFFFF;
    --off-white:   #F8F9FC;
    --gray-50:     #F5F6FA;
    --gray-100:    #EAECF0;
    --gray-300:    #D0D5DD;
    --gray-500:    #667085;
    --gray-700:    #344054;
    --red:         #E53E3E;
    --red-light:   #FEF2F2;
    --amber:       #D97706;
    --green:       #16A34A;

    --r-sm:   8px;
    --r-md:   12px;
    --r-lg:   16px;
    --r-xl:   24px;
    --r-full: 9999px;

    --sh-sm: 0 1px 4px rgba(0,0,61,.08);
    --sh-md: 0 4px 16px rgba(0,0,61,.12);
    --sh-lg: 0 12px 40px rgba(0,0,61,.16);
    --sh-xl: 0 24px 60px rgba(0,0,61,.22);

    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --t:    all 0.3s var(--ease);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Manrope', -apple-system, sans-serif;
    font-size: 15px;
    line-height: 1.65;
    color: var(--navy);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { max-width: 100%; height: auto; display: block; }

/* ── Typography ── */
h1, h2 { font-size: 45px; font-weight: 800; line-height: 1.1; letter-spacing: -.03em; color: var(--navy); }
h3 { font-size: 20px; font-weight: 700; line-height: 1.3; color: var(--navy); }

p.subtitel  { font-size: 20px; font-weight: 400; line-height: 1.6; color: var(--gray-500); }
p.paragraph { font-size: 15px; font-weight: 400; line-height: 1.65; color: var(--gray-500); }

@media (max-width: 768px) {
    h1, h2 { font-size: 30px; }
    p.subtitel { font-size: 17px; }
}

/* ── Layout ── */
.container {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}
@media (min-width: 768px) { .container { padding: 0 48px; } }

/* ── Section badge ── */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(0,0,61,.06);
    border-radius: var(--r-full);
    font-size: 12px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.section-badge svg { width: 13px; height: 13px; }

/* ==============================================
   NAVIGATION — Logo left, mega-menu dropdowns
   ============================================== */
#main-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0;
    transition: background .4s var(--ease), border-color .4s;
}

#main-nav.scrolled {
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-100);
    box-shadow: 0 2px 12px rgba(0,0,61,.06);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 60px;
}
@media (max-width: 768px) { .nav-wrap { padding: 0 20px; } }

/* Left group: logo + links */
.nav-left {
    display: flex;
    align-items: center;
    gap: 36px;
}

/* Logo */
.nav-logo {
    font-size: 20px;
    font-weight: 800;
    color: rgba(255,255,255,.95);
    letter-spacing: -.04em;
    flex-shrink: 0;
    transition: color .3s;
    white-space: nowrap;
}
#main-nav.scrolled .nav-logo { color: var(--navy); }

/* Nav links list */
.nav-links {
    display: none;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0; padding: 0;
}
@media (min-width: 1024px) { .nav-links { display: flex; } }

.nav-item { position: relative; }

/* All nav links & buttons share the same look */
.nav-link,
.nav-link-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,.80);
    letter-spacing: .01em;
    border-radius: 8px;
    transition: color .2s, background .2s;
    white-space: nowrap;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}
.nav-link:hover,
.nav-link-btn:hover {
    color: rgba(255,255,255,1);
    background: rgba(255,255,255,.10);
}
#main-nav.scrolled .nav-link,
#main-nav.scrolled .nav-link-btn {
    color: var(--gray-700);
}
#main-nav.scrolled .nav-link:hover,
#main-nav.scrolled .nav-link-btn:hover {
    color: var(--navy);
    background: var(--gray-50);
}
/* Active state when dropdown is open */
.nav-item.open > .nav-link-btn {
    color: white;
    background: rgba(255,255,255,.12);
}
#main-nav.scrolled .nav-item.open > .nav-link-btn {
    color: var(--navy);
    background: var(--gray-50);
}

.nav-chevron {
    width: 13px; height: 13px;
    transition: transform .25s var(--ease);
    flex-shrink: 0;
}
.nav-item.open .nav-chevron { transform: rotate(180deg); }

/* ── Mega-menu dropdown ── */
.nav-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    min-width: 440px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,61,.14), 0 0 0 1px rgba(0,0,61,.06);
    opacity: 0;
    transform: translateY(-8px) scale(.98);
    pointer-events: none;
    transition: opacity .22s var(--ease), transform .22s var(--ease);
    transform-origin: top left;
}
/* Invisible bridge so mouse can travel from button to dropdown */
.nav-dropdown::before {
    content: '';
    position: absolute;
    top: -16px; left: 0; right: 0;
    height: 16px;
}
.nav-item.open .nav-dropdown {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.nav-dropdown-inner {
    padding: 20px;
}

.nav-dropdown-header {
    padding-bottom: 14px;
    margin-bottom: 14px;
    border-bottom: 1px solid var(--gray-100);
}
.nav-dropdown-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: .10em;
    display: block;
    margin-bottom: 4px;
}
.nav-dropdown-desc {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.5;
}

.nav-dropdown-list {
    list-style: none;
    margin: 0; padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.nav-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    transition: background .15s;
    color: var(--navy);
    text-decoration: none;
}
.nav-dropdown-item:hover {
    background: var(--gray-50);
}
.nav-dropdown-item--more {
    margin-top: 4px;
    padding-top: 12px;
    border-top: 1px solid var(--gray-100);
}
.nav-dropdown-item--more strong {
    color: var(--navy);
    font-size: 13px;
}

.nav-dropdown-icon {
    width: 34px; height: 34px;
    background: rgba(0,0,61,.05);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: background .15s;
}
.nav-dropdown-icon svg {
    width: 15px; height: 15px;
    stroke: var(--navy);
}
.nav-dropdown-item:hover .nav-dropdown-icon {
    background: rgba(0,0,61,.10);
}

.nav-dropdown-item-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.nav-dropdown-item-text strong {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
}
.nav-dropdown-item-text span {
    font-size: 12px;
    color: var(--gray-500);
    font-weight: 400;
}

/* Right: contact link */
.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.nav-contact-link {
    display: none;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,.80);
    padding: 8px 16px;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: var(--r-full);
    transition: var(--t);
    white-space: nowrap;
}
.nav-contact-link svg { width: 14px; height: 14px; flex-shrink: 0; }
.nav-contact-link:hover {
    color: white;
    background: rgba(255,255,255,.10);
    border-color: rgba(255,255,255,.45);
}
#main-nav.scrolled .nav-contact-link {
    color: var(--navy);
    border-color: var(--gray-300);
}
#main-nav.scrolled .nav-contact-link:hover {
    background: var(--navy);
    color: white;
    border-color: var(--navy);
}
@media (min-width: 1024px) { .nav-contact-link { display: flex; } }

/* Mobile menu button */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    cursor: pointer;
}
@media (min-width: 1024px) { .mobile-menu-btn { display: none; } }

.menu-bar {
    display: block;
    width: 22px; height: 2px;
    background: rgba(255,255,255,.9);
    border-radius: 2px;
    transition: var(--t);
}
#main-nav.scrolled .menu-bar { background: var(--navy); }

/* Mobile menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 12px 20px 20px;
    background: rgba(0,0,30,.96);
    backdrop-filter: blur(20px);
    max-height: calc(100vh - 60px);
    overflow-y: auto;
}
#main-nav.scrolled .mobile-menu { background: white; }
.mobile-menu.open { display: flex; }

.mobile-section {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
    margin-bottom: 4px;
}
#main-nav.scrolled .mobile-section { border-bottom-color: var(--gray-100); }

.mobile-section-title {
    font-size: 10px;
    font-weight: 700;
    color: rgba(255,255,255,.35);
    text-transform: uppercase;
    letter-spacing: .12em;
    padding: 4px 0 8px;
}
#main-nav.scrolled .mobile-section-title { color: var(--gray-500); }

.mobile-link {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,.75);
    padding: 9px 0;
    display: block;
    transition: color .2s;
}
.mobile-link:hover { color: white; }
.mobile-link--top {
    padding: 14px 0 10px;
    font-weight: 600;
    font-size: 15px;
    color: rgba(255,255,255,.9);
}
#main-nav.scrolled .mobile-link { color: var(--gray-700); }
#main-nav.scrolled .mobile-link:hover { color: var(--navy); }
#main-nav.scrolled .mobile-link--top { color: var(--navy); }

.mobile-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 14px;
    padding: 12px 28px;
    background: var(--navy);
    color: white;
    font-size: 14px;
    font-weight: 700;
    border-radius: var(--r-full);
    letter-spacing: .02em;
}
#main-nav.scrolled .mobile-cta { background: var(--navy); }


/* ==============================================
   HERO — ADDITIVE+ full-screen cinematic
   ============================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 620px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 30%;
    filter: brightness(.88) saturate(.80);
}

/* Soft multi-stop overlay — gentle fade, no harsh dark bands */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg,
            rgba(0,0,15,.18) 0%,
            rgba(0,0,20,.14) 25%,
            rgba(0,0,25,.28) 55%,
            rgba(0,0,35,.52) 80%,
            rgba(0,0,45,.65) 100%
        );
}

/* Very subtle vignette — barely there */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        radial-gradient(ellipse at 50% 40%, transparent 40%, rgba(0,0,20,.18) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Centered hero text */
.hero-center {
    text-align: center;
    padding: 80px 24px 0;
    max-width: 820px;
}

/* Large headline — white + gold accent */
.hero-title {
    font-size: clamp(30px, 4.2vw, 56px);
    font-weight: 800;
    line-height: 1.07;
    letter-spacing: -.035em;
    color: var(--white);
    margin-bottom: 24px;
}
.hero-title em {
    font-style: normal;
    color: var(--gold);
}

.hero-sub {
    font-size: clamp(15px, 1.6vw, 19px);
    font-weight: 400;
    color: rgba(255,255,255,.72);
    margin-bottom: 40px;
    letter-spacing: .01em;
}

/* CTA buttons: pill shaped */
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    align-items: center;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    background: var(--white);
    color: var(--navy-dark);
    font-size: 14px;
    font-weight: 700;
    border-radius: var(--r-full);
    letter-spacing: .02em;
    transition: var(--t);
    white-space: nowrap;
}
.hero-btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,.30);
}

.hero-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 30px;
    background: transparent;
    color: rgba(255,255,255,.88);
    font-size: 14px;
    font-weight: 700;
    border: 1.5px solid rgba(255,255,255,.45);
    border-radius: var(--r-full);
    letter-spacing: .02em;
    transition: var(--t);
    white-space: nowrap;
}
.hero-btn-outline:hover {
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.70);
    color: white;
}

/* Calculator card — positioned bottom-right on desktop */
.hero-calculator {
    position: absolute;
    right: 48px;
    bottom: 48px;
    z-index: 4;
    width: 400px;
    display: none;
}
@media (min-width: 1100px) { .hero-calculator { display: block; } }

/* ==============================================
   INTRO DARK BAND — below hero
   ============================================== */
.intro-band {
    background: var(--navy);
    padding: 80px 0 72px;
    text-align: center;
}

.intro-band-text {
    font-size: clamp(18px, 2.2vw, 26px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.5;
    letter-spacing: -.01em;
    max-width: 820px;
    margin: 0 auto 20px;
}

.intro-band-sub {
    font-size: 15px;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: .03em;
}

/* ==============================================
   CALCULATOR CARD (shared)
   ============================================== */
.calculator-card {
    background: white;
    border-radius: var(--r-xl);
    padding: 28px;
    box-shadow: var(--sh-xl);
}

.calculator-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}
.calculator-icon {
    width: 34px;
    height: 34px;
    background: var(--navy);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.calculator-icon svg { width: 17px; height: 17px; stroke: white; }
.calculator-title { font-size: 16px; font-weight: 700; color: var(--navy); line-height: 1.3; }
.calculator-description { font-size: 13px; color: var(--gray-500); margin-bottom: 20px; line-height: 1.5; }

.range-container { margin-bottom: 18px; }
.range-label { display: block; font-size: 11px; font-weight: 700; color: var(--gray-500); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 10px; }

.range-slider {
    -webkit-appearance: none;
    width: 100%; height: 4px;
    border-radius: 2px;
    background: var(--gray-100);
    outline: none;
    margin-bottom: 10px;
    cursor: pointer;
}
.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px; height: 20px;
    border-radius: 50%;
    background: var(--navy);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,61,.30);
    transition: transform .2s;
}
.range-slider::-webkit-slider-thumb:hover { transform: scale(1.2); }
.range-slider::-moz-range-thumb {
    width: 20px; height: 20px;
    border-radius: 50%;
    background: var(--navy);
    border: none;
    box-shadow: 0 2px 6px rgba(0,0,61,.30);
}

.range-value { font-size: 24px; font-weight: 800; color: var(--navy); letter-spacing: -.03em; }

.calculator-results { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.result-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 15px;
    background: var(--red-light);
    border-radius: var(--r-sm);
}
.result-label { font-size: 12px; font-weight: 500; color: var(--gray-500); }
.result-value { font-size: 14px; font-weight: 700; color: var(--red); font-variant-numeric: tabular-nums; }

.calculator-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 13px;
    background: var(--navy);
    color: white;
    font-size: 14px;
    font-weight: 700;
    border-radius: var(--r-md);
    transition: var(--t);
    width: 100%;
}
.calculator-cta:hover { background: var(--navy-mid); transform: translateY(-1px); box-shadow: var(--sh-md); }

/* ==============================================
   LOGO MARQUEE
   ============================================== */
.logo-marquee { padding: 28px 0; border-bottom: 1px solid var(--gray-100); overflow: hidden; }
.marquee-header { text-align: center; margin-bottom: 18px; }
.marquee-title { font-size: 12px; font-weight: 700; color: var(--gray-500); text-transform: uppercase; letter-spacing: .09em; }

.marquee-wrapper { position: relative; overflow: hidden; }
.marquee-wrapper::before, .marquee-wrapper::after {
    content: '';
    position: absolute; top: 0; bottom: 0;
    width: 80px; z-index: 1; pointer-events: none;
}
.marquee-wrapper::before { left: 0; background: linear-gradient(to right, white, transparent); }
.marquee-wrapper::after  { right: 0; background: linear-gradient(to left, white, transparent); }

.marquee-track { display: flex; gap: 48px; animation: marquee 30s linear infinite; width: max-content; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.marquee-item {
    display: flex; align-items: center; gap: 9px;
    white-space: nowrap; color: var(--gray-500);
    font-size: 14px; font-weight: 600;
}
.marquee-item svg { width: 17px; height: 17px; opacity: .45; flex-shrink: 0; }

/* ==============================================
   COMPARISON
   ============================================== */
.comparison-section { padding: 100px 0; background: white; }
.comparison-header { text-align: center; margin-bottom: 52px; }
.comparison-header p.subtitel { max-width: 600px; margin: 16px auto 0; }

.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: var(--r-lg);
    box-shadow: var(--sh-lg);
    border: 1px solid var(--gray-100);
}
.comparison-table { width: 100%; border-collapse: collapse; min-width: 680px; }
.comparison-table thead tr { background: var(--navy); }
.comparison-table thead th {
    padding: 15px 20px; text-align: left;
    font-size: 11px; font-weight: 700;
    color: rgba(255,255,255,.55);
    text-transform: uppercase; letter-spacing: .10em;
}
.comparison-table tbody tr { border-bottom: 1px solid var(--gray-100); transition: background .15s; }
.comparison-table tbody tr:last-child { border-bottom: none; }
.comparison-table tbody tr:hover:not(.highlight-row) { background: var(--gray-50); }
.comparison-table tbody td { padding: 17px 20px; font-size: 14px; vertical-align: middle; }

.provider-cell { display: flex; align-items: center; gap: 10px; }
.provider-icon {
    width: 28px; height: 28px;
    background: var(--navy); border-radius: 6px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.provider-icon svg { width: 13px; height: 13px; stroke: white; }
.provider-name { font-weight: 600; color: var(--navy); white-space: pre-line; font-size: 14px; }

.commission-value { font-weight: 700; font-size: 14px; }
.commission-value.high   { color: var(--red); }
.commission-value.medium { color: var(--amber); }
.commission-value.low    { color: var(--green); }

.additional-costs { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: var(--gray-500); line-height: 1.5; }
.additional-costs svg { width: 15px; height: 15px; stroke: var(--amber); flex-shrink: 0; margin-top: 2px; stroke-linecap: round; stroke-linejoin: round; }

.data-cell { display: flex; align-items: center; gap: 8px; }
.data-cell svg { width: 15px; height: 15px; flex-shrink: 0; }
.data-cell svg.x { stroke: var(--red); }
.data-cell svg.check { stroke: var(--green); }
.data-text { font-size: 13px; font-weight: 500; }
.data-text.error { color: var(--gray-500); }
.data-text.success { color: var(--green); font-weight: 600; }

.highlight-row { background: rgba(0,0,61,.03) !important; }
.highlight-row td { border-top: 2px solid rgba(0,0,61,.10); }
.highlight-row .provider-name { font-weight: 800; }

.key-takeaway { margin-top: 28px; background: var(--navy); border-radius: var(--r-lg); padding: 26px 30px; }
.key-takeaway-content { display: flex; gap: 18px; align-items: flex-start; }
.key-takeaway-icon { width: 38px; height: 38px; background: rgba(255,255,255,.12); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.key-takeaway-icon svg { width: 18px; height: 18px; stroke: white; }
.key-takeaway-title { font-size: 15px; font-weight: 700; color: white; margin-bottom: 5px; }
.key-takeaway-text { font-size: 13px; color: rgba(255,255,255,.68); line-height: 1.6; }

/* Mobile comparison cards */
.comparison-mobile { display: none; }
@media (max-width: 700px) {
    .comparison-table-wrapper { overflow: visible; box-shadow: none; border: none; }
    .comparison-table { display: none; }
    .comparison-mobile { display: flex; flex-direction: column; gap: 12px; }
    .comparison-card { background: white; border: 1px solid var(--gray-100); border-radius: var(--r-lg); padding: 18px; box-shadow: var(--sh-sm); }
    .comparison-card.highlight { border-color: var(--navy); background: rgba(0,0,61,.03); }
    .comparison-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; padding-bottom: 12px; border-bottom: 1px solid var(--gray-100); }
    .comparison-card-title { font-size: 15px; font-weight: 700; color: var(--navy); }
    .comparison-card-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 9px; }
    .comparison-card-label { font-size: 12px; color: var(--gray-500); font-weight: 500; }
    .comparison-card-value { font-size: 14px; font-weight: 700; }
    .comparison-card-value.high { color: var(--red); }
    .comparison-card-value.medium { color: var(--amber); }
    .comparison-card-value.low { color: var(--green); }
    .comparison-card-detail { margin-bottom: 9px; }
    .comparison-card-detail-label { font-size: 11px; font-weight: 700; color: var(--gray-500); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 5px; }
    .comparison-card-detail-text { display: flex; gap: 7px; align-items: flex-start; font-size: 13px; color: var(--gray-500); }
    .comparison-card-detail-text svg { width: 13px; height: 13px; stroke: var(--amber); flex-shrink: 0; margin-top: 2px; }
    .comparison-card-icon { width: 26px; height: 26px; background: var(--navy); border-radius: 6px; display: flex; align-items: center; justify-content: center; }
    .comparison-card-icon svg { width: 13px; height: 13px; stroke: white; }
}

/* ==============================================
   BENEFITS
   ============================================== */
.benefits-section { padding: 100px 0; background: var(--off-white); }
.benefits-header { text-align: center; margin-bottom: 56px; }
.benefits-header p.subtitel { max-width: 580px; margin: 14px auto 0; }

.benefits-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 640px)  { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .benefits-grid { grid-template-columns: repeat(3, 1fr); } }

.benefit-card {
    background: white;
    border-radius: var(--r-xl);
    padding: 36px 30px;
    box-shadow: var(--sh-sm);
    border: 1px solid var(--gray-100);
    transition: var(--t);
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }

.benefit-stat { font-size: 46px; font-weight: 800; color: var(--navy); letter-spacing: -.04em; line-height: 1; margin-bottom: 6px; }
.benefit-stat-sub { font-size: 12px; font-weight: 700; color: var(--gray-500); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 22px; }
.benefit-card h3 { margin-bottom: 10px; font-size: 18px; }

/* ==============================================
   LANDINGPAGES
   ============================================== */
.landingpages-section { padding: 100px 0; background: white; }
.landingpages-header { text-align: center; margin-bottom: 60px; }
.landingpages-header p.subtitel { max-width: 580px; margin: 14px auto 0; }

.landingpages-grid { display: grid; grid-template-columns: 1fr; gap: 28px; }
@media (min-width: 768px) { .landingpages-grid { grid-template-columns: 1fr 1fr; } }

.landingpage-card { border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--gray-100); box-shadow: var(--sh-md); transition: var(--t); }
.landingpage-card:hover { transform: translateY(-4px); box-shadow: var(--sh-xl); }

.landingpage-preview { height: 200px; background: var(--navy); position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.landingpage-preview::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,.05) 0%, transparent 60%); }
.landingpage-preview-content { text-align: center; color: white; padding: 24px; z-index: 1; }
.landingpage-preview-title { font-size: 20px; font-weight: 800; margin-bottom: 6px; }
.landingpage-preview-sub { font-size: 13px; opacity: .6; }

.landingpage-info { padding: 24px; }
.landingpage-info h3 { margin-bottom: 8px; font-size: 17px; }
.landingpage-info p.paragraph { color: var(--gray-500); margin-bottom: 14px; }
.landingpage-tag { display: inline-flex; align-items: center; padding: 4px 10px; background: var(--navy); color: white; border-radius: var(--r-full); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; }

/* ==============================================
   STATISTICS
   ============================================== */
.statistics-section { padding: 80px 0; background: var(--navy); }
.statistics-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
@media (min-width: 768px) { .statistics-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-item { text-align: center; }
.stat-value { font-size: 42px; font-weight: 800; color: white; letter-spacing: -.04em; line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 14px; color: rgba(255,255,255,.58); font-weight: 500; }

/* ==============================================
   PROCESS
   ============================================== */
.process-section { padding: 100px 0; background: var(--off-white); }
.process-header { text-align: center; margin-bottom: 60px; }
.process-header p.subtitel { max-width: 540px; margin: 14px auto 0; }

.process-steps { max-width: 780px; margin: 0 auto; }
.process-step { display: flex; gap: 28px; align-items: flex-start; padding-bottom: 40px; }
.process-step:last-child { padding-bottom: 0; }
.process-step-line { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.process-step-number { width: 44px; height: 44px; border-radius: 50%; background: var(--navy); color: white; font-size: 16px; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.process-connector { width: 2px; flex: 1; background: var(--gray-200); margin-top: 8px; min-height: 32px; }
.process-step:last-child .process-connector { display: none; }
.process-step-content { padding-top: 10px; }
.process-step-content h3 { margin-bottom: 8px; font-size: 18px; }
.process-step-content p.paragraph { color: var(--gray-500); }

/* ==============================================
   TESTIMONIALS
   ============================================== */
.testimonials-section { padding: 100px 0; background: white; }
.testimonials-header { text-align: center; margin-bottom: 52px; }
.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
@media (min-width: 768px)  { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card { background: white; border: 1px solid var(--gray-100); border-radius: var(--r-xl); padding: 26px; box-shadow: var(--sh-sm); }
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.testimonial-stars span { color: #F59E0B; font-size: 15px; }
.testimonial-text { font-size: 15px; color: var(--gray-700); line-height: 1.65; margin-bottom: 18px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 11px; }
.testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; color: white; flex-shrink: 0; }
.testimonial-name { font-size: 14px; font-weight: 700; color: var(--navy); }
.testimonial-role { font-size: 12px; color: var(--gray-500); }

/* ==============================================
   CTA SECTION
   ============================================== */
.cta-section { padding: 180px 0 200px; background: white; text-align: center; }
.cta-inner { max-width: 620px; margin: 0 auto; }
.cta-inner h2 { margin-bottom: 16px; }
.cta-inner p.subtitel { margin-bottom: 12px; }
.cta-details { font-size: 14px; color: var(--gray-500); font-weight: 500; letter-spacing: .02em; margin-bottom: 38px; }

.cta-buttons { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; align-items: center; }

.cta-btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 15px 32px;
    background: var(--navy); color: white;
    font-size: 15px; font-weight: 700;
    border-radius: var(--r-full); border: 2px solid var(--navy);
    transition: var(--t);
}
.cta-btn-primary:hover { background: var(--navy-mid); transform: translateY(-2px); box-shadow: var(--sh-lg); }

.cta-btn-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 32px;
    background: transparent; color: var(--navy);
    font-size: 15px; font-weight: 700;
    border-radius: var(--r-full); border: 2px solid var(--gray-300);
    transition: var(--t);
}
.cta-btn-secondary:hover { border-color: var(--navy); transform: translateY(-2px); }

/* ==============================================
   FOOTER
   ============================================== */
.site-footer { background: var(--gray-50); border-top: 1px solid var(--gray-100); padding: 60px 0 36px; }
.footer-inner { background: white; border-radius: var(--r-xl); border: 1px solid var(--gray-100); padding: 44px; margin-bottom: 28px; box-shadow: var(--sh-sm); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 36px; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }

.footer-brand-logo { font-size: 21px; font-weight: 800; color: var(--navy); letter-spacing: -.04em; margin-bottom: 12px; }
.footer-brand-desc { font-size: 14px; color: var(--gray-500); line-height: 1.65; margin-bottom: 22px; }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-item { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--gray-500); }
.footer-contact-item svg { width: 14px; height: 14px; stroke: var(--gray-500); flex-shrink: 0; }

.footer-col-title { font-size: 12px; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: .09em; margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-link { font-size: 14px; color: var(--gray-500); transition: color .2s; font-weight: 500; }
.footer-link:hover { color: var(--navy); }

.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-bottom-text { font-size: 13px; color: var(--gray-500); }
.footer-legal { display: flex; gap: 18px; }
.footer-legal a { font-size: 13px; color: var(--gray-500); transition: color .2s; }
.footer-legal a:hover { color: var(--navy); }

/* ==============================================
   SCROLL ANIMATIONS
   ============================================== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: .10s; }
.fade-up-delay-2 { transition-delay: .20s; }
.fade-up-delay-3 { transition-delay: .30s; }
.fade-up-delay-4 { transition-delay: .40s; }
/* ==============================================
   HERO — Two-column side-by-side layout
   ============================================== */

/* Override hero-content to be a two-column flex row */
.hero-content {
    position: relative;
    z-index: 3;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 48px;
    gap: 48px;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    padding-top: 80px; /* nav offset */
}

/* Left text column */
.hero-left {
    flex: 1;
    min-width: 0;
    text-align: left;
}

.hero-left .hero-title { text-align: left; }
.hero-left .hero-sub   { text-align: left; }
.hero-left .hero-actions { justify-content: flex-start; }

/* Right calculator column */
.hero-right {
    flex: 0 0 400px;
    width: 400px;
}

/* Remove old absolute-positioned calculator */
.hero-calculator { display: none !important; }

/* Responsive: stack on smaller screens */
@media (max-width: 1080px) {
    .hero-content {
        flex-direction: column;
        align-items: center;
        padding: 100px 24px 40px;
        gap: 40px;
    }
    .hero-left { text-align: center; }
    .hero-left .hero-title { text-align: center; }
    .hero-left .hero-sub   { text-align: center; }
    .hero-left .hero-actions { justify-content: center; }
    .hero-right { flex: none; width: 100%; max-width: 460px; }
}

/* ==============================================
   UNSER SYSTEM — Apple-style sticky scroll
   ============================================== */

.system-section {
    background: white;
    color: var(--navy);
}

/* Intro header — now inside sticky, always visible */
.system-sticky-header {
    text-align: center;
    padding-bottom: 28px;
    flex-shrink: 0;
}
.system-sticky-header h2 {
    color: var(--navy);
    margin: 0 0 10px;
    font-size: clamp(24px, 2.8vw, 38px);
}
.system-sticky-header .subtitel {
    color: var(--gray-500);
    font-size: 16px;
    max-width: 520px;
    margin: 0 auto;
}

/* The tall scrollable wrapper (3 panels tall) */
.system-sticky-wrap {
    height: calc(300vh - 180px);
    position: relative;
}

/* The sticky container — fixed pixel height, always consistent */
.system-sticky {
    position: sticky;
    top: 60px;
    height: 760px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 48px 40px;
}

/* Thin progress bar — inside the container, at the bottom */
.system-progress-bar {
    width: 100%;
    height: 6px;
    background: var(--gray-100);
    flex-shrink: 0;
    position: relative;
    border-radius: 0 0 var(--r-lg) var(--r-lg);
    overflow: hidden;
}
.system-progress-fill {
    position: absolute;
    top: 0; left: 0;
    height: 100%;
    width: 0%;
    background: var(--navy);
    transition: width 0.06s linear;
    border-radius: 0 3px 3px 0;
}

/* Container card — fills all remaining height */
.system-sticky-inner {
    display: flex;
    flex-direction: column;
    flex: 1;
    max-width: 1320px;
    width: 100%;
    min-height: 0;
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--gray-100);
    box-shadow: var(--sh-md);
}

/* Panels row */
.system-panels-row {
    flex: 1;
    display: flex;
    min-height: 0;
}

/* Left text panel — grid so all steps stack in the same cell */
.system-panel-left {
    flex: 0 0 42%;
    display: grid;
    align-items: center;
    padding: 32px 36px 32px 56px;
    position: relative;
}

/* Step navigation dots */
.system-step-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}
.system-step-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-300);
    border: none;
    cursor: pointer;
    transition: all .3s var(--ease);
    padding: 0;
}
.system-step-dot.active {
    background: var(--navy);
    transform: scale(1.4);
}

/* Step text blocks — all in same grid cell, crossfade */
.system-step-text {
    grid-area: 1 / 1;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s cubic-bezier(0.16,1,0.3,1),
                transform 0.5s cubic-bezier(0.16,1,0.3,1);
    pointer-events: none;
}
.system-step-text.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.system-step-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 10px;
    opacity: .5;
}

.system-step-title {
    font-size: clamp(22px, 2.4vw, 32px);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.15;
    letter-spacing: -.03em;
    margin-bottom: 12px;
}

.system-step-desc {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 18px;
    max-width: 380px;
}

.system-feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}
.system-feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
}
.system-feature-list li svg {
    width: 15px;
    height: 15px;
    stroke: var(--navy);
    flex-shrink: 0;
}

.system-step-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: var(--navy);
    color: white;
    font-size: 13px;
    font-weight: 700;
    border-radius: var(--r-full);
    letter-spacing: .02em;
    transition: var(--t);
    align-self: flex-start;
}
.system-step-cta:hover {
    background: var(--navy-mid);
    transform: translateY(-2px);
    box-shadow: var(--sh-lg);
}

/* Right visual panel — grid so all visuals stack in the same cell */
.system-panel-right {
    flex: 0 0 58%;
    display: grid;
    align-items: center;
    justify-items: center;
    padding: 32px 40px 32px 28px;
    background: var(--off-white);
    border-left: 1px solid var(--gray-100);
}

/* All visuals in the same grid cell, crossfade */
.system-visual {
    grid-area: 1 / 1;
    width: 100%;
    max-width: 520px;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s cubic-bezier(0.16,1,0.3,1),
                transform 0.5s cubic-bezier(0.16,1,0.3,1);
    pointer-events: none;
}
.system-visual.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* ── Shared mockup shell ── */
.sys-mockup {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--sh-xl), 0 0 0 1px var(--gray-100);
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
}

.mockup-topbar {
    background: #f0f0f0;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid rgba(0,0,0,.08);
}
.mockup-dot {
    width: 11px; height: 11px;
    border-radius: 50%;
}
.mockup-dot.r { background: #FF5F57; }
.mockup-dot.y { background: #FEBC2E; }
.mockup-dot.g { background: #28C840; }
.mockup-url {
    margin-left: 10px;
    font-size: 12px;
    color: #888;
    font-weight: 500;
}

/* ── Ads dashboard mockup ── */
.ads-dashboard { padding: 20px; }
.ads-kpi-row {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 12px;
    margin-bottom: 20px;
}
.ads-kpi {
    background: #f8f9fc;
    border-radius: 10px;
    padding: 14px 12px;
    border: 1px solid #eaecf0;
}
.ads-kpi-val {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -.03em;
    margin-bottom: 4px;
}
.ads-kpi-lbl { font-size: 11px; color: #667085; font-weight: 500; }

.ads-chart { margin-bottom: 16px; }
.ads-chart-label { font-size: 12px; font-weight: 700; color: #344054; margin-bottom: 10px; text-transform: uppercase; letter-spacing: .06em; }
.ads-bars { display: flex; align-items: flex-end; gap: 6px; height: 80px; }
.ads-bar-wrap { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 4px; height: 100%; justify-content: flex-end; }
.ads-bar { width: 100%; background: #e8eaf6; border-radius: 4px 4px 0 0; transition: height .3s; }
.ads-bar.highlight-bar { background: #00003D; }
.ads-bar-wrap span { font-size: 10px; color: #667085; }

.ads-meta-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.ads-tag {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    background: #eaecf0;
    color: #344054;
}
.ads-tag.active-tag { background: #00003D; color: white; }
.ads-status { margin-left: auto; display: flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 700; color: #16A34A; }
.ads-live-dot { width: 7px; height: 7px; border-radius: 50%; background: #16A34A; animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }

/* ── Landingpage mockup ── */
.lp-preview { }
.lp-hero-strip {
    background: linear-gradient(135deg, #00003D, #1a1a6e);
    padding: 28px 24px;
    text-align: center;
    color: white;
}
.lp-hotel-name { font-size: 20px; font-weight: 800; margin-bottom: 4px; }
.lp-hero-sub { font-size: 13px; opacity: .7; margin-bottom: 12px; }
.lp-hero-pill {
    display: inline-block;
    background: rgba(201,169,110,.9);
    color: #00003D;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
}

.lp-form-area { padding: 20px; }
.lp-form-title { font-size: 15px; font-weight: 700; color: #00003D; margin-bottom: 14px; }
.lp-input-mock {
    background: #f5f6fa;
    border: 1px solid #eaecf0;
    border-radius: 8px;
    padding: 11px 14px;
    font-size: 13px;
    color: #aaa;
    margin-bottom: 10px;
}
.lp-date-row { display: flex; gap: 10px; }
.lp-input-mock.half { flex: 1; }
.lp-submit {
    background: #00003D;
    color: white;
    border-radius: 8px;
    padding: 12px 14px;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    margin-top: 4px;
    margin-bottom: 10px;
}
.lp-trust { font-size: 11px; color: #667085; text-align: center; }

/* ── Automation flow mockup ── */
.auto-flow {
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
}
.auto-node {
    background: #f8f9fc;
    border: 1px solid #eaecf0;
    border-radius: 12px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    position: relative;
}
.auto-node.trigger { border-color: #00003D; border-width: 2px; }
.auto-node-icon {
    width: 34px; height: 34px;
    border-radius: 8px;
    background: #00003D;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.auto-node-icon svg { width: 15px; height: 15px; stroke: white; }
.auto-node-icon.amber { background: #D97706; }
.auto-node-title { font-size: 12px; font-weight: 700; color: #00003D; line-height: 1.3; }
.auto-node-sub   { font-size: 11px; color: #667085; margin-top: 2px; }

/* Badge pill inside node (Trigger / Check) */
.auto-node-badge {
    margin-left: auto;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 9px;
    border-radius: 20px;
    flex-shrink: 0;
    letter-spacing: .03em;
}
.trigger-badge { background: #e8eaf6; color: #00003D; }
.check-badge   { background: #FEF3C7; color: #D97706; }

/* Animated connector line */
.auto-arrow-line {
    width: 2px;
    height: 22px;
    background: linear-gradient(to bottom, #00003D, #D0D5DD);
    margin: 0 auto;
    position: relative;
    flex-shrink: 0;
}
.auto-arrow-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #D0D5DD;
    position: absolute;
    bottom: -3px;
    left: -3px;
}

/* ── New two-column branches ── */
.auto-branches-v2 {
    display: flex;
    gap: 10px;
    width: 100%;
    margin-top: 6px;
}
.auto-branch-v2 {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.auto-branch-header {
    display: flex;
    justify-content: center;
}
.auto-branch-pill {
    font-size: 10px;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 20px;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.auto-branch-pill.yes { background: #DCFCE7; color: #16A34A; }
.auto-branch-pill.no  { background: #FEE2E2; color: #DC2626; }

.auto-mini-arrow {
    text-align: center;
    font-size: 14px;
    color: #D0D5DD;
    line-height: 1;
    margin: 1px 0;
}

/* Small nodes inside branches */
.auto-node.small {
    padding: 9px 11px;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    color: #344054;
}
.auto-node-icon-sm {
    width: 28px; height: 28px;
    border-radius: 7px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.auto-node-icon-sm svg { width: 13px; height: 13px; stroke: white; }
.auto-node-icon-sm.green  { background: #16A34A; }
.auto-node-icon-sm.navy   { background: #00003D; }
.auto-node-icon-sm.amber  { background: #D97706; }

.auto-node-title-sm { font-size: 11px; font-weight: 700; color: #00003D; line-height: 1.3; }
.auto-node-sub-sm   { font-size: 10px; color: #667085; margin-top: 1px; }

.auto-node.success-node  { border-color: #16A34A; }
.auto-node.reminder-node { border-color: #00003D; }
.auto-node.followup-node { border-color: #00003D; }
.auto-node.nudge-node    { border-color: #D97706; }

.auto-result { margin-top: 12px; }
.auto-result-badge {
    background: linear-gradient(135deg, #00003D, #1a1a6e);
    color: white;
    font-size: 13px;
    font-weight: 800;
    padding: 9px 22px;
    border-radius: 30px;
    letter-spacing: -.01em;
}

/* Screenshot image inside Safari frame */
.mockup-screenshot {
    display: block;
    width: 100%;
    height: auto;
    max-height: 360px;
    object-fit: cover;
    object-position: top;
    border-radius: 0 0 10px 10px;
}

/* Responsive: stack on tablet */
@media (max-width: 900px) {
    .system-sticky-wrap { height: auto; }
    .system-sticky {
        position: relative;
        top: auto;
        height: auto;
    }
    .system-sticky-inner { overflow: visible; border: none; box-shadow: none; border-radius: 0; }
    .system-panels-row { flex-direction: column; }
    .system-panel-left {
        flex: none;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 32px;
        padding: 40px 24px 20px 48px;
    }
    .system-panel-right {
        flex: none;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 40px;
        padding: 20px 24px 40px;
        background: var(--off-white);
        border-left: none;
        border-top: 1px solid var(--gray-100);
    }
    /* Reset grid stacking on mobile — show all items normally */
    .system-step-text {
        grid-area: unset;
        opacity: 1;
        transform: none;
        pointer-events: auto;
        transition: none;
    }
    .system-visual {
        grid-area: unset;
        opacity: 1;
        transform: none;
        pointer-events: auto;
        transition: none;
        max-width: 100%;
    }
    .system-step-nav { display: none; }
    .system-progress-bar { display: none; }
}

/* ==============================================
   FOOTER — Dark navy redesign
   ============================================== */

.site-footer {
    background: var(--navy-dark);
    border-top: none;
    padding: 0;
}

.footer-top {
    padding: 72px 0 60px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}
@media (min-width: 640px) {
    .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; }
}

.footer-brand-logo {
    font-size: 22px;
    font-weight: 800;
    color: white;
    letter-spacing: -.04em;
    margin-bottom: 14px;
}

.footer-brand-desc {
    font-size: 14px;
    color: rgba(255,255,255,.50);
    line-height: 1.7;
    margin-bottom: 28px;
}

.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255,255,255,.55);
}
.footer-contact-item svg {
    width: 14px;
    height: 14px;
    stroke: rgba(255,255,255,.35);
    flex-shrink: 0;
}

.footer-col-title {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255,255,255,.35);
    text-transform: uppercase;
    letter-spacing: .10em;
    margin-bottom: 20px;
}

.footer-links { display: flex; flex-direction: column; gap: 12px; }

.footer-link {
    font-size: 14px;
    color: rgba(255,255,255,.55);
    font-weight: 500;
    transition: color .2s;
}
.footer-link:hover { color: white; }

/* Bottom bar */
.footer-bottom {
    padding: 22px 0;
    background: rgba(0,0,0,.25);
}
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom-text {
    font-size: 13px;
    color: rgba(255,255,255,.30);
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a {
    font-size: 13px;
    color: rgba(255,255,255,.30);
    transition: color .2s;
}
.footer-legal a:hover { color: rgba(255,255,255,.70); }

/* Override old footer-inner (not used in new design) */
.footer-inner { display: none; }

/* ==============================================
   CALENDLY BOOKING MODAL
   ============================================== */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,20,.65);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    animation: modalFadeIn .3s forwards;
}
.modal-overlay.open { display: flex; }

.modal-content {
    width: 95%;
    max-width: 1100px;
    height: 85vh;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,61,.25);
    position: relative;
    transform: scale(.96);
    animation: modalScaleIn .3s forwards;
}

.modal-close-btn {
    position: absolute;
    top: 14px; right: 14px;
    z-index: 20;
    width: 36px; height: 36px;
    background: rgba(0,0,0,.07);
    border: none; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background .2s;
}
.modal-close-btn:hover { background: rgba(0,0,0,.14); }
.modal-close-btn svg { width: 16px; height: 16px; stroke: #333; }

/* Loader inside modal */
.modal-loader {
    position: absolute;
    inset: 0;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
    transition: opacity .5s ease-out;
}
.loader-logo {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--navy);
    letter-spacing: -.04em;
    margin-bottom: 20px;
    animation: loaderPulse 2s infinite ease-in-out;
}
.loader-spinner {
    width: 28px; height: 28px;
    border: 3px solid var(--gray-100);
    border-top-color: var(--navy);
    border-radius: 50%;
    animation: loaderSpin 1s linear infinite;
}

#calendlyFrame {
    opacity: 0;
    transition: opacity .5s ease-in;
}

@keyframes modalFadeIn  { to { opacity: 1; } }
@keyframes modalScaleIn { to { transform: scale(1); } }
@keyframes loaderSpin   { to { transform: rotate(360deg); } }
@keyframes loaderPulse  {
    0%, 100% { opacity: .6; transform: scale(.98); }
    50%       { opacity: 1;  transform: scale(1.02); }
}

@media (max-width: 768px) {
    .modal-content { width: 95%; height: 82vh; }
}

/* ==============================================
   SUBPAGE LAYOUT
   ============================================== */

/* ── Sub Hero (4/5 viewport height) ── */
.sub-hero {
    position: relative;
    height: 80vh;
    min-height: 540px;
    max-height: 820px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.sub-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.sub-hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 35%;
    filter: brightness(.82) saturate(.78);
}

.sub-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(160deg,
            rgba(0,0,30,.45) 0%,
            rgba(0,0,20,.20) 45%,
            rgba(0,0,40,.60) 100%
        );
}

.sub-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex: 1;
    padding-top: 60px; /* offset for fixed nav */
}

/* Breadcrumb */
.sub-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,.55);
    margin-bottom: 22px;
}
.sub-breadcrumb a { color: rgba(255,255,255,.55); transition: color .2s; }
.sub-breadcrumb a:hover { color: white; }
.sub-breadcrumb svg { width: 14px; height: 14px; opacity: .45; }
.sub-breadcrumb span { color: rgba(255,255,255,.90); }

/* Hero badge override for dark bg */
.sub-hero-badge {
    background: rgba(255,255,255,.14);
    color: white;
    border: 1px solid rgba(255,255,255,.20);
    margin-bottom: 20px;
}

.sub-hero-title {
    font-size: clamp(26px, 3.2vw, 46px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.035em;
    color: white;
    margin-bottom: 16px;
    max-width: 640px;
}

.sub-hero-sub {
    font-size: clamp(14px, 1.3vw, 16px);
    font-weight: 400;
    color: rgba(255,255,255,.70);
    max-width: 480px;
    line-height: 1.6;
    margin-bottom: 32px;
}

.sub-hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.sub-hero-scroll {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,.70);
    transition: color .2s;
}
.sub-hero-scroll:hover { color: white; }

/* ── Section header (shared across sub-sections) ── */
.sub-section-header {
    text-align: center;
    margin-bottom: 60px;
}
.sub-section-header h2 { margin-bottom: 16px; }
.sub-section-header .subtitel { max-width: 580px; margin: 0 auto; }

/* ── Intro / Stats section ── */
.sub-intro-section {
    padding: 100px 0;
    background: white;
}

.sub-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.sub-stat-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: var(--r-xl);
    padding: 36px 32px;
    text-align: center;
}
.sub-stat-card--accent {
    background: var(--navy);
    border-color: var(--navy);
}
.sub-stat-card--accent .sub-stat-num,
.sub-stat-card--accent .sub-stat-label { color: white; }
.sub-stat-card--accent .sub-stat-desc  { color: rgba(255,255,255,.60); }

.sub-stat-num {
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 800;
    letter-spacing: -.04em;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 10px;
}
.sub-stat-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 12px;
}
.sub-stat-desc {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.55;
}

@media (max-width: 768px) {
    .sub-stats-row { grid-template-columns: 1fr; }
}

/* ── Features grid ── */
.sub-features-section {
    padding: 100px 0;
    background: var(--off-white);
}

.sub-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.sub-feature-card {
    background: white;
    border: 1px solid var(--gray-100);
    border-radius: var(--r-xl);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    transition: box-shadow .25s var(--ease), transform .25s var(--ease);
}
.sub-feature-card:hover {
    box-shadow: var(--sh-md);
    transform: translateY(-3px);
}
.sub-feature-card--cta {
    background: var(--navy);
    border-color: var(--navy);
}
.sub-feature-card--cta h3 { color: white; }

.sub-feature-icon {
    width: 44px; height: 44px;
    background: rgba(0,0,61,.06);
    border-radius: var(--r-md);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
}
.sub-feature-icon svg { width: 20px; height: 20px; stroke: var(--navy); }
.sub-feature-icon--light { background: rgba(255,255,255,.12); }
.sub-feature-icon--light svg { stroke: white; }

.sub-feature-card h3 { margin-bottom: 10px; font-size: 16px; }
.sub-feature-card .paragraph { flex: 1; margin-bottom: 20px; }

.sub-feature-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    margin-top: auto;
    transition: gap .2s;
}
.sub-feature-link:hover { gap: 10px; }

.sub-feature-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    padding: 12px 24px;
    background: white;
    color: var(--navy);
    font-size: 13px;
    font-weight: 700;
    border-radius: var(--r-full);
    transition: var(--t);
}
.sub-feature-cta-btn:hover {
    background: var(--gray-50);
    transform: translateY(-1px);
}

@media (max-width: 900px) {
    .sub-features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .sub-features-grid { grid-template-columns: 1fr; }
}

/* ── Process steps ── */
.sub-process-section {
    padding: 100px 0;
    background: white;
}

.sub-process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 760px;
    margin: 0 auto;
}

.sub-process-step {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.sub-step-number {
    font-size: 13px;
    font-weight: 800;
    color: var(--navy);
    background: var(--gray-50);
    border: 2px solid var(--gray-100);
    border-radius: 50%;
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    letter-spacing: .04em;
}

.sub-step-content {
    padding-bottom: 8px;
}
.sub-step-content h3 { margin-bottom: 8px; font-size: 18px; }

.sub-process-connector {
    width: 2px;
    height: 40px;
    background: var(--gray-100);
    margin-left: 23px;
}

@media (max-width: 768px) {
    .sub-hero { height: 92vw; max-height: 600px; }
    .sub-hero-content { align-items: center; padding-top: 60px; }
    .sub-hero-title,
    .sub-hero-sub { text-align: center; max-width: 100%; }
}

/* ==============================================
   KONTAKT PAGE
   ============================================== */
.kontakt-section {
    padding: 100px 0 120px;
    background: white;
}

.kontakt-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
}

/* ── Left info column ── */
.kontakt-info-title {
    font-size: clamp(26px, 3vw, 40px);
    margin-bottom: 16px;
}

.kontakt-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 36px;
}

.kontakt-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.kontakt-item-icon {
    width: 42px; height: 42px;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: var(--r-md);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.kontakt-item-icon svg { width: 17px; height: 17px; stroke: var(--navy); }

.kontakt-item-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 3px;
}
.kontakt-item-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    transition: color .2s;
}
a.kontakt-item-value:hover { color: var(--navy-mid); }

.kontakt-divider {
    height: 1px;
    background: var(--gray-100);
    margin-bottom: 32px;
}

.kontakt-calendly-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 24px;
    background: var(--navy);
    color: white;
    font-size: 14px;
    font-weight: 700;
    border-radius: var(--r-full);
    transition: var(--t);
    cursor: pointer;
}
.kontakt-calendly-btn:hover {
    background: var(--navy-mid);
    transform: translateY(-2px);
    box-shadow: var(--sh-md);
}

/* ── Right: Form ── */
.kontakt-form-wrap {
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: var(--r-xl);
    padding: 48px;
}

.kontakt-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.form-group label {
    font-size: 12px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: .04em;
    text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    background: white;
    border: 1.5px solid var(--gray-100);
    border-radius: var(--r-md);
    font-family: inherit;
    font-size: 14px;
    color: var(--navy);
    transition: border-color .2s, box-shadow .2s;
    outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-300); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(0,0,61,.08);
}
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23667085' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
    cursor: pointer;
}
.form-group textarea { resize: vertical; min-height: 130px; }

.form-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 32px;
    background: var(--navy);
    color: white;
    font-size: 15px;
    font-weight: 700;
    border-radius: var(--r-full);
    transition: var(--t);
    cursor: pointer;
    align-self: flex-start;
}
.form-submit-btn:hover:not(:disabled) {
    background: var(--navy-mid);
    transform: translateY(-2px);
    box-shadow: var(--sh-md);
}
.form-submit-btn:disabled { opacity: .6; cursor: default; }

.btn-arrow { transition: transform .2s; }
.form-submit-btn:hover .btn-arrow { transform: translateX(3px); }

/* Success message */
.form-success {
    display: none;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    background: #F0FDF4;
    border: 1px solid #BBF7D0;
    border-radius: var(--r-md);
    color: #166534;
}
.form-success svg { stroke: #16A34A; flex-shrink: 0; }
.form-success strong { display: block; font-size: 14px; font-weight: 700; }
.form-success span   { font-size: 13px; opacity: .8; }

@media (max-width: 900px) {
    .kontakt-grid { grid-template-columns: 1fr; gap: 48px; }
    .kontakt-form-wrap { padding: 32px 24px; }
    .form-row { grid-template-columns: 1fr; }
}

.form-error {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: #FEF2F2;
    border: 1px solid #FECACA;
    border-radius: var(--r-md);
    color: #991B1B;
    font-size: 13px;
    font-weight: 600;
}
.form-error svg { stroke: #DC2626; flex-shrink: 0; }

/* ==============================================
   SUPPORT PAGE
   ============================================== */
.support-section {
    padding: 100px 0 120px;
    background: white;
}

.support-intro {
    text-align: center;
    margin-bottom: 60px;
}
.support-intro h2 { margin-bottom: 16px; }
.support-intro .subtitel { max-width: 520px; margin: 0 auto; }

.support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 48px;
}

/* ── Cards ── */
.support-card {
    border: 1px solid var(--gray-100);
    border-radius: var(--r-xl);
    padding: 44px 40px;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}
.support-card--primary {
    background: var(--navy);
    border-color: var(--navy);
}
.support-card--primary h3,
.support-card--primary .paragraph { color: rgba(255,255,255,.90); }
.support-card--primary .paragraph { color: rgba(255,255,255,.60); }
.support-card:not(.support-card--primary) { background: var(--gray-50); }

.support-card-label {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .10em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.support-card-icon {
    width: 48px; height: 48px;
    border-radius: var(--r-md);
    background: rgba(255,255,255,.12);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
}
.support-card-icon svg { width: 22px; height: 22px; stroke: white; }
.support-card-icon--gray { background: var(--gray-100); }
.support-card-icon--gray svg { stroke: var(--navy); }

.support-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: white;
}
.support-card:not(.support-card--primary) h3 { color: var(--navy); }

.support-card .paragraph { margin-bottom: 28px; }

/* Code box */
.support-code-box {
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: var(--r-md);
    padding: 16px 20px;
    margin-bottom: 28px;
}
.support-code-label {
    font-size: 10px;
    font-weight: 700;
    color: rgba(255,255,255,.45);
    text-transform: uppercase;
    letter-spacing: .10em;
    margin-bottom: 6px;
}
.support-code-value {
    font-size: 22px;
    font-weight: 800;
    color: white;
    letter-spacing: .04em;
    font-family: 'Courier New', monospace;
}

/* Steps */
.support-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}
.support-step {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--gray-700);
    font-weight: 500;
}
.support-step-num {
    width: 24px; height: 24px;
    background: var(--navy);
    color: white;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

/* Buttons */
.support-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 24px;
    border-radius: var(--r-full);
    font-size: 14px;
    font-weight: 700;
    transition: var(--t);
    margin-top: auto;
    align-self: flex-start;
}
.support-btn--white {
    background: white;
    color: var(--navy);
}
.support-btn--white:hover { background: var(--gray-50); transform: translateY(-2px); box-shadow: var(--sh-md); }
.support-btn--navy {
    background: var(--navy);
    color: white;
}
.support-btn--navy:hover { background: var(--navy-mid); transform: translateY(-2px); box-shadow: var(--sh-md); }

/* ── Contact banner ── */
.support-contact-banner {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 36px;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: var(--r-xl);
    flex-wrap: wrap;
}
.support-contact-icon {
    width: 44px; height: 44px;
    background: white;
    border: 1px solid var(--gray-100);
    border-radius: var(--r-md);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.support-contact-icon svg { width: 18px; height: 18px; stroke: var(--navy); }
.support-contact-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.support-contact-text strong { font-size: 15px; color: var(--navy); }
.support-contact-text span  { font-size: 13px; color: var(--gray-500); }
.support-contact-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    padding: 10px 22px;
    border: 1.5px solid var(--gray-300);
    border-radius: var(--r-full);
    transition: var(--t);
    white-space: nowrap;
}
.support-contact-link:hover {
    border-color: var(--navy);
    background: var(--navy);
    color: white;
}

@media (max-width: 768px) {
    .support-grid { grid-template-columns: 1fr; }
    .support-card { padding: 32px 24px; }
    .support-contact-banner { flex-direction: column; align-items: flex-start; }
}

/* ==============================================
   LEGAL PAGES (Impressum, Datenschutz, AGB)
   ============================================== */
.legal-section {
    padding: 100px 0 120px;
    background: white;
}

.legal-content {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.legal-block h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--gray-100);
}

.legal-block p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--gray-700);
    margin-bottom: 12px;
}
.legal-block p:last-child { margin-bottom: 0; }

.legal-block a {
    color: var(--navy);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.legal-block a:hover { color: var(--navy-mid); }

/* ==============================================
   MISSION PAGE
   ============================================== */

/* ── Opening statement ── */
.mission-statement-section {
    padding: 80px 0;
    background: var(--navy);
}
.mission-statement {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}
.mission-statement-text {
    font-size: clamp(20px, 2.4vw, 30px);
    font-weight: 500;
    line-height: 1.6;
    color: rgba(255,255,255,.75);
    letter-spacing: -.01em;
}
.mission-statement-text em {
    font-style: normal;
    color: var(--gold);
    font-weight: 700;
}

/* ── Values section ── */
.mission-values-section {
    padding: 100px 0 120px;
    background: white;
}

.mission-value-row {
    display: grid;
    grid-template-columns: 60px 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 0;
}
.mission-value-row--reverse {
    grid-template-columns: 60px 1fr 1fr;
}
.mission-value-row--reverse .mission-value-content { order: 2; }
.mission-value-row--reverse .mission-value-visual   { order: 1; }

.mission-divider {
    height: 1px;
    background: var(--gray-100);
}

.mission-value-number {
    font-size: 13px;
    font-weight: 800;
    color: var(--gray-300);
    letter-spacing: .08em;
    align-self: flex-start;
    padding-top: 8px;
}

.mission-value-content h2 {
    font-size: clamp(24px, 2.8vw, 38px);
    margin-bottom: 20px;
}
.mission-value-content .subtitel {
    font-size: 16px;
    max-width: 480px;
}

/* ── Visuals ── */
.mission-value-visual {
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: var(--r-xl);
    padding: 36px 32px;
}

/* V1: Stats */
.mv-v1 { display: flex; flex-direction: column; gap: 20px; }
.mv-stat-big { text-align: center; }
.mv-stat-num {
    display: block;
    font-size: clamp(48px, 5vw, 72px);
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -.04em;
    line-height: 1;
    margin-bottom: 6px;
}
.mv-stat-label {
    font-size: 13px;
    color: var(--gray-500);
    font-weight: 600;
}
.mv-stat-small {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-100);
}
.mv-mini-num {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -.03em;
}
.mv-mini-label {
    font-size: 11px;
    color: var(--gray-500);
    font-weight: 600;
}
.mv-arrow { font-size: 20px; color: var(--gray-300); font-weight: 300; }

/* V2: Flow */
.mv-v2 { display: flex; flex-direction: column; gap: 16px; }
.mv-flow {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.mv-flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 14px;
    background: white;
    border: 1.5px solid var(--gray-100);
    border-radius: var(--r-md);
    font-size: 12px;
    font-weight: 700;
    color: var(--navy);
    flex: 1;
}
.mv-flow-step svg { width: 18px; height: 18px; stroke: var(--navy); }
.mv-flow-step.active { border-color: var(--navy); background: rgba(0,0,61,.04); }
.mv-flow-step.success { border-color: #16A34A; background: #F0FDF4; color: #16A34A; }
.mv-flow-step.success svg { stroke: #16A34A; }
.mv-flow-arrow { color: var(--gray-300); font-size: 18px; font-weight: 300; flex-shrink: 0; }
.mv-flow-caption { font-size: 12px; color: var(--gray-500); text-align: center; }

/* V3: Comparison */
.mv-v3 { display: flex; flex-direction: column; gap: 16px; }
.mv-comparison { display: flex; flex-direction: column; gap: 8px; }
.mv-comp-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    border-radius: var(--r-md);
    gap: 12px;
}
.mv-comp-bad  { background: #FEF2F2; border: 1px solid #FECACA; }
.mv-comp-good { background: #F0FDF4; border: 1px solid #BBF7D0; }
.mv-comp-label { font-size: 13px; font-weight: 600; color: var(--navy); }
.mv-comp-value { font-size: 14px; font-weight: 800; white-space: nowrap; }
.mv-comp-value.red   { color: #DC2626; }
.mv-comp-value.green { color: #16A34A; }
.mv-comp-divider {
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--gray-500);
    letter-spacing: .08em;
    text-transform: uppercase;
}

/* V4: Pillars */
.mv-v4 { display: flex; flex-direction: column; gap: 20px; }
.mv-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.mv-pillar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: white;
    border: 1px solid var(--gray-100);
    border-radius: var(--r-md);
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
}
.mv-pillar-icon {
    width: 30px; height: 30px;
    background: rgba(0,0,61,.06);
    border-radius: 7px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.mv-pillar-icon svg { width: 14px; height: 14px; stroke: var(--navy); }
.mv-pillar-result {
    text-align: center;
    font-size: 14px;
    font-weight: 800;
    color: var(--navy);
    padding: 12px;
    background: rgba(0,0,61,.05);
    border-radius: var(--r-md);
    letter-spacing: -.01em;
}

/* ── Closing CTA ── */
.mission-cta-section {
    padding: 120px 0 140px;
    background: var(--off-white);
    border-top: 1px solid var(--gray-100);
    text-align: center;
}
.mission-cta-inner { max-width: 560px; margin: 0 auto; }
.mission-cta-inner h2 { margin-bottom: 16px; }
.mission-cta-inner .subtitel { margin-bottom: 36px; }

/* ── Responsive ── */
@media (max-width: 900px) {
    .mission-value-row,
    .mission-value-row--reverse {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 48px 0;
    }
    .mission-value-number { display: none; }
    .mission-value-row--reverse .mission-value-content { order: 1; }
    .mission-value-row--reverse .mission-value-visual   { order: 2; }
    .mv-pillars { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .mv-flow { flex-direction: column; }
    .mv-flow-arrow { transform: rotate(90deg); }
}

/* ── Mission V2: Booking compare ── */
.mv-booking-compare { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }

.mv-booking-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: var(--r-md);
    border: 1.5px solid;
}
.mv-booking-ota    { background: #FEF2F2; border-color: #FECACA; }
.mv-booking-direct { background: #F0FDF4; border-color: #BBF7D0; }

.mv-booking-icon {
    width: 36px; height: 36px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.mv-booking-icon--red   { background: #FEE2E2; }
.mv-booking-icon--red svg { stroke: #DC2626; }
.mv-booking-icon--green { background: #DCFCE7; }
.mv-booking-icon--green svg { stroke: #16A34A; }

.mv-booking-info { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.mv-booking-title { font-size: 13px; font-weight: 700; color: var(--navy); }
.mv-booking-sub   { font-size: 11px; color: var(--gray-500); }

.mv-booking-badge {
    font-size: 15px;
    font-weight: 800;
    flex-shrink: 0;
    letter-spacing: -.02em;
}
.mv-booking-badge--red   { color: #DC2626; }
.mv-booking-badge--green { color: #16A34A; }

.mv-booking-vs {
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: .08em;
}

/* ── Mission V4: Before/After ── */
.mv-before-after {
    display: flex;
    align-items: center;
    gap: 12px;
}
.mv-ba-col { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.mv-ba-label {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .10em;
    padding-bottom: 8px;
    border-bottom: 1.5px solid;
    margin-bottom: 4px;
}
.mv-ba-label--before { color: #DC2626; border-color: #FECACA; }
.mv-ba-label--after  { color: #16A34A; border-color: #BBF7D0; }

.mv-ba-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    padding: 9px 12px;
    border-radius: var(--r-md);
}
.mv-ba-item--bad  { background: #FEF2F2; color: #DC2626; }
.mv-ba-item--bad svg  { stroke: #DC2626; flex-shrink: 0; }
.mv-ba-item--good { background: #F0FDF4; color: #16A34A; }
.mv-ba-item--good svg { stroke: #16A34A; flex-shrink: 0; }

.mv-ba-arrow {
    font-size: 22px;
    color: var(--gray-300);
    font-weight: 300;
    flex-shrink: 0;
}

/* ── Mission V2: Money Flow ── */
.mv-money-flow { display: flex; flex-direction: column; gap: 16px; }

.mv-mf-label {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .10em;
    color: #DC2626;
}
.mv-mf-label--good { color: #16A34A; }

.mv-mf-row {
    display: flex;
    align-items: center;
    gap: 0;
    border-radius: var(--r-md);
    overflow: hidden;
    border: 1.5px solid;
}
.mv-mf-row--bad  { border-color: #FECACA; }
.mv-mf-row--good { border-color: #BBF7D0; }

.mv-mf-node {
    padding: 14px 16px;
    font-size: 12px;
    color: var(--gray-500);
    line-height: 1.4;
    white-space: nowrap;
    background: white;
    flex-shrink: 0;
}
.mv-mf-node strong { display: block; font-size: 16px; color: var(--navy); font-weight: 800; margin-top: 2px; }
.mv-mf-node--result { text-align: right; }
.mv-mf-node--result.bad  strong { color: #DC2626; }
.mv-mf-node--result.good strong { color: #16A34A; font-size: 18px; }

.mv-mf-pipe {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 8px;
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
}
.mv-mf-pipe--cut  { background: #FEF2F2; }
.mv-mf-pipe--full { background: #F0FDF4; }
.mv-mf-cut  { color: #DC2626; }
.mv-mf-full { color: #16A34A; }
.mv-mf-cut small { display: block; font-weight: 500; font-size: 10px; color: #EF4444; }

/* ── Mission V4: Presence ── */
.mv-presence { display: flex; flex-direction: column; gap: 16px; align-items: center; }

.mv-presence-channels {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}
.mv-pch {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 16px;
    background: white;
    border: 1px solid var(--gray-100);
    border-radius: var(--r-md);
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
}
.mv-pch svg { width: 15px; height: 15px; stroke: var(--navy); opacity: .6; flex-shrink: 0; }

.mv-presence-arrow {
    color: var(--navy);
    opacity: .3;
}

.mv-presence-result {
    width: 100%;
    background: var(--navy);
    border-radius: var(--r-md);
    padding: 18px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.mv-presence-result-top {
    font-size: 14px;
    color: rgba(255,255,255,.7);
}
.mv-presence-result-top strong { color: white; }

.mv-presence-savings {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
}
.mv-presence-plus {
    color: rgba(255,255,255,.3);
    font-size: 16px;
}

/* ==============================================
   MOBILE NAV — Always white + fullscreen
   ============================================== */
@media (max-width: 1023px) {
    /* Nav bar always white on mobile */
    #main-nav {
        background: white !important;
        backdrop-filter: none !important;
        box-shadow: 0 1px 0 var(--gray-100) !important;
    }
    .nav-logo { color: var(--navy) !important; }
    .menu-bar { background: var(--navy) !important; }

    /* Fullscreen overlay menu */
    .mobile-menu {
        position: fixed !important;
        top: 60px;
        left: 0; right: 0; bottom: 0;
        max-height: none !important;
        height: calc(100vh - 60px) !important;
        background: white !important;
        backdrop-filter: none !important;
        overflow-y: auto;
        padding: 24px 28px 40px !important;
    }

    /* All links always in navy/dark */
    .mobile-section { border-bottom-color: var(--gray-100) !important; }
    .mobile-section-title { color: var(--gray-500) !important; }
    .mobile-link { color: var(--gray-700) !important; font-size: 16px !important; padding: 11px 0 !important; }
    .mobile-link:hover { color: var(--navy) !important; }
    .mobile-link--top { color: var(--navy) !important; font-size: 17px !important; }
    .mobile-cta {
        display: flex !important;
        width: 100% !important;
        text-align: center !important;
        margin-top: 24px !important;
        padding: 16px !important;
        font-size: 16px !important;
    }
}

/* ==============================================
   404 PAGE
   ============================================== */
.error-section {
    min-height: 100vh;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    position: relative;
    overflow: hidden;
}

/* Subtle background texture */
.error-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 30%, rgba(184,149,90,.08) 0%, transparent 70%),
        radial-gradient(ellipse 80% 80% at 80% 80%, rgba(255,255,255,.03) 0%, transparent 60%);
    pointer-events: none;
}

.error-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

/* ── Bell ── */
.error-bell-wrap {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 36px;
    flex-shrink: 0;
}

/* Rings that radiate outward */
.error-bell-rings {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}
.ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid rgba(184,149,90,.35);
    animation: ringPulse 2.4s ease-out infinite;
}
.ring-1 { width: 80px;  height: 80px;  animation-delay: 0s; }
.ring-2 { width: 108px; height: 108px; animation-delay: .5s; }
.ring-3 { width: 136px; height: 136px; animation-delay: 1s; }

@keyframes ringPulse {
    0%   { opacity: .7; transform: scale(.7); }
    100% { opacity: 0;  transform: scale(1.3); }
}

.error-bell {
    position: relative;
    z-index: 2;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bellRing 2.4s ease-in-out infinite;
    transform-origin: center top;
}
.error-bell svg { width: 52px; height: 52px; }

@keyframes bellRing {
    0%, 100%      { transform: rotate(0deg); }
    8%            { transform: rotate(12deg); }
    16%           { transform: rotate(-10deg); }
    24%           { transform: rotate(8deg); }
    32%           { transform: rotate(-6deg); }
    40%           { transform: rotate(0deg); }
}

/* ── Text ── */
.error-code {
    font-size: clamp(80px, 12vw, 140px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.06em;
    color: rgba(255,255,255,.06);
    margin-bottom: -20px;
    user-select: none;
}

.error-title {
    font-size: clamp(26px, 3.5vw, 44px);
    font-weight: 800;
    color: white;
    line-height: 1.2;
    letter-spacing: -.03em;
    margin-bottom: 16px;
}

.error-sub {
    font-size: 16px;
    color: rgba(255,255,255,.5);
    max-width: 380px;
    line-height: 1.6;
    margin-bottom: 44px;
}

/* ── Actions ── */
.error-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.error-link-btn {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,.55);
    padding: 12px 4px;
    transition: color .2s;
}
.error-link-btn:hover { color: white; }

@media (max-width: 480px) {
    .error-actions { flex-direction: column; width: 100%; }
    .error-link-btn { order: 2; }
}

/* ==============================================
   DIREKTBUCHUNGSSYSTEM PAGE
   ============================================== */

/* ── Problem ── */
.dbs-problem {
    padding: 100px 0 80px;
    background: white;
}
.dbs-problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.dbs-eyebrow {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}
.dbs-problem-text h2 { margin-bottom: 20px; }
.dbs-problem-text .subtitel { max-width: 100%; }

.dbs-stat-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.dbs-stat-card {
    padding: 24px 28px;
    border-radius: var(--r-xl);
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
}
.dbs-stat-card--navy {
    background: var(--navy);
    border-color: var(--navy);
}
.dbs-stat-card--navy .dbs-stat-num   { color: white; }
.dbs-stat-card--navy .dbs-stat-label { color: rgba(255,255,255,.6); }
.dbs-stat-card--green {
    background: #F0FDF4;
    border-color: #BBF7D0;
}
.dbs-stat-card--green .dbs-stat-num   { color: #16A34A; }
.dbs-stat-card--green .dbs-stat-label { color: #15803D; }

.dbs-stat-num {
    font-size: 36px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -.03em;
    line-height: 1;
    margin-bottom: 6px;
}
.dbs-stat-label {
    font-size: 13px;
    color: var(--gray-500);
    font-weight: 500;
    line-height: 1.4;
}

/* ── Solution Banner ── */
.dbs-solution {
    padding: 0 0 80px;
    background: white;
}
.dbs-solution-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px 40px;
    background: var(--navy);
    border-radius: var(--r-xl);
    color: white;
}
.dbs-solution-icon {
    width: 52px; height: 52px;
    background: rgba(255,255,255,.1);
    border-radius: var(--r-md);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.dbs-solution-icon svg { width: 24px; height: 24px; stroke: var(--gold); }
.dbs-solution-inner h3 {
    font-size: 18px;
    color: white;
    margin-bottom: 8px;
}
.dbs-solution-inner p {
    font-size: 14px;
    color: rgba(255,255,255,.6);
    line-height: 1.65;
}

/* ── Compatibility ── */
.dbs-compat {
    padding: 80px 0;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
    overflow: hidden;
}
.dbs-compat-header {
    text-align: center;
    margin-bottom: 52px;
}
.dbs-compat-header h2 { margin-bottom: 12px; }

.dbs-logo-track-wrap {
    overflow: hidden;
    position: relative;
    /* fade edges */
    mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}
.dbs-logo-track {
    display: flex;
    gap: 0;
    width: max-content;
    animation: logoScroll 42s linear infinite;
}
.dbs-logo-track:hover { animation-play-state: paused; }
@keyframes logoScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.dbs-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    flex-shrink: 0;
}
.dbs-logo-item img {
    height: 28px;
    width: auto;
    max-width: 130px;
    object-fit: contain;
    /* Render all logos in #667085 */
    filter: brightness(0) saturate(100%) invert(44%) sepia(12%) saturate(520%) hue-rotate(182deg) brightness(92%) contrast(88%);
    transition: filter .3s, transform .2s;
}
.dbs-logo-item img.logo-lg { height: 38px; }
.dbs-logo-item img:hover {
    filter: brightness(0) saturate(100%) invert(44%) sepia(12%) saturate(520%) hue-rotate(182deg) brightness(70%) contrast(95%);
    transform: scale(1.08);
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .dbs-problem-grid { grid-template-columns: 1fr; gap: 48px; }
    .dbs-solution-inner { flex-direction: column; align-items: flex-start; padding: 28px 24px; }
}

/* ==============================================
   SOCIAL MEDIA WERBUNG PAGE
   ============================================== */
.smw-eyebrow {
    font-size: 11px; font-weight: 800; letter-spacing: .12em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.smw-eyebrow--light { color: var(--gold-light); }

/* ── Targeting ── */
.smw-targeting { padding: 100px 0 80px; background: white; }
.smw-targeting-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
}
.smw-targeting-text h2 { margin-bottom: 20px; }
.smw-feature-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.smw-feature-list li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 15px; color: var(--gray-700); line-height: 1.5;
}
.smw-feature-list svg { width: 16px; height: 16px; stroke: var(--gold); flex-shrink: 0; margin-top: 3px; }
.smw-feature-list strong { color: var(--navy); }

/* Map */
.smw-map-wrap {
    background: var(--navy); border-radius: var(--r-xl);
    padding: 32px; display: flex; flex-direction: column; align-items: center; gap: 16px;
    box-shadow: var(--sh-xl);
}
.smw-map-label { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.45); }
.smw-map { width: 100%; max-width: 400px; }
.smw-map-land { fill: rgba(255,255,255,.06); stroke: rgba(255,255,255,.15); stroke-width: 1.5; }
.smw-city-dot { fill: var(--gold); }
.smw-city-pulse {
    fill: none; stroke: var(--gold); stroke-width: 1.5;
    animation: cityPulse 2.5s ease-out infinite;
    animation-delay: var(--delay, 0s);
}
@keyframes cityPulse {
    0%   { r: 5; opacity: .8; }
    100% { r: 22; opacity: 0; }
}
.smw-city-label { font-family: 'Manrope', sans-serif; font-size: 10px; font-weight: 600; fill: rgba(255,255,255,.6); }
.smw-map-sublabel { font-size: 12px; color: rgba(255,255,255,.35); text-align: center; line-height: 1.5; }

/* ── Interest Section ── */
.smw-interest { padding: 80px 0; background: var(--navy); }
.smw-interest-header { text-align: center; margin-bottom: 60px; }
.smw-interest-header h2 { color: white; margin-bottom: 12px; }
.smw-interest-header .subtitel { color: rgba(255,255,255,.55); max-width: 580px; margin: 0 auto; }
.smw-interest-cols { display: flex; align-items: center; gap: 24px; }
.smw-interest-card {
    flex: 1; border-radius: var(--r-xl); padding: 36px 32px;
    display: flex; flex-direction: column; gap: 16px;
}
.smw-interest-card--muted  { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); }
.smw-interest-card--active { background: rgba(184,149,90,.1);   border: 1px solid rgba(184,149,90,.25); }
.smw-ic-icon {
    width: 44px; height: 44px; border-radius: var(--r-md);
    background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center;
}
.smw-ic-icon svg { width: 20px; height: 20px; stroke: rgba(255,255,255,.5); }
.smw-ic-icon--gold { background: rgba(184,149,90,.2); }
.smw-ic-icon--gold svg { stroke: var(--gold); }
.smw-ic-label { font-size: 13px; font-weight: 800; color: white; letter-spacing: .02em; }
.smw-ic-text { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.65; flex: 1; }
.smw-ic-badge {
    display: inline-block; font-size: 11px; font-weight: 700;
    padding: 5px 12px; border-radius: var(--r-full); letter-spacing: .06em;
    text-transform: uppercase; align-self: flex-start;
}
.smw-ic-badge--neutral { background: rgba(255,255,255,.08); color: rgba(255,255,255,.45); }
.smw-ic-badge--gold    { background: rgba(184,149,90,.25); color: var(--gold-light); }
.smw-interest-arrow {
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    flex-shrink: 0; color: rgba(255,255,255,.25); font-size: 10px;
    letter-spacing: .08em; text-transform: uppercase;
}
.smw-interest-arrow svg { stroke: rgba(255,255,255,.25); }

/* ── Platform comparison (dark table like screenshot) ── */
.smw-platforms { padding: 100px 0; background: var(--navy-dark); }
.smw-platforms-header { text-align: center; margin-bottom: 56px; }
.smw-platforms-header h2 { color: white; margin-bottom: 12px; }
.smw-platforms-header .subtitel { color: rgba(255,255,255,.5); }

.smw-cmp-table-wrap { overflow-x: auto; border-radius: var(--r-xl); border: 1px solid rgba(255,255,255,.07); }
.smw-cmp-table { width: 100%; border-collapse: collapse; min-width: 640px; }
.smw-cmp-table thead tr { border-bottom: 1px solid rgba(255,255,255,.08); }
.smw-cmp-table thead th {
    padding: 18px 24px; font-size: 11px; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase;
    color: rgba(255,255,255,.35); text-align: left;
}
.smw-voyane-col { text-align: center !important; }
.smw-cmp-table tbody tr { border-bottom: 1px solid rgba(255,255,255,.06); transition: background .15s; }
.smw-cmp-table tbody tr:last-child { border-bottom: none; }
.smw-cmp-table tbody tr:hover { background: rgba(255,255,255,.03); }
.smw-highlight-row { background: rgba(184,149,90,.06) !important; }
.smw-highlight-row:hover { background: rgba(184,149,90,.1) !important; }
.smw-cmp-table tbody td { padding: 24px; font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.6; vertical-align: middle; }
.smw-platform-cell { display: flex; align-items: center; gap: 12px; }
.smw-platform-cell strong { color: white; font-size: 15px; }
.smw-platform-icon {
    width: 36px; height: 36px; border-radius: 9px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.smw-platform-icon svg { width: 16px; height: 16px; stroke: white; }
.smw-pi--google  { background: #4285F4; }
.smw-pi--meta    { background: #1877F2; }
.smw-pi--tiktok  { background: #010101; border: 1px solid rgba(255,255,255,.15); }
.smw-pi--youtube { background: #FF0000; }

.smw-tag {
    display: inline-block; font-size: 11px; font-weight: 700;
    padding: 4px 10px; border-radius: var(--r-full);
    letter-spacing: .04em; white-space: nowrap;
}
.smw-tag--blue   { background: rgba(66,133,244,.18); color: #93C5FD; }
.smw-tag--gold   { background: rgba(184,149,90,.2);  color: var(--gold-light); }
.smw-tag--green  { background: rgba(22,163,74,.18);  color: #86EFAC; display: block; }
.smw-tag--purple { background: rgba(168,85,247,.18); color: #D8B4FE; }
.smw-tag--red    { background: rgba(239,68,68,.18);  color: #FCA5A5; }

.smw-check {
    display: inline-flex; align-items: center; justify-content: center; gap: 6px;
    font-size: 13px; font-weight: 700;
}
.smw-check--yes { color: #86EFAC; }
.smw-check--yes svg { width: 18px; height: 18px; stroke: #86EFAC; }

/* ── Flow Section ── */
.smw-flow { padding: 100px 0; background: white; }
.smw-flow-header { text-align: center; margin-bottom: 64px; }
.smw-flow-header h2 { margin-bottom: 12px; }
.smw-flow-steps {
    display: flex; align-items: center; gap: 0;
    flex-wrap: wrap; justify-content: center;
}
.smw-flow-step {
    flex: 1; min-width: 180px; max-width: 220px;
    background: var(--gray-50); border: 1px solid var(--gray-100);
    border-radius: var(--r-xl); padding: 32px 24px;
    display: flex; flex-direction: column; gap: 12px; position: relative;
}
.smw-flow-step--success {
    background: var(--navy); border-color: var(--navy);
}
.smw-flow-step--success h3,
.smw-flow-step--success p { color: rgba(255,255,255,.8); }
.smw-flow-step--success h3 { color: white; }
.smw-fs-num {
    font-size: 11px; font-weight: 800; letter-spacing: .1em;
    color: var(--gray-300); text-transform: uppercase;
}
.smw-fs-num--success { color: rgba(255,255,255,.3); }
.smw-fs-icon {
    width: 44px; height: 44px; border-radius: var(--r-md);
    background: white; border: 1px solid var(--gray-100);
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--sh-sm);
}
.smw-fs-icon svg { width: 20px; height: 20px; stroke: var(--navy); }
.smw-fs-icon--success { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.1); }
.smw-fs-icon--success svg { stroke: var(--gold); }
.smw-flow-step h3 { font-size: 16px; color: var(--navy); }
.smw-flow-step p  { font-size: 13px; color: var(--gray-500); line-height: 1.6; flex: 1; }
.smw-flow-link { font-size: 13px; font-weight: 700; color: var(--navy); text-decoration: none; }
.smw-flow-link:hover { text-decoration: underline; }
.smw-flow-connector {
    flex-shrink: 0; padding: 0 12px;
    display: flex; flex-direction: column; align-items: center; gap: 4px;
    color: var(--gray-300);
}
.smw-flow-connector svg { stroke: var(--gray-300); }

/* ── Responsive ── */
@media (max-width: 900px) {
    .smw-targeting-grid { grid-template-columns: 1fr; gap: 48px; }
    .smw-interest-cols { flex-direction: column; }
    .smw-interest-arrow { transform: rotate(90deg); }
    .smw-flow-steps { flex-direction: column; align-items: stretch; }
    .smw-flow-connector { transform: rotate(90deg); padding: 4px 0; }
    .smw-flow-step { max-width: 100%; }
}

/* ==============================================
   SOCIAL MEDIA WERBUNG PAGE
   ============================================== */

.smw-eyebrow {
    font-size: 11px; font-weight: 800; letter-spacing: .12em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.smw-eyebrow--gold { color: var(--gold); }

.smw-section-head { text-align: center; margin-bottom: 56px; }
.smw-section-head h2 { margin-bottom: 12px; }
.smw-section-head--light { /* inherits */ }

.smw-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.smw-two-col--reverse .smw-col-text { order: 2; }
.smw-two-col--reverse .smw-col-visual { order: 1; }

.smw-col-text h2 { margin-bottom: 20px; }
.smw-col-text .subtitel { max-width: 100%; }

.smw-list {
    list-style: none; margin-top: 24px;
    display: flex; flex-direction: column; gap: 12px;
}
.smw-list li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 15px; color: var(--gray-700);
}
.smw-list li svg { width: 18px; height: 18px; stroke: var(--navy); flex-shrink: 0; margin-top: 2px; }

/* ── Targeting ── */
.smw-targeting { padding: 100px 0 80px; background: white; }

/* ── Map Card ── */
.smw-map-card {
    background: var(--navy);
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--sh-xl);
}
.smw-map-header {
    padding: 20px 24px 0;
}
.smw-map-title {
    font-size: 11px; font-weight: 800; color: rgba(255,255,255,.4);
    text-transform: uppercase; letter-spacing: .12em;
}
.smw-map-body {
    position: relative;
    padding: 16px 24px 8px;
}
.smw-ch-map {
    width: 100%; height: auto;
    display: block;
}
.ch-fill {
    fill: rgba(255,255,255,.08);
    stroke: rgba(255,255,255,.2);
    stroke-width: 1.5;
}

/* Dots */
.smw-dot {
    position: absolute;
    left: var(--x); top: var(--y);
    transform: translate(-50%, -50%);
    width: var(--size, 12px); height: var(--size, 12px);
}
.dot-ring {
    position: absolute; inset: -50%;
    border: 2px solid rgba(184,149,90,.5);
    border-radius: 50%;
    animation: dotPulse 2.4s ease-out infinite var(--delay, 0s);
}
@keyframes dotPulse {
    0%   { transform: scale(.5); opacity: .8; }
    100% { transform: scale(2.4); opacity: 0; }
}
.dot-core {
    position: absolute; inset: 0;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(184,149,90,.7);
}
.dot-tip {
    position: absolute;
    bottom: calc(100% + 6px);
    left: 50%; transform: translateX(-50%);
    background: rgba(0,0,20,.85);
    color: white; font-size: 10px; font-weight: 700;
    padding: 3px 7px; border-radius: 4px;
    white-space: nowrap; pointer-events: none;
    opacity: 0; transition: opacity .2s;
}
.smw-dot:hover .dot-tip { opacity: 1; }

.smw-map-footer {
    display: flex; align-items: center; gap: 0;
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 16px 24px;
}
.smw-map-stat { flex: 1; text-align: center; }
.smw-ms-n { display: block; font-size: 22px; font-weight: 800; color: white; letter-spacing: -.03em; }
.smw-ms-l { display: block; font-size: 11px; color: rgba(255,255,255,.4); margin-top: 2px; font-weight: 500; }
.smw-map-divider { width: 1px; height: 40px; background: rgba(255,255,255,.1); flex-shrink: 0; }

/* ── Interest / Funnel ── */
.smw-interest {
    padding: 100px 0;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-100);
    text-align: center;
}
.smw-interest .smw-section-head { margin-bottom: 52px; }

.smw-funnel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}
.smw-funnel-step {
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    padding: 24px 20px;
    background: white; border: 1px solid var(--gray-100);
    border-radius: var(--r-xl); min-width: 148px; flex: 1;
    max-width: 180px;
    text-align: center;
}
.smw-funnel-step strong { font-size: 14px; color: var(--navy); line-height: 1.3; }
.smw-funnel-step span { font-size: 12px; color: var(--gray-500); }

.smw-funnel-step--win {
    background: var(--navy);
    border-color: var(--navy);
}
.smw-funnel-step--win strong { color: white; }
.smw-funnel-step--win span   { color: rgba(255,255,255,.55); }

.smw-fs-icon {
    width: 44px; height: 44px;
    background: rgba(0,0,61,.06);
    border-radius: var(--r-md);
    display: flex; align-items: center; justify-content: center;
}
.smw-fs-icon svg { width: 20px; height: 20px; stroke: var(--navy); }
.smw-fs-icon--win { background: rgba(255,255,255,.12); }
.smw-fs-icon--win svg { stroke: var(--gold); }

.smw-funnel-arrow { color: var(--gray-300); padding: 0 8px; flex-shrink: 0; }

/* ── Channel Comparison Table ── */
.smw-channels { padding: 100px 0; background: white; }

.smw-channel-table {
    display: flex; flex-direction: column;
    border: 1px solid var(--gray-100);
    border-radius: var(--r-xl);
    overflow: hidden;
}

.smw-ct-row {
    display: grid;
    grid-template-columns: 220px 1fr 200px 160px;
    gap: 0;
    border-bottom: 1px solid var(--gray-100);
    align-items: start;
    padding: 28px 32px;
    gap: 24px;
    transition: background .2s;
}
.smw-ct-row:last-child { border-bottom: none; }
.smw-ct-row:hover { background: var(--gray-50); }
.smw-ct-row--featured {
    background: rgba(0,0,61,.02);
    border-left: 3px solid var(--navy);
}

.smw-ct-platform { display: flex; align-items: center; gap: 12px; }
.smw-ct-icon {
    width: 40px; height: 40px; border-radius: var(--r-md);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.smw-ct-icon svg { width: 18px; height: 18px; }
.smw-ct-icon--google { background: #EEF2FF; }
.smw-ct-icon--google svg { stroke: #4F46E5; }
.smw-ct-icon--social { background: #FDF2F8; }
.smw-ct-icon--social svg { stroke: #EC4899; }
.smw-ct-icon--youtube { background: #FEF2F2; }
.smw-ct-icon--youtube svg { stroke: #EF4444; }

.smw-ct-name { font-size: 14px; font-weight: 700; color: var(--navy); }
.smw-ct-type { font-size: 12px; color: var(--gray-500); margin-top: 2px; }

.smw-ct-desc { font-size: 13px; color: var(--gray-700); line-height: 1.65; padding-top: 4px; }

.smw-ct-pros { display: flex; flex-wrap: wrap; gap: 6px; padding-top: 4px; }
.smw-ct-tag {
    font-size: 11px; font-weight: 700; padding: 4px 10px;
    border-radius: 20px;
}
.smw-ct-tag--pro { background: #F0FDF4; color: #16A34A; }
.smw-ct-tag--con { background: #FEF2F2; color: #DC2626; }

.smw-ct-badge {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 11px; font-weight: 700;
    padding: 5px 12px; border-radius: 20px;
    align-self: flex-start;
}
.smw-ct-badge--yes { background: #F0FDF4; color: #16A34A; }

/* ── Production ── */
.smw-production { padding: 100px 0; background: var(--gray-50); border-top: 1px solid var(--gray-100); }

.smw-prod-steps { display: flex; flex-direction: column; }
.smw-ps-item {
    display: flex; align-items: flex-start; gap: 16px;
    padding: 20px 24px;
    background: white; border: 1px solid var(--gray-100);
    border-radius: var(--r-lg);
}
.smw-ps-line {
    width: 2px; height: 20px;
    background: var(--gray-100);
    margin-left: 34px;
}
.smw-ps-num {
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--navy); color: white;
    font-size: 12px; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.smw-ps-num--win { background: #16A34A; }
.smw-ps-body strong { display: block; font-size: 14px; color: var(--navy); margin-bottom: 2px; }
.smw-ps-body span   { font-size: 13px; color: var(--gray-500); }
.smw-ps-item--win { border-color: #BBF7D0; background: #F0FDF4; }
.smw-ps-item--win strong { color: #16A34A; }

.smw-link-btn {
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: 28px; padding: 12px 24px;
    background: var(--navy); color: white;
    font-size: 14px; font-weight: 700;
    border-radius: var(--r-full); text-decoration: none;
    transition: var(--t);
}
.smw-link-btn:hover { background: var(--navy-mid); transform: translateY(-2px); box-shadow: var(--sh-md); }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .smw-ct-row { grid-template-columns: 1fr 1fr; }
    .smw-ct-badge { grid-column: 1; }
}
@media (max-width: 900px) {
    .smw-two-col,
    .smw-two-col--reverse { grid-template-columns: 1fr; gap: 48px; }
    .smw-two-col--reverse .smw-col-text  { order: 1; }
    .smw-two-col--reverse .smw-col-visual { order: 2; }
    .smw-ct-row { grid-template-columns: 1fr; }
    .smw-funnel { gap: 4px; }
    .smw-funnel-step { min-width: 120px; padding: 16px 12px; }
}

/* ==============================================
   SOCIAL MEDIA WERBUNG PAGE
   ============================================== */

/* ── Intro ── */
.smw-intro { padding: 100px 0 80px; background: white; }
.smw-intro-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 72px; align-items: center;
}
.smw-intro-text h2 { margin-bottom: 20px; }
.smw-intro-text .subtitel { max-width: 100%; }

.smw-target-card {
    background: var(--gray-50); border: 1px solid var(--gray-100);
    border-radius: var(--r-xl); padding: 8px; display: flex; flex-direction: column; gap: 4px;
}
.smw-target-row {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 16px; background: white;
    border-radius: var(--r-md); border: 1px solid var(--gray-100);
}
.smw-target-icon { font-size: 22px; flex-shrink: 0; }
.smw-target-label { font-size: 14px; font-weight: 700; color: var(--navy); }
.smw-target-sub   { font-size: 12px; color: var(--gray-500); margin-top: 2px; }
.smw-target-match {
    margin-left: auto; font-size: 12px; font-weight: 700;
    color: #16A34A; background: #F0FDF4;
    padding: 3px 10px; border-radius: 20px; white-space: nowrap;
}
.smw-cpc-badge {
    display: flex; align-items: center; gap: 14px;
    padding: 18px 24px; background: var(--navy);
    border-radius: var(--r-lg); margin-top: 12px;
}
.smw-cpc-num  { font-size: 28px; font-weight: 800; color: var(--gold); white-space: nowrap; letter-spacing: -.02em; }
.smw-cpc-label{ font-size: 13px; color: rgba(255,255,255,.65); line-height: 1.4; }

/* ── How it works ── */
.smw-interest { padding: 80px 0; background: var(--gray-50); border-top: 1px solid var(--gray-100); }
.smw-interest-header { text-align: center; margin-bottom: 52px; }
.smw-interest-header h2 { margin-bottom: 12px; color: var(--navy); }
.smw-interest-header .subtitel { max-width: 560px; margin: 0 auto; color: var(--gray-500); }

.smw-flow {
    display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: start; gap: 0; margin-bottom: 32px;
}
.smw-flow-arrow {
    font-size: 22px; color: var(--gray-300);
    padding: 32px 16px 0; line-height: 1;
}
.smw-flow-step {
    background: white; border: 1px solid var(--gray-100);
    border-radius: var(--r-xl); padding: 28px 24px;
    display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px;
    position: relative;
}
.smw-flow-step--gold {
    background: var(--navy); border-color: var(--navy);
}
.smw-flow-step--gold strong,
.smw-flow-step--gold span { color: white; }
.smw-flow-step--gold span { color: rgba(255,255,255,.6); }

.smw-flow-num {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    font-size: 10px; font-weight: 800; letter-spacing: .1em;
    background: var(--gray-100); color: var(--gray-500);
    padding: 2px 10px; border-radius: 20px;
}
.smw-flow-num--gold { background: var(--gold); color: var(--navy); }

.smw-flow-icon {
    width: 44px; height: 44px; border-radius: var(--r-md);
    background: rgba(0,0,61,.06);
    display: flex; align-items: center; justify-content: center;
}
.smw-flow-icon svg { width: 20px; height: 20px; stroke: var(--navy); }
.smw-flow-icon--gold { background: rgba(184,149,90,.15); }
.smw-flow-icon--gold svg { stroke: var(--gold); }
.smw-flow-step strong { font-size: 15px; color: var(--navy) !important; }
.smw-flow-step span   { font-size: 13px; color: var(--gray-500) !important; line-height: 1.5; }

.smw-lp-hint {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; color: var(--gray-500); font-weight: 500;
    padding: 10px 20px; background: white;
    border: 1px solid var(--gray-100); border-radius: var(--r-full);
    transition: var(--t); text-decoration: none;
}
.smw-lp-hint:hover { border-color: var(--navy); color: var(--navy); }
.smw-lp-hint svg { flex-shrink: 0; stroke: var(--navy); }

/* ── Platform Cards ── */
.smw-platforms { padding: 80px 0; background: white; }
.smw-platforms-header { text-align: center; margin-bottom: 52px; }
.smw-platforms-header h2 { margin-bottom: 12px; color: var(--navy); }
.smw-platforms-header .subtitel { max-width: 540px; margin: 0 auto; color: var(--gray-500); }

.smw-platform-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.smw-platform-card {
    border: 1px solid var(--gray-100); border-radius: var(--r-xl);
    padding: 32px 28px; display: flex; flex-direction: column; gap: 14px;
    background: var(--gray-50);
}
.smw-platform-card--featured {
    background: var(--navy); border-color: var(--navy);
}
.smw-platform-card--featured h3,
.smw-platform-card--featured p,
.smw-platform-card--featured li { color: white; }
.smw-platform-card--featured h3 { color: white; }
.smw-platform-card--featured p  { color: rgba(255,255,255,.65); }
.smw-platform-card--featured li { color: rgba(255,255,255,.8); }
.smw-platform-card--featured .smw-plat-type { color: var(--gold); }
.smw-platform-card--featured .smw-voyane-compat { border-top-color: rgba(255,255,255,.1); color: rgba(255,255,255,.55); }

.smw-plat-icon {
    width: 46px; height: 46px; border-radius: var(--r-md);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.smw-plat-icon--google  { background: #FEF3C7; }
.smw-plat-icon--google svg  { stroke: #D97706; }
.smw-plat-icon--meta    { background: #EFF6FF; }
.smw-plat-icon--meta svg    { stroke: #2563EB; }
.smw-plat-icon--tiktok  { background: #FDF2F8; }
.smw-plat-icon--tiktok svg  { stroke: #9333EA; }
.smw-plat-icon--youtube { background: #FEF2F2; }
.smw-plat-icon--youtube svg { stroke: #DC2626; }

.smw-platform-card h3      { font-size: 17px; color: var(--navy); margin: 0; }
.smw-plat-type             { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--gray-500); }
.smw-platform-card p       { font-size: 13px; color: var(--gray-700); line-height: 1.6; }
.smw-platform-card ul      { list-style: none; display: flex; flex-direction: column; gap: 6px; margin-top: auto; padding: 0; }
.smw-platform-card li      { font-size: 13px; color: var(--gray-700); font-weight: 600; display: flex; align-items: center; gap: 7px; }
.smw-platform-card li::before { content: '✓'; color: #16A34A; font-weight: 800; font-size: 12px; }

.smw-voyane-compat {
    display: flex; align-items: center; gap: 8px;
    font-size: 12px; color: var(--gray-500); font-weight: 600;
    padding-top: 14px; border-top: 1px solid var(--gray-100);
    margin-top: auto;
}
.smw-voyane-dot {
    width: 8px; height: 8px; border-radius: 50%; background: #16A34A; flex-shrink: 0;
}

/* ── Table Section ── */
.smw-table-section { padding: 80px 0 100px; background: var(--gray-50); border-top: 1px solid var(--gray-100); }
.smw-table-header { text-align: center; margin-bottom: 48px; }
.smw-table-header h2 { margin-bottom: 12px; }

.smw-cost-table-wrap { overflow-x: auto; border-radius: var(--r-xl); box-shadow: var(--sh-md); }
.smw-cost-table {
    width: 100%; border-collapse: collapse; background: white;
    border-radius: var(--r-xl); overflow: hidden;
}
.smw-cost-table thead { background: var(--navy); }
.smw-cost-table thead th {
    padding: 16px 20px; font-size: 12px; font-weight: 700;
    color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .08em;
    text-align: left;
}
.smw-cost-table tbody tr { border-bottom: 1px solid var(--gray-100); transition: background .15s; }
.smw-cost-table tbody tr:last-child { border-bottom: none; }
.smw-cost-table tbody tr:hover { background: var(--gray-50); }
.smw-cost-table tbody td { padding: 16px 20px; font-size: 14px; color: var(--navy); }
.smw-row-bad  { background: #FEF9F9; }
.smw-row-highlight { background: #F0FDF4; }
.smw-cost-bad  { color: #DC2626; font-weight: 700; }
.smw-cost-mid  { color: #D97706; font-weight: 700; }
.smw-cost-good { color: #16A34A; font-weight: 700; }
.smw-yes { color: #16A34A; font-weight: 600; }
.smw-no  { color: #DC2626; font-weight: 600; }

.smw-plat-cost {
    font-size: 13px; font-weight: 700;
    color: var(--navy); background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: var(--r-md); padding: 8px 14px;
    text-align: center; margin-top: 4px;
}
.smw-platform-card--featured .smw-plat-cost {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.15);
    color: var(--gold);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .smw-platform-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
    .smw-intro-grid { grid-template-columns: 1fr; gap: 48px; }
    .smw-flow { grid-template-columns: 1fr; }
    .smw-flow-arrow { display: none; }
    .smw-platform-grid { grid-template-columns: 1fr; }
}

/* ==============================================
   LANDINGPAGES PAGE
   ============================================== */

/* ── Intro ── */
.lp-intro { padding: 100px 0 80px; background: white; }
.lp-intro-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.lp-intro-card {
    border: 1px solid var(--gray-100); border-radius: var(--r-xl);
    padding: 40px 36px; display: flex; flex-direction: column; gap: 16px;
    background: var(--gray-50);
}
.lp-intro-card--navy {
    background: var(--navy); border-color: var(--navy);
}
.lp-intro-card--navy h3 { color: white; }
.lp-intro-card--navy p  { color: rgba(255,255,255,.65); }

.lp-intro-icon {
    width: 48px; height: 48px; border-radius: var(--r-md);
    background: rgba(0,0,61,.08);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.lp-intro-icon svg { stroke: var(--navy); }
.lp-intro-card--navy .lp-intro-icon { background: rgba(255,255,255,.12); }
.lp-intro-card--navy .lp-intro-icon svg { stroke: white; }
.lp-intro-icon--gold { background: rgba(184,149,90,.12); }
.lp-intro-icon--gold svg { stroke: var(--gold); }

.lp-intro-card h3 { font-size: 20px; color: var(--navy); margin: 0; }
.lp-intro-card p  { font-size: 15px; color: var(--gray-500); line-height: 1.65; margin: 0; }

/* ── Performance Steps ── */
.lp-performance {
    padding: 80px 0; background: var(--gray-50);
    border-top: 1px solid var(--gray-100);
}
.lp-perf-header { margin-bottom: 56px; }
.lp-perf-header h2 { margin-bottom: 12px; color: var(--navy); }

.lp-steps { display: flex; flex-direction: column; gap: 0; }

.lp-step {
    background: white; border: 1px solid var(--gray-100);
    border-radius: var(--r-xl); padding: 36px 40px;
    position: relative;
}
.lp-step--gold {
    background: var(--navy); border-color: var(--navy);
}
.lp-step--gold h4 { color: white; }
.lp-step--gold p  { color: rgba(255,255,255,.65); }
.lp-step--gold strong { color: white; }

.lp-step-num {
    position: absolute; top: 36px; right: 40px;
    font-size: 11px; font-weight: 800; letter-spacing: .1em;
    color: var(--gray-300); background: var(--gray-50);
    padding: 4px 12px; border-radius: 20px; border: 1px solid var(--gray-100);
}
.lp-step-num--gold { background: var(--gold); color: var(--navy); border-color: var(--gold); }

.lp-step-content {
    display: grid; grid-template-columns: auto 1fr auto;
    align-items: center; gap: 28px;
}
.lp-step-icon {
    width: 52px; height: 52px; border-radius: var(--r-md);
    background: rgba(0,0,61,.06);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.lp-step-icon svg { width: 22px; height: 22px; stroke: var(--navy); }
.lp-step-icon--gold { background: rgba(184,149,90,.15); }
.lp-step-icon--gold svg { stroke: var(--gold); }

.lp-step-text h4 { font-size: 18px; color: var(--navy); margin-bottom: 8px; }
.lp-step-text p  { font-size: 14px; color: var(--gray-500); line-height: 1.65; margin: 0; }
.lp-step-text strong { color: var(--navy); }

.lp-step-stat {
    display: flex; flex-direction: column; align-items: center; text-align: center;
    padding: 16px 24px; background: var(--gray-50);
    border: 1px solid var(--gray-100); border-radius: var(--r-lg); flex-shrink: 0;
}
.lp-stat-num   { font-size: 24px; font-weight: 800; color: var(--navy); letter-spacing: -.02em; }
.lp-stat-label { font-size: 11px; color: var(--gray-500); font-weight: 600; margin-top: 2px; }

.lp-step-channels {
    display: flex; flex-direction: column; gap: 8px; flex-shrink: 0;
}
.lp-step-channels span {
    font-size: 13px; font-weight: 600; color: var(--navy);
    padding: 6px 16px; background: var(--gray-50);
    border: 1px solid var(--gray-100); border-radius: var(--r-full);
    white-space: nowrap;
}

.lp-step-badge {
    display: flex; align-items: center; gap: 7px; flex-shrink: 0;
    font-size: 13px; font-weight: 700; color: var(--gold);
    padding: 10px 18px; background: rgba(184,149,90,.12);
    border: 1px solid rgba(184,149,90,.25); border-radius: var(--r-full);
}
.lp-step-badge svg { stroke: var(--gold); flex-shrink: 0; }

.lp-step-connector {
    width: 2px; height: 28px; background: var(--gray-100);
    margin-left: 60px;
}

/* ── Trust ── */
.lp-trust {
    padding: 80px 0 100px; background: white;
    border-top: 1px solid var(--gray-100);
}
.lp-trust-header { margin-bottom: 52px; }
.lp-trust-header h2 { margin-bottom: 12px; color: var(--navy); }
.lp-trust-header .subtitel { max-width: 560px; }

.lp-trust-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.lp-trust-card {
    background: var(--gray-50); border: 1px solid var(--gray-100);
    border-radius: var(--r-xl); padding: 32px 28px;
    display: flex; flex-direction: column; gap: 14px;
}
.lp-trust-icon {
    width: 46px; height: 46px; background: rgba(0,0,61,.06);
    border-radius: var(--r-md);
    display: flex; align-items: center; justify-content: center;
}
.lp-trust-icon svg { width: 20px; height: 20px; stroke: var(--navy); }
.lp-trust-card h4 { font-size: 16px; color: var(--navy); margin: 0; }
.lp-trust-card p  { font-size: 13px; color: var(--gray-500); line-height: 1.65; margin: 0; }
.lp-trust-card p strong { color: var(--navy); }

.lp-trust-badge {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12px; font-weight: 700; color: var(--gray-500);
    padding: 6px 14px; background: white;
    border: 1px solid var(--gray-100); border-radius: var(--r-full);
    margin-top: auto; width: fit-content;
}
.lp-trust-badge--green { color: #16A34A; border-color: #BBF7D0; background: #F0FDF4; }
.lp-trust-badge--blue  { color: #1D4ED8; border-color: #BFDBFE; background: #EFF6FF; }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .lp-trust-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
    .lp-intro-grid { grid-template-columns: 1fr; }
    .lp-step-content { grid-template-columns: auto 1fr; }
    .lp-step-stat, .lp-step-channels, .lp-step-badge { grid-column: 2; }
    .lp-trust-grid { grid-template-columns: 1fr; }
}

/* ── Landingpages: fixes ── */
/* Last step always white */
.lp-step { background: white; border: 1px solid var(--gray-100); }
/* Remove navy override */
.lp-step--gold { background: white !important; border-color: var(--gray-100) !important; }
.lp-step--gold h4    { color: var(--navy) !important; }
.lp-step--gold p     { color: var(--gray-500) !important; }
.lp-step--gold strong { color: var(--navy) !important; }

/* Badge variant for white box */
.lp-step-badge--navy {
    background: rgba(0,0,61,.06);
    border-color: rgba(0,0,61,.12);
    color: var(--navy);
}
.lp-step-badge--navy svg { stroke: var(--navy); }

/* Trust header centred */
.lp-trust-header { text-align: center; }
.lp-trust-header .subtitel { margin: 0 auto; }

/* Remove icon gap from trust cards */
.lp-trust-card { gap: 12px; }

/* ==============================================
   AUTOMATISIERUNGEN PAGE
   ============================================== */

/* ── Channel pills on step 1 ── */
.auto-step-channels { display: flex; gap: 8px; flex-shrink: 0; flex-wrap: wrap; justify-content: flex-end; }
.auto-channel {
    font-size: 12px; font-weight: 700;
    padding: 5px 14px; border-radius: var(--r-full);
    border: 1px solid transparent;
}
.auto-channel--meta   { background: #EFF6FF; color: #2563EB; border-color: #BFDBFE; }
.auto-channel--google { background: #FEF3C7; color: #D97706; border-color: #FDE68A; }
.auto-channel--tiktok { background: #FDF2F8; color: #9333EA; border-color: #F5D0FE; }

/* ── Animated connector ── */
.auto-connector {
    position: relative; overflow: hidden;
}
.auto-connector::after {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 2px; height: 100%;
    background: linear-gradient(to bottom, var(--gold) 0%, transparent 100%);
    animation: connectorPulse 2s ease-in-out infinite;
}
@keyframes connectorPulse {
    0%, 100% { opacity: .3; transform: scaleY(.5) translateY(0); }
    50%       { opacity: 1; transform: scaleY(1)  translateY(0); }
}

/* ── Pixel branch step ── */
.lp-step--pixel { padding-bottom: 40px; }
.lp-step-content--col { flex-direction: column; gap: 28px; grid-template-columns: 1fr; }
.auto-pixel-header { display: grid; grid-template-columns: auto 1fr; gap: 28px; align-items: center; }

/* Pulse icon */
.lp-step-icon--pulse {
    background: rgba(0,0,61,.06); position: relative;
}
.lp-step-icon--pulse svg { stroke: var(--navy); }
.lp-step-icon--pulse::after {
    content: '';
    position: absolute; inset: -4px; border-radius: 50%;
    border: 2px solid var(--navy); opacity: 0;
    animation: iconPulse 2s ease-out infinite;
}
@keyframes iconPulse {
    0%   { opacity: .5; transform: scale(.85); }
    100% { opacity: 0;  transform: scale(1.4); }
}

/* Branch layout */
.auto-branch { display: flex; flex-direction: column; gap: 0; }
.auto-branch-line {
    width: 2px; height: 24px; background: var(--gray-100); margin-left: 32px;
}
.auto-branches { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.auto-branch-card {
    border-radius: var(--r-xl); padding: 24px 28px;
    display: flex; flex-direction: column; gap: 14px;
    border: 1px solid transparent;
}
.auto-branch-card--yes { background: #F0FDF4; border-color: #BBF7D0; }
.auto-branch-card--no  { background: #FFF9F0; border-color: #FEE2A0; }

.auto-branch-label {
    display: flex; align-items: center; gap: 7px;
    font-size: 13px; font-weight: 800; letter-spacing: .01em;
}
.auto-branch-label--yes { color: #16A34A; }
.auto-branch-label--yes svg { stroke: #16A34A; }
.auto-branch-label--no  { color: #D97706; }
.auto-branch-label--no svg  { stroke: #D97706; }

.auto-branch-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.auto-branch-list li {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 600; color: var(--navy);
}
.auto-branch-list li svg { stroke: var(--gray-500); flex-shrink: 0; }
.auto-branch-note {
    font-size: 12px; color: var(--gray-500); line-height: 1.55;
    border-top: 1px solid rgba(0,0,0,.06); padding-top: 12px; margin: 0;
}

/* ── Unlimited hint ── */
.auto-unlimited-hint {
    display: inline-flex; align-items: center; gap: 10px;
    margin-top: 32px;
    font-size: 14px; font-weight: 600; color: var(--navy);
    padding: 12px 24px; background: white;
    border: 1px solid var(--gray-100); border-radius: var(--r-full);
    box-shadow: var(--sh-sm);
}
.auto-unlimited-hint svg { stroke: var(--gold); flex-shrink: 0; }

/* ── Newsletter Section ── */
.auto-newsletter {
    padding: 80px 0; background: white;
    border-top: 1px solid var(--gray-100);
}
.auto-nl-inner {
    display: grid; grid-template-columns: 1fr 420px;
    gap: 72px; align-items: center;
}
.auto-nl-text h2 { margin-bottom: 16px; color: var(--navy); }
.auto-nl-text .subtitel { max-width: 100%; }
.auto-nl-text strong { color: var(--navy); }

.auto-nl-features {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 10px; margin-top: 28px;
}
.auto-nl-feat {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 600; color: var(--navy);
}
.auto-nl-feat svg { stroke: #16A34A; flex-shrink: 0; }

/* Brevo card mock */
.auto-nl-card {
    background: var(--navy); border-radius: var(--r-xl);
    padding: 28px; display: flex; flex-direction: column; gap: 20px;
}
.auto-nl-logo {
    font-size: 22px; font-weight: 800; color: white;
    letter-spacing: -.02em;
}
.auto-nl-preview {
    background: white; border-radius: var(--r-lg);
    padding: 20px; display: flex; flex-direction: column; gap: 10px;
}
.auto-nl-preview-bar {
    height: 80px; background: var(--gray-100);
    border-radius: var(--r-md);
}
.auto-nl-preview-line {
    height: 10px; background: var(--gray-100); border-radius: 4px;
}
.auto-nl-preview-line--short { width: 50%; }
.auto-nl-preview-line--mid   { width: 75%; }
.auto-nl-preview-btn {
    margin-top: 4px; padding: 10px 16px;
    background: var(--navy); color: white;
    border-radius: var(--r-md); font-size: 12px; font-weight: 700;
    text-align: center;
}
.auto-nl-badge {
    display: inline-flex; align-items: center; gap: 7px; width: fit-content;
    font-size: 12px; font-weight: 700; color: var(--gold);
    padding: 7px 16px; background: rgba(184,149,90,.12);
    border: 1px solid rgba(184,149,90,.25); border-radius: var(--r-full);
}
.auto-nl-badge svg { stroke: var(--gold); }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .auto-nl-inner { grid-template-columns: 1fr; }
    .auto-nl-card  { max-width: 420px; }
}
@media (max-width: 768px) {
    .auto-branches { grid-template-columns: 1fr; }
    .auto-pixel-header { grid-template-columns: auto 1fr; }
    .auto-nl-features { grid-template-columns: 1fr; }
    .lp-step-content--col .lp-step-content { grid-template-columns: auto 1fr; }
}

/* ==============================================
   AUTOMATISIERUNGEN PAGE
   ============================================== */

/* ── Flow Section ── */
.auto-flow-section {
    padding: 100px 0 80px;
    background: white;
}
.auto-flow-header { margin-bottom: 60px; }
.auto-flow-header h2 { margin-bottom: 12px; color: var(--navy); }
.auto-flow-header .subtitel { max-width: 560px; }

/* ── Node ── */
.auto-flow-section .auto-flow { display: flex; flex-direction: column; align-items: center; gap: 0; }

.auto-flow-section .auto-node {
    width: 100%; max-width: 680px;
    background: white; border: 1px solid var(--gray-100);
    border-radius: var(--r-xl); padding: 28px 32px;
    display: flex; align-items: flex-start; gap: 20px;
    position: relative;
}
.auto-flow-section .auto-node--start {
    background: var(--navy); border-color: var(--navy);
}
.auto-flow-section .auto-node--start h4 { color: white; }
.auto-flow-section .auto-node--start p  { color: rgba(255,255,255,.6); }
.auto-flow-section .auto-node--decision {
    background: #FEFCE8; border-color: #FDE68A;
}
.auto-flow-section .auto-node--decision h4 { color: #92400E; }
.auto-flow-section .auto-node--decision p  { color: #78350F; opacity: .7; }
.auto-flow-section .auto-node--yes {
    background: #F0FDF4; border-color: #BBF7D0;
}
.auto-flow-section .auto-node--yes h4 { color: #14532D; }
.auto-flow-section .auto-node--yes p  { color: #166534; opacity: .8; }
.auto-flow-section .auto-node--no {
    background: #FFF7ED; border-color: #FED7AA;
}
.auto-flow-section .auto-node--no h4 { color: #7C2D12; }
.auto-flow-section .auto-node--no p  { color: #9A3412; opacity: .8; }

.auto-flow-section .auto-node-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    background: rgba(0,0,61,.07); border-radius: var(--r-md);
    display: flex; align-items: center; justify-content: center;
}
.auto-flow-section .auto-node-icon svg { width: 20px; height: 20px; stroke: var(--navy); }
.auto-flow-section .auto-node--start .auto-node-icon { background: rgba(255,255,255,.12); }
.auto-node--start .auto-flow-section .auto-node-icon svg { stroke: white; }
.auto-flow-section .auto-node-icon--gold { background: rgba(184,149,90,.15); }
.auto-flow-section .auto-node-icon--gold svg { stroke: var(--gold); }
.auto-flow-section .auto-node-icon--green { background: rgba(22,163,74,.12); }
.auto-flow-section .auto-node-icon--green svg { stroke: #16A34A; }
.auto-flow-section .auto-node-icon--orange { background: rgba(234,88,12,.12); }
.auto-flow-section .auto-node-icon--orange svg { stroke: #EA580C; }

.auto-flow-section .auto-node-body { flex: 1; }
.auto-flow-section .auto-node-body h4 { font-size: 17px; color: var(--navy); margin-bottom: 8px; }
.auto-flow-section .auto-node-body p  { font-size: 13px; color: var(--gray-500); line-height: 1.65; margin: 0 0 12px; }

.auto-flow-section .auto-node-tag {
    display: inline-block; font-size: 10px; font-weight: 800;
    letter-spacing: .1em; text-transform: uppercase;
    padding: 3px 10px; border-radius: 20px;
    background: rgba(255,255,255,.2); color: rgba(255,255,255,.8);
    margin-bottom: 8px;
}
.auto-flow-section .auto-node-tag--neutral { background: var(--gray-100); color: var(--gray-500); }
.auto-flow-section .auto-node-tag--gold    { background: rgba(184,149,90,.15); color: #92650A; }
.auto-flow-section .auto-node-tag--green   { background: rgba(22,163,74,.12); color: #15803D; }
.auto-flow-section .auto-node-tag--orange  { background: rgba(234,88,12,.1); color: #C2410C; }

.auto-flow-section .auto-node-channels {
    display: flex; flex-wrap: wrap; gap: 6px;
}
.auto-flow-section .auto-node-channels span {
    font-size: 12px; font-weight: 600; color: var(--gray-500);
    background: white; border: 1px solid var(--gray-100);
    padding: 3px 12px; border-radius: 20px;
}
.auto-node--start .auto-flow-section .auto-node-channels span {
    background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); color: rgba(255,255,255,.8);
}

.auto-flow-section .auto-node-stat {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 16px; background: var(--gray-50);
    border: 1px solid var(--gray-100); border-radius: var(--r-md);
}
.auto-flow-section .auto-stat-val { font-size: 18px; font-weight: 800; color: var(--navy); letter-spacing: -.02em; }
.auto-flow-section .auto-stat-lbl { font-size: 12px; color: var(--gray-500); font-weight: 600; }

.auto-flow-section .auto-workflow-note {
    display: flex; align-items: center; gap: 6px;
    font-size: 12px; font-weight: 600; color: inherit; opacity: .7;
    margin-top: 10px;
}
.auto-flow-section .auto-workflow-note svg { flex-shrink: 0; }

/* ── Connectors ── */
.auto-flow-section .auto-connector {
    width: 2px; height: 32px;
    background: linear-gradient(to bottom, var(--gray-200), var(--gray-100));
    flex-shrink: 0;
}
.auto-flow-section .auto-connector--short { height: 20px; }

/* ── Fork ── */
.auto-flow-section .auto-fork { width: 100%; max-width: 680px; }
.auto-flow-section .auto-fork-connector {
    width: 2px; height: 32px; margin: 0 auto;
    background: linear-gradient(to bottom, var(--gray-200), var(--gray-100));
}
.auto-flow-section .auto-fork-branches {
    display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
    align-items: start;
}
.auto-flow-section .auto-branch { display: flex; flex-direction: column; align-items: center; }

.auto-flow-section .auto-branch-label {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12px; font-weight: 800; padding: 5px 14px;
    border-radius: 20px; margin-bottom: 0; letter-spacing: .02em;
}
.auto-flow-section .auto-branch-label--yes { background: #F0FDF4; color: #16A34A; border: 1px solid #BBF7D0; }
.auto-flow-section .auto-branch-label--no  { background: #FFF7ED; color: #EA580C; border: 1px solid #FED7AA; }

/* ── More Automations ── */
.auto-more {
    padding: 80px 0;
    background: var(--gray-50); border-top: 1px solid var(--gray-100);
}
.auto-more-header { margin-bottom: 48px; }
.auto-more-header h2 { margin-bottom: 12px; color: var(--navy); }

.auto-more-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.auto-more-card {
    background: white; border: 1px solid var(--gray-100);
    border-radius: var(--r-xl); padding: 28px 24px;
    display: flex; flex-direction: column; gap: 12px;
}
.auto-more-icon {
    width: 42px; height: 42px; background: rgba(0,0,61,.06);
    border-radius: var(--r-md);
    display: flex; align-items: center; justify-content: center;
}
.auto-more-icon svg { width: 18px; height: 18px; stroke: var(--navy); }
.auto-more-card h4 { font-size: 15px; color: var(--navy); margin: 0; }
.auto-more-card p  { font-size: 13px; color: var(--gray-500); line-height: 1.6; margin: 0; }

/* ── Newsletter ── */
.auto-newsletter {
    padding: 80px 0 100px; background: white;
    border-top: 1px solid var(--gray-100);
}
.auto-nl-inner {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.auto-nl-text h2 { margin-bottom: 20px; color: var(--navy); }
.auto-nl-text .subtitel { max-width: 100%; }
.auto-nl-text strong { color: var(--navy); }

.auto-nl-badges {
    display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px;
}
.auto-nl-badges span {
    font-size: 13px; font-weight: 700; color: #16A34A;
    background: #F0FDF4; border: 1px solid #BBF7D0;
    padding: 6px 14px; border-radius: var(--r-full);
}

.auto-nl-card {
    background: var(--gray-50); border: 1px solid var(--gray-100);
    border-radius: var(--r-xl); padding: 28px; overflow: hidden;
}
.auto-nl-card-header {
    display: flex; align-items: center; gap: 12px; margin-bottom: 24px;
}
.auto-nl-logo {
    width: 36px; height: 36px; background: #0B82F6;
    border-radius: var(--r-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; font-weight: 800; color: white;
}
.auto-nl-card-header span { font-size: 14px; font-weight: 700; color: var(--navy); }
.auto-nl-preview { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.auto-nl-bar {
    height: 12px; border-radius: 6px; background: var(--gray-100);
}
.auto-nl-bar--wide  { width: 100%; }
.auto-nl-bar--mid   { width: 70%; }
.auto-nl-bar--short { width: 45%; }
.auto-nl-bar--btn   {
    width: 40%; height: 32px; border-radius: var(--r-md);
    background: #0B82F6; opacity: .25;
}
.auto-nl-card-footer { border-top: 1px solid var(--gray-100); padding-top: 16px; }
.auto-nl-status { font-size: 12px; font-weight: 700; color: #16A34A; }
.auto-nl-status::before { content: '● '; }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .auto-more-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
    .auto-flow-section .auto-fork-branches { grid-template-columns: 1fr; }
    .auto-flow-section .auto-node { max-width: 100%; }
    .auto-flow-section .auto-flow-section .auto-fork { max-width: 100%; }
    .auto-nl-inner { grid-template-columns: 1fr; gap: 48px; }
    .auto-more-grid { grid-template-columns: 1fr; }
}

/* Automatisierungen: grey start node override */
.auto-flow-section .auto-node--grey {
    background: var(--gray-50) !important;
    border-color: var(--gray-100) !important;
}
.auto-flow-section .auto-node--grey h4 { color: var(--navy) !important; }
.auto-flow-section .auto-node--grey p  { color: var(--gray-500) !important; }
.auto-flow-section .auto-node--grey .auto-node-icon { background: rgba(0,0,61,.06) !important; }
.auto-node--grey .auto-flow-section .auto-node-icon svg { stroke: var(--navy) !important; }
.auto-node--grey .auto-flow-section .auto-node-channels span {
    background: white !important;
    border-color: var(--gray-100) !important;
    color: var(--gray-500) !important;
}

/* Newsletter channel status */
.auto-nl-status--channels {
    font-size: 12px; font-weight: 700;
    color: var(--navy); letter-spacing: .02em;
}

/* ==============================================
   NEWSLETTER PAGE
   ============================================== */

/* ── Not Classic ── */
.nl-notclassic { padding: 100px 0 80px; background: white; }
.nl-notclassic-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }

.nl-nc-card {
    border-radius: var(--r-xl); padding: 36px 32px;
    border: 1px solid var(--gray-100);
}
.nl-nc-card--bad  { background: var(--gray-50); }
.nl-nc-card--good { background: var(--navy); border-color: var(--navy); }

.nl-nc-label {
    font-size: 11px; font-weight: 800; letter-spacing: .1em;
    text-transform: uppercase; color: var(--gray-300);
    margin-bottom: 20px;
}
.nl-nc-label--good { color: var(--gold); }

.nl-nc-list { list-style: none; display: flex; flex-direction: column; gap: 12px; padding: 0; margin: 0; }
.nl-nc-list li {
    font-size: 14px; font-weight: 500; display: flex; align-items: center; gap: 10px;
    color: var(--gray-700); line-height: 1.4;
}
.nl-nc-list--bad li::before {
    content: '✗'; color: #DC2626; font-weight: 800; flex-shrink: 0;
}
.nl-nc-list--good li { color: rgba(255,255,255,.85); }
.nl-nc-list--good li::before {
    content: '✓'; color: var(--gold); font-weight: 800; flex-shrink: 0;
}

.nl-nc-link {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: 28px; font-size: 13px; font-weight: 700;
    color: var(--gold); text-decoration: none;
    transition: gap .2s;
}
.nl-nc-link:hover { gap: 10px; }

/* ── Brevo ── */
.nl-brevo { padding: 80px 0; background: var(--gray-50); border-top: 1px solid var(--gray-100); }
.nl-brevo-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.nl-brevo-text h2 { margin-bottom: 20px; color: var(--navy); }
.nl-brevo-text .subtitel { max-width: 100%; }
.nl-brevo-text strong { color: var(--navy); }

.nl-brevo-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.nl-badge {
    font-size: 12px; font-weight: 700;
    padding: 6px 14px; border-radius: var(--r-full);
}
.nl-badge--green { color: #16A34A; background: #F0FDF4; border: 1px solid #BBF7D0; }
.nl-badge--blue  { color: #1D4ED8; background: #EFF6FF; border: 1px solid #BFDBFE; }

.nl-brevo-card {
    background: white; border: 1px solid var(--gray-100);
    border-radius: var(--r-xl); padding: 28px; box-shadow: var(--sh-md);
}
.nl-brevo-card-head {
    display: flex; align-items: center; gap: 14px; margin-bottom: 24px;
    padding-bottom: 20px; border-bottom: 1px solid var(--gray-100);
}
.nl-brevo-logo {
    width: 40px; height: 40px; background: #0B82F6;
    border-radius: var(--r-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; font-weight: 800; color: white; flex-shrink: 0;
}
.nl-brevo-name { font-size: 15px; font-weight: 800; color: var(--navy); }
.nl-brevo-sub  { font-size: 11px; color: var(--gray-500); margin-top: 1px; }

.nl-channel-list { display: flex; flex-direction: column; gap: 4px; margin-bottom: 20px; }
.nl-channel {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 14px; border-radius: var(--r-md);
    background: var(--gray-50); border: 1px solid var(--gray-100);
}
.nl-channel-icon {
    width: 32px; height: 32px; border-radius: var(--r-sm);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.nl-channel-icon--email    { background: #EFF6FF; }
.nl-channel-icon--email svg    { stroke: #2563EB; }
.nl-channel-icon--sms      { background: #F0FDF4; }
.nl-channel-icon--sms svg      { stroke: #16A34A; }
.nl-channel-icon--whatsapp { background: #F0FDF4; }
.nl-channel-icon--whatsapp svg { stroke: #16A34A; }

.nl-channel-text { flex: 1; }
.nl-channel-text strong { display: block; font-size: 13px; color: var(--navy); }
.nl-channel-text span   { font-size: 11px; color: var(--gray-500); }

.nl-channel-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #16A34A; flex-shrink: 0;
}

.nl-data-note {
    display: flex; align-items: center; gap: 7px;
    font-size: 12px; color: var(--gray-500); font-weight: 600;
    padding-top: 16px; border-top: 1px solid var(--gray-100);
}
.nl-data-note svg { stroke: var(--navy); flex-shrink: 0; }

/* ── Features ── */
.nl-features {
    padding: 80px 0 100px; background: white;
    border-top: 1px solid var(--gray-100);
}
.nl-features-header { margin-bottom: 48px; }
.nl-features-header h2 { margin-bottom: 12px; color: var(--navy); }

.nl-features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.nl-feature-card {
    border-radius: var(--r-xl); padding: 36px 32px;
    border: 1px solid var(--gray-100); background: var(--gray-50);
    display: flex; align-items: flex-start; gap: 20px;
}
.nl-feature-card--navy {
    background: var(--navy); border-color: var(--navy);
}
.nl-feature-card--navy h4  { color: white; }
.nl-feature-card--navy p   { color: rgba(255,255,255,.65); }
.nl-feature-card--navy em  { color: var(--gold); font-style: normal; font-weight: 600; }

.nl-feature-icon {
    width: 48px; height: 48px; flex-shrink: 0;
    background: rgba(0,0,61,.07); border-radius: var(--r-md);
    display: flex; align-items: center; justify-content: center;
}
.nl-feature-icon svg { width: 22px; height: 22px; stroke: var(--navy); }
.nl-feature-icon--light { background: rgba(255,255,255,.12); }
.nl-feature-icon--light svg { stroke: white; }

.nl-feature-card h4 { font-size: 17px; color: var(--navy); margin-bottom: 10px; }
.nl-feature-card p  { font-size: 14px; color: var(--gray-500); line-height: 1.65; margin: 0; }

/* ── Responsive ── */
@media (max-width: 900px) {
    .nl-notclassic-grid { grid-template-columns: 1fr; }
    .nl-brevo-inner     { grid-template-columns: 1fr; gap: 48px; }
    .nl-features-grid   { grid-template-columns: 1fr; }
}

/* ==============================================
   INTEGRATIONEN PAGE
   ============================================== */

/* ── How it works ── */
.int-how { padding: 80px 0; background: white; }
.int-how-header { margin-bottom: 56px; }
.int-how-header h2 { margin-bottom: 12px; color: var(--navy); }

.int-steps {
    display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 0; align-items: start; margin-bottom: 32px;
}
.int-step-arrow {
    font-size: 20px; color: var(--gray-300);
    padding: 52px 14px 0; line-height: 1;
}
.int-step {
    background: var(--gray-50); border: 1px solid var(--gray-100);
    border-radius: var(--r-xl); padding: 28px 24px;
    display: flex; flex-direction: column; gap: 10px;
    position: relative;
}
.int-step--gold { background: var(--navy); border-color: var(--navy); }
.int-step--gold h4 { color: white; }
.int-step--gold p  { color: rgba(255,255,255,.6); }

.int-step-num {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    font-size: 10px; font-weight: 800; letter-spacing: .1em;
    background: var(--gray-100); color: var(--gray-500);
    padding: 2px 10px; border-radius: 20px; white-space: nowrap;
}
.int-step-num--gold { background: var(--gold); color: var(--navy); }

.int-step-icon {
    width: 44px; height: 44px; border-radius: var(--r-md);
    background: rgba(0,0,61,.07);
    display: flex; align-items: center; justify-content: center;
}
.int-step-icon svg { width: 20px; height: 20px; stroke: var(--navy); }
.int-step-icon--gold { background: rgba(184,149,90,.15); }
.int-step-icon--gold svg { stroke: var(--gold); }

.int-step h4 { font-size: 15px; color: var(--navy); margin: 0; }
.int-step p  { font-size: 13px; color: var(--gray-500); line-height: 1.6; margin: 0; }

.int-step-link {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 13px; font-weight: 700; color: var(--gold);
    text-decoration: none; transition: gap .2s; margin-top: 4px;
}
.int-step-link:hover { gap: 8px; }

.int-no-ota {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; color: var(--gray-500); font-weight: 600;
    padding: 10px 20px; background: #F0FDF4;
    border: 1px solid #BBF7D0; border-radius: var(--r-full);
}
.int-no-ota svg { stroke: #16A34A; flex-shrink: 0; }

/* ── Setup ── */
.int-setup {
    padding: 80px 0 100px; background: var(--gray-50);
    border-top: 1px solid var(--gray-100);
}
.int-setup-header { margin-bottom: 52px; }
.int-setup-header h2 { margin-bottom: 12px; color: var(--navy); }

.int-setup-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 48px; }

.int-setup-card {
    background: white; border: 1px solid var(--gray-100);
    border-radius: var(--r-xl); padding: 36px 32px;
    display: flex; flex-direction: column; gap: 14px;
}
.int-setup-card--navy { background: var(--navy); border-color: var(--navy); }
.int-setup-card--navy h4 { color: white; }
.int-setup-card--navy p  { color: rgba(255,255,255,.65); }
.int-setup-card--navy em { color: var(--gold); font-style: normal; font-weight: 700; }

.int-setup-icon {
    width: 48px; height: 48px; border-radius: var(--r-md);
    background: rgba(255,255,255,.12);
    display: flex; align-items: center; justify-content: center;
}
.int-setup-icon svg { width: 22px; height: 22px; stroke: white; }
.int-setup-icon--navy { background: rgba(0,0,61,.07); }
.int-setup-icon--navy svg { stroke: var(--navy); }

.int-setup-card h4 { font-size: 17px; color: var(--navy); margin: 0; }
.int-setup-card p  { font-size: 14px; color: var(--gray-500); line-height: 1.65; margin: 0; }

.int-content-options {
    display: flex; flex-direction: column; gap: 6px; margin-top: 4px;
}
.int-content-options span {
    font-size: 12px; font-weight: 700; color: #16A34A;
}

/* ── Timeline ── */
.int-timeline {
    display: flex; align-items: center; gap: 0;
    background: white; border: 1px solid var(--gray-100);
    border-radius: var(--r-xl); padding: 28px 40px;
}
.int-tl-item { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.int-tl-dot {
    width: 14px; height: 14px; border-radius: 50%; flex-shrink: 0;
    background: var(--gray-200); border: 2px solid white;
    box-shadow: 0 0 0 2px var(--gray-200);
}
.int-tl-dot--active { background: var(--navy); box-shadow: 0 0 0 2px var(--navy); }
.int-tl-dot--gold   { background: var(--gold); box-shadow: 0 0 0 2px var(--gold); }
.int-tl-text strong { display: block; font-size: 14px; color: var(--navy); }
.int-tl-text span   { font-size: 12px; color: var(--gray-500); }
.int-tl-line {
    flex: 1; height: 2px;
    background: linear-gradient(90deg, var(--navy), var(--gold));
    min-width: 40px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .int-steps { grid-template-columns: 1fr 1fr; }
    .int-step-arrow { display: none; }
    .int-setup-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .int-steps { grid-template-columns: 1fr; }
    .int-setup-grid { grid-template-columns: 1fr; }
    .int-timeline { flex-direction: column; align-items: flex-start; padding: 24px 28px; }
    .int-tl-line { width: 2px; height: 24px; min-width: unset; background: linear-gradient(180deg, var(--navy), var(--gold)); }
    .int-tl-item { flex-direction: row; }
}

/* Integrationen: fixes */
/* All steps equal height via grid rows */
.int-steps { align-items: stretch; }
.int-step { height: 100%; }
.int-step--gold { background: var(--gray-50) !important; border-color: var(--gray-100) !important; }
.int-step--gold h4 { color: var(--navy) !important; }
.int-step--gold p  { color: var(--gray-500) !important; }
.int-step-icon--gold { background: rgba(0,0,61,.07) !important; }
.int-step-icon--gold svg { stroke: var(--navy) !important; }

/* ── Day cards ── */
.int-days-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
    margin-top: 20px;
}
.int-day-card {
    background: white; border: 1px solid var(--gray-100);
    border-radius: var(--r-xl); padding: 32px 28px;
    display: flex; flex-direction: column; gap: 12px;
}
.int-day-card--gold { background: var(--navy); border-color: var(--navy); }
.int-day-card--gold h4 { color: white; }
.int-day-card--gold p  { color: rgba(255,255,255,.65); }

.int-day-num {
    font-size: 11px; font-weight: 800; letter-spacing: .1em;
    text-transform: uppercase; color: var(--gray-400);
}
.int-day-num--gold { color: var(--gold); }

.int-day-icon {
    width: 44px; height: 44px; border-radius: var(--r-md);
    background: rgba(0,0,61,.06);
    display: flex; align-items: center; justify-content: center;
}
.int-day-icon svg { width: 20px; height: 20px; stroke: var(--navy); }
.int-day-icon--gold { background: rgba(184,149,90,.15); }
.int-day-icon--gold svg { stroke: var(--gold); }

.int-day-card h4 { font-size: 16px; color: var(--navy); margin: 0; }
.int-day-card p  { font-size: 13px; color: var(--gray-500); line-height: 1.6; margin: 0; }

.int-day-badge {
    display: inline-flex; align-items: center;
    font-size: 12px; font-weight: 700;
    padding: 5px 12px; border-radius: var(--r-full);
    background: var(--gray-50); border: 1px solid var(--gray-100); color: var(--gray-500);
    margin-top: auto; width: fit-content;
}
.int-day-badge--green { background: #F0FDF4; border-color: #BBF7D0; color: #16A34A; }
.int-day-badge--navy  { background: rgba(184,149,90,.15); border-color: rgba(184,149,90,.3); color: var(--gold); }

@media (max-width: 768px) {
    .int-days-grid { grid-template-columns: 1fr; }
}

/* Integrationen: day labels inside setup cards */
.int-setup-card .int-day-num {
    font-size: 11px; font-weight: 800; letter-spacing: .1em;
    text-transform: uppercase; color: var(--gray-400);
}
.int-setup-card .int-day-badge {
    display: inline-flex; align-items: center;
    font-size: 12px; font-weight: 700;
    padding: 5px 12px; border-radius: var(--r-full);
    background: var(--gray-50); border: 1px solid var(--gray-100);
    color: var(--gray-500); margin-top: auto; width: fit-content;
}
.int-setup-card .int-day-badge--green { background: #F0FDF4; border-color: #BBF7D0; color: #16A34A; }

/* ==============================================
   WISSEN PAGE
   ============================================== */

.wissen-hero {
    padding: 120px 0 80px;
    background: white;
    border-bottom: 1px solid var(--gray-100);
}
.wissen-hero-inner h1 { margin-bottom: 16px; }
.wissen-hero-inner .subtitel { max-width: 540px; }

/* ── Grid Section ── */
.wissen-grid-section { padding: 72px 0 100px; background: var(--gray-50); }

/* ── Featured ── */
.wissen-featured {
    display: grid; grid-template-columns: 1fr 1fr;
    background: white; border: 1px solid var(--gray-100);
    border-radius: var(--r-xl); overflow: hidden;
    margin-bottom: 32px;
    box-shadow: var(--sh-sm);
}
.wissen-featured-img {
    position: relative; min-height: 360px; overflow: hidden;
}
.wissen-featured-img img {
    width: 100%; height: 100%; object-fit: cover;
    filter: brightness(.85);
}
.wissen-featured-cat {
    position: absolute; top: 20px; left: 20px;
    font-size: 11px; font-weight: 800; letter-spacing: .1em;
    text-transform: uppercase; color: white;
    background: var(--navy); padding: 4px 12px; border-radius: 20px;
}
.wissen-featured-content {
    padding: 48px 44px;
    display: flex; flex-direction: column; justify-content: center; gap: 16px;
}
.wissen-featured-content h2 {
    font-size: clamp(20px, 2vw, 28px);
    color: var(--navy); line-height: 1.2;
}
.wissen-featured-content p {
    font-size: 15px; color: var(--gray-500); line-height: 1.65;
}

/* ── Meta ── */
.wissen-meta { display: flex; align-items: center; gap: 10px; }
.wissen-tag {
    font-size: 11px; font-weight: 700; color: var(--navy);
    background: rgba(0,0,61,.07); padding: 3px 10px; border-radius: 20px;
}
.wissen-date { font-size: 12px; color: var(--gray-400); font-weight: 500; }

/* ── Read Link ── */
.wissen-read-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13px; font-weight: 700; color: var(--navy);
    text-decoration: none; transition: gap .2s;
    margin-top: auto;
}
.wissen-read-link:hover { gap: 10px; }
.wissen-featured-content .wissen-read-link {
    font-size: 14px; padding: 11px 22px;
    background: var(--navy); color: white;
    border-radius: var(--r-full); gap: 8px;
    align-self: flex-start; margin-top: 8px;
}
.wissen-featured-content .wissen-read-link:hover {
    background: var(--navy-mid); gap: 12px;
}

/* ── Article Grid ── */
.wissen-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.wissen-card {
    background: white; border: 1px solid var(--gray-100);
    border-radius: var(--r-xl); overflow: hidden;
    display: flex; flex-direction: column;
    transition: box-shadow .25s, transform .25s;
    box-shadow: var(--sh-sm);
}
.wissen-card:hover {
    box-shadow: var(--sh-lg);
    transform: translateY(-3px);
}

/* Card image placeholders — navy gradient with subtle pattern */
.wissen-card-img {
    height: 180px; position: relative; overflow: hidden;
    background: linear-gradient(135deg, var(--navy) 0%, #1a1a6e 100%);
}
.wissen-card-img::after {
    content: ''; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}
.wissen-card-img--2 { background: linear-gradient(135deg, #0a3d6b 0%, #0e5c9c 100%); }
.wissen-card-img--3 { background: linear-gradient(135deg, #1a3a2a 0%, #2d6a4f 100%); }
.wissen-card-img--4 { background: linear-gradient(135deg, #4a1942 0%, #7b3a6e 100%); }
.wissen-card-img--5 { background: linear-gradient(135deg, #3d2600 0%, #7a4f00 100%); }
.wissen-card-img--6 { background: linear-gradient(135deg, #001f3d 0%, #003d7a 100%); }

.wissen-card-cat {
    position: absolute; top: 16px; left: 16px; z-index: 1;
    font-size: 10px; font-weight: 800; letter-spacing: .1em;
    text-transform: uppercase; color: rgba(255,255,255,.85);
    background: rgba(255,255,255,.12); backdrop-filter: blur(4px);
    padding: 4px 10px; border-radius: 20px;
    border: 1px solid rgba(255,255,255,.15);
}

.wissen-card-body {
    padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1;
}
.wissen-card-body h3 {
    font-size: 16px; color: var(--navy); line-height: 1.35;
    font-weight: 700;
}
.wissen-card-body p {
    font-size: 13px; color: var(--gray-500); line-height: 1.6;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .wissen-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .wissen-featured { grid-template-columns: 1fr; }
    .wissen-featured-img { min-height: 220px; }
    .wissen-featured-content { padding: 28px 24px; }
    .wissen-grid { grid-template-columns: 1fr; }
}

/* Wissen: reduced border radius + remove old hero */
.wissen-hero { display: none; }
.wissen-featured { border-radius: var(--r-lg); }
.wissen-card     { border-radius: var(--r-lg); }
.wissen-card-img { border-radius: 0; }
.wissen-card-cat { border-radius: 6px; }
.wissen-featured-cat { border-radius: 6px; }
