/* ===== Singer Finanzkonzepte — Premium Agency Build ===== */

:root {
  --navy: #141E33;
  --navy-light: #1C2A45;
  --navy-dark: #0B1120;
  --navy-mid: #182236;
  --gold: #C9A96E;
  --gold-light: #D4BB8A;
  --gold-dark: #B08F4F;
  --gold-glow: rgba(201,169,110,0.15);
  --white: #FFFFFF;
  --off-white: #F8F9FB;
  --cream: #FDFCFA;
  --text: #2C3345;
  --text-light: #5A6478;
  --text-muted: #9CA3AF;
  --border: #E5E7EB;
  --border-light: #F0F1F3;
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.07);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.1);
  --shadow-xl: 0 24px 64px rgba(0,0,0,0.14);
  --shadow-gold: 0 4px 20px rgba(201,169,110,0.25);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.7; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }

/* ===== UTILITIES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 900px; margin: 0 auto; padding: 0 24px; }
.gold { color: var(--gold); }
.section { padding: 120px 0; position: relative; }
.section-alt { background: var(--off-white); }
.section-dark { background: var(--navy); color: var(--white); }
.section-dark .section-header p { color: rgba(255,255,255,0.6); }
.section-dark .gold { color: var(--gold-light); }

.section-header { text-align: center; max-width: 660px; margin: 0 auto 72px; }
.section-tag { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.section-header h2 { font-family: var(--font-heading); font-size: 2.8rem; font-weight: 600; line-height: 1.15; margin-bottom: 20px; }
.section-header p { font-size: 1.1rem; color: var(--text-light); line-height: 1.75; }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 16px 36px; font-family: var(--font-body); font-size: 15px; font-weight: 600; border-radius: 8px; border: 2px solid transparent; cursor: pointer; transition: all var(--transition); letter-spacing: 0.3px; position: relative; overflow: hidden; }
.btn-gold { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.25); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline-dark { background: transparent; color: var(--navy); border-color: var(--border); }
.btn-outline-dark:hover { border-color: var(--gold); color: var(--gold); }
.btn-full { width: 100%; }
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-arrow::after { content: '\2192'; transition: transform var(--transition); }
.btn-arrow:hover::after { transform: translateX(4px); }

/* ===== NAVIGATION ===== */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 20px 0; transition: all var(--transition); }
.nav.scrolled { background: rgba(11, 17, 32, 0.95); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); padding: 10px 0; box-shadow: 0 1px 30px rgba(0,0,0,0.2); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: center; gap: 36px; }
.nav-logo { position: absolute; left: 24px; }
.nav-logo img { height: 52px; width: auto; transition: height var(--transition); }
.nav.scrolled .nav-logo img { height: 40px; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.75); font-size: 14px; font-weight: 500; letter-spacing: 0.2px; transition: color var(--transition); position: relative; }
.nav-links a:hover { color: var(--white); }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1.5px; background: var(--gold); transition: width var(--transition); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { padding: 10px 24px !important; background: var(--gold) !important; color: var(--navy) !important; border-radius: 6px !important; font-weight: 600 !important; }
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-dark) !important; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(201,169,110,0.3); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--white); margin: 5px 0; transition: all var(--transition); border-radius: 1px; }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero { position: relative; min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; color: var(--white); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: linear-gradient(165deg, var(--navy-dark) 0%, var(--navy) 35%, var(--navy-mid) 65%, var(--navy-light) 100%); }
/* Animated gold accent orbs */
.hero-bg::before { content: ''; position: absolute; top: -20%; right: -10%; width: 700px; height: 700px; background: radial-gradient(circle, rgba(201,169,110,0.07) 0%, transparent 65%); border-radius: 50%; animation: orb1 12s ease-in-out infinite; }
.hero-bg::after { content: ''; position: absolute; bottom: -15%; left: -5%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(201,169,110,0.05) 0%, transparent 60%); border-radius: 50%; animation: orb2 10s ease-in-out infinite; }
@keyframes orb1 { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(-40px, 30px) scale(1.1); } }
@keyframes orb2 { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(30px, -20px) scale(1.05); } }

