/* ===== VARIABLES ===== */
:root {
  --primary: #ffffff;
  --secondary: #203a43;
  --accent: #ffd700;
  --accent-dark: #c9a800;
  --bg: #ffffff;
  --bg-dark: #0f1f2a;
  --bg-hero: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  --bg-section: #f4f7f9;
  --bg-dark-section: linear-gradient(135deg, #0f2027, #1a3040, #203a43);
  --text-muted: #6b7f8a;
  --border: #e0e8ed;
  --card-bg: rgba(255, 255, 255, 0.06);
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(15, 32, 39, 0.10);
  --shadow-card: 0 8px 32px rgba(15, 32, 39, 0.12);
  --font: 'Roboto', sans-serif;
  --transition: 0.28s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  background: #0f1f2a;
  /* Overscroll oben (rubber-band) */
  overscroll-behavior-y: none;
}
body {
  font-family: var(--font);
  background: #0f1f2a;
  color: var(--secondary);
  line-height: 1.65;
  font-size: 16px;
  overscroll-behavior-y: none;
}

/* Deckt die Dynamic-Island/Notch-Safe-Area mit der Navbar-Farbe ab.
   position:fixed, z-index über allem anderen — zuverlässiger als
   background auf html/body, die iOS Safari in der Safe Area ignoriert. */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: env(safe-area-inset-top);
  background: #0f2027;
  z-index: 9999;
  pointer-events: none;
}

/* Deckt den Bereich unter dem Footer (Adressleisten-Rubber-Band) ab */
body::after {
  content: '';
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: env(safe-area-inset-bottom, 20px);
  background: #0f1f2a;
  z-index: 9999;
  pointer-events: none;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { font-family: var(--font); border: none; cursor: pointer; }

/* ===== CONTAINER ===== */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  padding: 14px 30px;
  background: var(--accent);
  color: var(--secondary);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 999px;
  border: 2px solid var(--accent);
  transition: transform var(--transition), background var(--transition), color var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 18px rgba(255, 215, 0, 0.35);
  cursor: pointer;
}
.btn-primary:hover {
  transform: translateY(-2px);
  background: transparent;
  color: var(--accent);
  box-shadow: 0 6px 24px rgba(255, 215, 0, 0.25);
}
.btn-ghost {
  display: inline-block;
  padding: 14px 30px;
  background: transparent;
  color: var(--primary);
  font-weight: 500;
  font-size: 1rem;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.35);
  text-align: center;
  transition: background var(--transition), border-color var(--transition);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.6); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(15, 32, 39, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background var(--transition), box-shadow var(--transition);
  padding-top: calc(14px + env(safe-area-inset-top));
  padding-bottom: 14px;
}
.navbar.scrolled {
  background: rgba(15, 32, 39, 0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo { height: 38px; width: auto; }
.nav-links {
  display: flex;
  gap: 28px;
  margin-left: 16px;
  flex: 1;
}
.nav-links a {
  color: rgba(255,255,255,0.82);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--accent); }
.nav-cta {
  margin-left: auto;
  padding: 10px 22px;
  font-size: 0.9rem;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  min-height: 100dvh; /* Dynamic Viewport Height für Mobile */
  background: var(--bg-hero);
  color: var(--primary);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  /* Safe-Area-Inset einrechnen, damit nichts unter Dynamic Island/Notch landet */
  padding: calc(120px + env(safe-area-inset-top)) 0 80px;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.07;
  background: var(--accent);
  filter: blur(60px);
}
.shape-1 { width: 500px; height: 500px; top: -100px; right: -100px; }
.shape-2 { width: 300px; height: 300px; bottom: 80px; left: -60px; }
.shape-3 { width: 200px; height: 200px; top: 40%; left: 45%; }

.hero-content { position: relative; z-index: 1; }
.hero-badge {
  display: inline-block;
  background: rgba(255,215,0,0.15);
  border: 1px solid rgba(255,215,0,0.4);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 22px;
}
.accent { color: var(--accent); }
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.78);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }

