/* ==========================================================================
   fahr-mein-auto.com – gemeinsames Stylesheet
   Dark, entschärft: flache Flächen statt Verläufe, Gold nur für Aktionen.
   Wird von allen Seiten unter fahr-mein-auto/ eingebunden (/assets/fma.css).
   ========================================================================== */

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

:root {
    /* Akzent – ausschließlich für Aktionen und wenige Marker */
    --gold: #f59e0b;
    --gold-hover: #d97f06;
    --gold-dim: rgba(245, 158, 11, 0.10);
    --gold-border: rgba(245, 158, 11, 0.28);
    --green: #10b981;
    --blue: #3b82f6;

    /* Flächen – ruhige Zwei-Ton-Staffelung, keine Verläufe */
    --bg: #0b0b0c;
    --bg-alt: #111214;
    --surface: #141519;
    --surface-hover: #191a1f;
    --border: rgba(255, 255, 255, 0.09);
    --border-strong: rgba(255, 255, 255, 0.16);

    --white: #f5f5f6;
    --muted: #a1a1aa;
    --muted-dim: #71717a;

    --radius: 14px;
    --radius-md: 12px;
    --radius-sm: 10px;

    --section-pad: 5.5rem;

    /* Aliase, damit die verbliebenen seitenlokalen Regeln mitziehen */
    --bg-dark: var(--bg);
    --bg-card: var(--surface);
    --card: var(--surface);
    --text-muted: var(--muted);
    --text-white: var(--white);
    --radius-lg: var(--radius);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', system-ui, sans-serif;
    background: var(--bg);
    color: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

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

:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
    border-radius: 4px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 200;
    background: var(--gold);
    color: #000;
    padding: 0.7rem 1.2rem;
    font-weight: 700;
    border-radius: 0 0 var(--radius-sm) 0;
}

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

/* ===== HEADER / NAV ===== */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(11, 11, 12, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 0.95rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.4px;
    color: var(--white);
    flex-shrink: 0;
}

.logo span {
    color: var(--gold);
}

.nav-main {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    margin-left: auto;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    font-size: 0.92rem;
    font-weight: 600;
}

.nav-links a {
    color: var(--muted);
    transition: color 0.2s ease;
    position: relative;
    padding-bottom: 2px;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
    color: var(--white);
}

.nav-links a[aria-current="page"]::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -3px;
    height: 2px;
    background: var(--gold);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

/* Telefon-Direktwahl – wichtigster Vertrauensanker im B2B */
.nav-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--white);
    white-space: nowrap;
}

.nav-phone i {
    color: var(--gold);
    font-size: 0.85rem;
}

.nav-phone:hover {
    color: var(--gold);
}

/* Burger */
.nav-toggle {
    display: none;
    background: none;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-sm);
    color: var(--white);
    width: 42px;
    height: 42px;
    cursor: pointer;
    font-size: 1.1rem;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

@media (max-width: 960px) {
    .nav-toggle {
        display: inline-flex;
    }

    .nav-main {
        position: fixed;
        inset: 0 0 0 auto;
        width: min(320px, 85vw);
        background: var(--bg-alt);
        border-left: 1px solid var(--border);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding: 5.5rem 1.5rem 2rem;
        transform: translateX(100%);
        transition: transform 0.28s ease;
        overflow-y: auto;
    }

    .nav-main.open {
        transform: translateX(0);
    }

    .nav-links {
        flex-direction: column;
        gap: 0;
        font-size: 1rem;
    }

    .nav-links a {
        padding: 0.9rem 0;
        border-bottom: 1px solid var(--border);
    }

    .nav-cta {
        flex-direction: column;
        align-items: stretch;
        margin-top: 1.5rem;
        gap: 0.75rem;
    }

    .nav-cta .btn {
        justify-content: center;
    }

    .nav-phone {
        margin-top: 1.25rem;
        justify-content: center;
        padding: 0.75rem;
        border: 1px solid var(--border);
        border-radius: var(--radius-sm);
    }

    .nav-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.55);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.28s ease;
        z-index: 99;
    }

    .nav-backdrop.open {
        opacity: 1;
        pointer-events: auto;
    }

    body.nav-open {
        overflow: hidden;
    }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1.4rem;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-weight: 700;
    font-size: 0.92rem;
    line-height: 1.2;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gold);
    color: #17120a;
}

