:root {
  --primary: #1a3a5e;
  --primary-dark: #0f2440;
  --accent: #d4525d;
  --accent-strong: #b34646;
  --text: #1a1f2e;
  --text-light: #4a5568;
  --muted: #6a7a96;
  --bg: #ffffff;
  --bg-soft: #f5f7fa;
  --hero-bg: #fbf3e3;
  --hero-bg-2: #f5e9d2;
  --border: #e3eaf3;
  --border-strong: #c8d4e3;
  --shadow-sm: 0 1px 3px rgba(15, 30, 60, 0.06);
  --shadow-md: 0 6px 20px rgba(15, 30, 60, 0.08);
  --shadow-lg: 0 16px 40px rgba(15, 30, 60, 0.12);
  --radius: 16px;
  --radius-lg: 24px;
}
* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
html, body { height: 100%; overflow-x: clip; }
html { width: 100%; max-width: 100vw; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  width: 100%; max-width: 100vw;
}
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

/* Header */
header.site {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand-logo {
  width: 38px; height: 38px;
  flex-shrink: 0;
}
.brand-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.5px;
  line-height: 1;
}
nav.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
nav.main-nav a {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
nav.main-nav a:hover { color: var(--primary); }
nav.main-nav a.phone { color: var(--accent); font-weight: 700; text-transform: none; font-size: 14px; letter-spacing: 0.3px; }
.menu-toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; color: var(--text); }

/* Hero */
.hero {
  background:
    radial-gradient(circle at 88% 20%, rgba(26, 58, 94, 0.08) 0, transparent 35%),
    radial-gradient(circle at 12% 80%, rgba(26, 58, 94, 0.07) 0, transparent 30%),
    linear-gradient(180deg, var(--hero-bg) 0%, var(--hero-bg-2) 100%);
  position: relative;
  padding: 70px 0 90px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle, rgba(26, 58, 94, 0.18) 1.2px, transparent 1.5px);
  background-size: 38px 38px;
  opacity: 0.35;
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 28px;
}
.hero-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin-bottom: 42px;
}
.hero-icons > svg {
  width: 110px;
  height: 110px;
  color: var(--primary);
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 14px;
}
.hero h1 {
  font-size: 52px;
  font-weight: 800;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  line-height: 1.1;
  margin-bottom: 26px;
}
.hero p.lead {
  font-size: 17px;
  color: var(--text);
  line-height: 1.65;
  max-width: 620px;
  margin: 0 auto 22px;
}
.hero p.note {
  font-size: 17px;
  color: var(--accent-strong);
  font-weight: 700;
  font-style: italic;
}

/* Section base */
section.block { padding: 80px 0; }
.eyebrow {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 3.5px;
  margin-bottom: 12px;
}
h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 18px;
}
h3 { font-size: 22px; font-weight: 700; color: var(--text); margin-bottom: 12px; }
p { color: var(--text); font-size: 16px; line-height: 1.7; margin-bottom: 12px; }
ul.bullets { list-style: none; padding: 0; }
ul.bullets li { padding: 6px 0 6px 28px; position: relative; font-size: 15px; color: var(--text); }
ul.bullets li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 6px;
  color: var(--primary);
  font-weight: 700;
}

/* Big cards 2x2 grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1080px;
  margin: 0 auto;
}
.big-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
  min-height: 220px;
  position: relative;
  overflow: hidden;
  opacity: 0;
}
.big-card > * { position: relative; z-index: 2; }
.big-card.in-view {
  animation: cardEntry 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.card-grid .big-card:nth-child(2).in-view { animation-delay: 0.08s; }
.card-grid .big-card:nth-child(3).in-view { animation-delay: 0.16s; }
.card-grid .big-card:nth-child(4).in-view { animation-delay: 0.24s; }

@keyframes cardEntry {
  0%   { opacity: 0; transform: translateY(28px) scale(0.97); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* Shine sweep — dezent beim Entry, stark beim Hover */
.big-card::before {
  content: "";
  position: absolute;
  top: -10%; bottom: -10%;
  left: -140%;
  width: 70%;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(255,255,255,0) 35%,
    rgba(180, 215, 245, 0.55) 48%,
    rgba(255,255,255,0.85) 50%,
    rgba(180, 215, 245, 0.55) 52%,
    rgba(255,255,255,0) 65%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
  transform: skewX(-12deg);
}
.big-card.in-view::before {
  animation: cardShine 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.4s 1;
}
.card-grid .big-card:nth-child(2).in-view::before { animation-delay: 0.48s; }
.card-grid .big-card:nth-child(3).in-view::before { animation-delay: 0.56s; }
.card-grid .big-card:nth-child(4).in-view::before { animation-delay: 0.64s; }