.hero-stats {
  display: flex;
  align-items: center;
  /* kein flex-wrap — die Divider sollen nie umbrechen */
}
.stat-item {
  text-align: left;
  flex-shrink: 0;
}
.stat-val {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}
.stat-lbl {
  display: block;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin-top: 2px;
  /* maximale Breite damit "Sichere Zahlungsabwicklung" sauber umbricht */
  max-width: 140px;
  line-height: 1.35;
}
.stat-divider {
  flex-shrink: 0;
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.18);
  margin: 0 28px;
  align-self: center;
}

/* ===== ABOUT STRIP ===== */
.about {
  background: var(--bg-section);
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.about.visible { opacity: 1; transform: none; }
.about-intro {
  font-size: 1.05rem;
  color: var(--secondary);
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ===== SECTION TITLES ===== */
.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
  color: var(--secondary);
}
.section-title.light { color: var(--primary); }
.section-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 620px;
  margin: 0 auto 48px;
  line-height: 1.7;
}
.section-sub.light { color: rgba(255,255,255,0.72); }

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 96px 0;
  background: var(--bg);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease 0.1s, transform 0.6s ease 0.1s;
}
.how-it-works.visible { opacity: 1; transform: none; }

/* TABS */
.tabs { background: var(--bg); }
.tab-nav {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.tab-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 999px;
  background: var(--bg-section);
  border: 2px solid var(--border);
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 600;
  transition: all var(--transition);
  cursor: pointer;
}
.tab-btn:hover { border-color: var(--secondary); color: var(--secondary); }
.tab-btn.active {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--primary);
  box-shadow: var(--shadow);
}
.tab-icon { font-size: 1.1rem; }

.tab-content { display: none; }
.tab-content.active { display: block; animation: fadeUp 0.35s ease; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* STEPS */
.steps {
  display: flex;
  gap: 0;
  margin-bottom: 48px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 28px;
  right: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  z-index: 0;
}
.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--accent);
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: 3px solid var(--accent);
  box-shadow: 0 0 0 6px var(--bg);
  flex-shrink: 0;
}
.step-body h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: var(--secondary); }
.step-body p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.6; }

/* FEATURES GRID */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.feature-card {
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.feature-icon { font-size: 1.8rem; display: block; margin-bottom: 12px; }
.feature-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.feature-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.55; }

/* ===== CATEGORIES ===== */
.categories {
  padding: 96px 0;
  background: var(--bg-section);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease 0.1s, transform 0.6s ease 0.1s;
}
.categories.visible { opacity: 1; transform: none; }
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}
.cat-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  transition: all var(--transition);
  cursor: default;
}
.cat-card:hover {
  border-color: var(--secondary);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}
.cat-card span { font-size: 1.8rem; display: block; margin-bottom: 8px; }
.cat-card p { font-size: 0.88rem; color: var(--secondary); font-weight: 500; line-height: 1.35; }
.cat-more { border-style: dashed; background: transparent; }
.cat-more span { color: var(--text-muted); font-size: 1.6rem; font-weight: 700; }
.cat-more p { color: var(--text-muted); }

/* ===== PRICING ===== */
.pricing {
  padding: 96px 0;
  background: var(--bg);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease 0.1s, transform 0.6s ease 0.1s;
}
.pricing.visible { opacity: 1; transform: none; }

.billing-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 48px;
}
.toggle-label {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}
.toggle-label.active { color: var(--secondary); font-weight: 700; }
.save-badge {
  display: inline-block;
  background: rgba(255, 215, 0, 0.18);
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  margin-left: 4px;
}

