/* =========================================================
   Schuldenfreies Leben e.V. — Stylesheet v2
   Farbsystem und Typografie wie Originalseite
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* Primärfarben */
  --c-accent: #0891AF;
  --c-accent-dark: #076D8A;
  --c-accent-soft: #D4EEF4;
  --c-accent-tint: #E8F6F9;

  /* Neutrale Farben */
  --c-ink: #1D232F;
  --c-ink-soft: #333333;
  --c-muted: #6B7280;
  --c-line: #E5E7EB;
  --c-bg: #FFFFFF;
  --c-bg-alt: #F5F5F5;
  --c-white: #FFFFFF;

  /* Akzente */
  --c-gold: #E6A817;
  --c-red: #D32F2F;
  --c-cta: #EB5E3C;
  --c-cta-dark: #D44C2A;
  --c-cta-soft: rgba(235, 94, 60, 0.1);

  --font-sans: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 3px rgba(29, 35, 47, 0.06);
  --shadow: 0 6px 20px rgba(29, 35, 47, 0.08);
  --shadow-lg: 0 15px 40px rgba(29, 35, 47, 0.12);

  --container: 1200px;
  --container-narrow: 880px;

  --ease: cubic-bezier(0.2, 0.6, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; color-scheme: light; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-ink-soft);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; color: inherit; }

a { color: var(--c-accent); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--c-accent-dark); }

h1, h2, h3, h4 {
  font-family: var(--font-sans);
  font-weight: 700;
  line-height: 1.2;
  color: var(--c-ink);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; letter-spacing: -0.015em; }
h3 { font-size: clamp(1.15rem, 1.5vw, 1.35rem); font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 600; }

h1 .hl, h2 .hl { color: var(--c-accent); }

p { margin-bottom: 1em; color: var(--c-ink-soft); }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--c-accent);
  margin-bottom: 1rem;
  display: inline-block;
}
.lead { font-size: 1.15rem; line-height: 1.6; color: var(--c-ink-soft); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 clamp(1.2rem, 4vw, 2.5rem); }
.container--narrow { max-width: var(--container-narrow); }

section { padding: clamp(3rem, 7vw, 5.5rem) 0; }

/* Topbar */
.topbar { background: var(--c-white); color: var(--c-ink-soft); font-size: 0.88rem; border-bottom: 1px solid var(--c-line); }
.topbar .container {
  display: flex; justify-content: space-between; align-items: center;
  min-height: 40px; gap: 1rem; flex-wrap: wrap;
  padding-top: 0.5rem; padding-bottom: 0.5rem;
}
.topbar a { color: var(--c-accent); font-weight: 700; }
.topbar a:hover { color: var(--c-accent-dark); }
.topbar .tag { color: var(--c-ink); font-weight: 600; }

/* Header */
.site-header {
  background: #333333;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky; top: 0; z-index: 50;
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 78px; gap: 2rem;
}
.brand {
  font-size: 1.3rem; font-weight: 800; color: var(--c-white);
  letter-spacing: -0.01em; line-height: 1.1;
  display: flex; flex-direction: column;
}
.brand:hover { color: var(--c-white); }
.brand small {
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: #14CAB4; margin-top: 3px;
}
.brand img { max-height: 52px; width: auto; }

