/* ============================================
   NATALIE GROSS BUCHHALTUNGSSERVICE
   Claude-improved version
   Font: DM Serif Display + DM Sans
   Theme: Warm cream + deep navy + soft gold
   ============================================ */

:root {
  --bg:         #f5efe4;
  --bg-alt:     #faf7f2;
  --surface:    #ffffff;
  --navy:       #1a2e4a;
  --navy-dark:  #0f1e33;
  --navy-mid:   #243550;
  --gold:       #b8934a;
  --gold-light: #d4b07a;
  --gold-pale:  #f0e4cc;
  --ink:        #0f1e33;
  --muted:      #5e6e84;
  --line:       #ddd5c6;
  --white:      #ffffff;
  --radius-sm:  12px;
  --radius:     20px;
  --radius-lg:  32px;
  --shadow-sm:  0 4px 18px rgba(15,30,51,.08);
  --shadow:     0 16px 56px rgba(15,30,51,.12);
  --shadow-lg:  0 32px 80px rgba(15,30,51,.18);
  --ease:       cubic-bezier(.25,.46,.45,.94);
  --font-serif: 'DM Serif Display', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { padding-left: 20px; margin: 14px 0 0; }
li { margin-bottom: 8px; color: var(--muted); }

.container {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}

/* SKIP LINK */
.skip-link {
  position: absolute; left: -999px; top: 8px; z-index: 200;
  background: var(--navy); color: #fff; padding: 10px 16px; border-radius: var(--radius-sm);
}
.skip-link:focus { left: 8px; }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
/* Backdrop on pseudo-element so mobile nav is not clipped by it */
.site-header::before {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background: rgba(245,239,228,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 2px 24px rgba(15,30,51,.06);
}

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 80px; gap: 24px;
}

/* Logo is defined below with brand text */

nav#main-nav {
  display: flex; align-items: center; gap: 28px;
  font-size: 15px; font-weight: 600;
}
nav#main-nav a { color: var(--muted); transition: color .2s; }
nav#main-nav a:hover { color: var(--navy); }

.nav-cta {
  background: var(--navy);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: background .2s, transform .2s !important;
}
.nav-cta:hover { background: var(--navy-dark) !important; transform: translateY(-1px); }

/* Burger */
.burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 38px; height: 38px; background: none; border: none; cursor: pointer; padding: 6px;
}
.burger span { display: block; height: 2px; background: var(--navy); border-radius: 2px; transition: .3s var(--ease); }
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   ANIMATIONS — Progressive Enhancement
   ============================================ */

/* Default: visible (no-JS fallback) */
[data-animate] {
  opacity: 1;
  transform: none;
}

/* Only animate when JS has run successfully */
.js [data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.js [data-animate].visible { opacity: 1; transform: none; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .js [data-animate] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 26px; min-height: 52px;
  border-radius: 999px; font-family: var(--font-sans); font-weight: 700; font-size: 15px;
  text-decoration: none; border: 2px solid transparent; cursor: pointer;
  transition: transform .22s var(--ease), box-shadow .22s, background .2s, border-color .2s, color .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--navy); color: #fff;
  box-shadow: 0 12px 32px rgba(15,30,51,.22);
}
.btn-primary:hover { background: var(--navy-dark); box-shadow: 0 18px 42px rgba(15,30,51,.3); }
.btn-ghost {
  background: rgba(255,255,255,.65); color: var(--navy);
  border-color: var(--line);
}
.btn-ghost:hover { background: #fff; }
.btn-outline {
  background: transparent; color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-full { width: 100%; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative; overflow: hidden;
  padding: 80px 0 100px;
}

.hero-orb {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.hero-orb-1 {
  top: -200px; right: -100px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(184,147,74,.18) 0%, transparent 65%);
}
.hero-orb-2 {
  bottom: -250px; left: -150px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(26,46,74,.1) 0%, transparent 65%);
}

.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 420px;
  gap: 64px; align-items: center;
}

.hero-media {
  display: flex; flex-direction: column; align-items: center;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 20px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--gold-pale);
  color: var(--gold);
  font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
}

h1 {
  font-family: var(--font-serif);
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05; letter-spacing: -.02em;
  color: var(--navy-dark); margin: 0;
}
h1 em { font-style: italic; color: var(--gold); }