/* Grid pattern overlay */
.hero-grid { position: absolute; inset: 0; background-image:
  linear-gradient(rgba(201,169,110,0.03) 1px, transparent 1px),
  linear-gradient(90deg, rgba(201,169,110,0.03) 1px, transparent 1px);
  background-size: 80px 80px; opacity: 0.6; }

/* Decorative lines */
.hero-deco { position: absolute; z-index: 0; }
.hero-deco-1 { top: 15%; left: 8%; width: 120px; height: 1px; background: linear-gradient(90deg, transparent, rgba(201,169,110,0.2), transparent); transform: rotate(-20deg); animation: shimmer 4s ease-in-out infinite; }
.hero-deco-2 { bottom: 20%; right: 6%; width: 180px; height: 1px; background: linear-gradient(90deg, transparent, rgba(201,169,110,0.15), transparent); transform: rotate(15deg); animation: shimmer 5s ease-in-out infinite 1s; }
.hero-deco-3 { top: 35%; right: 12%; width: 8px; height: 8px; border: 1px solid rgba(201,169,110,0.2); border-radius: 50%; animation: pulse-dot 3s ease-in-out infinite; }
.hero-deco-4 { bottom: 35%; left: 10%; width: 6px; height: 6px; border: 1px solid rgba(201,169,110,0.15); transform: rotate(45deg); animation: pulse-dot 4s ease-in-out infinite 0.5s; }
.hero-deco-5 { top: 60%; left: 18%; width: 40px; height: 40px; border: 1px solid rgba(201,169,110,0.06); border-radius: 50%; animation: float-shape 8s ease-in-out infinite; }
.hero-deco-6 { top: 25%; right: 22%; width: 60px; height: 60px; border: 1px solid rgba(201,169,110,0.04); transform: rotate(45deg); animation: float-shape 10s ease-in-out infinite 2s; }
@keyframes shimmer { 0%, 100% { opacity: 0.3; } 50% { opacity: 1; } }
@keyframes pulse-dot { 0%, 100% { transform: scale(1); opacity: 0.3; } 50% { transform: scale(1.5); opacity: 0.8; } }
@keyframes float-shape { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-15px) rotate(5deg); } }

/* Split hero layout */
.hero-split { text-align: left; }
.hero-split-inner { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
.hero-content-left { max-width: 600px; }

.hero-content { position: relative; z-index: 2; max-width: 800px; padding: 0 24px; }
.hero-logo { height: 110px; width: auto; margin-bottom: 36px; opacity: 0.9; filter: drop-shadow(0 2px 12px rgba(0,0,0,0.3)); animation: fadeInDown 0.8s ease both; }
.hero-logo-white { height: 180px; filter: brightness(0) invert(1) drop-shadow(0 2px 16px rgba(0,0,0,0.15)); opacity: 0.93; }
.hero-split .hero-logo { margin: 0 0 36px 0; }

/* Hero brand — typographic logo */
.hero-brand { display: flex; align-items: center; gap: 20px; margin-bottom: 40px; animation: fadeInDown 0.8s ease both; }
.hero-brand-mark { width: 72px; height: 72px; border: 2px solid rgba(201,169,110,0.4); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', Georgia, serif; font-size: 2.4rem; font-style: italic; font-weight: 400; color: var(--gold); flex-shrink: 0; background: rgba(201,169,110,0.04); }
.hero-brand-text { display: flex; flex-direction: column; gap: 2px; }
.hero-brand-name { font-family: 'Playfair Display', Georgia, serif; font-size: 2rem; font-weight: 500; letter-spacing: 8px; color: var(--white); line-height: 1; }
.hero-brand-sub { font-family: var(--font-body); font-size: 0.85rem; font-weight: 500; letter-spacing: 5px; color: var(--gold); line-height: 1; }
.hero h1 { font-family: var(--font-heading); font-size: 3.2rem; font-weight: 600; line-height: 1.15; margin-bottom: 20px; letter-spacing: -0.5px; animation: fadeInUp 0.8s ease 0.2s both; }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,0.55); line-height: 1.8; margin-bottom: 36px; animation: fadeInUp 0.8s ease 0.4s both; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeInUp 0.8s ease 0.6s both; }