.nav { display: flex; align-items: center; gap: 2rem; }
.nav-list { display: flex; gap: 1.8rem; list-style: none; }
.nav-list a {
  color: #14CAB4; font-weight: 600; font-size: 0.94rem;
  position: relative; padding: 4px 0;
}
.nav-list a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: #14CAB4;
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.nav-list a:hover { color: #FFFFFF; }
.nav-list a:hover::after, .nav-list a.active::after { transform: scaleX(1); }
.nav-list a.active { color: #FFFFFF; }
.nav-list a.active::after { background: #14CAB4; }

.nav-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--c-accent); color: var(--c-white);
  padding: 0.7rem 1.4rem; border-radius: 999px;
  font-weight: 700; font-size: 0.92rem;
  transition: all 0.25s var(--ease);
}
.nav-cta:hover {
  background: var(--c-accent-dark); color: var(--c-white);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(8, 145, 175, 0.3);
}

.menu-toggle, .nav-close { display: none; background: transparent; border: 0; cursor: pointer; padding: 8px; color: var(--c-white); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  padding: 0.85rem 1.8rem; border-radius: 999px;
  font-weight: 700; font-size: 0.98rem; text-decoration: none;
  border: 0; cursor: pointer; transition: all 0.25s var(--ease);
  white-space: nowrap; font-family: var(--font-sans);
}
.btn--primary {
  background: var(--c-cta); color: var(--c-white);
  box-shadow: 0 4px 14px rgba(235, 94, 60, 0.3);
}
.btn--primary:hover {
  background: var(--c-cta-dark); color: var(--c-white);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(235, 94, 60, 0.4);
}
.btn--ghost { background: transparent; color: var(--c-ink); border: 2px solid var(--c-ink); }
.btn--ghost:hover { background: var(--c-ink); color: var(--c-white); }
.btn--large { padding: 1.05rem 2.2rem; font-size: 1.02rem; }

/* Sägezahn */
.zigzag {
  display: block; width: 100%; height: 16px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 16' preserveAspectRatio='none'><path d='M0,16 L10,0 L20,16 L30,0 L40,16 Z' fill='%230891AF'/></svg>") repeat-x;
  background-size: 40px 16px;
}
.zigzag--dark { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 16' preserveAspectRatio='none'><path d='M0,16 L10,0 L20,16 L30,0 L40,16 Z' fill='%231D232F'/></svg>"); }
.zigzag--down { transform: scaleY(-1); }

/* Hero */
.hero { padding: clamp(2rem, 4vw, 3.5rem) 0 0; background: var(--c-bg); position: relative; }
.hero-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.hero h1 { margin-bottom: 1.2rem; }
.hero-actions { display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }
.hero-trust {
  margin-top: 2.5rem; display: flex; gap: 2rem; align-items: center;
  flex-wrap: wrap; padding-top: 1.5rem; border-top: 1px solid var(--c-line);
}
.hero-trust-item { display: flex; flex-direction: column; line-height: 1.2; }
.hero-trust-num { font-size: 1.5rem; font-weight: 800; color: var(--c-ink); }
.hero-trust-label {
  font-size: 0.8rem; color: var(--c-muted);
  text-transform: uppercase; letter-spacing: 0.08em;
  font-weight: 600; margin-top: 3px;
}
.hero-visual {
  position: relative; display: flex; flex-direction: column; gap: 1.75rem;
}
.hero-visual::before {
  content: ""; position: absolute;
  inset: -3rem -4rem -3rem -2rem;
  background: radial-gradient(ellipse at 60% 30%, rgba(8, 145, 175, 0.22), transparent 70%);
  filter: blur(24px); z-index: 0; pointer-events: none;
}
.hero-visual::after {
  content: ""; position: absolute;
  top: 20%; right: -2.5rem;
  width: 140px; height: 140px;
  background: var(--c-accent-soft);
  border-radius: 50%; z-index: 0; opacity: 0.6;
  filter: blur(2px);
}
.hero-visual > img {
  position: relative; z-index: 1;
  width: 100%; height: auto; display: block;
  border-radius: var(--radius-lg);
  box-shadow:
    0 30px 60px -20px rgba(8, 145, 175, 0.35),
    0 15px 30px -10px rgba(0, 0, 0, 0.15);
}
.hero-visual .hero-actions { margin-top: 0; position: relative; z-index: 1; }
.hero-visual-placeholder { width: 75%; max-width: 340px; }

/* Values */
.values { background: var(--c-bg); padding: clamp(2rem, 4vw, 3rem) 0 clamp(3rem, 6vw, 4.5rem); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.value-card {
  padding: clamp(1.6rem, 2.5vw, 2rem) clamp(1.3rem, 2vw, 1.7rem);
  background: var(--c-ink);
  border-radius: var(--radius); text-align: center;
  transition: all 0.3s var(--ease); border: 1px solid transparent;
  box-shadow: 0 4px 16px rgba(29, 35, 47, 0.08);
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(29, 35, 47, 0.18);
  border-color: var(--c-accent);
}
.value-icon {
  width: 56px; height: 56px; border-radius: var(--radius-sm);
  border: 2px solid var(--c-accent); background: transparent;
  color: var(--c-accent);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.value-icon svg { width: 28px; height: 28px; }
.value-card h3 { font-size: 1.1rem; margin-bottom: 0.6rem; color: var(--c-white); font-weight: 700; }
.value-card p { color: rgba(255, 255, 255, 0.88); font-size: 0.92rem; line-height: 1.55; margin: 0; font-weight: 500; }

/* Stats */
.stats { background: var(--c-ink); color: var(--c-white); padding: clamp(3rem, 6vw, 5rem) 0; position: relative; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; text-align: center; }
.stat-icon {
  width: 56px; height: 56px; border-radius: var(--radius);
  border: 2px solid var(--c-accent); color: var(--c-accent);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
}
.stat-icon svg { width: 28px; height: 28px; }
.stat-number {
  font-size: clamp(2.6rem, 5.5vw, 4rem); font-weight: 800;
  line-height: 1; color: var(--c-white); display: block;
  letter-spacing: -0.03em;
}
.stat-number em { font-style: normal; color: var(--c-accent); }
.stat-label {
  margin-top: 0.6rem; font-size: 0.9rem; font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
}

/* Split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.split--narrow { grid-template-columns: 0.8fr 1fr; }
.split-visual {
  aspect-ratio: 4/3; border-radius: var(--radius-lg);
  background: var(--c-accent-tint); position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.split-visual img { width: 100%; height: 100%; object-fit: cover; }

/* Features */
.features { background: var(--c-bg); }
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 3rem; }
.feature-card {
  background: var(--c-bg-alt); padding: clamp(1.8rem, 3vw, 2.3rem);
  border-radius: var(--radius-lg); transition: all 0.3s var(--ease);
  display: flex; gap: 1.25rem; align-items: flex-start;
}
.feature-card:hover { background: var(--c-white); box-shadow: var(--shadow); transform: translateY(-2px); }
.feature-card .feature-icon {
  flex-shrink: 0; width: 56px; height: 56px; border-radius: var(--radius);
  border: 2px solid var(--c-accent); color: var(--c-accent);
  display: flex; align-items: center; justify-content: center;
}
.feature-card .feature-icon svg { width: 28px; height: 28px; }
.feature-card .feature-body { flex: 1; }
.feature-card h3 { margin-bottom: 0.5rem; color: var(--c-ink); }
.feature-card p { font-size: 0.95rem; color: var(--c-ink-soft); }

/* FAQ */
.faq-list { margin-top: 3rem; max-width: var(--container-narrow); margin-left: auto; margin-right: auto; }
.faq-item { border-bottom: 1px solid var(--c-line); }
.faq-item:first-child { border-top: 1px solid var(--c-line); }
.faq-question {
  width: 100%; background: transparent; border: 0;
  padding: 1.4rem 0; text-align: left; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; font-family: var(--font-sans);
  font-size: 1.1rem; font-weight: 700; color: var(--c-ink);
  transition: color 0.2s var(--ease);
}
.faq-question:hover { color: var(--c-accent); }
.faq-icon { flex-shrink: 0; width: 28px; height: 28px; position: relative; transition: transform 0.3s var(--ease); color: var(--c-accent); }
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; background: currentColor;
  border-radius: 2px; transition: transform 0.3s var(--ease);
}
.faq-icon::before { top: 50%; left: 4px; right: 4px; height: 2px; transform: translateY(-50%); }
.faq-icon::after { left: 50%; top: 4px; bottom: 4px; width: 2px; transform: translateX(-50%); }
.faq-item[open] .faq-icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-answer { padding: 0 0 1.6rem 0; color: var(--c-ink-soft); max-width: 75ch; }

/* Info */
.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; margin-top: 3rem; }
.info-card {
  display: flex; flex-direction: column;
  padding: clamp(1.8rem, 3vw, 2.3rem); background: var(--c-white);
  border: 1px solid var(--c-line); border-radius: var(--radius-lg);
  text-decoration: none; color: var(--c-ink);
  transition: all 0.3s var(--ease); position: relative;
}
.info-card::before {
  content: ""; position: absolute; top: 0; left: 0;
  width: 4px; height: 100%; background: var(--c-accent);
  transform: scaleY(0); transform-origin: top;
  transition: transform 0.3s var(--ease);
  border-radius: 2px 0 0 2px;
}
.info-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); color: var(--c-ink); border-color: var(--c-accent-soft); }
.info-card:hover::before { transform: scaleY(1); }
.info-card h3 { margin-bottom: 0.8rem; font-size: 1.25rem; color: var(--c-ink); }
.info-card p { color: var(--c-ink-soft); margin-bottom: 1.2rem; font-size: 0.96rem; flex-grow: 1; }
.info-card-more {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--c-accent); font-weight: 700; font-size: 0.92rem; margin-top: auto;
}
.info-card-more svg { transition: transform 0.2s var(--ease); }
.info-card:hover .info-card-more svg { transform: translateX(3px); }