h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 50px);
  line-height: 1.1; letter-spacing: -.02em;
  color: var(--navy-dark); margin: 0;
}

h3 {
  font-family: var(--font-sans);
  font-size: 20px; font-weight: 700; line-height: 1.25;
  color: var(--navy-dark); margin: 0 0 10px;
}

.lead {
  margin: 24px 0 0; max-width: 560px;
  font-size: 19px; color: var(--muted); line-height: 1.6;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.trust-pills {
  list-style: none; padding: 0; margin: 28px 0 0;
  display: flex; flex-wrap: wrap; gap: 10px;
}
.trust-pills li {
  display: flex; align-items: center; gap: 7px;
  padding: 8px 14px;
  background: rgba(255,255,255,.7);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px; font-weight: 600; color: var(--navy);
  margin: 0;
}
.pill-icon { color: var(--gold); font-weight: 700; }

/* Logo with brand text */
.logo {
  display: flex; align-items: center; gap: 14px; text-decoration: none; flex-shrink: 0;
}
.logo img { width: 64px; height: auto; }
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-text strong {
  font-family: var(--font-serif); font-size: 17px; color: var(--navy-dark); font-weight: 400; letter-spacing: .01em;
}
.logo-text span {
  font-size: 10px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--gold);
}

/* Hero portrait – circular crop showing face + shoulders */
.hero-img-portrait {
  border-radius: 50% !important;
  width: 380px;
  height: 380px;
  overflow: hidden;
  box-shadow: 0 0 0 8px var(--gold-pale), var(--shadow-lg) !important;
  margin: 0 auto;
}
.hero-img-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  border-radius: 0 !important;
}

.hero-badge {
  position: relative; left: auto; bottom: auto;
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  background: rgba(255,255,255,.97);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-top: 24px;
  min-width: 200px;
  align-self: center;
}
.badge-star {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold-pale); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.hero-badge strong { display: block; color: var(--navy-dark); font-size: 18px; font-weight: 800; line-height: 1; }
.hero-badge span { color: var(--muted); font-size: 13px; }

/* ============================================
   BAND (Zielgruppe)
   ============================================ */
.band {
  background: var(--navy-dark);
  padding: 22px 0;
}
.band .container { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.band-label { color: rgba(255,255,255,.5); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; white-space: nowrap; margin: 0; }
.band-items { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.band-items span { color: rgba(255,255,255,.85); font-size: 15px; font-weight: 500; }
.band-items .sep { color: var(--gold); }

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: 96px 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--navy-dark); }

.section-label {
  display: inline-block;
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
}

.section-head { margin-bottom: 52px; }
.section-head.centered { text-align: center; }
.section-head p {
  margin: 16px 0 0; max-width: 620px;
  font-size: 18px; color: var(--muted);
}
.section-head.centered p { margin-left: auto; margin-right: auto; }

/* ============================================
   PROBLEM/LÖSUNG SPLIT
   ============================================ */
.split-intro {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.split-intro-desc p { color: var(--muted); font-size: 17px; margin: 0 0 16px; }
.split-intro-desc .btn { margin-top: 10px; }

/* ============================================
   LEISTUNGEN (Services)
   ============================================ */
.service-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-bottom: 32px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  position: relative; overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
}

.service-num {
  font-family: var(--font-serif);
  font-size: 52px; color: var(--gold-pale);
  line-height: 1; margin-bottom: 16px;
  font-style: italic;
}

.service-card h3 { margin-bottom: 12px; }
.service-card p { color: var(--muted); margin: 0 0 4px; font-size: 15px; }

.legal-notice {
  display: flex; gap: 20px; align-items: flex-start;
  background: var(--bg); border: 1px solid var(--line);
  border-left: 5px solid var(--gold);
  border-radius: var(--radius);
  padding: 24px 28px;
}
.legal-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold-pale); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 700; font-family: var(--font-serif);
  flex-shrink: 0;
}
.legal-notice strong { color: var(--navy-dark); display: block; margin-bottom: 6px; }
.legal-notice p { color: var(--muted); margin: 0; font-size: 14px; line-height: 1.65; }

/* ============================================
   ÜBER MICH
   ============================================ */
