/* ══════════════════════════════════════════════════════
   Ausbeultechnik Nord – Shared Stylesheet
   ══════════════════════════════════════════════════════ */

:root {
    --primary: #2563EB;
    --primary-dark: #1E40AF;
    --primary-light: #3B82F6;
    --primary-50: #EFF6FF;
    --primary-100: #DBEAFE;
    --primary-900: #1E3A5F;
    --dark: #0F172A;
    --dark-alt: #1E293B;
    --gray: #64748B;
    --gray-light: #94A3B8;
    --light: #F8FAFC;
    --white: #FFFFFF;
    --border: #E2E8F0;
    --border-dark: #334155;
    --green: #25D366;
    --shadow-sm: 0 1px 2px rgba(15,23,42,0.05);
    --shadow-md: 0 4px 12px rgba(15,23,42,0.08);
    --shadow-lg: 0 12px 32px rgba(15,23,42,0.1);
    --shadow-xl: 0 20px 48px rgba(15,23,42,0.12);
    --shadow-blue: 0 8px 24px rgba(37,99,235,0.2);
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { font-family: 'Inter', system-ui, sans-serif; color: var(--dark); line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
::selection { background: var(--primary); color: var(--white); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ══════ NAV ══════ */
.nav {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
    background: rgba(255,255,255,0.92); backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid transparent; transition: all 0.3s var(--ease);
}
.nav.scrolled { border-bottom-color: var(--border); box-shadow: var(--shadow-sm); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo svg { height: 28px; width: auto; }
.nav-logo-text { font-weight: 800; font-size: 1.05rem; letter-spacing: -0.02em; line-height: 1.2; }
.nav-logo-sub { display: block; font-weight: 500; font-size: 0.68rem; color: var(--gray); letter-spacing: 0.04em; text-transform: uppercase; margin-top: 1px; }
.nav-links { display: flex; align-items: center; gap: 8px; list-style: none; }
.nav-links a { font-size: 0.88rem; font-weight: 500; color: var(--gray); transition: color 0.2s; padding: 8px 12px; }
.nav-links a:hover { color: var(--primary); }
.nav-cta {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 9px 20px; background: var(--primary); color: var(--white) !important;
    border-radius: 8px; font-weight: 600 !important; font-size: 0.85rem !important;
    transition: all 0.25s var(--ease);
}
.nav-cta:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: var(--shadow-blue); }
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }

/* ══════ MEGA MENU ══════ */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 4px; }
.nav-dropdown > a::after {
    content: ''; width: 0; height: 0;
    border-left: 4px solid transparent; border-right: 4px solid transparent;
    border-top: 4px solid currentColor; transition: transform 0.2s;
}
.nav-dropdown:hover > a::after { transform: rotate(180deg); }
.nav-dropdown-menu {
    display: none; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
    min-width: 220px; background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius); box-shadow: var(--shadow-lg);
    padding: 8px 0; z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
    display: block; padding: 10px 20px; font-size: 0.84rem; font-weight: 500;
    color: var(--gray); transition: all 0.15s;
}
.nav-dropdown-menu a:hover { color: var(--primary); background: var(--primary-50); }

