/* ============================================
   widerspruch.jetzt — Design V2.0
   Modern, professionell, vertrauenswürdig
   ============================================ */

:root {
    --v2-primary: #0f172a;
    --v2-primary-light: #1e293b;
    --v2-primary-dark: #020617;
    --v2-accent: #f59e0b;
    --v2-accent-hover: #d97706;
    --v2-secondary: #14b8a6;
    --v2-secondary-hover: #0d9488;
    --v2-danger: #ef4444;
    --v2-success: #22c55e;
    --v2-bg: #f8fafc;
    --v2-bg-elevated: #ffffff;
    --v2-text: #0f172a;
    --v2-text-secondary: #475569;
    --v2-text-muted: #94a3b8;
    --v2-border: #e2e8f0;
    --v2-border-light: #f1f5f9;
    --v2-radius-sm: 0.5rem;
    --v2-radius-md: 0.75rem;
    --v2-radius-lg: 1rem;
    --v2-radius-xl: 1.5rem;
    --v2-shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --v2-shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --v2-shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --v2-shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --v2-shadow-glow: 0 0 40px -10px rgba(245, 158, 11, 0.3);
    --v2-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --v2-font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --v2-max-width: 1280px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--v2-font-sans);
    color: var(--v2-text);
    background: var(--v2-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

body.v2-body {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 30%, #f1f5f9 100%);
    min-height: 100vh;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--v2-primary);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.125rem, 2vw, 1.5rem); }

p {
    color: var(--v2-text-secondary);
    line-height: 1.7;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--v2-transition);
}

/* ============================================
   LAYOUT
   ============================================ */
.v2-shell {
    width: min(var(--v2-max-width), calc(100% - 2rem));
    margin: 0 auto;
}

.v2-section {
    padding: 5rem 0;
    position: relative;
}

.v2-section-alt {
    background: linear-gradient(180deg, var(--v2-bg) 0%, #ffffff 100%);
}

.v2-section-dark {
    background: linear-gradient(135deg, var(--v2-primary-dark) 0%, var(--v2-primary) 100%);
    color: white;
}

.v2-section-dark h1,
.v2-section-dark h2,
.v2-section-dark h3 {
    color: white;
}

.v2-section-dark p {
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   HEADER V2
   ============================================ */
.v2-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    transition: var(--v2-transition);
}

.v2-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--v2-shadow-md);
}

.v2-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.v2-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--v2-primary);
    letter-spacing: -0.02em;
}

.v2-brand-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--v2-accent) 0%, var(--v2-accent-hover) 100%);
    border-radius: var(--v2-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.v2-brand span {
    color: var(--v2-accent);
}

.v2-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.v2-nav a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--v2-text-secondary);
    position: relative;
    padding: 0.25rem 0;
}

.v2-nav a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--v2-accent), var(--v2-secondary));
    transition: width 0.3s ease;
    border-radius: 2px;
}

.v2-nav a:hover {
    color: var(--v2-primary);
}

.v2-nav a:hover::after {
    width: 100%;
}

.v2-header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* ============================================
   BUTTONS
   ============================================ */
.v2-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--v2-radius-md);
    border: none;
    cursor: pointer;
    transition: var(--v2-transition);
    white-space: nowrap;
    font-family: inherit;
}

.v2-btn-primary {
    background: linear-gradient(135deg, var(--v2-accent) 0%, var(--v2-accent-hover) 100%);
    color: white;
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
}

.v2-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.45);
}

.v2-btn-secondary {
    background: var(--v2-primary);
    color: white;
    box-shadow: var(--v2-shadow-md);
}

.v2-btn-secondary:hover {
    background: var(--v2-primary-light);
    transform: translateY(-2px);
    box-shadow: var(--v2-shadow-lg);
}

.v2-btn-outline {
    background: transparent;
    color: var(--v2-primary);
    border: 2px solid var(--v2-border);
}

.v2-btn-outline:hover {
    border-color: var(--v2-accent);
    color: var(--v2-accent);
    background: rgba(245, 158, 11, 0.05);
}