.about-grid {
  display: grid; grid-template-columns: 420px 1fr;
  gap: 80px; align-items: center;
}

.about-media { position: relative; display: flex; flex-direction: column; align-items: center; }
.about-media img {
  width: 380px; height: 380px;
  border-radius: 50%;
  object-fit: cover; object-position: center 15%;
  box-shadow: 0 0 0 8px var(--gold-pale), var(--shadow-lg);
}

.about-quote {
  position: relative; bottom: auto; right: auto;
  margin-top: 24px;
  background: var(--navy-dark); color: #fff;
  padding: 20px 22px; border-radius: var(--radius);
  max-width: 340px; box-shadow: var(--shadow);
  text-align: center;
}
.about-quote p {
  margin: 0; font-family: var(--font-serif); font-style: italic;
  font-size: 15px; line-height: 1.5; color: rgba(255,255,255,.9);
}

.about-text h2 { margin-bottom: 20px; }
.about-text p { color: var(--muted); margin: 0 0 16px; }

.about-stats {
  display: flex; gap: 32px; margin-top: 32px;
  padding-top: 28px; border-top: 1px solid var(--line);
}
.stat strong { display: block; font-family: var(--font-serif); font-size: 32px; color: var(--navy-dark); line-height: 1; }
.stat span { font-size: 13px; color: var(--muted); font-weight: 500; }

/* ============================================
   ABLAUF (Steps)
   ============================================ */
.section-dark .section-label { color: var(--gold-light); }
.section-dark h2 { color: #fff; }
.section-dark .section-head p { color: rgba(255,255,255,.6); }

.steps-grid {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0; align-items: start; margin: 0 0 48px;
}

.step-connector {
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: 28px; color: rgba(255,255,255,.25);
  font-size: 28px; font-weight: 300;
}

.step-item {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg); padding: 32px 28px;
}

.step-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gold); color: var(--navy-dark);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px; margin-bottom: 18px;
}

.step-item h3 { color: #fff; margin-bottom: 10px; }
.step-item p { color: rgba(255,255,255,.6); margin: 0; font-size: 15px; }

.steps-cta { text-align: center; }

/* ============================================
   PAKETE (Pricing)
   ============================================ */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; align-items: start;
}

.price-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.price-card.featured {
  background: var(--navy-dark); border-color: transparent;
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.price-card.featured:hover { transform: translateY(-16px); }

.featured-badge {
  display: inline-block; margin-bottom: 18px;
  padding: 5px 14px; border-radius: 999px;
  background: var(--gold); color: var(--navy-dark);
  font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em;
}

.price-tier {
  font-family: var(--font-serif); font-size: 32px;
  color: var(--navy-dark); margin-bottom: 10px;
}
.price-card.featured .price-tier { color: #fff; }

.price-desc { color: var(--muted); font-size: 15px; margin: 0 0 8px; }
.price-card.featured .price-desc { color: rgba(255,255,255,.65); }

.price-features { margin-bottom: 28px; }
.price-features li { font-size: 15px; }
.price-card.featured .price-features li { color: rgba(255,255,255,.75); }

/* ============================================
   KONTAKT
   ============================================ */
.contact-wrap {
  display: grid; grid-template-columns: 1fr 1.15fr;
  gap: 72px; align-items: start;
}

.contact-left h2 { margin-bottom: 16px; }
.contact-left > p { color: var(--muted); margin: 0 0 28px; font-size: 17px; }

.contact-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px 24px;
  box-shadow: var(--shadow-sm); margin-bottom: 20px;
}

.contact-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--navy-dark); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px; flex-shrink: 0;
  letter-spacing: .03em;
}

.contact-info { display: flex; flex-direction: column; gap: 4px; }
.contact-info strong { color: var(--navy-dark); font-size: 16px; font-weight: 700; }
.contact-info span { color: var(--muted); font-size: 14px; }
.contact-info a { color: var(--gold); font-size: 14px; font-weight: 600; }
.contact-info a:hover { text-decoration: underline; }

.contact-note {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 14px 18px; border-radius: var(--radius-sm);
  background: var(--bg-alt); border: 1px solid var(--line);
}
.contact-note p { margin: 0; font-size: 13px; color: var(--muted); }