/* Article */
.article-hero { padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(1.5rem, 3vw, 2.5rem); background: var(--c-bg); }
.breadcrumb {
  font-size: 0.86rem; color: var(--c-muted); margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap;
}
.breadcrumb a { color: var(--c-muted); }
.breadcrumb a:hover { color: var(--c-accent); }
.breadcrumb span[aria-current] { color: var(--c-ink); font-weight: 600; }
.article { padding: clamp(1.5rem, 3vw, 2.5rem) 0 clamp(3rem, 6vw, 5rem); }
.article-body { max-width: var(--container-narrow); margin: 0 auto; }
.article-body p { font-size: 1.05rem; line-height: 1.75; color: var(--c-ink-soft); }
.article-body h2 { margin-top: 2.8rem; margin-bottom: 1rem; }
.article-body h3 { margin-top: 2rem; margin-bottom: 0.7rem; font-size: 1.15rem; color: var(--c-ink); }
.article-body ul, .article-body ol { margin: 0 0 1.5rem 1.5rem; color: var(--c-ink-soft); }
.article-body li { margin-bottom: 0.5rem; line-height: 1.7; }
.article-body strong { color: var(--c-ink); font-weight: 700; }
.article-callout {
  margin: 2.5rem 0; padding: 2rem;
  background: var(--c-accent-tint); border-left: 4px solid var(--c-accent);
  border-radius: var(--radius);
}
.article-callout p { font-weight: 600; font-size: 1.1rem; color: var(--c-ink); margin-bottom: 1rem; }