/* ══════ HERO ══════ */
.hero {
    position: relative; min-height: 100vh; display: flex; align-items: center;
    background: linear-gradient(160deg, var(--dark) 0%, #0c1929 50%, var(--primary-900) 100%);
    color: var(--white); overflow: hidden;
}
.hero-grid-bg {
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.07) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: radial-gradient(ellipse 70% 60% at 60% 40%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 60% 40%, black 20%, transparent 70%);
    pointer-events: none;
}
.hero-glow-1 {
    position: absolute; top: -15%; right: -5%; width: 700px; height: 700px; border-radius: 50%;
    background: radial-gradient(circle, rgba(37,99,235,0.18), transparent 65%);
    pointer-events: none; animation: glowFloat 8s ease-in-out infinite;
}
.hero-glow-2 {
    position: absolute; bottom: -25%; left: -10%; width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(59,130,246,0.1), transparent 65%);
    pointer-events: none; animation: glowFloat 10s ease-in-out infinite reverse;
}
@keyframes glowFloat {
    0%,100% { transform: translate(0,0); }
    50% { transform: translate(20px, -15px); }
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 2; }
.hero-content { padding: 80px 0; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 18px; background: rgba(37,99,235,0.15); border: 1px solid rgba(37,99,235,0.25);
    border-radius: 100px; font-size: 0.78rem; font-weight: 600; color: var(--primary-100);
    margin-bottom: 28px; letter-spacing: 0.02em;
    opacity: 0; transform: translateY(16px); animation: fadeUp .6s var(--ease) .1s forwards;
}
.badge-dot { width: 7px; height: 7px; background: #60A5FA; border-radius: 50%; position: relative; }
.badge-dot::after {
    content: ''; position: absolute; inset: -3px; border-radius: 50%;
    background: #60A5FA; opacity: 0; animation: pingDot 2s ease-out infinite;
}
@keyframes pingDot { 0% { transform: scale(1); opacity: 0.5; } 100% { transform: scale(2.5); opacity: 0; } }
.hero h1 {
    font-size: clamp(2.6rem, 5vw, 4rem); font-weight: 900; line-height: 1.06;
    letter-spacing: -0.035em; margin-bottom: 20px;
    opacity: 0; transform: translateY(16px); animation: fadeUp .6s var(--ease) .2s forwards;
}
.hero h1 span {
    background: linear-gradient(135deg, #60A5FA, #93C5FD);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-desc {
    font-size: 1.08rem; color: rgba(255,255,255,0.7); max-width: 440px; line-height: 1.7; margin-bottom: 32px;
    opacity: 0; transform: translateY(16px); animation: fadeUp .6s var(--ease) .3s forwards;
}
.hero-actions {
    display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px;
    opacity: 0; transform: translateY(16px); animation: fadeUp .6s var(--ease) .4s forwards;
}
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; border-radius: 10px; font-family: inherit;
    font-weight: 600; font-size: 0.95rem; cursor: pointer; border: none;
    transition: all 0.3s var(--ease); text-decoration: none;
}
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-blue); }
.btn-outline-white { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.2); }
.btn-outline-white:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.4); }
.btn-white { background: var(--white); color: var(--primary); }
.btn-white:hover { background: var(--light); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline { background: transparent; color: var(--dark); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-green { background: var(--green); color: var(--white); }
.btn-green:hover { background: #20BD5A; transform: translateY(-2px); }

/* Hero trust row */
.hero-trust {
    display: flex; gap: 40px;
    opacity: 0; transform: translateY(16px); animation: fadeUp .6s var(--ease) .5s forwards;
}
.hero-trust-item { position: relative; }
.hero-trust-item::after {
    content: ''; position: absolute; right: -20px; top: 50%; transform: translateY(-50%);
    width: 1px; height: 32px; background: rgba(255,255,255,0.1);
}
.hero-trust-item:last-child::after { display: none; }
.hero-trust-num { font-size: 1.6rem; font-weight: 900; letter-spacing: -0.02em; line-height: 1; }
.hero-trust-num .blue { color: #60A5FA; }
.hero-trust-label { font-size: 0.72rem; color: rgba(255,255,255,0.5); margin-top: 4px; font-weight: 500; }

/* Hero visual */
.hero-visual {
    display: flex; align-items: center; justify-content: center; position: relative;
    opacity: 0; transform: translateY(24px); animation: fadeUp .7s var(--ease) .5s forwards;
}
.hero-logo-card {
    width: 100%; max-width: 380px; padding: 56px 48px;
    border-radius: var(--radius-xl); position: relative;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    backdrop-filter: blur(12px);
}
.hero-logo-card::before {
    content: ''; position: absolute; inset: -1px; border-radius: inherit; padding: 1px;
    background: linear-gradient(135deg, rgba(96,165,250,0.4), transparent 40%, transparent 60%, rgba(37,99,235,0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude;
    animation: borderRotate 6s linear infinite;
}
@keyframes borderRotate {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}
.hero-logo-card svg { width: 100%; height: auto; fill: var(--white); filter: drop-shadow(0 0 40px rgba(37,99,235,0.15)); }
.hero-logo-card .logo-label {
    text-align: center; margin-top: 24px; font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.4);
}
.hero-badge-float {
    position: absolute; bottom: -16px; right: -20px;
    background: var(--primary); color: var(--white);
    padding: 14px 18px; border-radius: 14px; text-align: center;
    box-shadow: 0 8px 24px rgba(37,99,235,0.45);
    animation: floatBadge 3s ease-in-out infinite;
}
.hero-badge-float .num { font-size: 1.4rem; font-weight: 900; line-height: 1; }
.hero-badge-float .sub { font-size: 0.62rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; opacity: 0.85; margin-top: 2px; }
@keyframes floatBadge { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

/* ══════ MARQUEE ══════ */
.marquee-bar { background: var(--dark); padding: 14px 0; overflow: hidden; position: relative; }
.marquee-bar::before, .marquee-bar::after {
    content: ''; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2; pointer-events: none;
}
.marquee-bar::before { left: 0; background: linear-gradient(90deg, var(--dark), transparent); }
.marquee-bar::after { right: 0; background: linear-gradient(-90deg, var(--dark), transparent); }
.marquee-track { display: flex; animation: marquee 40s linear infinite; }
.marquee-items { display: flex; flex-shrink: 0; }
.marquee-item {
    display: flex; align-items: center; gap: 10px; white-space: nowrap;
    padding: 0 24px; font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.5);
}
.marquee-item::before { content: ''; width: 5px; height: 5px; background: var(--primary); border-radius: 50%; flex-shrink: 0; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ══════ STATS ══════ */
.stats { padding: 56px 0; border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.stat { text-align: center; }
.stat-num { font-size: 2.4rem; font-weight: 900; letter-spacing: -0.03em; color: var(--primary); line-height: 1; }
.stat-num .slash { color: var(--gray-light); font-weight: 400; }
.stat-label { font-size: 0.82rem; color: var(--gray); margin-top: 6px; font-weight: 500; }

/* ══════ SECTIONS ══════ */
section { padding: 100px 0; }
.section-dark { background: var(--dark); color: var(--white); }
.section-alt { background: var(--light); }
.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; }
.section-head.center .section-desc { margin: 12px auto 0; }
.section-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--primary); margin-bottom: 12px;
}
.section-eyebrow::before { content: ''; width: 20px; height: 2px; background: currentColor; }
.section-dark .section-eyebrow { color: #60A5FA; }
.section-title { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 900; line-height: 1.1; letter-spacing: -0.025em; }
.section-desc { font-size: 1rem; color: var(--gray); max-width: 520px; margin-top: 12px; line-height: 1.65; }
.section-dark .section-desc { color: var(--gray-light); }

/* ══════ SERVICES ══════ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc-card {
    background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 32px 28px; transition: all 0.4s var(--ease); position: relative; overflow: hidden;
}
.svc-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease);
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: rgba(37,99,235,0.15); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-icon {
    width: 52px; height: 52px; border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.svc-icon svg { width: 24px; height: 24px; }
.svc-icon.blue { background: var(--primary-50); color: var(--primary); }
.svc-icon.amber { background: #FFF7ED; color: #EA580C; }
.svc-icon.green { background: #F0FDF4; color: #16A34A; }
.svc-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.svc-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.6; }
.svc-badge {
    display: inline-block; margin-top: 14px; padding: 4px 12px;
    border-radius: 100px; font-size: 0.7rem; font-weight: 600;
}
.svc-badge.b-blue { background: var(--primary-50); color: var(--primary); }
.svc-badge.b-green { background: #F0FDF4; color: #16A34A; }

/* ══════ WHY US ══════ */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.why-card {
    padding: 32px 28px; border: 1px solid var(--border-dark); border-radius: var(--radius-lg);
    transition: all 0.35s var(--ease); position: relative; overflow: hidden;
}
.why-card::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(37,99,235,0.06), transparent 60%);
    opacity: 0; transition: opacity 0.3s;
}
.why-card:hover { border-color: rgba(96,165,250,0.25); transform: translateY(-4px); }
.why-card:hover::before { opacity: 1; }
.why-num { font-size: 2.5rem; font-weight: 900; color: rgba(255,255,255,0.05); line-height: 1; margin-bottom: 12px; }
.why-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; position: relative; }
.why-card p { font-size: 0.88rem; color: var(--gray-light); line-height: 1.6; position: relative; }

/* ══════ PROCESS ══════ */
.process-track { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.process-track::before {
    content: ''; position: absolute; top: 32px; left: 10%; width: 80%; height: 2px;
    background: linear-gradient(90deg, var(--border), var(--primary-50), var(--border)); z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.step-dot {
    width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 20px;
    background: var(--white); border: 2px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; font-weight: 800; color: var(--primary);
    transition: all 0.35s var(--ease);
}
.process-step:hover .step-dot { border-color: var(--primary); background: var(--primary-50); box-shadow: 0 0 0 6px rgba(37,99,235,0.08); }
.process-step h4 { font-size: 0.98rem; font-weight: 700; margin-bottom: 6px; }
.process-step p { font-size: 0.82rem; color: var(--gray); line-height: 1.5; max-width: 200px; margin: 0 auto; }

/* ══════ ABOUT ══════ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-text p { font-size: 1rem; color: var(--gray); line-height: 1.75; margin-bottom: 16px; }
.about-text p:last-of-type { margin-bottom: 0; }
.about-highlights {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px;
}
.about-hl {
    padding: 20px; background: var(--primary-50); border-radius: var(--radius);
    border: 1px solid var(--primary-100);
}
.about-hl-num { font-size: 1.6rem; font-weight: 900; color: var(--primary); line-height: 1; }
.about-hl-label { font-size: 0.78rem; color: var(--gray); margin-top: 4px; font-weight: 500; }
.about-visual {
    background: linear-gradient(135deg, var(--dark), var(--dark-alt));
    border-radius: var(--radius-xl); padding: 48px; display: flex; flex-direction: column;
    align-items: center; justify-content: center; min-height: 380px; position: relative; overflow: hidden;
}
.about-visual::before {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 24px 24px;
}
.about-visual svg { width: 80%; height: auto; fill: rgba(255,255,255,0.08); position: relative; z-index: 1; }
.about-visual-badge {
    position: relative; z-index: 1; margin-top: 32px;
    background: var(--primary); color: var(--white);
    padding: 16px 28px; border-radius: var(--radius); text-align: center;
    box-shadow: 0 8px 24px rgba(37,99,235,0.4);
}
.about-visual-badge .b-title { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.85; }
.about-visual-badge .b-value { font-size: 1.5rem; font-weight: 900; margin-top: 2px; }

/* ══════ LOCATIONS ══════ */
.loc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.loc-card {
    background: var(--white); border: 1.5px solid var(--border);
    border-radius: var(--radius); padding: 24px 20px; text-align: center;
    transition: all 0.3s var(--ease);
}
.loc-card:hover { border-color: var(--primary); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.loc-card h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.loc-card p { font-size: 0.78rem; color: var(--gray); }
.loc-card a { display: block; color: inherit; text-decoration: none; }

/* ══════ REVIEWS ══════ */
.reviews-top { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 24px; margin-bottom: 40px; }
.rating-block { display: flex; align-items: center; gap: 14px; }
.rating-num { font-size: 3rem; font-weight: 900; color: var(--primary); line-height: 1; }
.rating-stars { color: #FBBF24; font-size: 1rem; letter-spacing: 2px; }
.rating-count { font-size: 0.82rem; color: var(--gray); margin-top: 2px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card {
    background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 32px 28px; transition: all 0.35s var(--ease); position: relative;
}
.review-card::before {
    content: '"'; position: absolute; top: 20px; right: 24px;
    font-size: 4rem; font-weight: 900; color: var(--primary-50); line-height: 1; font-family: Georgia, serif;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); border-color: transparent; }
.review-stars { color: #FBBF24; font-size: 0.85rem; letter-spacing: 3px; margin-bottom: 16px; }
.review-text { font-size: 0.92rem; color: var(--dark); line-height: 1.7; margin-bottom: 20px; position: relative; }
.review-author { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--border); }
.review-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white); display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.82rem;
}
.review-name { font-weight: 600; font-size: 0.88rem; }
.review-loc { font-size: 0.76rem; color: var(--gray); }

/* ══════ CTA BANNER ══════ */
.cta-banner {
    padding: 80px 0; text-align: center; position: relative; overflow: hidden;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: var(--white);
}
.cta-banner::before {
    content: ''; position: absolute; top: -40%; right: -15%; width: 500px; height: 500px;
    border-radius: 50%; background: rgba(255,255,255,0.06); pointer-events: none;
}
.cta-banner::after {
    content: ''; position: absolute; bottom: -30%; left: -10%; width: 400px; height: 400px;
    border-radius: 50%; background: rgba(255,255,255,0.04); pointer-events: none;
}
.cta-banner h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 900; margin-bottom: 10px; position: relative; }
.cta-banner p { font-size: 1.05rem; opacity: 0.9; margin-bottom: 28px; position: relative; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ══════ FAQ ══════ */
.faq-list { max-width: 760px; }
.faq-item { border-bottom: 1px solid var(--border-dark); }
.faq-btn {
    width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px;
    padding: 24px 0; background: none; border: none; color: var(--white);
    font-family: inherit; font-weight: 600; font-size: 0.98rem; cursor: pointer; text-align: left;
    transition: color 0.2s;
}
.faq-btn:hover { color: #60A5FA; }
.faq-plus { width: 20px; height: 20px; flex-shrink: 0; position: relative; }
.faq-plus::before, .faq-plus::after { content: ''; position: absolute; background: currentColor; border-radius: 2px; }
.faq-plus::before { width: 12px; height: 1.5px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq-plus::after { width: 1.5px; height: 12px; top: 50%; left: 50%; transform: translate(-50%,-50%); transition: transform 0.3s var(--ease); }
.faq-item.open .faq-plus::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease); }
.faq-answer-text { padding-bottom: 24px; color: var(--gray-light); font-size: 0.92rem; line-height: 1.7; max-width: 600px; }
.faq-item.open .faq-answer { max-height: 400px; }

/* FAQ on light background (subpages) */
.faq-light .faq-item { border-bottom-color: var(--border); }
.faq-light .faq-btn { color: var(--dark); }
.faq-light .faq-btn:hover { color: var(--primary); }
.faq-light .faq-answer-text { color: var(--gray); }

/* ══════ CONTACT ══════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; }
.contact-methods { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
.c-card {
    display: flex; align-items: center; gap: 16px; padding: 18px 22px;
    background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
    transition: all 0.3s var(--ease); text-decoration: none; color: inherit;
}
.c-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateX(4px); }
.c-card-icon {
    width: 44px; height: 44px; border-radius: 10px;
    background: var(--primary-50); color: var(--primary);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.c-card-icon svg { width: 20px; height: 20px; }
.c-card-icon.wa { background: #DCFCE7; color: #16A34A; }
.c-card-label { font-size: 0.73rem; color: var(--gray); font-weight: 500; }
.c-card-value { font-weight: 700; font-size: 0.95rem; }
.hours-block { margin-top: 14px; padding: 22px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); }
.hours-block h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 12px; }
.hours-row { display: flex; justify-content: space-between; font-size: 0.85rem; padding: 4px 0; color: var(--gray); }
.hours-row .day { font-weight: 500; color: var(--dark); }
.form-box {
    background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 40px; position: relative;
}
.form-box::after {
    content: ''; position: absolute; top: -1px; left: 32px; right: 32px; height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light)); border-radius: 0 0 4px 4px;
}
.form-title { font-size: 1.3rem; font-weight: 800; margin-bottom: 4px; }
.form-sub { font-size: 0.88rem; color: var(--gray); margin-bottom: 28px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 0.8rem; font-weight: 500; color: var(--gray); margin-bottom: 6px; }
.field input, .field select, .field textarea {
    width: 100%; padding: 12px 14px; background: var(--light); border: 1.5px solid var(--border);
    border-radius: 8px; color: var(--dark); font-family: inherit; font-size: 0.9rem;
    transition: all 0.25s; outline: none;
}
.field input::placeholder, .field textarea::placeholder { color: var(--gray-light); }
.field input:focus, .field select:focus, .field textarea:focus {
    border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-100); background: var(--white);
}
.field textarea { resize: vertical; min-height: 80px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-submit { width: 100%; justify-content: center; margin-top: 8px; }
.form-consent {
    display: flex; align-items: flex-start; gap: 10px; margin-top: 8px; margin-bottom: 4px;
    font-size: 0.78rem; color: var(--gray); line-height: 1.55; cursor: pointer;
}
.form-consent input[type="checkbox"] {
    width: 18px; height: 18px; margin-top: 1px; flex-shrink: 0;
    accent-color: var(--primary); cursor: pointer; border-radius: 4px;
}
.form-consent a { color: var(--primary); text-decoration: underline; }
.form-consent a:hover { color: var(--primary-dark); }

/* ══════ FLOATS ══════ */
.wa-float {
    position: fixed; bottom: 24px; right: 24px; z-index: 90;
    width: 60px; height: 60px; border-radius: 50%;
    background: var(--green); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
    transition: all 0.3s var(--ease); text-decoration: none;
    opacity: 0; transform: translateY(16px) scale(0.9); pointer-events: none;
}
.wa-float.show { opacity: 1; transform: translateY(0) scale(1); pointer-events: all; }
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,0.5); }
.wa-float svg { width: 28px; height: 28px; fill: var(--white); }
.phone-float {
    position: fixed; bottom: 24px; left: 24px; z-index: 90;
    display: none; align-items: center; gap: 8px;
    padding: 12px 22px; background: var(--primary); color: var(--white);
    border-radius: 100px; font-weight: 700; font-size: 0.88rem;
    box-shadow: var(--shadow-blue); text-decoration: none;
    opacity: 0; transform: translateY(16px); pointer-events: none;
    transition: all 0.3s var(--ease);
}
.phone-float.show { opacity: 1; transform: translateY(0); pointer-events: all; }
.phone-float svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ══════ FOOTER ══════ */
footer { background: var(--dark); color: var(--white); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand-text { color: var(--gray-light); font-size: 0.86rem; line-height: 1.6; margin-top: 16px; max-width: 280px; }
.footer-col h5 { font-size: 0.88rem; font-weight: 700; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: var(--gray-light); font-size: 0.84rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 32px; border-top: 1px solid var(--border-dark); flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { color: var(--gray-light); font-size: 0.78rem; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: var(--gray-light); font-size: 0.78rem; transition: color 0.2s; }
.footer-legal a:hover { color: var(--white); }

/* ══════ BREADCRUMB ══════ */
.breadcrumb { padding: 12px 0; font-size: 0.75rem; color: var(--gray-light); }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 4px; align-items: center; }
.breadcrumb a { color: var(--gray-light); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { margin: 0 4px; opacity: 0.4; }
/* Breadcrumb on light bg */
.breadcrumb-light { color: var(--gray); }
.breadcrumb-light a { color: var(--gray); }
.breadcrumb-light a:hover { color: var(--primary); }

/* ══════ RATGEBER ══════ */
.ratgeber-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ratgeber-card {
    background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 32px 28px; transition: all 0.4s var(--ease); position: relative; overflow: hidden;
}
.ratgeber-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease);
}
.ratgeber-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.ratgeber-card:hover::before { transform: scaleX(1); }
.ratgeber-tag { display: inline-block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--primary); margin-bottom: 12px; }
.ratgeber-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; line-height: 1.35; }
.ratgeber-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.7; }
.ratgeber-card ul { margin-top: 10px; padding-left: 18px; font-size: 0.85rem; color: var(--gray); line-height: 1.8; }