/* Form */
.contact-form {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 36px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 16px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

label {
  display: flex; flex-direction: column; gap: 7px;
  font-size: 14px; font-weight: 600; color: var(--navy-dark);
}

input, select, textarea {
  width: 100%; padding: 12px 16px;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--bg); color: var(--ink);
  font: inherit; font-size: 15px;
  transition: border-color .2s, box-shadow .2s;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,147,74,.15);
}
input::placeholder, textarea::placeholder { color: #aab0ba; }
textarea { resize: vertical; }

#form-status { margin: 0; font-size: 14px; }
#form-status.success { color: #2a9d8f; }
#form-status.error { color: #e63946; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer { padding: 52px 0; background: var(--navy-dark); }

.footer-inner {
  display: grid; grid-template-columns: auto 1fr;
  gap: 60px; align-items: start;
}

.footer-logo { width: 52px; height: auto; flex-shrink: 0; }
.footer-logo-wrap { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.footer-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.footer-logo-text strong { font-family: var(--font-serif); font-size: 16px; color: rgba(255,255,255,.9); font-weight: 400; }
.footer-logo-text span { font-size: 9px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--gold-light); }
.footer-brand p { color: rgba(255,255,255,.45); font-size: 13px; margin: 0; }

.footer-links p { color: rgba(255,255,255,.55); font-size: 14px; margin: 0 0 8px; }
.footer-links a { color: rgba(255,255,255,.75); text-decoration: underline; text-underline-offset: 3px; }
.credits { opacity: .6; font-size: 13px !important; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr 380px; gap: 56px; }
  .logo img { width: 56px; }
  nav#main-nav { gap: 20px; font-size: 14px; }
}

@media (max-width: 900px) {
  .burger { display: flex; }

  nav#main-nav {
    display: none;
    position: fixed;
    top: 80px; left: 0; right: 0;
    height: calc(100dvh - 80px);
    background: var(--bg);
    flex-direction: column; align-items: stretch;
    padding: 32px 24px; gap: 8px;
    z-index: 110;
    overflow-y: auto;
    box-shadow: 0 8px 32px rgba(15,30,51,.15);
  }
  nav#main-nav.open { display: flex; }
  nav#main-nav a { padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 20px; color: var(--navy-dark); font-weight: 600; }
  nav#main-nav a:hover { color: var(--gold); }
  .nav-cta {
    margin-top: 16px;
    padding: 18px 0 !important;
    border: none !important; border-radius: 0 !important;
    background: none !important; color: var(--navy-dark) !important;
    font-size: 20px !important;
  }

  .hero-grid,
  .split-intro,
  .about-grid,
  .contact-wrap,
  .footer-inner { grid-template-columns: 1fr; }

  .hero-grid { gap: 48px; }
  .hero-media { max-width: 420px; display: flex; flex-direction: column; align-items: center; }
  .hero-img-portrait { width: 300px; height: 300px; }
  .hero-badge { left: 16px; bottom: 16px; right: 16px; }
  .hero-orb-1, .hero-orb-2 { display: none; }

  .about-media { max-width: 100%; }
  .about-media img { width: 300px; height: 300px; }

  .service-grid,
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .step-connector { display: none; }

  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .container { width: calc(100% - 32px); }
  .section { padding: 64px 0; }
  .hero { padding: 52px 0 68px; }
  h1 { font-size: 38px; }
  h2 { font-size: 30px; }
  .contact-form { padding: 24px 20px; }
  .band .container { flex-direction: column; align-items: flex-start; gap: 10px; }
  .about-stats { flex-wrap: wrap; gap: 20px; }
  .split-intro { gap: 40px; }
}

/* ============================================
   WHATSAPP FLOAT BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 500;
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, #25d366 0%, #128c4e 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.2), 0 8px 28px rgba(37,211,102,.4);
  transition: transform .25s var(--ease), box-shadow .25s;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,.25), 0 12px 36px rgba(37,211,102,.5);
}
.whatsapp-float svg { width: 33px; height: 33px; fill: #fff; }
.whatsapp-tooltip {
  position: absolute; right: 72px; top: 50%; transform: translateY(-50%);
  background: var(--navy-dark); color: #fff;
  padding: 8px 14px; border-radius: 8px;
  font-size: 13px; font-weight: 600; white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity .2s;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }
.whatsapp-tooltip::after {
  content: '';
  position: absolute; left: 100%; top: 50%; transform: translateY(-50%);
  border: 6px solid transparent; border-left-color: var(--navy-dark);
}

/* ============================================
   INSTAGRAM LINK
   ============================================ */