/* CTA Banner */
.cta-banner { background: var(--c-accent); color: var(--c-white); padding: clamp(3rem, 6vw, 4.5rem) 0; text-align: center; }
.cta-banner h2 { color: var(--c-white); margin-bottom: 1rem; font-weight: 800; }
.cta-banner p { color: rgba(255, 255, 255, 0.95); max-width: 620px; margin: 0 auto 2rem; font-size: 1.05rem; font-weight: 500; }
.cta-banner .btn--ghost { border-color: var(--c-white); color: var(--c-white); }
.cta-banner .btn--ghost:hover { background: var(--c-white); color: var(--c-accent); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(2rem, 5vw, 4rem); margin-top: 3rem; }
.contact-form { background: var(--c-bg-alt); padding: clamp(2rem, 3vw, 2.8rem); border-radius: var(--radius-lg); }
.form-field { margin-bottom: 1.2rem; }
.form-field label { display: block; font-size: 0.88rem; font-weight: 700; color: var(--c-ink); margin-bottom: 0.4rem; }
.form-field input, .form-field textarea {
  width: 100%; padding: 0.85rem 1rem;
  border: 1.5px solid var(--c-line); border-radius: var(--radius-sm);
  background: var(--c-white); font-size: 1rem; color: var(--c-ink);
  transition: border-color 0.2s var(--ease); font-family: var(--font-sans);
}
.form-field input:focus, .form-field textarea:focus {
  outline: none; border-color: var(--c-accent);
  box-shadow: 0 0 0 3px var(--c-accent-tint);
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-check {
  display: flex; align-items: flex-start; gap: 0.7rem;
  margin-bottom: 1.5rem; font-size: 0.86rem;
  color: var(--c-ink-soft); line-height: 1.55;
}
.form-check input[type="checkbox"] {
  margin-top: 3px; flex-shrink: 0; width: 16px; height: 16px;
  accent-color: var(--c-accent); cursor: pointer;
}
.form-note { font-size: 0.86rem; color: var(--c-muted); margin-top: 1rem; }

.contact-info { padding-top: 0.5rem; }
.contact-info-block { margin-bottom: 1.8rem; padding-bottom: 1.8rem; border-bottom: 1px solid var(--c-line); }
.contact-info-block:last-child { border-bottom: 0; }
.contact-info h4 {
  text-transform: uppercase; letter-spacing: 0.1em;
  font-size: 0.76rem; color: var(--c-muted); font-weight: 700; margin-bottom: 0.7rem;
}
.contact-info-block p, .contact-info-block a {
  font-size: 1.02rem; color: var(--c-ink); line-height: 1.6; display: block;
}
.contact-info-block a { font-weight: 700; color: var(--c-accent); }
.contact-info-block a:hover { color: var(--c-accent-dark); }
.contact-info dl { display: grid; grid-template-columns: auto 1fr; gap: 0.3rem 2rem; font-size: 0.96rem; }
.contact-info dt { color: var(--c-muted); font-weight: 600; }
.contact-info dd { color: var(--c-ink); }

/* Reviews */
.reviews { background: var(--c-bg-alt); }
.reviews-header { text-align: center; max-width: 640px; margin: 0 auto 3rem; }

/* Footer */
.site-footer { background: var(--c-ink); color: var(--c-white); padding: clamp(3rem, 6vw, 4.5rem) 0 2rem; }
.site-footer a { color: var(--c-white); }
.site-footer a:hover { color: var(--c-accent); }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2.5rem; }
.footer-brand { font-size: 1.3rem; font-weight: 800; color: var(--c-white); margin-bottom: 0.3rem; display: block; line-height: 1.2; }
.footer-brand-sub { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--c-accent); margin-bottom: 1.5rem; display: block; font-weight: 700; }
.footer-col p, .footer-col li, .footer-col a { font-size: 0.94rem; color: rgba(255, 255, 255, 0.9); line-height: 1.7; font-weight: 500; }
.footer-col h5 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--c-accent); margin-bottom: 1.2rem; font-weight: 700; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a:hover { color: var(--c-white); }
.footer-phone { color: var(--c-gold) !important; font-size: 1.2rem !important; font-weight: 700 !important; letter-spacing: 0.02em; }
.footer-phone:hover { color: var(--c-gold) !important; opacity: 0.85; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.8rem; display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem; font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.75); font-weight: 500;
}
.footer-bottom-links { display: flex; gap: 1.8rem; }

/* WhatsApp */
.whatsapp-fab {
  position: fixed; bottom: 1.5rem; right: 1.5rem;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  z-index: 40; transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.whatsapp-fab:hover { transform: scale(1.08) translateY(-2px); box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45); color: white; }
.whatsapp-fab svg { width: 30px; height: 30px; }