/* ══════ EXPANDED LOCATIONS ══════ */
.loc-expanded { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 40px; }
.loc-detail {
    background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 28px 24px; transition: all 0.35s var(--ease);
}
.loc-detail:hover { border-color: var(--primary); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.loc-detail h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; display: flex; align-items: center; gap: 8px; }
.loc-detail h3 svg { width: 18px; height: 18px; color: var(--primary); flex-shrink: 0; }
.loc-detail p { font-size: 0.85rem; color: var(--gray); line-height: 1.65; }
.loc-detail .loc-services { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.loc-detail .loc-tag { font-size: 0.68rem; font-weight: 600; padding: 3px 10px; border-radius: 100px; background: var(--primary-50); color: var(--primary); }

/* ══════ SEO CONTENT BLOCK ══════ */
.seo-content { max-width: 800px; }
.seo-content h2 { font-size: 1.6rem; font-weight: 800; margin-bottom: 16px; }
.seo-content h3 { font-size: 1.1rem; font-weight: 700; margin-top: 24px; margin-bottom: 8px; }
.seo-content p { font-size: 0.92rem; color: var(--gray); line-height: 1.75; margin-bottom: 12px; }

/* ══════ SUBPAGE LAYOUTS ══════ */

/* Subpage hero (smaller than homepage) */
.hero-sub {
    position: relative; padding: 140px 0 80px; display: flex; align-items: center;
    background: linear-gradient(160deg, var(--dark) 0%, #0c1929 50%, var(--primary-900) 100%);
    color: var(--white); overflow: hidden; min-height: auto;
}
.hero-sub .hero-grid-bg,
.hero-sub .hero-glow-1,
.hero-sub .hero-glow-2 { display: block; }
.hero-sub h1 {
    font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; line-height: 1.1;
    letter-spacing: -0.03em; margin-bottom: 16px;
}
.hero-sub h1 span {
    background: linear-gradient(135deg, #60A5FA, #93C5FD);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub .hero-desc {
    font-size: 1.02rem; max-width: 560px; margin-bottom: 24px;
    animation: none; opacity: 1; transform: none;
}
.hero-sub .hero-actions { animation: none; opacity: 1; transform: none; }
.hero-sub .hero-badge { animation: none; opacity: 1; transform: none; }

/* Article/Content layout */
.article-content {
    max-width: 800px; margin: 0 auto; padding: 0 24px;
}
.article-content h2 { font-size: 1.5rem; font-weight: 800; margin: 40px 0 16px; color: var(--dark); }
.article-content h3 { font-size: 1.15rem; font-weight: 700; margin: 28px 0 10px; color: var(--dark); }
.article-content p { font-size: 0.95rem; color: var(--gray); line-height: 1.8; margin-bottom: 16px; }
.article-content ul, .article-content ol { margin: 12px 0 16px 20px; font-size: 0.95rem; color: var(--gray); line-height: 1.8; }
.article-content li { margin-bottom: 6px; }
.article-content strong { color: var(--dark); }
.article-content a { color: var(--primary); text-decoration: underline; }
.article-content a:hover { color: var(--primary-dark); }

/* Table of contents */
.toc {
    background: var(--primary-50); border: 1px solid var(--primary-100);
    border-radius: var(--radius); padding: 24px 28px; margin: 24px 0 32px;
}
.toc h3 { font-size: 0.9rem; font-weight: 700; margin: 0 0 12px; color: var(--dark); }
.toc ol { margin: 0 0 0 20px; font-size: 0.88rem; line-height: 1.8; }
.toc a { color: var(--primary); text-decoration: none; }
.toc a:hover { text-decoration: underline; }

/* Comparison table */
.compare-table { width: 100%; border-collapse: collapse; margin: 24px 0; border-radius: var(--radius); overflow: hidden; }
.compare-table th, .compare-table td { padding: 14px 18px; text-align: left; font-size: 0.88rem; }
.compare-table th { background: var(--primary); color: var(--white); font-weight: 600; }
.compare-table td { border-bottom: 1px solid var(--border); color: var(--gray); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: var(--light); }

/* HowTo visual steps */
.howto-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin: 24px 0; }
.howto-step {
    text-align: center; padding: 24px 16px; background: var(--white);
    border: 1px solid var(--border); border-radius: var(--radius);
}
.howto-step-num {
    width: 48px; height: 48px; border-radius: 50%; margin: 0 auto 12px;
    background: var(--primary-50); color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 1.1rem;
}
.howto-step h4 { font-size: 0.92rem; font-weight: 700; margin-bottom: 4px; }
.howto-step p { font-size: 0.82rem; color: var(--gray); line-height: 1.5; }

/* Inline CTA banner (mid-content) */
.inline-cta {
    padding: 40px; text-align: center; position: relative; overflow: hidden;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: var(--white);
    border-radius: var(--radius-lg); margin: 40px 0;
}
.inline-cta h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 8px; }
.inline-cta p { font-size: 0.95rem; opacity: 0.9; margin-bottom: 20px; }
.inline-cta .cta-actions { justify-content: center; }

/* Stadt-grid (andere Standorte) */
.cities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin: 24px 0; }
.city-link {
    display: block; padding: 16px; text-align: center;
    background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
    font-size: 0.88rem; font-weight: 600; color: var(--dark);
    transition: all 0.25s var(--ease);
}
.city-link:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.city-link small { display: block; font-size: 0.72rem; font-weight: 500; color: var(--gray); margin-top: 2px; }