.btn-primary:hover {
    background: var(--gold-hover);
}

.btn-outline {
    background: transparent;
    border-color: var(--border-strong);
    color: var(--white);
}

.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

.btn-white {
    background: var(--white);
    color: #111;
}

.btn-white:hover {
    background: #e4e4e7;
}

.btn-lg {
    padding: 0.95rem 1.9rem;
    font-size: 1rem;
}

/* ===== EYEBROW / BADGE ===== */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: none;
    color: var(--gold);
    padding: 0;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 1.1rem;
}

.badge::before {
    content: '';
    width: 18px;
    height: 2px;
    background: var(--gold);
    flex-shrink: 0;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    padding: 5.5rem 0 4.5rem;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

/* Der frühere radiale Gold/Blau-Glow ist bewusst entfernt. */
.hero-bg {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero h1 {
    font-size: clamp(2.2rem, 4.8vw, 3.6rem);
    font-weight: 800;
    line-height: 1.14;
    letter-spacing: -1px;
    margin-bottom: 1.35rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero h1 .highlight,
.hero h1 .hl {
    color: var(--white);
}

.hero p {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 640px;
    margin: 0 auto 2.25rem;
}

.hero-actions {
    display: flex;
    gap: 0.9rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero mit Bild */
.hero-media {
    position: relative;
    margin-top: 3.5rem;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}

.hero-media img {
    width: 100%;
    height: clamp(240px, 34vw, 420px);
    object-fit: cover;
}

.trust-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.25rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.9rem;
    color: var(--muted);
}

.trust-icon {
    width: 28px;
    height: 28px;
    background: transparent;
    border: 1px solid var(--border-strong);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--gold);
    flex-shrink: 0;
}

/* ===== SECTIONS ===== */
.section,
.how-section,
.benefits-section,
.usecases-section,
.faq-section,
.cities-section,
.testimonials-section,
.industries-section {
    padding: var(--section-pad) 0;
}

.section.alt,
.benefits-section,
.faq-section,
.testimonials-section {
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: clamp(1.7rem, 3.2vw, 2.4rem);
    font-weight: 800;
    line-height: 1.22;
    letter-spacing: -0.6px;
    margin-bottom: 0.9rem;
}

/* Gold in Überschriften entfällt – Akzent trägt allein das Eyebrow. */
.section-header h2 span,
.cta-section h2 span {
    color: var(--white);
}

.section-header p {
    font-size: 1.02rem;
    color: var(--muted);
    max-width: 620px;
    margin: 0 auto;
}

/* ===== KARTEN (gemeinsames Grundmuster) ===== */
.step-card,
.benefit-card,
.usecase-card,
.svc-card,
.hl-card,
.uc-card,
.pkg-card,
.pillar,
.proto-card,
.data-box,
.testimonial-card,
.industry-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.step-card:hover,
.benefit-card:hover,
.usecase-card:hover,
.svc-card:hover,
.hl-card:hover,
.uc-card:hover,
.pkg-card:hover,
.industry-card:hover {
    border-color: var(--border-strong);
    background: var(--surface-hover);
    transform: none;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.step-card {
    padding: 2rem 1.75rem;
    text-align: left;
}

.step-num {
    width: 38px;
    height: 38px;
    background: var(--gold-dim);
    border: 1px solid var(--gold-border);
    color: var(--gold);
    font-weight: 800;
    font-size: 1rem;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 1.25rem;
    box-shadow: none;
}

.step-card h3,
.benefit-card h3,
.usecase-card h3,
.industry-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.55rem;
}

.step-card p,
.benefit-card p,
.usecase-card p,
.industry-card p {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.65;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.benefit-card {
    padding: 2rem 1.75rem;
}

.benefit-icon {
    font-size: 1.25rem;
    color: var(--gold);
    margin-bottom: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-sm);
}

.usecases-grid,
.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.usecase-card,
.industry-card {
    padding: 2rem 1.75rem;
    display: block;
}

.usecase-emoji,
.industry-icon {
    font-size: 1.25rem;
    color: var(--gold);
    margin-bottom: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

/* ===== STATS ===== */
.stats-section {
    padding: 3rem 0;
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: left;
}

.stats-grid>div {
    padding-left: 1.25rem;
    border-left: 2px solid var(--gold);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1px;
    line-height: 1.1;
    display: block;
}

.stat-label {
    font-size: 0.88rem;
    color: var(--muted);
    display: block;
    margin-top: 0.25rem;
}

.stat-source {
    font-size: 0.75rem;
    color: var(--muted-dim);
    display: block;
    margin-top: 0.35rem;
}

.stat-source a {
    color: var(--muted-dim);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.stat-source a:hover {
    color: var(--gold);
}

/* ===== REFERENZ-LOGOS ===== */
.references-section {
    padding: 3.25rem 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
}

.references-label {
    text-align: center;
    color: var(--muted-dim);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 2.25rem;
    font-weight: 700;
}

.references-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2.5rem 3rem;
}

.ref-logo {
    max-width: 120px;
    max-height: 40px;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.45;
    transition: opacity 0.25s ease;
}

.ref-logo:hover {
    opacity: 0.9;
}

/* ===== KUNDENSTIMMEN ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.testimonial-card {
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
}

.testimonial-quote {
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--white);
    margin-bottom: 1.5rem;
    flex: 1;
}

.testimonial-quote::before {
    content: '„';
}

.testimonial-quote::after {
    content: '“';
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
}

.testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    background: var(--surface-hover);
    border: 1px solid var(--border);
}

.testimonial-name {
    font-weight: 700;
    font-size: 0.92rem;
    display: block;
}

.testimonial-role {
    font-size: 0.82rem;
    color: var(--muted);
    display: block;
}

/* ===== ANSPRECHPARTNER-KARTE ===== */
.contact-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 560px;
    margin: 2.5rem auto 0;
    padding: 1.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: left;
}

.contact-photo {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    background: var(--surface-hover);
    border: 1px solid var(--border);
}

.contact-name {
    font-weight: 700;
    font-size: 1rem;
}

.contact-role {
    font-size: 0.86rem;
    color: var(--muted);
    margin-bottom: 0.6rem;
}

.contact-lines {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    font-size: 0.9rem;
}

.contact-lines a {
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-lines a:hover {
    color: var(--gold);
}

.contact-lines i {
    color: var(--gold);
    width: 14px;
    font-size: 0.82rem;
}

/* ===== FAQ ===== */
.faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color 0.2s;
}

.faq-item.open {
    border-color: var(--border-strong);
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    font-family: inherit;
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--white);
    text-align: left;
    gap: 1rem;
}

.faq-icon {
    font-size: 1.3rem;
    color: var(--gold);
    transition: transform 0.25s;
    flex-shrink: 0;
    line-height: 1;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-a {
    display: none;
    padding: 0 1.5rem 1.35rem;
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.7;
}

.faq-item.open .faq-a {
    display: block;
}

/* ===== STÄDTE ===== */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin-top: 1rem;
}

.city-chip {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
    text-align: left;
    transition: border-color 0.2s ease, background-color 0.2s ease;
    display: block;
    color: var(--white);
}

.city-chip:hover,
.city-chip:focus {
    border-color: var(--border-strong);
    background: var(--surface-hover);
}

.city-chip strong {
    display: block;
    font-size: 0.98rem;
    font-weight: 700;
}

.city-chip span {
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 0.1rem;
    display: block;
}

/* ===== CTA ===== */
.cta-section {
    padding: 5rem 0;
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.cta-section h2 {
    font-size: clamp(1.7rem, 3.4vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.6px;
    margin-bottom: 0.9rem;
    line-height: 1.22;
}

.cta-section p {
    color: var(--muted);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 0.9rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== FOOTER ===== */
footer {
    padding: 3.5rem 0 2rem;
    border-top: 1px solid var(--border);
    background: #08080a;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.4fr repeat(4, 1fr);
    gap: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border);
}

.footer-brand .footer-logo {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 0.85rem;
    color: var(--white);
}

.footer-logo span {
    color: var(--gold);
}

.footer-brand p {
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.7;
    max-width: 260px;
}

.footer-contact {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-size: 0.88rem;
}

.footer-contact a {
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

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

.footer-contact i {
    color: var(--gold);
    width: 14px;
    font-size: 0.8rem;
}

.footer-col h4 {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--muted-dim);
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-col a {
    color: var(--muted);
    font-size: 0.88rem;
    transition: color 0.2s;
}

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

.footer-bottom {
    padding-top: 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.footer-copy,
.footer-bottom p {
    color: var(--muted-dim);
    font-size: 0.82rem;
}

/* Alt-Footer (einzeilig) – bleibt lesbar, solange Seiten noch nicht umgestellt sind */
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--muted);
    font-size: 0.88rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--white);
}

/* ===== KOSTENRECHNER ===== */
.calc-section {
    padding: var(--section-pad) 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.calc-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.25rem;
    max-width: 980px;
    margin: 0 auto;
}

.calc-field {
    margin-bottom: 1.5rem;
}

.calc-lbl {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--muted);
    margin-bottom: 0.6rem;
}

.calc-range-wrap {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.calc-range-wrap input[type=range] {
    flex: 1;
    -webkit-appearance: none;
    appearance: none;
    height: 4px;
    background: var(--border-strong);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}

.calc-range-wrap input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--gold);
    cursor: pointer;
}