/* Hero reviews badges */
.hero-reviews { display: flex; gap: 16px; margin-top: 32px; animation: fadeInUp 0.8s ease 0.8s both; }
.review-badge { display: flex; flex-direction: column; padding: 14px 20px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; transition: all var(--transition); min-width: 160px; }
.review-badge:hover { border-color: rgba(201,169,110,0.3); background: rgba(201,169,110,0.04); }
.review-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; margin-bottom: 4px; }
.review-info { font-size: 14px; color: var(--white); font-weight: 500; }
.review-info strong { font-size: 16px; }
.review-count { font-size: 11px; color: rgba(255,255,255,0.35); margin-top: 2px; }

/* Hero photo */
.hero-photo-side { position: relative; display: flex; justify-content: center; animation: fadeInUp 1s ease 0.4s both; }
.hero-photo-frame { width: 380px; height: 480px; border-radius: 20px; overflow: hidden; border: 2px solid rgba(201,169,110,0.15); box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.hero-photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero-photo-accent { position: absolute; bottom: -16px; right: -16px; width: 140px; height: 140px; border: 2px solid rgba(201,169,110,0.12); border-radius: 20px; z-index: -1; }

/* Hero stats bar */
.hero-stats { position: relative; z-index: 2; display: flex; justify-content: center; gap: 60px; margin-top: 80px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.06); animation: fadeInUp 0.8s ease 0.8s both; }
.hero-stat { text-align: center; }
.hero-stat-number { font-family: var(--font-heading); font-size: 2.4rem; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 6px; }
.hero-stat-label { font-size: 12px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.4); }

.hero-scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,0.3); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; animation: float 2.5s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }

/* ===== TRUST BAR ===== */
.trust-bar { background: var(--white); border-bottom: 1px solid var(--border-light); padding: 28px 0; }
.trust-bar-inner { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-light); font-weight: 500; }
.trust-item svg { color: var(--gold); flex-shrink: 0; }
.trust-item-review { font-weight: 600; color: var(--text); }
.trust-item-review strong { color: var(--navy); }