/* Animations */
[data-animate] { opacity: 0; transform: translateY(20px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
[data-animate].is-in { opacity: 1; transform: translateY(0); }

/* ==========================================================
   MOBILE-FIRST RESPONSIVE
   ==========================================================
   Breakpoint-Philosophie:
   - < 560px: Kleines Handy (iPhone SE, etc.)
   - 560-960px: Großes Handy / Tablet-Portrait
   - > 960px: Desktop
   ========================================================== */

/* Tablet + Desktop/Small (bis 960px) */
@media (max-width: 960px) {
  .hero-grid, .split, .split--narrow, .contact-grid, .footer-grid,
  .page-hero-grid { grid-template-columns: 1fr; }
  .footer-grid { gap: 2.5rem; }
  .hero-visual, .page-hero-visual { max-width: 520px; margin: 0 auto; }

  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid, .info-grid, .stats-grid, .steps-grid { grid-template-columns: 1fr; }
  .stats-grid { gap: 2rem; }
  .stats-band-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }

  .menu-toggle { display: block; }
  .nav {
    position: fixed; top: 0; right: -100%; width: 85%; max-width: 380px;
    height: 100vh; background: var(--c-bg);
    flex-direction: column; align-items: flex-start;
    padding: 5rem 2rem 2rem; box-shadow: var(--shadow-lg);
    transition: right 0.3s var(--ease); z-index: 60; gap: 0;
  }
  .nav.is-open { right: 0; }
  .nav-list { flex-direction: column; width: 100%; gap: 0; margin-bottom: 2rem; }
  .nav-list li { width: 100%; border-bottom: 1px solid var(--c-line); }
  .nav-list a {
    display: block; padding: 1rem 0; font-size: 1.05rem;
    color: var(--c-ink);
  }
  .nav-list a.active { color: var(--c-accent); }
  .nav-list a.active::after { display: none; }
  .nav-cta { align-self: flex-start; }
  .nav-close {
    display: block !important; position: absolute;
    top: 1.5rem; right: 1.5rem; background: transparent; border: 0;
    cursor: pointer; color: var(--c-ink);
  }
  .nav-backdrop {
    position: fixed; inset: 0; background: rgba(29, 35, 47, 0.45);
    z-index: 55; opacity: 0; pointer-events: none;
    transition: opacity 0.3s var(--ease);
  }
  .nav-backdrop.is-open { opacity: 1; pointer-events: auto; }
  body.nav-open { overflow: hidden; }

  /* Container-Padding etwas angenehmer */
  .container, .container--narrow { padding-left: 1.25rem; padding-right: 1.25rem; }
}

/* Phone (bis 640px) — Hauptfokus */
@media (max-width: 640px) {

  /* ---- Grundtypografie ---- */
  body { font-size: 15.5px; }
  h1 { font-size: clamp(1.85rem, 7vw, 2.35rem); line-height: 1.15; letter-spacing: -0.015em; }
  h2 { font-size: clamp(1.5rem, 5.5vw, 1.85rem); line-height: 1.2; }
  h3 { font-size: 1.15rem; line-height: 1.3; }
  .lead { font-size: 1.02rem; line-height: 1.6; }
  .eyebrow { font-size: 0.75rem; letter-spacing: 0.1em; }

  /* ---- Topbar: kleiner Platz sparen ---- */
  .topbar { font-size: 0.82rem; }
  .topbar .container { padding-top: 0.4rem; padding-bottom: 0.4rem; min-height: 36px; }
  .topbar .tag { display: none; }
  .topbar a { font-size: 0.92rem; }

  /* ---- Header: schlanker ---- */
  .site-header .container { min-height: 64px; }
  .brand-logo, .brand img { height: 36px !important; }
  .menu-toggle { padding: 10px; margin-right: -10px; }

  /* ---- Hero: luftiger, Text first ---- */
  .hero { padding: 1.75rem 0 0; }
  .hero-grid { gap: 1.75rem; }
  .hero-visual { max-width: 100%; }
  .hero-visual > img { border-radius: 14px; }
  .hero-visual::before, .hero-visual::after { display: none; }

  /* ---- Page-Hero (Unterseiten) ---- */
  .page-hero { padding: 1.5rem 0 2rem; }
  .page-hero .breadcrumb { margin-bottom: 1.25rem; font-size: 0.85rem; }
  .page-hero-grid { gap: 2rem; }
  .page-hero-visual { max-width: 100%; }
  .page-hero-visual::before { display: none; }
  .page-hero-visual img { border-radius: 14px; }

  /* ---- Buttons: voll-breit, großer Touch-Target ---- */
  .btn { min-height: 52px; padding: 0.9rem 1.5rem; }
  .btn--large { min-height: 56px; padding: 1rem 1.75rem; font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: stretch; width: 100%; gap: 0.8rem; }
  .hero-actions .btn { justify-content: center; width: 100%; }

  /* ---- Value-Cards auf dunkel ---- */
  .values { padding: 2rem 0 2.5rem; }
  .values-grid { grid-template-columns: 1fr; gap: 1rem; }
  .value-card { padding: 1.5rem 1.25rem; }

  /* ---- Stats ---- */
  .stats { padding: 2.5rem 0; }
  .stats-grid { gap: 1.5rem; }
  .stats-band { padding: 2rem 0; }
  .stats-band-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 0.5rem; }
  .stats-band-item { border-right: none; border-bottom: none; padding: 0.5rem 0; }
  .stats-band-item:nth-child(odd) { border-right: 1px solid rgba(255, 255, 255, 0.1); }
  .stats-band-num { font-size: 2.1rem; }
  .stats-band-label { font-size: 0.78rem; letter-spacing: 0.04em; }

  /* ---- Mission (Split) ---- */
  .mission { padding: 2.5rem 0; }
  .mission .split { gap: 1.75rem; }
  .split-visual { aspect-ratio: 16/10; }

  /* ---- What-we-do (3 Steps) ---- */
  .what-we-do { padding: 2.5rem 0 3rem; }
  .section-intro { margin-bottom: 1.75rem; }
  .section-intro .section-lead { font-size: 0.98rem; }
  .steps-grid { gap: 1rem; }
  .step-card { padding: 1.5rem 1.25rem; }
  .step-number { font-size: 2rem; margin-bottom: 0.6rem; }

  /* ---- Features ---- */
  .features { padding: 2.5rem 0 3rem; }
  .feature-card { padding: 1.25rem 1.15rem; gap: 1rem; }
  .feature-icon-img { width: 56px; height: 56px; }

  /* ---- Info-Grid (Informationen Hauptseite) ---- */
  .topics { padding: 2.5rem 0 3rem; }
  .info-card { padding: 1.5rem 1.25rem; }
  .info-card-number { font-size: 0.75rem; padding: 0.3rem 0.65rem; margin-bottom: 0.75rem; }

  /* ---- FAQs ---- */
  .faqs-section { padding: 1rem 0 3rem; }
  .faq-item { padding: 0; }
  .faq-question { padding: 1.1rem 0.25rem; font-size: 1rem; line-height: 1.4; }
  .faq-answer { padding: 0 0.25rem 1.1rem; font-size: 0.96rem; }

  /* ---- Kontakt ---- */
  .contact-section { padding: 1rem 0 3rem; }
  .contact-grid { gap: 2rem; }

  /* ---- CTA-Banner ---- */
  .cta-banner { padding: 2.5rem 0 3rem; }
  .cta-banner h2 { margin-bottom: 0.75rem; }
  .cta-banner p { font-size: 0.98rem; margin-bottom: 1.5rem; }

  /* ---- Article-Pages (Info-Unterseiten) ---- */
  .article { padding: 2rem 0 3rem; }
  .article-body { font-size: 1rem; line-height: 1.7; }
  .article-body p { margin-bottom: 1rem; }
  .article-body h2 { margin-top: 2rem; margin-bottom: 0.75rem; }
  .article-body h3 { margin-top: 1.5rem; margin-bottom: 0.5rem; }
  .article-callout { padding: 1.5rem 1.25rem; margin: 2rem 0; }

  /* ---- Footer ---- */
  .site-footer { padding: 2.5rem 0 1.5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.75rem; font-size: 0.82rem; }
  .footer-bottom-links { flex-wrap: wrap; gap: 1.25rem; }

  /* ---- WhatsApp FAB: kleiner, nicht zu dominant ---- */
  .whatsapp-fab {
    width: 52px; height: 52px;
    bottom: 1.25rem; right: 1.25rem;
  }
  .whatsapp-fab svg { width: 26px; height: 26px; }

  /* ---- Deko-Shapes auf Mobile stark reduzieren ---- */
  .deco-shape { opacity: 0.5 !important; }
}

