/* ===========================
   lohn.pro – V2 Redesign
   Inspired by Deel & Papaya Global
   Dark hero, bold typography, bento grid,
   glassmorphism, scroll animations
   =========================== */

:root {
    /* Core palette – deep navy */
    --navy-950: #0a1628;
    --navy-900: #0a1628;
    --navy-800: #0a1628;
    --navy-700: #0f2038;
    --navy-600: #1e3a6a;

    /* Accent – vivid blue */
    --blue-500: #2a4f8f;
    --blue-400: #3d66ab;
    --blue-300: #89a8d8;
    --blue-600: #1e3a6a;
    --blue-700: #162d50;

    /* Neutrals */
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #7d8ea3;
    --slate-500: #5f7085;
    --slate-600: #3f5066;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;

    /* Feedback */
    --green: #22c55e;
    --yellow: #f59e0b;
    --red: #ef4444;

    /* Layout */
    --max-w: 1200px;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    color: var(--slate-800);
    background: #fff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* Fade-in animation */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================
   NAVIGATION – Deel-style minimal
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    transition: background 0.3s, padding 0.3s, border-bottom 0.3s;
}

.navbar.scrolled {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--slate-200);
    padding: 12px 0;
    will-change: background, padding;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo { text-decoration: none; }
.logo-text {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.04em;
}
.navbar.scrolled .logo-text { color: var(--navy-900); }
.logo-dot { color: var(--blue-400); }

.nav-center {
    display: flex;
    gap: 36px;
}

.nav-center a {
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    transition: color 0.2s;
}
.nav-center a:hover { color: #fff; }
.navbar.scrolled .nav-center a { color: var(--slate-500); }
.navbar.scrolled .nav-center a:hover { color: var(--navy-900); }

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-link-login {
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    transition: color 0.2s;
}
.nav-link-login:hover { color: #fff; }
.navbar.scrolled .nav-link-login { color: var(--slate-500); }
.navbar.scrolled .nav-link-login:hover { color: var(--navy-900); }

.btn-nav {
    display: inline-flex;
    align-items: center;
    padding: 10px 22px;
    background: #3b82f6;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 100px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    border: none;
}
.btn-nav:hover { background: #2563eb; transform: translateY(-1px); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}
.nav-toggle span {
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: background 0.3s, transform 0.3s;
}
.navbar.scrolled .nav-toggle span { background: var(--navy-900); }

/* ===========================
   HERO – Dark, immersive
   =========================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-700) 100%);
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0));
}

.hero-container {
    position: relative;
    display: grid;
    grid-template-columns: 0.95fr 1.35fr;
    gap: 44px;
    align-items: center;
}

/* Hero Left */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--blue-300);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
}

.eyebrow-dot {
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 50%;
    opacity: 0.85;
}

.hero h1 {
    font-size: 3.6rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
}

.hero-highlight {
    color: var(--blue-300);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--slate-400);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 48px;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: #3b82f6;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 100px;
    text-decoration: none;
    transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
    border: none;
}
.btn-hero-primary:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.35);
}

.btn-hero-ghost {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 100px;
    text-decoration: none;
    transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.btn-hero-ghost:hover {
    border-color: rgba(255,255,255,0.35);
    color: #fff;
    background: rgba(255,255,255,0.05);
}

/* Social Proof */
.hero-proof {
    display: flex;
    align-items: center;
    gap: 14px;
}

.proof-text {
    font-size: 0.85rem;
    color: var(--slate-400);
}
.proof-text strong { color: var(--slate-300); }

/* Hero Dashboard Mockup */
.hero-visual {
    position: relative;
    width: 118%;
    margin-left: -8%;
    align-self: center;
    perspective: 1400px;
}

.hero-visual::before {
    content: "";
    position: absolute;
    inset: 10% -8% -16% 12%;
    background: radial-gradient(circle, rgba(61, 102, 171, 0.35) 0%, rgba(61, 102, 171, 0.08) 40%, transparent 75%);
    filter: blur(20px);
    pointer-events: none;
    z-index: 0;
}

.hero-dashboard {
    position: relative;
    z-index: 1;
    background: rgba(15, 32, 56, 0.75);
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.32);
    overflow: hidden;
    padding: 6px;
    max-width: none;
    margin-left: auto;
    transform: rotateY(-10deg) rotateX(3deg);
    transform-origin: right center;
    box-shadow:
        0 26px 70px rgba(0,0,0,0.42),
        0 0 0 1px rgba(255,255,255,0.04);
}