.toggle-switch { position: relative; display: inline-block; width: 46px; height: 26px; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute;
  inset: 0;
  background: #cdd7dc;
  border-radius: 999px;
  cursor: pointer;
  transition: background var(--transition);
}
.toggle-slider::before {
  content: '';
  position: absolute;
  height: 20px; width: 20px;
  left: 3px; top: 3px;
  background: white;
  border-radius: 50%;
  transition: transform var(--transition);
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
input:checked + .toggle-slider { background: var(--secondary); }
input:checked + .toggle-slider::before { transform: translateX(20px); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: start;
}
.pricing-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 30px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
  background: var(--bg);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.pricing-card.featured {
  border-color: var(--secondary);
  background: linear-gradient(160deg, #f0f5f8, #ffffff);
  box-shadow: 0 8px 40px rgba(32, 58, 67, 0.12);
}
.popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 18px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.pricing-top { margin-bottom: 20px; }
.pricing-top h3 { font-size: 1.2rem; font-weight: 700; color: var(--secondary); }
.plan-desc { font-size: 0.9rem; color: var(--text-muted); margin-top: 4px; }
.pricing-price { margin-bottom: 24px; }
.p-amount { font-size: 2.2rem; font-weight: 700; color: var(--secondary); }
.p-period { font-size: 0.95rem; color: var(--text-muted); margin-left: 4px; }
.plan-features li {
  padding: 8px 0;
  font-size: 0.92rem;
  color: var(--secondary);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.plan-features li::before { content: '✓'; color: #2e9e6a; font-weight: 700; }
.plan-features li:last-child { border-bottom: none; }
.pricing-note {
  text-align: center;
  margin-top: 36px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ===== PAYMENT & TRUST ===== */
.payment-trust {
  padding: 96px 0;
  background: var(--bg-dark-section);
  color: var(--primary);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease 0.1s, transform 0.6s ease 0.1s;
}
.payment-trust.visible { opacity: 1; transform: none; }
.payment-header { margin-bottom: 56px; }
.stripe-logo-wrap { text-align: center; margin-top: 18px; }
.stripe-badge {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  margin-bottom: 64px;
}
.trust-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: background var(--transition), transform var(--transition);
}
.trust-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.trust-icon { font-size: 2rem; display: block; margin-bottom: 14px; }
.trust-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--accent); }
.trust-card p { font-size: 0.9rem; color: rgba(255,255,255,0.72); line-height: 1.6; }

/* FLOW DIAGRAM */
.flow-section { text-align: center; }
.flow-section h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 32px; color: rgba(255,255,255,0.9); }
.flow-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}
.flow-step {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 24px 28px;
  min-width: 160px;
  text-align: center;
}
.flow-icon { font-size: 2.2rem; margin-bottom: 10px; }
.flow-step p { font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.flow-step small { font-size: 0.8rem; color: rgba(255,255,255,0.58); }
.flow-arrow {
  font-size: 1.8rem;
  color: var(--accent);
  padding: 0 12px;
  font-weight: 300;
}

/* ===== FAQ ===== */
.faq-section {
  padding: 96px 0;
  background: var(--bg-section);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease 0.1s, transform 0.6s ease 0.1s;
}
.faq-section.visible { opacity: 1; transform: none; }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item.open { box-shadow: var(--shadow-card); border-color: var(--secondary); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  color: var(--secondary);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: background var(--transition);
}
.faq-q:hover { background: var(--bg-section); }
.faq-chevron {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--text-muted);
  transition: transform var(--transition), color var(--transition);
  flex-shrink: 0;
  line-height: 1;
}
.faq-item.open .faq-chevron { transform: rotate(45deg); color: var(--secondary); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding var(--transition);
  padding: 0 24px;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 24px 20px; }