/* ===== SERVICES ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius); padding: 40px 32px; transition: all var(--transition); opacity: 0; transform: translateY(24px); position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); transform: scaleX(0); transition: transform var(--transition); transform-origin: left; }
.service-card.visible { opacity: 1; transform: translateY(0); }
.service-card:hover { border-color: transparent; box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 60px; height: 60px; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; color: var(--gold); box-shadow: 0 4px 12px rgba(20,30,51,0.15); }
.service-card h3 { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 600; margin-bottom: 12px; color: var(--navy); }
.service-card p { font-size: 0.95rem; color: var(--text-light); line-height: 1.7; margin-bottom: 20px; }
.service-link { font-size: 14px; font-weight: 600; color: var(--gold-dark); display: inline-flex; align-items: center; gap: 6px; transition: all var(--transition); }
.service-link:hover { color: var(--gold); gap: 10px; }

/* ===== PHILOSOPHY / ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-text .section-tag { text-align: left; }
.about-text h2 { font-family: var(--font-heading); font-size: 2.4rem; font-weight: 600; line-height: 1.2; margin-bottom: 24px; color: var(--navy); }
.about-text p { font-size: 1.05rem; color: var(--text-light); line-height: 1.8; margin-bottom: 16px; }
.about-text blockquote { border-left: 3px solid var(--gold); padding: 16px 0 16px 24px; margin: 28px 0; font-family: var(--font-heading); font-size: 1.2rem; font-style: italic; color: var(--navy); line-height: 1.5; }
.about-visual { position: relative; }
.about-image-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-image-grid img { border-radius: var(--radius); object-fit: cover; width: 100%; }
.about-image-grid img:first-child { height: 320px; grid-row: 1 / 3; }
.about-image-grid img:nth-child(2) { height: 152px; }
.about-image-grid img:nth-child(3) { height: 152px; }
.about-photo-single { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-xl); }
.about-photo-single img { width: 100%; height: 500px; object-fit: cover; object-position: center top; }
.about-accent { position: absolute; bottom: -20px; right: -20px; width: 120px; height: 120px; border: 2px solid var(--gold); border-radius: var(--radius); opacity: 0.15; z-index: -1; }

/* ===== TEAM ===== */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.team-card { text-align: center; opacity: 0; transform: translateY(24px); }
.team-card.visible { opacity: 1; transform: translateY(0); }
.team-photo { width: 220px; height: 220px; margin: 0 auto 28px; border-radius: 50%; overflow: hidden; border: 3px solid rgba(201,169,110,0.25); box-shadow: 0 8px 32px rgba(0,0,0,0.2); transition: all var(--transition); }
.team-card:hover .team-photo { border-color: var(--gold); transform: scale(1.03); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.team-card h3 { font-family: var(--font-heading); font-size: 1.35rem; font-weight: 600; margin-bottom: 4px; }
.team-role { display: inline-block; font-size: 13px; font-weight: 600; color: var(--gold); letter-spacing: 0.5px; margin-bottom: 14px; }
.team-card p { font-size: 0.95rem; color: rgba(255,255,255,0.55); line-height: 1.65; max-width: 320px; margin: 0 auto; }

/* ===== PROCESS ===== */
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; position: relative; }
.process-grid::before { content: ''; position: absolute; top: 42px; left: 16.5%; right: 16.5%; height: 2px; background: linear-gradient(90deg, var(--border), var(--gold), var(--border)); opacity: 0.3; }
.process-step { text-align: center; padding: 0 16px; opacity: 0; transform: translateY(24px); position: relative; }
.process-step.visible { opacity: 1; transform: translateY(0); }
.process-number { width: 84px; height: 84px; margin: 0 auto 24px; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700; color: var(--gold); background: var(--white); border: 2px solid var(--border); border-radius: 50%; position: relative; z-index: 1; transition: all var(--transition); }
.process-step:hover .process-number { border-color: var(--gold); box-shadow: 0 0 0 6px var(--gold-glow); }
.process-step h3 { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 600; margin-bottom: 10px; color: var(--navy); }
.process-step p { font-size: 0.95rem; color: var(--text-light); line-height: 1.65; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); padding: 36px 28px; position: relative; opacity: 0; transform: translateY(24px); transition: all var(--transition-slow); }
.testimonial-card.visible { opacity: 1; transform: translateY(0); }
.testimonial-card:hover { border-color: rgba(201,169,110,0.2); background: rgba(201,169,110,0.03); }
.testimonial-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-card p { font-size: 0.95rem; color: rgba(255,255,255,0.65); line-height: 1.7; font-style: italic; margin-bottom: 20px; }
.testimonial-author { font-size: 14px; font-weight: 600; color: var(--white); }
.testimonial-role { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 2px; }
.testimonial-quote { position: absolute; top: 24px; right: 28px; font-family: var(--font-heading); font-size: 4rem; color: rgba(201,169,110,0.1); line-height: 1; }

/* ===== BESTANDSKUNDEN ===== */
.client-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.client-card { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius); padding: 36px 24px; text-align: center; transition: all var(--transition); opacity: 0; transform: translateY(24px); }
.client-card.visible { opacity: 1; transform: translateY(0); }
.client-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.client-icon { width: 56px; height: 56px; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; color: var(--gold); }
.client-card h3 { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600; margin-bottom: 10px; color: var(--navy); }
.client-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.65; margin-bottom: 18px; }
.client-link { font-size: 14px; font-weight: 600; color: var(--gold-dark); display: inline-flex; align-items: center; gap: 4px; transition: all var(--transition); }
.client-link:hover { color: var(--gold); gap: 8px; }