.hero-dashboard img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

/* ===========================
   LOGO BAR
   =========================== */
.logo-bar {
    padding: 40px 0;
    background: var(--slate-50);
    border-bottom: 1px solid var(--slate-200);
    overflow: hidden;
}

.logo-bar-text {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--slate-600);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.coverage-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 12px 18px;
    max-width: 1040px;
    margin: 0 auto;
    justify-items: center;
}

.coverage-item {
    position: relative;
    font-size: 1rem;
    font-weight: 600;
    color: var(--slate-700);
    line-height: 1.45;
    letter-spacing: -0.01em;
    padding: 0;
    border-bottom: none;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}

/* ===========================
   SECTION TYPOGRAPHY
   =========================== */
.section-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--blue-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    text-align: center;
    width: 100%;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--navy-900);
    letter-spacing: -0.04em;
    line-height: 1.1;
    text-align: center;
    margin-bottom: 16px;
}

.section-title.left { text-align: left; }

.section-desc {
    font-size: 1.05rem;
    color: var(--slate-500);
    text-align: center;
    max-width: 560px;
    margin: 0 auto 56px;
    line-height: 1.7;
}

.section-desc.left { text-align: left; margin: 0; }

/* ===========================
   BENTO GRID – Benefits
   =========================== */
.benefits-section {
    padding: 120px 0;
    background: #fff;
    content-visibility: auto;
    contain-intrinsic-size: auto 900px;
}

.benefits-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.45fr;
    gap: 20px;
    align-items: stretch;
}

.benefits-panel {
    background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-700) 100%);
    color: #fff;
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid var(--navy-700);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.18);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.benefits-panel h3 {
    font-size: 1.1rem;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}

.benefits-steps {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefits-steps li {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 12px;
    align-items: start;
}

.step-number {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--navy-700);
    border: 1px solid rgba(255,255,255,0.22);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.75rem;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
}

.benefits-steps strong {
    display: block;
    font-size: 0.9rem;
    color: #fff;
    margin-bottom: 2px;
}

.benefits-steps p {
    font-size: 0.8rem;
    line-height: 1.55;
    color: rgba(255,255,255,0.72);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    grid-auto-rows: 1fr;
}

.benefit-card {
    background: #fff;
    border: 1px solid var(--slate-200);
    border-radius: 14px;
    padding: 14px 16px 12px;
    min-height: 118px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.benefit-card:hover {
    border-color: var(--slate-300);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    transform: translateY(-2px);
}

.benefit-card h3 {
    font-size: 0.98rem;
    line-height: 1.35;
    letter-spacing: -0.01em;
    color: var(--navy-900);
    margin-bottom: 4px;
}

.benefit-card p {
    font-size: 0.84rem;
    line-height: 1.6;
    color: var(--slate-600);
    margin-top: 0;
}

/* ===========================
   FEATURE SHOWCASE
   =========================== */
.showcase-section {
    padding: 120px 0;
    background: var(--slate-50);
    content-visibility: auto;
    contain-intrinsic-size: auto 1800px;
}

.showcase-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}
.showcase-row:last-child { margin-bottom: 0; }

.showcase-row.reverse { direction: rtl; }
.showcase-row.reverse > * { direction: ltr; }

.showcase-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--slate-200);
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -0.04em;
}

.showcase-content h3 {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--navy-900);
    margin-bottom: 14px;
    letter-spacing: -0.03em;
}

.showcase-content p {
    font-size: 1rem;
    color: var(--slate-500);
    line-height: 1.7;
    margin-bottom: 28px;
}

.showcase-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.showcase-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--slate-700);
}