.social-links { display: flex; gap: 14px; margin-top: 14px; align-items: center; }
.social-link {
  display: inline-flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,.8); font-size: 13px; font-weight: 600;
  text-decoration: none; transition: color .2s, opacity .2s;
}
.social-link:hover { color: #fff; opacity: .9; }

.social-link-icon {
  width: 34px; height: 34px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.social-link-icon--instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.social-link-icon svg { width: 20px; height: 20px; fill: #fff; }

/* ============================================
   LEGAL PAGES (Impressum / Datenschutz)
   ============================================ */
.legal-page {
  padding: 80px 0 100px;
  min-height: 60vh;
}
.legal-text {
  max-width: 760px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 52px 56px;
  box-shadow: var(--shadow-sm);
}
.legal-text h1 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--gold-pale);
}
.legal-text h2 {
  font-size: 18px; font-family: var(--font-sans);
  margin: 32px 0 8px; color: var(--navy-dark);
  font-weight: 700;
}
.legal-text p, .legal-text li { color: var(--muted); font-size: 15px; line-height: 1.75; }
.legal-text a { color: var(--gold); text-decoration: underline; }
.legal-back {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 36px; color: var(--navy); font-weight: 600; font-size: 15px;
  text-decoration: none;
}
.legal-back:hover { text-decoration: underline; }

@media (max-width: 600px) {
  .legal-text { padding: 28px 22px; }
  .whatsapp-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
}

/* Contact section social links */
.contact-social-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600; text-decoration: none;
  transition: opacity .2s;
}
.contact-social-link:hover { opacity: .8; }
.contact-social-link--wa { color: #128c4e; }
.contact-social-link--ig { color: #c13584; }

.contact-social-icon {
  width: 30px; height: 30px; border-radius: 8px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.contact-social-icon--wa {
  background: linear-gradient(135deg, #25d366 0%, #128c4e 100%);
}
.contact-social-icon--ig {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

/* ============================================
   PRICING — ERWEITERT
   ============================================ */

.price-amount {
  margin: 16px 0 20px;
  font-size: 15px; color: var(--muted);
}
.price-amount strong {
  font-family: var(--font-serif); font-size: 40px;
  color: var(--navy-dark); font-weight: 400; letter-spacing: -.02em;
}
.price-amount span { font-size: 13px; }
.price-card.featured .price-amount { color: rgba(255,255,255,.65); }
.price-card.featured .price-amount strong { color: #fff; }
.price-card.featured .price-amount span { color: rgba(255,255,255,.5); }

.price-section-label {
  font-size: 10px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold);
  margin: 18px 0 8px;
}
.price-section-label--not { color: var(--muted); margin-top: 14px; }
.price-card.featured .price-section-label { color: var(--gold-light); }
.price-card.featured .price-section-label--not { color: rgba(255,255,255,.4); }

.price-features { list-style: none; padding: 0; margin: 0; }
.price-features li {
  display: flex; align-items: flex-start; gap: 9px;
  padding: 5px 0; border-bottom: 1px solid var(--line);
  font-size: 14px; color: var(--ink); margin: 0; line-height: 1.45;
}
.price-card.featured .price-features li {
  color: rgba(255,255,255,.85); border-color: rgba(255,255,255,.1);
}
.price-features li::before { flex-shrink: 0; margin-top: 2px; }

.price-features--check li::before {
  content: '✓';
  color: var(--gold); font-weight: 700; font-size: 13px;
}
.price-card.featured .price-features--check li::before { color: var(--gold-light); }

.price-features--cross li::before {
  content: '✕';
  color: #bbb; font-size: 12px;
}
.price-features--cross li { color: var(--muted); }

.price-for {
  margin: 18px 0 22px;
  padding: 12px 14px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  font-size: 13px; color: var(--muted); line-height: 1.55;
}
.price-for span {
  display: block; font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--gold); margin-bottom: 5px;
}
.price-for--light {
  background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.12);
  color: rgba(255,255,255,.65);
}
.price-for--light span { color: var(--gold-light); }

/* ============================================
   ZUSATZLEISTUNGEN
   ============================================ */
.addons-wrap {
  margin-top: 72px;
  padding-top: 56px;
  border-top: 1px solid var(--line);
}
.addons-head {
  text-align: center; margin-bottom: 36px;
}
.addons-head h3 {
  font-family: var(--font-serif); font-size: 30px;
  color: var(--navy-dark); font-weight: 400; margin: 0;
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 20px;
}

.addon-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  border-top: 3px solid var(--gold);
  padding: 24px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s;
}
.addon-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.addon-price {
  font-family: var(--font-serif); font-size: 24px;
  color: var(--navy-dark); margin-bottom: 8px; line-height: 1;
}
.addon-price span {
  font-family: var(--font-sans); font-size: 12px;
  color: var(--muted); font-style: normal;
}

.addon-card h4 {
  font-size: 15px; font-weight: 700; color: var(--navy-dark);
  margin: 0 0 12px; line-height: 1.3;
}
.addon-card ul {
  padding: 0; margin: 0; list-style: none;
}
.addon-card li {
  font-size: 13px; color: var(--muted);
  padding: 4px 0; margin: 0;
  display: flex; align-items: flex-start; gap: 7px;
  border-bottom: 1px solid var(--line);
}
.addon-card li:last-child { border-bottom: none; }
.addon-card li::before {
  content: '→'; color: var(--gold); font-size: 12px;
  flex-shrink: 0; margin-top: 1px;
}

@media (max-width: 600px) {
  .addons-grid { grid-template-columns: 1fr; }
  .price-amount strong { font-size: 34px; }
}

/* ============================================
   PROBLEM SECTION — mit Bild
   ============================================ */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.problem-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  flex-shrink: 0;
}
.problem-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  aspect-ratio: 3/2;
  display: block;
}