/* ===== CASE STUDIES ===== */
.cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.case-card { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius); padding: 36px 28px; position: relative; transition: all var(--transition); }
.case-card:hover { border-color: var(--gold); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.case-badge { display: inline-block; background: var(--navy); color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 5px 14px; border-radius: 4px; margin-bottom: 16px; }
.case-card h3 { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 600; color: var(--navy); margin-bottom: 14px; line-height: 1.35; }
.case-profile { display: flex; flex-wrap: wrap; gap: 6px 16px; margin-bottom: 20px; }
.case-profile span { font-size: 12px; color: var(--text-muted); }
.case-section { margin-bottom: 16px; }
.case-section h4 { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 6px; }
.case-section p { font-size: 0.9rem; color: var(--text-light); line-height: 1.65; }
.case-result { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border-light); }
.case-result-item { text-align: center; }
.case-result-item strong { display: block; font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; color: var(--navy); }
.case-result-item span { font-size: 11px; color: var(--text-muted); }
@media (max-width: 1024px) { .cases-grid { grid-template-columns: 1fr; } .case-result { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .case-result { grid-template-columns: 1fr; } }

/* ===== SERVICE HUB ===== */
.service-tabs { display: flex; justify-content: center; gap: 8px; margin-bottom: 36px; flex-wrap: wrap; }
.service-tab { padding: 12px 28px; font-family: var(--font-body); font-size: 14px; font-weight: 600; color: var(--text-light); background: var(--white); border: 2px solid var(--border); border-radius: 8px; cursor: pointer; transition: all var(--transition); }
.service-tab:hover { border-color: var(--gold); color: var(--gold-dark); }
.service-tab.active { background: var(--navy); color: var(--white); border-color: var(--navy); }

.service-panel { display: none; animation: fadeInUp 0.4s ease; }
.service-panel.active { display: block; }
.service-form-card { max-width: 760px; margin: 0 auto; background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius); padding: 44px 40px; box-shadow: var(--shadow-md); }
.service-form-card h3 { font-family: var(--font-heading); font-size: 1.4rem; color: var(--navy); margin-bottom: 6px; }
.service-form-card .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.service-form-card .form-group { margin-bottom: 16px; }
.service-form-card .form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.service-form-card .form-group input,
.service-form-card .form-group select,
.service-form-card .form-group textarea { width: 100%; padding: 12px 16px; background: var(--off-white); border: 1px solid var(--border); border-radius: 8px; color: var(--text); font-family: var(--font-body); font-size: 14px; transition: border-color var(--transition); }
.service-form-card .form-group input:focus,
.service-form-card .form-group select:focus,
.service-form-card .form-group textarea:focus { outline: none; border-color: var(--gold); background: var(--white); }
.service-form-card .form-group textarea { resize: vertical; min-height: 100px; }
.service-form-card .form-group select { cursor: pointer; }
.form-success-msg { margin-top: 18px; padding: 18px; background: rgba(34,139,34,0.06); border: 1px solid rgba(34,139,34,0.25); border-radius: 10px; color: #228B22; text-align: center; font-size: 14px; font-weight: 600; }

/* Versorgungslücke Ergebnis */
.vs-result-card { background: var(--off-white); border: 2px solid var(--border); border-radius: var(--radius); padding: 32px; }
.vs-result-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.vs-result-item { text-align: center; padding: 16px 8px; background: var(--white); border-radius: var(--radius-sm); }
.vs-result-label { font-size: 12px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.vs-result-value { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 700; color: var(--navy); }
.vs-result-danger { color: #C0392B; }
.vs-result-sub { font-size: 11px; color: var(--text-muted); margin-top: 2px; }
.vs-result-gap { border: 2px solid #C0392B; background: rgba(192,57,43,0.03); }

/* Quick Links */
.service-quick-links { display: flex; justify-content: center; gap: 16px; margin-top: 40px; flex-wrap: wrap; }
.service-quick-link { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; font-size: 14px; font-weight: 500; color: var(--text-light); background: var(--white); border: 1px solid var(--border); border-radius: 8px; transition: all var(--transition); }
.service-quick-link:hover { border-color: var(--gold); color: var(--gold-dark); }
.service-quick-link svg { color: var(--gold); }

/* Hotline Box */
.hotline-box { background: var(--white); border: 2px solid var(--border); border-radius: var(--radius); padding: 32px; margin-top: 40px; }
.hotline-box h3 { font-family: var(--font-heading); font-size: 1.1rem; color: var(--navy); margin-bottom: 18px; text-align: center; }
.hotline-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.hotline-item { display: flex; flex-direction: column; align-items: center; padding: 14px 12px; border: 1px solid var(--border-light); border-radius: var(--radius-sm); transition: all var(--transition); text-align: center; }
.hotline-item:hover { border-color: var(--gold); background: rgba(201,169,110,0.03); }
.hotline-item strong { font-size: 12px; font-weight: 700; color: var(--navy); letter-spacing: 0.3px; margin-bottom: 4px; }
.hotline-item span { font-size: 14px; font-weight: 600; color: var(--gold-dark); }
.hotline-personal { border-color: var(--gold); background: rgba(201,169,110,0.04); }

@media (max-width: 768px) {
  .hotline-grid { grid-template-columns: repeat(2, 1fr); }
  .service-tabs { gap: 6px; }
  .service-tab { padding: 10px 16px; font-size: 13px; }
  .service-form-card { padding: 28px 20px; }
  .service-form-card .form-row { grid-template-columns: 1fr; }
  .vs-result-grid { grid-template-columns: 1fr 1fr; }
  .service-quick-links { flex-direction: column; align-items: stretch; }
}

/* ===== KNOWLEDGE ===== */
.knowledge-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.knowledge-card { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius); padding: 40px 32px; transition: all var(--transition); opacity: 0; transform: translateY(24px); }
.knowledge-card.visible { opacity: 1; transform: translateY(0); }
.knowledge-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); }
.knowledge-card-featured { grid-row: 1 / 3; background: linear-gradient(165deg, var(--navy) 0%, var(--navy-light) 100%); color: var(--white); border: none; box-shadow: var(--shadow-xl); }
.knowledge-card-featured:hover { transform: translateY(-4px); }
.knowledge-card-featured p { color: rgba(255,255,255,0.65); }
.knowledge-badge { display: inline-block; background: var(--gold); color: var(--navy); font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 5px 14px; border-radius: 4px; margin-bottom: 18px; }
.knowledge-card h3 { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 600; margin-bottom: 14px; }
.knowledge-card p { font-size: 0.95rem; color: var(--text-light); line-height: 1.7; margin-bottom: 24px; }
.knowledge-list { list-style: none; margin-bottom: 28px; }
.knowledge-list li { padding: 8px 0; font-size: 0.95rem; color: rgba(255,255,255,0.6); position: relative; padding-left: 22px; }
.knowledge-list li::before { content: ''; position: absolute; left: 0; top: 16px; width: 10px; height: 1.5px; background: var(--gold); }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.contact-info { opacity: 0; transform: translateY(24px); }
.contact-info.visible { opacity: 1; transform: translateY(0); }
.contact-block { margin-bottom: 32px; }
.contact-block h3 { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600; margin-bottom: 10px; color: var(--gold); }
.contact-block p { font-size: 0.95rem; line-height: 1.85; color: rgba(255,255,255,0.65); }
.contact-block a { color: rgba(255,255,255,0.65); transition: color var(--transition); }
.contact-block a:hover { color: var(--gold); }
.contact-social { display: flex; gap: 12px; margin-top: 20px; }
.contact-social a { width: 44px; height: 44px; border: 1px solid rgba(255,255,255,0.12); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); transition: all var(--transition); }
.contact-social a:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,169,110,0.05); }