.sf-check {
    width: 22px;
    height: 22px;
    background: rgba(59,130,246,0.1);
    color: var(--blue-500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* Showcase Mockups */
.showcase-mockup {
    background: #fff;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.06);
}

.showcase-mockup > img {
    display: block;
    width: 100%;
    height: auto;
}

.showcase-row-dashboard .showcase-visual {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 68px;
}

.showcase-row-dashboard {
    align-items: flex-start;
}

.showcase-row-lohnzettel {
    align-items: flex-start;
}

.showcase-row-lohnzettel .showcase-visual {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 56px;
}

.showcase-row-dashboard .showcase-mockup,
.showcase-row-archive .showcase-mockup,
.showcase-row-lohnzettel .showcase-mockup {
    width: 100%;
    max-width: 94%;
    padding: 6px;
    border: 2px solid rgba(15, 32, 56, 0.22);
    border-radius: 16px;
    box-shadow:
        0 12px 30px rgba(10, 22, 40, 0.12),
        0 0 0 1px rgba(255,255,255,0.72) inset;
}

.showcase-row-dashboard .showcase-mockup > img,
.showcase-row-archive .showcase-mockup > img,
.showcase-row-lohnzettel .showcase-mockup > img {
    border-radius: 12px;
}


/* ===========================
   PRICING
   =========================== */
.pricing-section {
    padding: 120px 0;
    background: #fff;
    content-visibility: auto;
    contain-intrinsic-size: auto 600px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: minmax(280px, 760px);
    justify-content: center;
    gap: 20px;
}

.pricing-card {
    background: #fff;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius);
    padding: 36px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.pricing-top {
    margin-bottom: 24px;
}

.pricing-top h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 4px;
}

.pricing-top p {
    font-size: 0.82rem;
    color: var(--slate-500);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--slate-200);
}
.price-amount {
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--navy-900);
    letter-spacing: -0.04em;
    line-height: 1;
}
.price-amount.custom {
    font-size: 2rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
    flex-grow: 1;
}

.pricing-features li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    font-size: 0.88rem;
    color: var(--slate-600);
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--blue-500);
    font-weight: 700;
    font-size: 0.75rem;
}

.btn-pricing {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border-radius: 100px;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
    border: none;
    cursor: pointer;
}

.btn-pricing {
    background: var(--navy-700);
    color: #fff;
}
.btn-pricing:hover {
    background: var(--navy-600);
}


/* ===========================
   INTEGRATIONS
   =========================== */
.integrations-section {
    padding: 80px 0;
    background: var(--slate-50);
    content-visibility: auto;
    contain-intrinsic-size: auto 500px;
}

.integration-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

.integration-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 28px 16px;
    background: #fff;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius);
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.integration-card:hover {
    border-color: var(--blue-400);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(59,130,246,0.08);
}

.int-logo {
    width: 48px;
    height: 48px;
    background: var(--slate-100);
    border: 1px solid var(--slate-200);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--slate-500);
    letter-spacing: 0.03em;
}
.int-logo svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.integration-card span {
    display: block;
    width: 100%;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--slate-600);
    text-align: center;
}

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials-section {
    padding: 120px 0;
    background: #fff;
    content-visibility: auto;
    contain-intrinsic-size: auto 500px;
}

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

.testimonial-card {
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}


.testimonial-card p {
    font-size: 0.92rem;
    color: var(--slate-600);
    line-height: 1.7;
    margin-bottom: 0;
}

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

.tc-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(59, 130, 246, 0.12);
    color: var(--blue-700);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tc-icon svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.tc-header h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy-900);
    letter-spacing: -0.01em;
}

.tc-note {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--slate-200);
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.5;
    height: 3.1em;
    display: flex;
    align-items: flex-start;
    color: var(--slate-600);
}

/* ===========================
   CTA
   =========================== */
.cta-section {
    padding: 80px 0 120px;
    background: #fff;
}

.cta-card {
    position: relative;
    background: var(--navy-900);
    border-radius: var(--radius);
    padding: 80px 60px;
    text-align: center;
    overflow: hidden;
}

.cta-bg-shape {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59,130,246,0.2), transparent 70%);
    border-radius: 50%;
}

.cta-inner {
    position: relative;
}

.cta-card h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    line-height: 1.15;
}

.cta-card p {
    color: var(--slate-400);
    font-size: 1.05rem;
    margin-bottom: 36px;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    background: #3b82f6;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 100px;
    text-decoration: none;
    transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
    border: none;
}
.btn-cta-primary:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.35);
}

.cta-card .cta-small {
    font-size: 0.84rem;
    font-weight: 500;
    color: var(--slate-300);
    letter-spacing: 0.01em;
    margin-bottom: 0;
}

.cta-card .cta-mail {
    margin-top: 10px;
    margin-bottom: 0;
    font-size: 0.82rem;
    color: var(--slate-300);
}

.cta-card .cta-mail a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ===========================
   FAQ – Side-by-side layout
   =========================== */
.faq-section {
    padding: 120px 0;
    background: var(--slate-50);
    content-visibility: auto;
    contain-intrinsic-size: auto 700px;
}

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

.faq-left {
    position: sticky;
    top: 120px;
}