.calc-range-wrap input[type=range]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border: none;
    border-radius: 50%;
    background: var(--gold);
    cursor: pointer;
}

.calc-range-val {
    font-weight: 700;
    color: var(--white);
    font-size: 0.95rem;
    min-width: 72px;
    text-align: right;
    flex-shrink: 0;
}

.calc-select {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--bg-alt);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: inherit;
    font-size: 0.95rem;
    cursor: pointer;
    outline: none;
}

.calc-select:focus {
    border-color: var(--gold);
}

.calc-select option {
    background: #17181d;
}

.calc-checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    color: var(--muted);
    font-size: 0.92rem;
}

.calc-checkbox-label input {
    accent-color: var(--gold);
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.calc-results {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.calc-result-header {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--muted);
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.calc-result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.15rem;
    border-radius: var(--radius-sm);
    background: var(--bg-alt);
    border: 1px solid var(--border);
}

.calc-result-row.highlight {
    border-color: var(--gold-border);
}

.calc-result-label {
    color: var(--muted);
    font-size: 0.88rem;
}

.calc-result-value {
    font-weight: 800;
    font-size: 1rem;
}

.calc-result-row.highlight .calc-result-label {
    color: var(--white);
    font-weight: 600;
}

.calc-result-row.highlight .calc-result-value {
    color: var(--gold);
    font-size: 1.45rem;
    letter-spacing: -0.5px;
}

.calc-disclaimer {
    font-size: 0.78rem;
    color: var(--muted-dim);
    line-height: 1.6;
    margin-top: 0.35rem;
}

.calc-cta-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.9rem;
    background: var(--gold);
    color: #17120a;
    font-weight: 700;
    border-radius: var(--radius-sm);
    margin-top: 0.75rem;
    font-size: 0.95rem;
    transition: background-color 0.2s ease;
}