/* Sehr kleine Handys (SE, alte iPhones) */
@media (max-width: 380px) {
  h1 { font-size: 1.7rem; }
  .brand-logo, .brand img { height: 32px !important; }
  .stats-band-num { font-size: 1.85rem; }
  .btn--large { font-size: 0.95rem; padding: 0.9rem 1.25rem; }
  .container, .container--narrow { padding-left: 1rem; padding-right: 1rem; }
}

@media print {
  .topbar, .nav, .whatsapp-fab, .site-footer, .cta-banner { display: none; }
  .deco-shape, [data-parallax] { display: none; }
}


/* ==========================================================
   Bild-basierte Icons (aus Originalseite)
   ========================================================== */

/* Logo im Header */
.brand img {
  max-height: 48px;
  width: auto;
  display: block;
}
@media (max-width: 640px) {
  .brand img { max-height: 40px; }
}

/* Value-Icons: wenn SVG-<img> drin, kein extra Rahmen */
.value-icon:has(img) {
  border: none;
  background: transparent;
  width: 80px;
  height: 80px;
  padding: 0;
}
.value-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Stat-Icons mit <img> */
.stat-icon:has(img) {
  border: none;
  background: transparent;
  width: 60px;
  height: 60px;
  padding: 0;
}
.stat-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);  /* Weiß auf dunklem Stats-Hintergrund */
}

/* Feature-Icons mit Bild (PNG hat schon eigenen Türkis-Rahmen) */
.feature-icon--img {
  border: none !important;
  padding: 0;
  width: 72px;
  height: 72px;
  background: transparent;
}
.feature-icon--img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Hero- und Split-Visuals: Bilder füllen die Box */
.hero-visual {
  background: transparent;
  aspect-ratio: auto;
  height: auto;
}
.hero-visual img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-lg);
}
.split-visual {
  background: transparent;
}
.split-visual img {
  border-radius: var(--radius-lg);
}


/* ---- Bild-Icons (haben bereits türkisen Rahmen im Bild) ---- */
.feature-icon-img {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  display: block;
}
.feature-icon-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.value-icon-img {
  width: 90px;
  height: 90px;
  margin: 0 auto 1.5rem;
  display: block;
}
.value-icon-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ---- Logo ---- */
.brand-logo {
  display: block;
  height: 48px;
  width: auto;
}
@media (max-width: 640px) {
  .brand-logo { height: 38px; }
}

/* ---- Parallax + Dekorative Floating-Shapes ---- */
[data-parallax] {
  will-change: transform;
  transition: transform 0.05s linear;
}

.deco-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}
.deco-shape--accent { background: radial-gradient(circle at 30% 30%, rgba(8, 145, 175, 0.15), rgba(8, 145, 175, 0)); }
.deco-shape--soft { background: radial-gradient(circle at 30% 30%, rgba(20, 202, 180, 0.12), rgba(20, 202, 180, 0)); }
.deco-shape--dark { background: radial-gradient(circle at 30% 30%, rgba(29, 35, 47, 0.08), rgba(29, 35, 47, 0)); }

/* Sections müssen position:relative + overflow:hidden haben */
.hero, .values, .stats, section { position: relative; }
.hero, .values, .stats { overflow: hidden; }

/* ============================================================
   Unterseiten-Design (Bold Hero Pages)
   ============================================================ */

/* Page-Hero (für Unterseiten) */
.page-hero {
  padding: clamp(2rem, 4vw, 3.5rem) 0 clamp(3rem, 5vw, 4.5rem);
  background: var(--c-bg); position: relative; overflow: hidden;
}
.page-hero .breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.9rem; color: var(--c-muted); margin-bottom: 2rem;
  position: relative; z-index: 2;
}
.page-hero .breadcrumb a {
  color: var(--c-accent); font-weight: 600;
}
.page-hero .breadcrumb a:hover { color: var(--c-accent-dark); }
.page-hero .breadcrumb span[aria-current] {
  color: var(--c-ink); font-weight: 600;
}
.page-hero-grid {
  display: grid; grid-template-columns: 1fr 1.15fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
  position: relative; z-index: 2;
}
.page-hero-visual {
  position: relative; display: block;
}
.page-hero-visual::before {
  content: ""; position: absolute;
  inset: -2rem -3rem -2rem -1rem;
  background: radial-gradient(ellipse at 60% 40%, rgba(8, 145, 175, 0.2), transparent 70%);
  filter: blur(20px); z-index: 0; pointer-events: none;
}
.page-hero-visual img {
  position: relative; z-index: 1;
  width: 100%; height: auto; display: block;
  border-radius: var(--radius-lg);
  box-shadow:
    0 30px 60px -20px rgba(8, 145, 175, 0.3),
    0 15px 30px -10px rgba(0, 0, 0, 0.12);
}