.v2-btn-ghost {
    background: transparent;
    color: var(--v2-text-secondary);
}

.v2-btn-ghost:hover {
    background: var(--v2-border-light);
    color: var(--v2-primary);
}

.v2-btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.v2-btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* ============================================
   HERO V2
   ============================================ */
.v2-hero {
    padding-top: calc(72px + 4rem);
    padding-bottom: 5rem;
    position: relative;
    overflow: hidden;
}

.v2-hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(245, 158, 11, 0.12), transparent),
        radial-gradient(ellipse 60% 40% at 80% 50%, rgba(20, 184, 166, 0.08), transparent),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 60%, #f1f5f9 100%);
    z-index: 0;
}

.v2-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (max-width: 1024px) {
    .v2-hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
}

.v2-hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(20, 184, 166, 0.1) 100%);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--v2-accent-hover);
    margin-bottom: 1.5rem;
}

.v2-hero-title {
    font-size: clamp(2.25rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    color: var(--v2-primary);
}

.v2-hero-title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--v2-accent) 0%, var(--v2-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.v2-hero-desc {
    font-size: 1.125rem;
    color: var(--v2-text-secondary);
    margin-bottom: 2rem;
    max-width: 540px;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .v2-hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
}

.v2-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 1024px) {
    .v2-hero-actions {
        justify-content: center;
    }
}

.v2-hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--v2-border);
}

@media (max-width: 1024px) {
    .v2-hero-stats {
        justify-content: center;
    }
}

.v2-hero-stat strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--v2-primary);
}

.v2-hero-stat span {
    font-size: 0.875rem;
    color: var(--v2-text-muted);
}

/* Hero Visual */
.v2-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.v2-hero-card {
    background: var(--v2-bg-elevated);
    border-radius: var(--v2-radius-xl);
    padding: 1.5rem;
    box-shadow: var(--v2-shadow-xl);
    border: 1px solid var(--v2-border);
    width: 100%;
    max-width: 400px;
    position: relative;
}

.v2-hero-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--v2-border-light);
}

.v2-hero-card-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--v2-accent), var(--v2-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.v2-hero-card-meta strong {
    display: block;
    font-size: 0.9375rem;
    color: var(--v2-primary);
}

.v2-hero-card-meta span {
    font-size: 0.8125rem;
    color: var(--v2-text-muted);
}

.v2-hero-card-body {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.v2-hero-card-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--v2-bg);
    border-radius: var(--v2-radius-md);
    font-size: 0.875rem;
}

.v2-hero-card-row i {
    color: var(--v2-secondary);
    font-size: 1rem;
}

.v2-hero-card-row span {
    color: var(--v2-text-secondary);
    font-weight: 500;
}

.v2-hero-card-badge {
    position: absolute;
    top: -12px;
    right: -12px;
    background: linear-gradient(135deg, var(--v2-success), #16a34a);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.375rem 0.875rem;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
    animation: v2-pulse 2s infinite;
}

@keyframes v2-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.v2-floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    pointer-events: none;
}

/* ============================================
   CARDS & GRIDS
   ============================================ */
.v2-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

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

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

@media (max-width: 1024px) {
    .v2-grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .v2-grid-2,
    .v2-grid-3,
    .v2-grid-4 {
        grid-template-columns: 1fr;
    }
}

.v2-card {
    background: var(--v2-bg-elevated);
    border-radius: var(--v2-radius-lg);
    padding: 2rem;
    border: 1px solid var(--v2-border);
    transition: var(--v2-transition);
    position: relative;
    overflow: hidden;
}

.v2-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--v2-accent), var(--v2-secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.v2-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--v2-shadow-xl);
    border-color: transparent;
}

.v2-card:hover::before {
    opacity: 1;
}

.v2-card-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--v2-radius-md);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(20, 184, 166, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--v2-accent-hover);
    margin-bottom: 1.25rem;
}

.v2-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--v2-primary);
}

.v2-card p {
    font-size: 0.9375rem;
    color: var(--v2-text-secondary);
    line-height: 1.6;
}