.problem-content {
  display: flex; flex-direction: column; gap: 32px;
}

/* ============================================
   LEISTUNGEN — Ordner-Bild
   ============================================ */
.leistungen-img {
  margin: 40px 0 32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  max-height: 360px;
}
.leistungen-img img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

@media (max-width: 900px) {
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .problem-img { order: -1; }
  .leistungen-img { max-height: 240px; }
  .leistungen-img img { height: 240px; }
}

/* ============================================
   SECTION BACKGROUND IMAGE
   ============================================ */
.section-bg {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
}
.section-bg-overlay {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg,
    rgba(10, 20, 38, 0.82) 0%,
    rgba(15, 30, 51, 0.72) 100%
  );
}

/* Light text variants for bg-image sections */
.text-light { color: #fff !important; }
.text-light-muted { color: rgba(255,255,255,.75) !important; }
.section-label--light { color: var(--gold-light) !important; }

/* Service cards on dark bg — glassmorphism style */
.section-bg .service-card {
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
}
.section-bg .service-card:hover {
  background: rgba(255,255,255,.13);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.35);
}
.section-bg .service-card h3 { color: #fff; }
.section-bg .service-card p { color: rgba(255,255,255,.65); }
.section-bg .service-card li { color: rgba(255,255,255,.75); border-bottom-color: rgba(255,255,255,.1); }
.section-bg .service-num { color: rgba(255,255,255,.15); }

/* Legal notice on dark bg */
.legal-notice--light {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.15);
  border-left-color: var(--gold-light);
  backdrop-filter: blur(10px);
}
.legal-notice--light strong { color: #fff; }
.legal-notice--light p { color: rgba(255,255,255,.65); }
.legal-notice--light .legal-icon {
  background: rgba(255,255,255,.1);
  color: var(--gold-light);
}

/* Disable fixed attachment on mobile (performance) */
@media (max-width: 900px) {
}

/* ============================================
   FOCUS-VISIBLE — consistent keyboard nav
   ============================================ */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}
button:focus-visible, a:focus-visible { outline-color: var(--navy); }

/* ============================================
   FORM PRIVACY NOTE
   ============================================ */
.form-privacy {
  font-size: 12px; color: var(--muted); margin: 0;
  line-height: 1.5;
}
.form-privacy a { color: var(--gold); text-decoration: underline; }