.calc-cta-btn:hover {
    background: var(--gold-hover);
}

/* ===== PHILOSOPHIE / ZITAT ===== */
.philosophy-section {
    padding: var(--section-pad) 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.philosophy-quote {
    background: var(--surface);
    border: 1px solid var(--border);
    border-left: 3px solid var(--gold);
    border-radius: var(--radius-sm);
    padding: 1.75rem 2rem;
    text-align: left;
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.08rem;
    font-weight: 500;
    line-height: 1.7;
    color: var(--white);
}

/* ===== SCROLL-ANIMATION ===== */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .fade-up {
        opacity: 1;
        transform: none;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .footer-top {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 2rem;
    }

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

@media (max-width: 1000px) {

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

    .cities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 780px) {
    .calc-box {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.75rem;
    }
}

@media (max-width: 720px) {
    :root {
        --section-pad: 3.75rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem 1.25rem;
    }

    .steps-grid,
    .benefits-grid,
    .usecases-grid,
    .industries-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

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

    .trust-row {
        gap: 1rem 1.5rem;
    }

    .hero {
        padding: 3.5rem 0 3rem;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .contact-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .contact-lines a {
        justify-content: center;
    }
}

@media (max-width: 460px) {
    .footer-top {
        grid-template-columns: 1fr;
    }

    .hero-actions .btn,
    .cta-actions .btn {
        width: 100%;
    }
}
