/* ═══════════════════════════════════════════════════════════
   INKASSO-ZAHLUNG.DE – LIGHT AUTHORITY THEME
   Design System: Clean White / Black / Red Accent
   ═══════════════════════════════════════════════════════════ */

/* ── Custom Properties ──────────────────────────────────── */
:root {
  --color-bg: #FFFFFF;
  --color-surface: rgba(245, 245, 247, 0.8);
  --color-surface-solid: #F5F5F7;
  --color-surface-alt: #FAFAFA;
  --color-primary: #1A1A1A;
  --color-secondary: #1A1A1A;
  --color-accent: #C8102E;
  --color-accent-light: rgba(200, 16, 46, 0.07);
  --color-accent-hover: #A50D26;
  --color-accent-soft: #1A1A1A;
  --color-text: #1A1A1A;
  --color-muted: #1A1A1A;
  --color-border: rgba(0, 0, 0, 0.08);
  --color-border-accent: rgba(200, 16, 46, 0.2);
  --color-gold: #C8102E;
  --shadow-soft: 0 2px 15px rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.08);
  --shadow-large: 0 20px 60px rgba(0, 0, 0, 0.1);
  --shadow-glow-red: 0 0 30px rgba(200, 16, 46, 0.1);
  --shadow-glow-blue: 0 0 30px rgba(0, 0, 0, 0.05);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-full: 9999px;
  --container: 1200px;
  --space-section: clamp(40px, 5vw, 50px);
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(0, 0, 0, 0.08);
  --glass-blur: blur(12px);
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  width: 100%;
}
body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
  width: 100%;
  min-width: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
section[id] { scroll-margin-top: 0; }

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; font-weight: 600; }
p { color: var(--color-muted); line-height: 1.8; }

/* ── Layout Utilities ───────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; width: 100%; }
.section { padding: var(--space-section) 0; }
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.accent-text { color: var(--color-accent); }
.muted-text { color: var(--color-muted); }
.uppercase { text-transform: uppercase; }
.tracking-wide { letter-spacing: 0.05em; }
.font-display { font-family: var(--font-display); }
.font-body { font-family: var(--font-body); }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

/* ── Section Headers ────────────────────────────────────── */
.section-header { margin-bottom: 36px; }
.section-header.text-center { text-align: center; }
.section-header p { max-width: 600px; margin-top: 12px; font-size: 1.05rem; }
.section-header.text-center p { margin-left: auto; margin-right: auto; }
.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  margin-bottom: 12px;
  padding: 6px 16px;
  background: var(--color-accent-light);
  border: 1px solid var(--color-border-accent);
  border-radius: var(--radius-full);
}
.section-underline {
  display: block;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), transparent);
  border-radius: 2px;
  margin-top: 16px;
}
.section-header.text-center .section-underline { margin-left: auto; margin-right: auto; }