/* Stats-Band (schmale Stats-Zeile) */
.stats-band {
  background: var(--c-ink); color: var(--c-white);
  padding: clamp(2rem, 4vw, 3rem) 0;
  position: relative; overflow: hidden;
}
.stats-band-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.stats-band-item {
  text-align: center; padding: 0 0.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.stats-band-item:last-child { border-right: none; }
.stats-band-num {
  display: block; font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800; line-height: 1;
  color: var(--c-accent); letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}
.stats-band-label {
  font-size: 0.88rem; font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  text-transform: uppercase; letter-spacing: 0.05em;
}

/* Mission-Section */
.mission {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--c-bg); position: relative; overflow: hidden;
}

/* What-we-do (3 Steps) */
.what-we-do {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--c-bg-alt); position: relative; overflow: hidden;
}
.section-intro {
  max-width: 680px; margin-bottom: clamp(2rem, 4vw, 3rem);
}
.section-intro .section-lead {
  color: var(--c-ink-soft); font-size: 1.08rem;
  line-height: 1.65; margin-top: 1rem;
}
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.step-card {
  background: var(--c-white);
  padding: clamp(2rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-line);
  transition: all 0.3s var(--ease);
  position: relative; overflow: hidden;
}
.step-card::before {
  content: ""; position: absolute;
  top: 0; left: 0; width: 4px; height: 100%;
  background: var(--c-accent);
  transform: scaleY(0); transform-origin: top;
  transition: transform 0.4s var(--ease);
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--c-accent-soft);
}
.step-card:hover::before { transform: scaleY(1); }
.step-number {
  font-size: 2.5rem; font-weight: 800;
  color: var(--c-accent); line-height: 1;
  margin-bottom: 1rem; letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}
.step-card h3 {
  font-size: 1.35rem; margin-bottom: 0.75rem;
  color: var(--c-ink);
}
.step-card p {
  color: var(--c-ink-soft);
  font-size: 0.98rem; line-height: 1.65; margin: 0;
}

/* Features auf dezent hellerem Hintergrund (elevated) */
.features--elevated {
  background: var(--c-bg); overflow: hidden;
}

/* Page-Hero + Stats-Band + Mission + What-we-do + Features--elevated: Parallax-Container */
.page-hero, .stats-band, .mission, .what-we-do, .features--elevated {
  overflow: hidden;
}

/* Responsive */
@media (max-width: 960px) {
  .page-hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .stats-band-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
  .stats-band-item { border-right: none; }
  .stats-band-item:nth-child(odd) { border-right: 1px solid rgba(255, 255, 255, 0.1); }
  .steps-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .stats-band-grid { grid-template-columns: 1fr; }
  .stats-band-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 1.5rem; }
  .stats-band-item:last-child { border-bottom: none; padding-bottom: 0; }
}

/* ---- Info-Cards: Neue Nummer oben ---- */
.info-card-number {
  display: inline-block; font-size: 0.85rem; font-weight: 800;
  color: var(--c-accent); letter-spacing: 0.1em;
  background: var(--c-accent-tint);
  padding: 0.35rem 0.8rem; border-radius: 100px;
  margin-bottom: 1rem;
}

/* Topics-Section (Informationen Hauptseite) */
.topics {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--c-bg-alt); position: relative; overflow: hidden;
}

/* FAQ-Section */
.faqs-section {
  padding: clamp(2rem, 4vw, 3rem) 0 clamp(3rem, 5vw, 4.5rem);
  background: var(--c-bg);
}

/* Contact-Section */
.contact-section {
  padding: clamp(2rem, 4vw, 3rem) 0 clamp(3rem, 5vw, 4.5rem);
  background: var(--c-bg);
}

/* Page-Hero Slim (Impressum, Datenschutz) */
.page-hero--slim {
  padding: clamp(2rem, 4vw, 3rem) 0 clamp(2rem, 3vw, 2.5rem);
}
.page-hero--slim .breadcrumb { margin-bottom: 1.5rem; }
.page-hero--slim h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
}

/* Page-Hero-Visual Mobile fix */
@media (max-width: 960px) {
  .page-hero-visual { max-width: 500px; margin: 0 auto; }
}

/* ==========================================================
   MOBILE UX-FEINSCHLIFF
   ========================================================== */