.faq-a p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; }

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 96px 0;
  background: var(--bg-section);
  text-align: center;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease 0.1s, transform 0.6s ease 0.1s;
}
.cta-section.visible { opacity: 1; transform: none; }
.cta-inner h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; margin-bottom: 16px; color: var(--secondary); }
.cta-inner p { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }
.contact-line { font-size: 0.9rem; color: var(--text-muted); margin-top: 20px; }
.contact-line a { color: var(--secondary); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.contact-line a:hover { color: var(--accent-dark); }

/* ===== FOOTER ===== */
footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.75);
  padding-top: 60px;
}
.footer-inner {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { min-width: 200px; }
.footer-logo { height: 38px; width: auto; margin-bottom: 14px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.6; }
.footer-stripe-note { margin-top: 8px; font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-cols { display: flex; gap: 48px; flex-wrap: wrap; flex: 1; justify-content: flex-end; }
.footer-col { display: flex; flex-direction: column; gap: 10px; min-width: 140px; }
.footer-col h5 { font-size: 0.85rem; font-weight: 700; color: var(--primary); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 2px; }
.footer-col a { font-size: 0.88rem; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-col a:hover { color: var(--accent); }
.contact-person {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 4px;
}
.contact-role { font-size: 0.85rem; font-weight: 700; color: rgba(255,255,255,0.85); }
.contact-dept { font-size: 0.78rem; color: rgba(255,255,255,0.42); line-height: 1.4; }
.footer-col-contact { min-width: 220px; }
.footer-bottom {
  padding: 20px 24px;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ===== NOTIFY BUTTON (MailerLite compatibility) ===== */
.notify-button {
  display: inline-block;
  padding: 14px 30px;
  background: var(--accent);
  color: var(--secondary);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 999px;
  border: 2px solid var(--accent);
  transition: transform var(--transition), background var(--transition), color var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 18px rgba(255, 215, 0, 0.35);
  cursor: pointer;
  font-family: var(--font);
}
.notify-button:hover {
  transform: translateY(-2px);
  background: transparent;
  color: var(--accent);
}
.notify-button:focus {
  outline: 3px solid rgba(255, 215, 0, 0.45);
  outline-offset: 4px;
}

/* Navbar CTA — smaller variant */
.nav-cta.notify-button {
  padding: 10px 22px;
  font-size: 0.9rem;
}

/* ===== SUBPAGES (Legal / Content) ===== */
.subpage-main {
  background: var(--bg-section);
  min-height: 60vh;
}

/* Page header band */
.page-hero {
  background: var(--bg-dark-section);
  color: var(--primary);
  padding: calc(120px + env(safe-area-inset-top)) 0 56px;
  position: relative;
  overflow: hidden;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .breadcrumb {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 14px;
}
.page-hero .breadcrumb a { color: var(--accent); }
.page-hero .breadcrumb a:hover { text-decoration: underline; }
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
}
.page-hero .page-hero-sub {
  margin-top: 14px;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  max-width: 640px;
  line-height: 1.7;
}
.page-hero .shape { opacity: 0.06; }

/* Content cards */
.legal {
  padding: 56px 0 80px;
}
.legal .container { max-width: 860px; }
.legal-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
  margin-bottom: 24px;
}
.legal-card h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 18px;
}
.legal-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--secondary);
  margin: 22px 0 10px;
}
.legal-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--secondary);
  margin: 18px 0 8px;
}
.legal-card p,
.legal-card li {
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 14px;
}
.legal-card ul {
  list-style: none;
  margin-bottom: 16px;
}
.legal-card ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
}
.legal-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-dark);
  font-weight: 700;
}
.legal-card a {
  color: #1c6fd6;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-card a:hover { color: var(--secondary); }
.legal-card strong { color: var(--secondary); }
.legal-card .address-block p { margin-bottom: 4px; }

/* Info callout */
.legal-note {
  background: rgba(28, 111, 214, 0.07);
  border-left: 4px solid #1c6fd6;
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  margin: 18px 0 4px;
}
.legal-note p { font-size: 0.9rem; color: var(--secondary); margin-bottom: 8px; }
.legal-note p:last-child { margin-bottom: 0; }

.legal-meta {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 8px;
}

/* Contact / form page */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}
.team-card { text-align: center; }
.team-card h3 { margin-top: 0; }
.team-card .team-role { color: #1c6fd6; font-weight: 600; font-size: 0.95rem; margin-bottom: 10px; }
.team-card .team-mail { color: var(--text-muted); font-size: 0.92rem; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 6px;
}
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--secondary);
  background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(32, 58, 67, 0.12);
}
.form-status {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
  font-size: 0.92rem;
  text-align: center;
}
.form-status.success { background: #e7f7ee; border: 1px solid #b6e6cd; color: #1d7a4d; }
.form-status.error { background: #fdeaea; border: 1px solid #f3c2c2; color: #b3261e; }

@media (max-width: 560px) {
  .form-grid { grid-template-columns: 1fr; }
  .legal-card { padding: 24px 20px; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .steps { flex-direction: column; }
  .steps::before { display: none; }
  .step { flex-direction: row; text-align: left; gap: 20px; }
  .step-num { flex-shrink: 0; }
  .flow-steps { flex-direction: column; align-items: center; }
  .flow-arrow { transform: rotate(90deg); }
  .footer-cols { justify-content: flex-start; }
}

@media (max-width: 600px) {
  .hero { padding: 100px 0 60px; }
  .hero h1 { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-stats { flex-direction: column; gap: 16px; align-items: flex-start; }
  .stat-divider { display: none; }
  .stat-item { width: 100%; }
  .stat-lbl { max-width: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
  .footer-cols { gap: 32px; }
}