@keyframes cardShine {
  0%   { left: -140%; }
  100% { left: 240%; }
}

.big-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.big-card:hover::before {
  animation: cardShineHover 0.7s cubic-bezier(0.22, 1, 0.36, 1) 1;
}
@keyframes cardShineHover {
  0%   { left: -140%; }
  100% { left: 240%; }
}
.big-card:active { transform: translateY(-1px) scale(0.99); transition: transform 0.08s; }

.big-card svg { width: 110px; height: 90px; color: var(--primary); }
.big-card h3 { font-size: 19px; font-weight: 800; color: var(--text); letter-spacing: -0.2px; }
.big-card p { font-size: 13.5px; line-height: 1.5; }

/* "Mehr erfahren" pill — verdeutlicht Klickbarkeit */
.big-card::after {
  content: "Mehr erfahren →";
  position: absolute;
  bottom: 14px; right: 16px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.3px;
  opacity: 0.55;
  transition: opacity 0.22s ease, transform 0.22s ease, color 0.22s ease;
  z-index: 2;
}
.big-card:hover::after {
  opacity: 1;
  transform: translateX(3px);
  color: var(--primary-dark);
}

/* No-JS / reduced-motion: just show without animation */
@media (prefers-reduced-motion: reduce) {
  .big-card { opacity: 1; }
  .big-card.in-view, .big-card:hover { animation: none; transform: none; }
  .big-card::before, .big-card.in-view::before, .big-card:hover::before { animation: none !important; display: none; }
}

/* 3-column features */
.features-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  background: var(--bg-soft);
  padding: 60px 50px;
  border-radius: var(--radius);
}
.feature-col h3 { font-size: 22px; font-weight: 800; color: var(--text); margin-bottom: 18px; }
.feature-col ul { list-style: none; padding: 0; }
.feature-col li {
  padding: 10px 0 10px 30px;
  font-size: 15px;
  color: var(--text);
  position: relative;
  line-height: 1.5;
}
.feature-col li svg {
  width: 18px; height: 18px;
  position: absolute;
  left: 0; top: 12px;
  color: var(--primary);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.15s;
  text-decoration: none;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--border-strong); }