.contact-form { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); padding: 40px; opacity: 0; transform: translateY(24px); }
.contact-form.visible { opacity: 1; transform: translateY(0); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.6); margin-bottom: 7px; letter-spacing: 0.3px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 13px 18px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; color: var(--white); font-family: var(--font-body); font-size: 15px; transition: all var(--transition); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); background: rgba(201,169,110,0.04); }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--navy); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-hint { font-size: 13px; color: rgba(255,255,255,0.35); margin-top: 14px; text-align: center; }
.form-success { margin-top: 18px; padding: 18px; background: rgba(201,169,110,0.08); border: 1px solid rgba(201,169,110,0.3); border-radius: 10px; color: var(--gold); text-align: center; font-size: 14px; font-weight: 500; }

/* ===== FOOTER ===== */
.footer { background: var(--navy-dark); color: rgba(255,255,255,0.5); padding: 72px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { height: 64px; width: auto; margin-bottom: 16px; opacity: 0.65; }
.footer-brand p { font-size: 14px; line-height: 1.7; }
.footer-links h4 { font-family: var(--font-heading); font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.8); margin-bottom: 18px; letter-spacing: 0.5px; }
.footer-links a { display: block; font-size: 14px; margin-bottom: 12px; transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.06); display: flex; justify-content: space-between; align-items: center; font-size: 13px; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a:hover { color: var(--gold); }