/* Category Cards */
.v2-cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

@media (max-width: 1024px) {
    .v2-cat-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .v2-cat-grid { grid-template-columns: 1fr; }
}

.v2-cat-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--v2-bg-elevated);
    border: 1px solid var(--v2-border);
    border-radius: var(--v2-radius-lg);
    transition: var(--v2-transition);
    font-weight: 600;
    color: var(--v2-primary);
}

.v2-cat-card:hover {
    background: var(--v2-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--v2-shadow-lg);
    border-color: var(--v2-primary);
}

.v2-cat-card:hover .v2-cat-icon {
    background: rgba(255, 255, 255, 0.15);
    color: var(--v2-accent);
}

.v2-cat-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--v2-radius-md);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(20, 184, 166, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    color: var(--v2-accent-hover);
    transition: var(--v2-transition);
    flex-shrink: 0;
}

/* ============================================
   SECTION HEADER
   ============================================ */
.v2-section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
}

.v2-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(20, 184, 166, 0.1) 100%);
    border: 1px solid rgba(245, 158, 11, 0.15);
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--v2-accent-hover);
    margin-bottom: 1rem;
}

.v2-section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--v2-primary);
}

.v2-section-desc {
    font-size: 1.0625rem;
    color: var(--v2-text-secondary);
}

/* ============================================
   STEPS
   ============================================ */
.v2-step-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
}

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

.v2-step-grid::before {
    content: "";
    position: absolute;
    top: 32px;
    left: 16.66%;
    right: 16.66%;
    height: 2px;
    background: linear-gradient(90deg, var(--v2-accent), var(--v2-secondary));
    opacity: 0.3;
}

@media (max-width: 768px) {
    .v2-step-grid::before { display: none; }
}

.v2-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.v2-step-num {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--v2-accent) 0%, var(--v2-secondary) 100%);
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
}

.v2-step h3 {
    margin-bottom: 0.5rem;
}

/* ============================================
   FAQ
   ============================================ */
.v2-faq-item {
    background: var(--v2-bg-elevated);
    border: 1px solid var(--v2-border);
    border-radius: var(--v2-radius-lg);
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: var(--v2-transition);
}

.v2-faq-item:hover {
    border-color: var(--v2-border-light);
    box-shadow: var(--v2-shadow-sm);
}

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

.v2-faq-question i {
    transition: transform 0.3s ease;
    color: var(--v2-accent);
    flex-shrink: 0;
    margin-left: 1rem;
}

.v2-faq-item.active .v2-faq-question i {
    transform: rotate(180deg);
}

.v2-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 1.5rem;
}

.v2-faq-item.active .v2-faq-answer {
    max-height: 300px;
    padding-bottom: 1.25rem;
}

.v2-faq-answer p {
    color: var(--v2-text-secondary);
    line-height: 1.7;
}

/* ============================================
   CTA
   ============================================ */
.v2-cta {
    background: linear-gradient(135deg, var(--v2-primary) 0%, var(--v2-primary-light) 100%);
    border-radius: var(--v2-radius-xl);
    padding: 4rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.v2-cta::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.v2-cta h2 {
    color: white;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.v2-cta p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.v2-cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.v2-cta .v2-btn-outline {
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.v2-cta .v2-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* ============================================
   FOOTER
   ============================================ */
.v2-footer {
    background: var(--v2-primary);
    color: white;
    padding: 4rem 0 2rem;
}

.v2-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

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

@media (max-width: 640px) {
    .v2-footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.v2-footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 800;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.v2-footer-brand-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--v2-accent) 0%, var(--v2-accent-hover) 100%);
    border-radius: var(--v2-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.875rem;
}

.v2-footer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.v2-footer h4 {
    color: white;
    font-size: 0.9375rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
}

.v2-footer-links {
    list-style: none;
}

.v2-footer-links li {
    margin-bottom: 0.625rem;
}

.v2-footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    transition: color 0.2s ease;
}

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

.v2-footer-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.v2-footer-bar p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* ============================================
   MOBILE MENU
   ============================================ */
.v2-mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.25rem;
    color: var(--v2-primary);
    cursor: pointer;
    padding: 0.5rem;
}