.faq-left .section-label { text-align: left; }
.faq-left .section-desc a {
    color: var(--blue-500);
    text-decoration: none;
    font-weight: 500;
}
.faq-left .section-desc a:hover { text-decoration: underline; }

.faq-item {
    border-bottom: 1px solid var(--slate-200);
}

.faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy-900);
    text-align: left;
    font-family: inherit;
    line-height: 1.4;
}

.faq-icon {
    flex-shrink: 0;
    color: var(--slate-400);
    transition: transform 0.3s;
}

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

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-item.open .faq-a { max-height: 200px; }

.faq-a p {
    padding-bottom: 20px;
    color: var(--slate-500);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-700) 100%);
    padding: 64px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer .footer-logo { color: #fff; display: block; margin-bottom: 12px; }

.footer-brand p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.6;
    max-width: 280px;
}

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

.footer-heading {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}

.footer-col a, .footer-col span {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-col a:hover { color: rgba(255,255,255,0.8); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.25);
}

.footer-legal {
    display: flex;
    gap: 24px;
}
.footer-legal a {
    color: rgba(255,255,255,0.25);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.5); }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
    .hero h1 { font-size: 2.8rem; }
    .hero-container { gap: 50px; }
    .hero-visual { width: 108%; margin-left: -4%; }
    .hero-dashboard { transform: none; max-width: 100%; }
    .section-title { font-size: 2.2rem; }
    .benefits-layout { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .pricing-grid { grid-template-columns: minmax(280px, 760px); }
    .integration-grid { grid-template-columns: repeat(3, 1fr); }
    .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
    .coverage-list { grid-template-columns: repeat(2, minmax(220px, 1fr)); }
    .showcase-row-dashboard .showcase-visual { padding-top: 56px; }
    .showcase-row-lohnzettel .showcase-visual { padding-top: 44px; }
    .footer-top { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-center, .nav-right { display: none; }
    .nav-toggle { display: flex; }

    .navbar.open {
        background: var(--navy-950);
    }
    .navbar.open .nav-container {
        align-items: flex-start;
        flex-wrap: wrap;
        row-gap: 16px;
    }
    .navbar.open .nav-center {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 12px;
        order: 3;
        padding: 8px 0 0;
    }
    .navbar.open .nav-center a {
        color: rgba(255,255,255,0.88);
    }
    .navbar.open .nav-right {
        display: flex;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        justify-content: flex-start;
        order: 4;
        padding-bottom: 8px;
    }

    .hero { padding: 100px 0 60px; min-height: auto; }
    .hero-container { grid-template-columns: 1fr; gap: 40px; }
    .hero h1 { font-size: 2.2rem; }
    .hero-visual {
        order: 2;
        width: 100%;
        margin-left: 0;
        perspective: none;
    }
    .hero-visual::before { display: none; }
    .hero-actions { flex-direction: column; }
    .btn-hero-primary, .btn-hero-ghost { text-align: center; justify-content: center; }
    .hero-proof { flex-direction: column; align-items: flex-start; gap: 8px; }

    .section-title { font-size: 1.8rem; }
    .section-desc { font-size: 0.95rem; }
    .coverage-list { grid-template-columns: 1fr; gap: 10px; }
    .coverage-item { font-size: 0.95rem; }

    .benefits-panel { padding: 22px; }
    .benefits-grid { grid-template-columns: 1fr; }
    .benefit-card { min-height: auto; }

    .showcase-row { grid-template-columns: 1fr; gap: 32px; }
    .showcase-row.reverse { direction: ltr; }
    .showcase-number { font-size: 2.5rem; }
    .showcase-row-dashboard .showcase-visual { padding-top: 0; }
    .showcase-row-lohnzettel .showcase-visual { padding-top: 0; }

    .pricing-grid { grid-template-columns: 1fr; max-width: 760px; margin: 0 auto; }
    .integration-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonial-grid { grid-template-columns: 1fr; }
    .tc-note { height: auto; min-height: 0; }

    .faq-layout { grid-template-columns: 1fr; gap: 40px; }
    .faq-left { position: static; text-align: center; }
    .faq-left .section-label { text-align: center; }
    .faq-left .section-title.left { text-align: center; }
    .faq-left .section-desc.left { text-align: center; }

    .cta-card { padding: 48px 24px; }
    .cta-card h2 { font-size: 1.7rem; }
    .cta-actions { flex-direction: column; align-items: center; }

    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero h1 { font-size: 1.8rem; }
    .integration-grid { grid-template-columns: 1fr 1fr; }
}