/* ===== SERVICE SUBPAGE ===== */
.page-hero { background: linear-gradient(165deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%); color: var(--white); padding: 160px 0 80px; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: -20%; right: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(201,169,110,0.06) 0%, transparent 65%); border-radius: 50%; }
.page-hero .section-tag { color: var(--gold); }
.page-hero h1 { font-family: var(--font-heading); font-size: 3rem; font-weight: 600; margin-bottom: 20px; }
.page-hero p { font-size: 1.15rem; color: rgba(255,255,255,0.6); max-width: 600px; margin: 0 auto; line-height: 1.75; }

.page-content { padding: 80px 0; }
.page-content h2 { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 600; color: var(--navy); margin: 48px 0 16px; }
.page-content h2:first-of-type { margin-top: 0; }
.page-content p { font-size: 1.05rem; color: var(--text-light); line-height: 1.85; margin-bottom: 16px; }
.page-content ul { padding-left: 24px; margin-bottom: 20px; }
.page-content li { font-size: 1.05rem; color: var(--text-light); line-height: 1.85; margin-bottom: 8px; }

/* Benefits grid on subpages */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 40px 0; }
.benefit-card { background: var(--off-white); border-radius: var(--radius); padding: 32px 24px; text-align: center; }
.benefit-card h4 { font-family: var(--font-heading); font-size: 1.1rem; margin-bottom: 8px; color: var(--navy); }
.benefit-card p { font-size: 0.9rem; color: var(--text-light); }
.benefit-icon { font-size: 2rem; margin-bottom: 12px; }

/* FAQ on subpages */
.faq-section { background: var(--off-white); padding: 80px 0; }
.faq-item { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius-sm); margin-bottom: 12px; overflow: hidden; }
.faq-question { padding: 20px 24px; font-weight: 600; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: background var(--transition); }
.faq-question:hover { background: var(--off-white); }
.faq-question::after { content: '+'; font-size: 1.3rem; color: var(--gold); transition: transform var(--transition); }
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer { padding: 0 24px; max-height: 0; overflow: hidden; transition: all var(--transition); }
.faq-item.open .faq-answer { padding: 0 24px 20px; max-height: 500px; }
.faq-answer p { font-size: 0.95rem; color: var(--text-light); line-height: 1.75; }