/* ══════════════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  height: 80px;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border);
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}
.nav-hidden { transform: translateY(-100%); }
.nav-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-text);
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-logo-img { height: 40px; width: auto; display: block; }
.nav-logo-icon { max-width: 84px; max-height: 84px; }
.nav-logo-accent { color: var(--color-accent); }
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  gap: 8px;
}
.nav-link {
  position: relative;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-muted);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: color 0.25s ease, background 0.25s ease;
  text-decoration: none;
}
.nav-link:hover { color: var(--color-text); background: rgba(255,255,255,0.04); }
.nav-active { color: var(--color-text); }
.nav-active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  background: var(--color-accent);
  border-radius: 50%;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-muted);
  transition: color 0.25s ease;
  text-decoration: none;
  white-space: nowrap;
}
.nav-phone:hover { color: var(--color-text); }
.nav-phone svg { width: 16px; height: 16px; stroke: currentColor; fill: none; flex-shrink: 0; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  text-decoration: none;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--color-accent-hover);
  box-shadow: var(--shadow-glow-red);
  transform: translateY(-1px);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  z-index: 1001;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.nav-mobile {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.nav-mobile.active { opacity: 1; pointer-events: all; }
.nav-mobile-link {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-muted);
  padding: 12px 24px;
  transition: color 0.25s ease;
  text-decoration: none;
}
.nav-mobile-link:hover { color: var(--color-text); }
.nav-mobile-cta {
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  padding: 14px 36px;
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: background 0.25s ease;
  text-decoration: none;
}
.nav-mobile-cta:hover { background: var(--color-accent-hover); }

/* ══════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  padding-top: clamp(90px, 10vh, 100px);
  padding-bottom: clamp(24px, 3vh, 40px);
  overflow: hidden;
  background: var(--color-bg);
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(200, 16, 46, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(200, 16, 46, 0.03) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(0, 0, 0, 0.02) 0%, transparent 40%);
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  top: 0; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200, 16, 46, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.hero-content { max-width: 580px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--color-gold);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}
.hero-title { margin-bottom: 14px; line-height: 1.1; }
.hero-title .accent { color: var(--color-accent); }
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--color-muted);
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 500px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.hero-stats {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  padding: 0 24px;
}
.hero-stat:first-child { padding-left: 0; }
.hero-stat-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-text);
}
.hero-stat-label {
  font-size: 0.82rem;
  color: var(--color-muted);
  margin-top: 2px;
}
.hero-stat-divider {
  width: 1px;
  background: var(--color-border);
  align-self: stretch;
}
.hero-visual {
  position: relative;
  overflow: visible;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-large);
  border: 1px solid var(--glass-border);
}
.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-medium);
  z-index: 2;
}
.hero-float-card--badge { top: 16px; left: 20px; }
.hero-float-card--top { top: 20px; right: -10px; }
.hero-float-card--bottom { bottom: 30px; left: -10px; }
.hero-float-icon {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(220, 38, 38, 0.15);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.hero-float-icon svg { width: 20px; height: 20px; stroke: var(--color-accent); fill: none; }
.hero-float-text {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text);
}
.hero-float-subtext {
  font-size: 0.78rem;
  color: var(--color-muted);
  margin-top: 2px;
}
.hero-phone-card {
  position: absolute;
  bottom: -16px; right: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  background: var(--color-accent);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-glow-red);
  z-index: 2;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.hero-phone-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(220, 38, 38, 0.3);
}
.hero-phone-card svg { width: 20px; height: 20px; stroke: #fff; fill: none; flex-shrink: 0; }
.hero-phone-card span {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
}

/* ══════════════════════════════════════════════════════════
   STATS BAR
   ══════════════════════════════════════════════════════════ */
.stats-bar {
  position: relative;
  padding: 40px 0;
  background: var(--color-surface-solid);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stats-item { padding: 8px 16px; }
.stats-number {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--color-text);
  line-height: 1.2;
}
.stats-number .accent-text { color: var(--color-accent); }
.stats-label {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-top: 6px;
}

/* ══════════════════════════════════════════════════════════
   SERVICES / LEISTUNGEN
   ══════════════════════════════════════════════════════════ */
.services {
  position: relative;
  background: var(--color-bg);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  display: block;
  padding: 32px 24px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 24px; right: 24px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
  border-color: var(--color-border-accent);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 56px; height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent-light);
  border: 1px solid var(--color-border-accent);
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}
.service-icon svg {
  width: 26px; height: 26px;
  stroke: var(--color-accent);
  fill: none;
  stroke-width: 1.8;
  flex-shrink: 0;
}
.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--color-text);
}
.service-card p {
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.7;
}
.service-card-inner { padding: 0; }
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-accent);
  transition: gap 0.25s ease;
  text-decoration: none;
}
.service-card-link:hover { gap: 10px; }
.service-card-link svg { width: 16px; height: 16px; stroke: currentColor; fill: none; flex-shrink: 0; }

/* Step number overlay */
.service-card .step-number {
  position: absolute;
  top: 16px; right: 20px;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
}

/* ══════════════════════════════════════════════════════════
   TRUST / PARTNER
   ══════════════════════════════════════════════════════════ */