/* Related articles */
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 24px 0; }
.related-card {
    padding: 24px; background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius); transition: all 0.3s var(--ease);
}
.related-card:hover { border-color: var(--primary); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.related-card .ratgeber-tag { margin-bottom: 8px; }
.related-card h4 { font-size: 0.95rem; font-weight: 700; line-height: 1.35; }
.related-card a { color: inherit; text-decoration: none; display: block; }

/* Timeline (Versicherung) */
.timeline { position: relative; padding-left: 32px; margin: 24px 0; }
.timeline::before { content: ''; position: absolute; left: 11px; top: 0; bottom: 0; width: 2px; background: var(--primary-100); }
.timeline-item { position: relative; margin-bottom: 24px; }
.timeline-item::before {
    content: ''; position: absolute; left: -32px; top: 4px;
    width: 22px; height: 22px; border-radius: 50%;
    background: var(--primary); border: 3px solid var(--primary-100);
}
.timeline-item h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.timeline-item p { font-size: 0.88rem; color: var(--gray); line-height: 1.6; }

/* ══════ ANIMATIONS ══════ */
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .06s; } .d2 { transition-delay: .12s; } .d3 { transition-delay: .18s; }
.d4 { transition-delay: .24s; } .d5 { transition-delay: .3s; } .d6 { transition-delay: .36s; }