.v2-mobile-panel {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid var(--v2-border);
    box-shadow: var(--v2-shadow-lg);
    padding: 1.5rem;
    flex-direction: column;
    gap: 0.5rem;
}

.v2-mobile-panel a {
    padding: 0.75rem;
    border-radius: var(--v2-radius-md);
    font-weight: 500;
    color: var(--v2-text-secondary);
}

.v2-mobile-panel a:hover {
    background: var(--v2-bg);
    color: var(--v2-primary);
}

@media (max-width: 1024px) {
    .v2-nav { display: none; }
    .v2-mobile-toggle { display: block; }
    .v2-mobile-panel.active { display: flex; }
}

/* ============================================
   BADGES & TAGS
   ============================================ */
.v2-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.v2-badge-success {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
}

.v2-badge-accent {
    background: rgba(245, 158, 11, 0.1);
    color: var(--v2-accent-hover);
}

/* ============================================
   TRUST BAR
   ============================================ */
.v2-trust-bar {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--v2-border);
}

.v2-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--v2-text-muted);
}

.v2-trust-item i {
    color: var(--v2-secondary);
}

/* ============================================
   UTILITIES
   ============================================ */
.v2-text-gradient {
    background: linear-gradient(135deg, var(--v2-accent) 0%, var(--v2-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.v2-mt-1 { margin-top: 0.5rem; }
.v2-mt-2 { margin-top: 1rem; }
.v2-mt-3 { margin-top: 1.5rem; }
.v2-mt-4 { margin-top: 2rem; }

.v2-mb-1 { margin-bottom: 0.5rem; }
.v2-mb-2 { margin-bottom: 1rem; }
.v2-mb-3 { margin-bottom: 1.5rem; }
.v2-mb-4 { margin-bottom: 2rem; }

.v2-hidden { display: none !important; }

/* ============================================
   COMPATIBILITY: Override old styles
   ============================================ */
.site-body {
    background: var(--v2-bg) !important;
}

/* ============================================
   DARK SECTION OVERRIDES
   ============================================ */
.v2-dark-section {
    background: linear-gradient(135deg, #020617 0%, #0f172a 50%, #1e293b 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.v2-dark-section::before {
    content: "";
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.v2-dark-section h2,
.v2-dark-section h3 {
    color: white;
}

.v2-dark-section p {
    color: rgba(255, 255, 255, 0.75);
}

.v2-dark-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--v2-radius-lg);
    padding: 2rem;
    transition: var(--v2-transition);
}

.v2-dark-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.v2-dark-card .v2-card-icon {
    background: rgba(245, 158, 11, 0.15);
    color: var(--v2-accent);
}

.v2-dark-card h3 {
    color: white;
}

.v2-dark-card p {
    color: rgba(255, 255, 255, 0.7);
}

.v2-stat-num {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--v2-accent) 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.v2-stat-label {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Smooth reveal animation */
.v2-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ============================================
   COMPATIBILITY: Old style.css classes
   for buergergeld, pflegegrad, krankenkasse, online-casino
   ============================================ */

.gradient-hero {
    background: linear-gradient(135deg, #08111e 0%, #0d1729 50%, #17356b 100%);
}

.faq-item {
    background: var(--v2-bg-elevated);
    border: 1px solid var(--v2-border);
    border-radius: var(--v2-radius-lg);
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: var(--v2-transition);
}

.faq-item:hover {
    border-color: var(--v2-border-light);
    box-shadow: var(--v2-shadow-sm);
}

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

.faq-question .faq-icon {
    transition: transform 0.3s ease;
    color: var(--v2-accent);
    flex-shrink: 0;
    margin-left: 1rem;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 1.25rem;
}

.faq-answer p {
    color: var(--v2-text-secondary);
    line-height: 1.7;
}

.card-hover {
    transition: var(--v2-transition);
}

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

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--v2-radius-lg);
    padding: 1.5rem;
}