.trust {
  position: relative;
  background: var(--color-surface-alt);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  align-items: center;
}
.trust-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 24px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  min-height: 100px;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.trust-card:hover {
  border-color: rgba(0,0,0,0.15);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.trust-card img {
  max-height: 60px;
  max-width: 160px;
  object-fit: contain;
  opacity: 1;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.trust-card:hover img { transform: scale(1.05); }
.trust-icon {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Partner logo placeholder text */
.trust-card .partner-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.25s ease;
}
.trust-card:hover .partner-name { color: var(--color-text); }

/* ══════════════════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════════════════ */
.faq {
  position: relative;
  background: var(--color-bg);
}
.faq-list {
  display: grid;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.faq-item {
  padding: 28px 32px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.faq-item:hover {
  border-color: var(--color-border-accent);
  box-shadow: var(--shadow-glow-red);
}
.faq-question {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.faq-question::before {
  content: '';
  flex-shrink: 0;
  width: 8px; height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  margin-top: 8px;
}
.faq-answer-always {
  font-size: 0.95rem;
  color: #1A1A1A;
  line-height: 1.8;
  padding-left: 20px;
}
.faq-answer-always a {
  color: #1A1A1A;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.25s ease;
}
.faq-answer-always a:hover { color: var(--color-text); }
.faq-answer-always strong { color: var(--color-text); }

/* ══════════════════════════════════════════════════════════
   CTA BANNER
   ══════════════════════════════════════════════════════════ */
.cta-banner {
  position: relative;
  padding: 60px 0;
  background: linear-gradient(135deg, #C8102E 0%, #A50D26 50%, #8B0A1F 100%);
  text-align: center;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { color: #fff; margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.85); margin-bottom: 28px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ══════════════════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
  line-height: 1.4;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; flex-shrink: 0; }
.btn-primary {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 4px 15px rgba(200, 16, 46, 0.2);
}
.btn-primary:hover {
  background: var(--color-accent-hover);
  box-shadow: 0 6px 25px rgba(200, 16, 46, 0.3);
  transform: translateY(-2px);
}
.btn-secondary {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
  backdrop-filter: var(--glass-blur);
}
.btn-secondary:hover {
  background: var(--color-surface-solid);
  border-color: rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}
.btn-dark {
  background: #1A1A1A;
  color: #fff;
}
.btn-dark:hover {
  background: #333;
  transform: translateY(-2px);
}
.btn-white {
  background: #fff;
  color: var(--color-accent);
  font-weight: 700;
}
.btn-white:hover {
  background: #f1f5f9;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.btn-lg { padding: 16px 40px; font-size: 1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.82rem; }
.btn-full { width: 100%; }

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
.footer {
  background: var(--color-surface-alt);
  border-top: 1px solid var(--color-border);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand { max-width: 300px; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-text);
  text-decoration: none;
  margin-bottom: 16px;
}
.footer-logo-icon { max-width: 76px; max-height: 76px; }
.footer-logo-accent { color: var(--color-accent); }
.footer-brand p { font-size: 0.88rem; color: var(--color-muted); line-height: 1.7; }
.footer-heading {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link {
  font-size: 0.88rem;
  color: var(--color-muted);
  transition: color 0.25s ease, padding-left 0.25s ease;
  text-decoration: none;
}
.footer-link:hover { color: var(--color-text); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--color-muted);
  margin-bottom: 12px;
}
.footer-contact-item svg {
  width: 16px; height: 16px;
  stroke: var(--color-accent);
  fill: none;
  flex-shrink: 0;
  margin-top: 3px;
}
.footer-contact-item a {
  color: var(--color-muted);
  transition: color 0.25s ease;
  text-decoration: none;
}
.footer-contact-item a:hover { color: var(--color-text); }
.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 10px 24px;
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: background 0.25s ease;
  text-decoration: none;
}
.footer-cta:hover { background: var(--color-accent-hover); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-top: 1px solid var(--color-border);
  font-size: 0.82rem;
}
.footer-copy { color: var(--color-muted); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a {
  color: var(--color-muted);
  transition: color 0.25s ease;
  text-decoration: none;
}
.footer-legal a:hover { color: var(--color-text); }

/* ══════════════════════════════════════════════════════════
   LEGAL PAGES & PAGE HERO
   ══════════════════════════════════════════════════════════ */
.page-hero {
  padding-top: clamp(100px, 12vh, 120px);
  padding-bottom: clamp(30px, 4vh, 40px);
  background: var(--color-surface-alt);
  border-bottom: 1px solid var(--color-border);
}
.page-hero h1 { margin-bottom: 8px; }
.page-hero p { font-size: 1rem; color: var(--color-muted); }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.85rem;
}
.breadcrumb a {
  color: var(--color-muted);
  transition: color 0.25s ease;
  text-decoration: none;
}
.breadcrumb a:hover { color: var(--color-text); }
.breadcrumb-sep { color: var(--color-muted); opacity: 0.5; }
.breadcrumb-current { color: var(--color-accent); }

.legal-page { padding: 60px 0; }
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}
.legal-content h2 {
  font-size: 1.4rem;
  margin-top: 36px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-border);
}
.legal-content h3 {
  font-size: 1.15rem;
  margin-top: 24px;
  margin-bottom: 12px;
}
.legal-content p {
  margin-bottom: 12px;
  font-size: 0.95rem;
  line-height: 1.8;
}
.legal-content a {
  color: var(--color-accent-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-content a:hover { color: var(--color-text); }
.legal-content ul, .legal-content ol {
  margin-bottom: 12px;
  padding-left: 24px;
}
.legal-content li {
  font-size: 0.95rem;
  color: var(--color-muted);
  margin-bottom: 6px;
  list-style: disc;
  line-height: 1.7;
}
.legal-updated {
  display: inline-block;
  font-size: 0.82rem;
  color: var(--color-muted);
  margin-bottom: 24px;
  padding: 6px 14px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
}
.legal-placeholder {
  color: var(--color-accent);
  font-weight: 600;
  background: var(--color-accent-light);
  padding: 2px 8px;
  border-radius: 4px;
}

/* ══════════════════════════════════════════════════════════
   SCROLL-REVEAL ANIMATIONS
   ══════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.active { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.active { opacity: 1; transform: translateX(0); }
.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-scale.active { opacity: 1; transform: scale(1); }
.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }
.reveal-delay-4 { transition-delay: 400ms; }
.reveal-delay-5 { transition-delay: 500ms; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */

/* Desktop-only / Mobile-only */
.desktop-only { display: block; }
.mobile-only { display: none; }

@media (max-width: 1024px) {
  .desktop-only { display: none; }
  .mobile-only { display: block; }
  .nav-links, .nav-right { display: none; }
  .nav-hamburger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .hero-content { max-width: 100%; margin: 0 auto; }
  .hero-subtitle { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-badge { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { order: -1; max-width: 400px; margin: 0 auto; }
  .hero-float-card--top { right: 0; }
  .hero-float-card--bottom { left: 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}

@media (max-width: 768px) {
  .hero { min-height: auto; padding-top: 100px; padding-bottom: 40px; }
  .hero-title { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .hero-stats { flex-direction: column; gap: 12px; }
  .hero-stat { padding: 0; text-align: center; }
  .hero-stat-divider { display: none; }
  .hero-float-card--badge { top: -12px; left: 10px; padding: 10px 14px; font-size: 0.78rem; }
  .hero-float-card--top, .hero-float-card--bottom { display: none; }
  .hero-phone-card { bottom: -12px; right: 10px; padding: 10px 16px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; gap: 16px; }
  .faq-item { padding: 20px 16px; }
  .faq-question { font-size: 0.95rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .cta-banner { padding: 40px 0; }
  .cta-banner h2 { font-size: clamp(1.4rem, 5vw, 1.8rem); }
  .btn { padding: 12px 24px; font-size: 0.88rem; }
  .btn-lg { padding: 14px 32px; }
  .section-header p { font-size: 0.95rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-badge { font-size: 0.72rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn { width: 100%; max-width: 320px; }
}

/* ══════════════════════════════════════════════════════════
   DECORATIVE ELEMENTS
   ══════════════════════════════════════════════════════════ */
.bg-dots {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 0;
}

/* Gradient line decorations */
.gradient-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}

/* Badge styles */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--color-muted);
}

/* Generic card */
.card {
  padding: 24px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}

/* ══════════════════════════════════════════════════════════
   CUSTOM SECTION: PROCESS CONNECTOR LINES
   ══════════════════════════════════════════════════════════ */
@media (min-width: 1025px) {
  .services-grid {
    position: relative;
  }
  .service-card:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: var(--color-muted);
    opacity: 0.3;
  }
}

/* ══════════════════════════════════════════════════════════
   PRINT STYLES
   ══════════════════════════════════════════════════════════ */
@media print {
  .nav, .nav-mobile, .hero-float-card, .hero-phone-card { display: none; }
  body { background: #fff; color: #000; }
  .section { padding: 20px 0; }
}