/* ══════ RESPONSIVE ══════ */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; gap: 48px; text-align: center; }
    .hero-desc { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-trust { justify-content: center; }
    .hero-visual { max-width: 300px; margin: 0 auto; }
    .services-grid, .why-grid, .reviews-grid, .ratgeber-grid { grid-template-columns: repeat(2, 1fr); }
    .loc-grid { grid-template-columns: repeat(2, 1fr); }
    .loc-expanded { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .about-visual { min-height: 280px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .process-track { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .process-track::before { display: none; }
    .cities-grid { grid-template-columns: repeat(2, 1fr); }
    .related-grid { grid-template-columns: repeat(2, 1fr); }
    .howto-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    section { padding: 72px 0; }
    .nav-links {
        display: none; position: absolute; top: 100%; left: 0; width: 100%;
        flex-direction: column; background: rgba(255,255,255,0.97);
        backdrop-filter: blur(16px); padding: 16px 24px; gap: 4px;
        border-bottom: 1px solid var(--border); max-height: 80vh; overflow-y: auto;
    }
    .nav-links.open { display: flex; }
    .nav-dropdown-menu {
        position: static; transform: none; box-shadow: none; border: none;
        padding: 0 0 0 16px; min-width: auto; display: none;
    }
    .nav-dropdown.open .nav-dropdown-menu { display: block; }
    .mobile-toggle { display: block; }
    .services-grid, .why-grid, .reviews-grid, .ratgeber-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 36px; }
    .field-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .process-track, .loc-grid { grid-template-columns: 1fr; }
    .reviews-top { flex-direction: column; align-items: flex-start; }
    .phone-float { display: flex; }
    .hero-trust { flex-wrap: wrap; gap: 24px; }
    .hero-trust-item::after { display: none; }
    .about-highlights { grid-template-columns: 1fr 1fr; }
    .cities-grid { grid-template-columns: repeat(2, 1fr); }
    .related-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-actions { flex-direction: column; }
    .btn { width: 100%; justify-content: center; }
    .form-box { padding: 28px 20px; }
    .about-highlights { grid-template-columns: 1fr; }
    .cities-grid { grid-template-columns: 1fr 1fr; }
}