.btn-outline:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* CTA banner */
.cta-banner {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius);
  padding: 50px 40px;
  text-align: center;
  margin: 60px 0;
}
.cta-banner h2 { color: #fff; }
.cta-banner p { color: rgba(255,255,255,0.85); margin-bottom: 22px; }
.cta-banner .btn-primary { background: #fff; color: var(--primary); }
.cta-banner .btn-primary:hover { background: #f0f4fc; }

/* Generic content layout for sub-pages */
.page-hero {
  background: linear-gradient(180deg, var(--hero-bg) 0%, #fff 100%);
  padding: 60px 0 30px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(26, 58, 94, 0.14) 1px, transparent 1.4px);
  background-size: 36px 36px;
  opacity: 0.3;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; padding: 0 28px; text-align: center; }
.page-hero .eyebrow { color: var(--primary); }
.page-hero h1 { font-size: 42px; font-weight: 800; color: var(--text); letter-spacing: -0.5px; margin-bottom: 18px; line-height: 1.2; }
.page-hero p.lead { font-size: 17px; color: var(--text-light); max-width: 700px; margin: 0 auto; }

.content { max-width: 880px; margin: 0 auto; padding: 60px 28px; }
.content h2 { font-size: 30px; margin-top: 40px; }
.content h3 { font-size: 20px; margin-top: 30px; }
.content p { color: var(--text); font-size: 16px; line-height: 1.75; }
.content ul:not(.bullets) { padding-left: 28px; margin-bottom: 16px; }
.content li { font-size: 16px; line-height: 1.7; padding: 4px 0; }

/* Two-column content sections */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.two-col img, .two-col svg { width: 100%; max-width: 380px; margin: 0 auto; }

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.pricing-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.pricing-card.featured { border-color: var(--primary); border-width: 2px; transform: scale(1.03); }
.pricing-card h3 { font-size: 18px; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.pricing-card .price { font-size: 38px; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.pricing-card .period { font-size: 13px; color: var(--muted); margin-bottom: 24px; }
.pricing-card ul { list-style: none; padding: 0; text-align: left; margin-bottom: 24px; }
.pricing-card li { padding: 8px 0 8px 26px; position: relative; font-size: 14px; color: var(--text); }
.pricing-card li::before { content: "✓"; position: absolute; left: 0; top: 8px; color: var(--primary); font-weight: 700; }

/* Customer logos / referenz */
.logo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; align-items: center; }
.logo-grid > div { background: var(--bg-soft); padding: 30px 20px; border-radius: var(--radius); text-align: center; font-weight: 600; color: var(--text-light); }

/* Form */
form.contact { display: grid; gap: 16px; max-width: 580px; margin: 0 auto; }
form.contact label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
form.contact input, form.contact textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
}
form.contact textarea { min-height: 140px; resize: vertical; }
form.contact button { background: var(--primary); color: #fff; border: 0; padding: 14px 32px; border-radius: 999px; font-weight: 600; cursor: pointer; align-self: start; }

/* Footer */
footer.site {
  background: var(--text);
  color: rgba(255,255,255,0.85);
  padding: 60px 0 30px;
  margin-top: 80px;
}
footer.site .footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
footer.site h3 { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 14px; }
footer.site ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; }
footer.site a { font-size: 13.5px; color: rgba(255,255,255,0.75); }
footer.site a:hover { color: #fff; }
footer.site .brand-block .brand-name { color: #fff; }
footer.site .brand-block p { color: rgba(255,255,255,0.65); margin-top: 12px; font-size: 13px; max-width: 280px; }
footer.site .copyright { max-width: 1200px; margin: 24px auto 0; padding: 0 28px; font-size: 12px; color: rgba(255,255,255,0.55); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }

/* Responsive */
@media (max-width: 980px) {
  .card-grid { grid-template-columns: 1fr !important; }
  .features-3 { grid-template-columns: 1fr; gap: 30px; padding: 36px 28px; }
  .two-col { grid-template-columns: 1fr; gap: 30px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .logo-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  footer.site .footer-grid { grid-template-columns: 1fr 1fr; }
  nav.main-nav { display: none; }
  .menu-toggle { display: inline-flex; }
  nav.main-nav.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #fff; padding: 16px 28px; gap: 14px; border-bottom: 1px solid var(--border); align-items: flex-start; }
  .hero h1 { font-size: 34px; }
  .hero { padding: 50px 0 60px; }
  .hero-icons { gap: 24px; margin-bottom: 30px; }
  .hero-icons > svg { width: 70px; height: 70px; }
  .hero p.lead, .hero p.note { font-size: 15px; }
  .page-hero h1 { font-size: 30px; }
  section.block { padding: 50px 0; }
  h2 { font-size: 26px; }
  .container { padding: 0 20px; }
  /* Touch targets — links in footer + dense lists need padding for finger-friendly hits */
  footer.site ul { gap: 0; }
  footer.site a { display: inline-block; padding: 8px 0; min-height: 32px; line-height: 1.4; }
  footer.site .copyright { gap: 6px; }
}
@media (max-width: 560px) {
  .hero h1 { font-size: 26px; letter-spacing: 1px; }
  .pricing-card.featured { transform: none; }
  footer.site .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .logo-grid { grid-template-columns: 1fr; gap: 12px; }
  .logo-grid > div { padding: 18px 14px; font-size: 13px; }
}

/* ================ CONVERSION COMPONENTS ================ */

/* Lead-Form (compact + full) */
.lead-form-card {
  background: linear-gradient(135deg, #fbf3e3 0%, #f5e9d2 100%);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 32px 32px 28px;
  margin: 30px 0 40px;
  position: relative;
  overflow: hidden;
}
.lead-form-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(26,58,94,0.12) 1px, transparent 1.4px);
  background-size: 26px 26px;
  opacity: 0.4;
  pointer-events: none;
}
.lead-form-card-inner { position: relative; z-index: 1; }
.lead-form-eyebrow {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.lead-form-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.25;
}
.lead-form-sub { font-size: 14.5px; color: var(--text-light); margin-bottom: 18px; }
.lead-form { display: grid; gap: 10px; }
.lead-form-row { display: grid; grid-template-columns: 1.4fr 1fr auto; gap: 8px; }
.lead-form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 2px; }
@media (max-width: 980px) { .lead-form-row-2 { grid-template-columns: 1fr; } }
.lead-form input, .lead-form select {
  font-size: 14px;
  padding: 12px 14px;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  font-family: inherit;
  background: #fff;
  color: var(--text);
}
.lead-form input:focus, .lead-form select:focus {
  outline: 2px solid var(--primary);
  outline-offset: 1px;
  border-color: var(--primary);
}
.lead-form button {
  background: var(--primary);
  color: #fff;
  border: 0;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
}
.lead-form button:hover { background: var(--primary-dark); }
.lead-form button:disabled { opacity: 0.6; cursor: progress; }
.lead-form-hint { font-size: 12px; color: var(--muted); margin-top: 4px; }
.lead-form-hint a { color: var(--primary); text-decoration: underline; }
/* Honeypot */
.hp-field { position: absolute; left: -9999px; top: -9999px; height: 0; width: 0; opacity: 0; pointer-events: none; }
/* Status messages */
.lead-form-status { font-size: 14px; padding: 12px 14px; border-radius: 10px; margin-top: 10px; display: none; }
.lead-form-status.ok { display: block; background: #ecfdf5; color: #047857; border: 1px solid #a7f3d0; }
.lead-form-status.err { display: block; background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }

/* Inline lead banner (mid-content) */
.lead-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin: 36px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.lead-banner h3 { color: #fff; font-size: 22px; margin-bottom: 6px; line-height: 1.25; }
.lead-banner p { color: rgba(255,255,255,0.85); font-size: 14.5px; margin: 0; }
.lead-banner .btn-primary { background: #fff; color: var(--primary); border: 0; padding: 13px 26px; border-radius: 999px; font-weight: 700; font-size: 14px; white-space: nowrap; }
.lead-banner .btn-primary:hover { background: #f5e9d2; }

/* Trust strip */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 24px 0;
  margin: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.trust-strip > div { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.trust-strip strong { font-size: 18px; color: var(--primary); font-weight: 800; line-height: 1; }
.trust-strip span { font-size: 11.5px; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; }

/* Sticky mobile CTA bar */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 10px 14px;
  z-index: 60;
  box-shadow: 0 -4px 12px rgba(15,30,60,0.08);
  gap: 8px;
}
.sticky-cta a {
  flex: 1;
  text-align: center;
  padding: 11px 12px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 13.5px;
  text-decoration: none;
}
.sticky-cta a.call { background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center; gap: 6px; }
.sticky-cta a.contact { background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; gap: 6px; }
.sticky-cta svg { width: 16px; height: 16px; }

/* Hide regular footer phone CTA on mobile when sticky is shown */
@media (max-width: 980px) {
  .sticky-cta { display: flex; }
  body { padding-bottom: 70px; }
  .lead-form-row { grid-template-columns: 1fr; }
  .lead-form button { width: 100%; }
  .lead-banner { grid-template-columns: 1fr; padding: 24px 22px; }
  .lead-banner .btn-primary { width: 100%; text-align: center; }
  .trust-strip { grid-template-columns: 1fr 1fr; gap: 14px; }
  .lead-form-card { padding: 24px 22px; }
  .lead-form-title { font-size: 19px; }
}

/* Lead modal — opens from sticky CTA */
.lead-modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(15, 30, 60, 0.55);
  z-index: 80;
  display: none;
  align-items: flex-end;
  justify-content: center;
  backdrop-filter: blur(2px);
  animation: fadeIn 0.2s ease-out;
}
.lead-modal-backdrop.open { display: flex; }
@media (min-width: 768px) {
  .lead-modal-backdrop { align-items: center; }
}
.lead-modal {
  background: #fff;
  width: 100%; max-width: 520px;
  padding: 28px 24px 24px;
  border-radius: 18px 18px 0 0;
  position: relative;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: 0 -10px 40px rgba(15, 30, 60, 0.18);
  animation: slideUp 0.25s ease-out;
}
@media (min-width: 768px) {
  .lead-modal { border-radius: 18px; max-width: 480px; padding: 32px 28px; }
}
.lead-modal-close {
  position: absolute; top: 10px; right: 10px;
  width: 36px; height: 36px;
  background: transparent; border: 0;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--muted);
  border-radius: 50%;
}
.lead-modal-close:hover { background: var(--bg-soft); color: var(--text); }
.lead-modal-close svg { width: 22px; height: 22px; }
.lead-modal .lead-form-eyebrow { color: var(--accent-strong); }
.lead-modal .lead-form-title { font-size: 20px; line-height: 1.25; }
.lead-modal .lead-form-row { grid-template-columns: 1fr; }
.lead-modal .lead-form button { width: 100%; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
body.modal-open { overflow: hidden; }