/* CTA Banner */
.cta-banner { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); padding: 80px 0; text-align: center; color: var(--white); }
.cta-banner h2 { font-family: var(--font-heading); font-size: 2.2rem; margin-bottom: 16px; }
.cta-banner p { font-size: 1.1rem; color: rgba(255,255,255,0.6); margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .client-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { gap: 48px; }
  .hero-stats { gap: 40px; }
  .benefits-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links { position: fixed; top: 0; right: -100%; width: 300px; height: 100vh; background: var(--navy-dark); flex-direction: column; justify-content: center; align-items: center; gap: 20px; transition: right var(--transition); padding: 20px; z-index: 1001; }
  .nav-links.open { right: 0; box-shadow: -10px 0 50px rgba(0,0,0,0.4); }
  .nav-links a { font-size: 17px; color: rgba(255,255,255,0.8); }
  .nav-links a::after { display: none; }

  .hero { min-height: auto; padding: 120px 0 40px; }
  .hero-split-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-content-left { max-width: 100%; }
  .hero-split .hero-logo { margin: 0 auto 24px; }
  .hero-brand { justify-content: center; margin-bottom: 28px; gap: 14px; }
  .hero-brand-mark { width: 56px; height: 56px; font-size: 1.8rem; }
  .hero-brand-name { font-size: 1.5rem; letter-spacing: 6px; }
  .hero-brand-sub { font-size: 0.7rem; letter-spacing: 3.5px; }
  .hero-actions { justify-content: center; }
  .hero-reviews { justify-content: center; }
  .hero-photo-side { order: -1; }
  .hero-photo-frame { width: 240px; height: 300px; margin: 0 auto; }
  .hero-photo-accent { display: none; }
  .hero h1 { font-size: 2.2rem; }
  .hero-sub { font-size: 1rem; }
  .hero-logo { height: 80px; margin-bottom: 24px; }
  .hero-logo-white { height: 130px; }
  .hero-stats { flex-wrap: wrap; gap: 24px; margin-top: 40px; padding-top: 28px; }
  .hero-stat-number { font-size: 1.8rem; }
  .hero-deco { display: none; }
  .review-badge { min-width: 140px; padding: 10px 14px; }

  .section { padding: 80px 0; }
  .section-header { margin-bottom: 48px; }
  .section-header h2 { font-size: 2rem; }

  .services-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image-grid { grid-template-columns: 1fr 1fr; }
  .about-image-grid img:first-child { height: 200px; grid-row: auto; }
  .about-image-grid img:nth-child(2),
  .about-image-grid img:nth-child(3) { height: 200px; }
  .team-grid { grid-template-columns: 1fr; gap: 44px; }
  .process-grid { grid-template-columns: 1fr; gap: 40px; }
  .process-grid::before { display: none; }
  .client-grid { grid-template-columns: 1fr; }
  .knowledge-grid { grid-template-columns: 1fr; }
  .knowledge-card-featured { grid-row: auto; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .trust-bar-inner { gap: 12px; flex-direction: column; align-items: center; }
  .trust-item { font-size: 13px; }
  .trust-item-review { display: none; }

  .nav-inner { position: relative; }
  .nav-logo { position: static; }

  .about-text blockquote { font-size: 1.05rem; }
  .about-photo-single img { height: 300px; }

  .page-hero h1 { font-size: 2rem; }
  .page-hero { padding: 130px 0 60px; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card { padding: 28px 20px; }

  .hero-reviews { flex-direction: column; align-items: center; gap: 10px; }
  .review-badge { width: 100%; max-width: 280px; }

  .benefits-grid { grid-template-columns: 1fr; }

  /* Touch-friendly targets */
  .btn { min-height: 48px; }
  .service-tab { min-height: 44px; }
  .nav-links a { padding: 8px 0; }
  .faq-question { min-height: 48px; padding: 16px 20px; }

  /* Prevent horizontal scroll */
  .hero-stats { gap: 16px; }
  .hero-stat { min-width: 70px; }
  .hero-stat-number { font-size: 1.5rem; }
  .hero-stat-label { font-size: 10px; letter-spacing: 1px; }
}

/* ===== SCROLL ANIMATIONS ===== */
.animate-in { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.animate-in.visible { opacity: 1; transform: translateY(0); }
.service-card:nth-child(2) { transition-delay: 0.08s; }
.service-card:nth-child(3) { transition-delay: 0.16s; }
.service-card:nth-child(4) { transition-delay: 0.24s; }
.service-card:nth-child(5) { transition-delay: 0.32s; }
.service-card:nth-child(6) { transition-delay: 0.40s; }
.team-card:nth-child(2) { transition-delay: 0.12s; }
.team-card:nth-child(3) { transition-delay: 0.24s; }
.client-card:nth-child(2) { transition-delay: 0.08s; }
.client-card:nth-child(3) { transition-delay: 0.16s; }
.client-card:nth-child(4) { transition-delay: 0.24s; }
.process-step:nth-child(2) { transition-delay: 0.15s; }
.process-step:nth-child(3) { transition-delay: 0.3s; }
.testimonial-card:nth-child(2) { transition-delay: 0.12s; }
.testimonial-card:nth-child(3) { transition-delay: 0.24s; }