@media (max-width: 640px) {
  /* Page-Hero-Grid: Bild zuerst (visueller Hook), dann Text */
  .page-hero-grid { display: flex; flex-direction: column; }
  .page-hero-grid > div:first-child { order: 2; }
  .page-hero-grid > .page-hero-visual { order: 1; margin-bottom: 0.5rem; }

  /* Hero-Grid (Startseite): Text zuerst, dann Bild mit Buttons */
  .hero-grid { display: flex; flex-direction: column; }

  /* Breadcrumbs: eine Zeile, ellipsis wenn zu lang */
  .breadcrumb {
    white-space: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .breadcrumb::-webkit-scrollbar { display: none; }

  /* Headings nicht über volle Breite sprengen */
  h1, h2 { overflow-wrap: break-word; word-break: keep-all; hyphens: auto; }

  /* Absätze nicht zu breit (max 65ch für Lesbarkeit) */
  .lead, p { max-width: 65ch; }

  /* CTA-Banner voll breite Buttons */
  .cta-banner .hero-actions { width: 100%; }
  .cta-banner .btn { width: 100%; }

  /* Form-Fields größer, Touch-freundlich */
  .form-field input, .form-field textarea {
    min-height: 48px; font-size: 16px; /* verhindert iOS Zoom */
  }
  .form-field textarea { min-height: 120px; }

  /* Scroll-Offset für Anchor-Links (wegen sticky header) */
  section[id] { scroll-margin-top: 80px; }
}

/* iOS-spezifische Fixes */
@supports (-webkit-touch-callout: none) {
  .btn { -webkit-tap-highlight-color: transparent; }
  input, textarea, select { -webkit-appearance: none; appearance: none; }
}

/* ==========================================================
   Kontakt-Direkt-Cards (3 große Touch-Cards)
   ========================================================== */
.contact-direct-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
  margin-bottom: 3rem;
}
.contact-direct-card {
  display: flex; flex-direction: column; align-items: flex-start;
  padding: 2rem 1.75rem;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all 0.3s var(--ease);
  position: relative; overflow: hidden;
  color: inherit;
}
.contact-direct-card::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--c-accent-tint), transparent 60%);
  opacity: 0; transition: opacity 0.3s var(--ease);
  pointer-events: none;
}
.contact-direct-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(8, 145, 175, 0.18);
  border-color: var(--c-accent-soft);
  color: inherit;
}
.contact-direct-card:hover::before { opacity: 1; }
.contact-direct-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: var(--c-accent-tint);
  border-radius: 14px;
  color: var(--c-accent);
  margin-bottom: 1.25rem;
  position: relative; z-index: 1;
  transition: all 0.3s var(--ease);
}
.contact-direct-card:hover .contact-direct-icon {
  background: var(--c-accent);
  color: var(--c-white);
  transform: scale(1.05);
}
.contact-direct-icon svg { width: 28px; height: 28px; }
.contact-direct-eyebrow {
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--c-muted);
  margin-bottom: 0.4rem; position: relative; z-index: 1;
}
.contact-direct-card h3 {
  font-size: 1.25rem; margin-bottom: 0.4rem;
  color: var(--c-ink);
  position: relative; z-index: 1;
}
.contact-direct-value {
  color: var(--c-accent); font-weight: 700; font-size: 1.05rem;
  margin-bottom: 1.5rem; position: relative; z-index: 1;
  word-break: break-all;
}
.contact-direct-cta {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.92rem; font-weight: 700;
  color: var(--c-accent);
  margin-top: auto; position: relative; z-index: 1;
  transition: gap 0.25s var(--ease);
}
.contact-direct-card:hover .contact-direct-cta { gap: 0.7rem; }

/* WhatsApp Card spezifisch grün */
.contact-direct-card--whatsapp .contact-direct-icon { background: rgba(37, 211, 102, 0.12); color: #25D366; }
.contact-direct-card--whatsapp .contact-direct-value { color: #25D366; }
.contact-direct-card--whatsapp .contact-direct-cta { color: #25D366; }
.contact-direct-card--whatsapp:hover .contact-direct-icon { background: #25D366; color: var(--c-white); }
.contact-direct-card--whatsapp::before { background: linear-gradient(135deg, rgba(37, 211, 102, 0.08), transparent 60%); }

/* CTA-Pfeil-Card mit Border-Akzent */
.contact-direct-card--phone { border-color: var(--c-accent-soft); }

/* Office + Öffnungszeiten Grid */
.contact-meta-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}
.contact-meta-card {
  background: var(--c-bg-alt);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
}
.contact-meta-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--c-white);
  border-radius: 12px;
  color: var(--c-accent);
  margin-bottom: 1rem;
}
.contact-meta-icon svg { width: 22px; height: 22px; }
.contact-meta-card h4 {
  font-size: 1.05rem; margin-bottom: 0.75rem; color: var(--c-ink);
}
.contact-meta-card p { color: var(--c-ink-soft); line-height: 1.65; }
.contact-meta-card p strong { color: var(--c-ink); }
.contact-meta-note {
  font-size: 0.92rem; color: var(--c-muted) !important;
  margin-top: 1rem !important; line-height: 1.6 !important;
}
.contact-hours {
  display: grid; grid-template-columns: auto 1fr;
  gap: 0.5rem 1.5rem; margin: 0;
}
.contact-hours dt { color: var(--c-ink-soft); font-weight: 600; }
.contact-hours dd { color: var(--c-ink); font-weight: 700; margin: 0; font-variant-numeric: tabular-nums; }

/* Mobile */
@media (max-width: 960px) {
  .contact-direct-grid { grid-template-columns: 1fr; gap: 1rem; }
  .contact-meta-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .contact-direct-card { padding: 1.5rem 1.25rem; }
  .contact-direct-card h3 { font-size: 1.1rem; }
  .contact-direct-value { font-size: 1rem; margin-bottom: 1.25rem; }
  .contact-meta-card { padding: 1.5rem 1.25rem; }
}
