:root {
  --blue: #0089c4;
  --blue-dark: #0a2e45;
  --red: #e3001b;
  --gray: #f4f6f8;
  --text: #1f2937;
  --border: #e5e7eb;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: white;
}

h1, h2, h3 { font-weight: 700; letter-spacing: -0.01em; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: white;
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
}

.logo { display: flex; align-items: center; text-decoration: none; }
.logo-img { height: 42px; width: auto; display: block; }

.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a { text-decoration: none; color: var(--text); font-weight: 500; position: relative; }
.nav-links a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: -5px; width: 0; height: 2px;
  background: var(--blue); transition: width 0.25s ease;
}
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-links a:hover { color: var(--blue); }
.nav-links a.nav-active:not(.nav-cta) { color: var(--blue); }
.nav-links a.nav-active:not(.nav-cta)::after { width: 100%; }
.nav-cta {
  background: linear-gradient(135deg, var(--red), #b8001a);
  color: white !important;
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 600 !important;
  box-shadow: 0 4px 14px rgba(227,0,27,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(227,0,27,0.4); }
.nav-cta:active { transform: translateY(0) scale(0.96); }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.burger span { width: 24px; height: 2px; background: var(--blue); transition: transform 0.3s, opacity 0.3s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: url("assets/hero-bg.webp") center 30% / cover no-repeat, var(--blue-dark);
  color: white;
  text-align: center;
  padding: 90px 20px 138px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 48px), 0 100%);
}
.hero-scrim {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, rgba(5,20,32,0.55), rgba(5,20,32,0.72));
}
.hero-accent {
  position: absolute; top: -20%; right: -15%; width: 65%; height: 140%;
  background: linear-gradient(135deg, var(--red), #7a0010);
  opacity: 0.22;
  mix-blend-mode: multiply;
  clip-path: polygon(35% 0, 100% 0, 65% 100%, 0% 100%);
  z-index: 0;
}
.hero-inner { position: relative; z-index: 1; }
.hero h1 { font-size: 2.9rem; line-height: 1.15; margin-bottom: 18px; max-width: 760px; margin-left: auto; margin-right: auto; }
.hero p { font-size: 1.1rem; margin-bottom: 30px; opacity: 0.9; max-width: 560px; margin-left: auto; margin-right: auto; }

.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-block; padding: 13px 26px; border-radius: 6px; text-decoration: none; font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue), #00669c); color: white;
  box-shadow: 0 4px 14px rgba(0,137,196,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(0,137,196,0.45); }
.btn-primary:active { transform: translateY(0) scale(0.97); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1); color: white; border: 1px solid rgba(255,255,255,0.4);
}
.btn-ghost svg { width: 18px; height: 18px; }
.btn-ghost:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }
.btn-ghost:active { transform: translateY(0) scale(0.97); }

/* Stats */
.stats {
  background: linear-gradient(180deg, var(--blue-dark) 0%, rgba(0,137,196,0.12) 25%, rgba(227,0,27,0.06) 100%);
  margin-top: -48px; padding: 88px 0 40px; position: relative;
}
.stats-grid { display: grid; grid-template-columns: repeat(3, minmax(140px, 220px)); justify-content: center; gap: 48px; text-align: center; }
.stat { transition: transform 0.2s ease; }
.stat:hover { transform: translateY(-4px) scale(1.04); }
.stat-number { font-size: 1.9rem; font-weight: 800; color: var(--blue); }
.stat-label { color: #555; font-size: 0.88rem; margin-top: 4px; }

/* Sections */
.section { padding: 72px 0; }
.section.alt { background: linear-gradient(180deg, #eaf4fa, #f2f8fb); }
.section.tint { background: linear-gradient(180deg, #eaf4fa, #f2f8fb); }
.section h2 { color: var(--blue-dark); font-size: 1.9rem; margin-bottom: 8px; text-align: center; }
.section-sub { text-align: center; color: #666; margin-bottom: 36px; }

.section.dark {
  position: relative;
  background: linear-gradient(160deg, var(--blue-dark), #071c2b);
  color: white;
  padding: 100px 0 112px;
  margin: -40px 0;
  clip-path: polygon(0 40px, 100% 0, 100% calc(100% - 40px), 0 100%);
}
.section.dark .kicker { color: white; }
.section.dark h2 { color: white; }

.legal p { max-width: 640px; margin: 0 auto 18px; line-height: 1.6; }
.legal h2 { margin-bottom: 28px; }

.kicker {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 10px;
}
.kicker::before { content: ""; display: inline-block; width: 18px; height: 2px; background: var(--red); }
.kontakt-info .kicker, .why-text .kicker { justify-content: flex-start; }

.cards { display: flex; flex-wrap: wrap; justify-content: center; gap: 28px 24px; }

.card {
  background: white; border: 1px solid var(--border); border-radius: 10px;
  padding: 0 22px 26px; position: relative; overflow: visible;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  flex: 1 1 280px; max-width: 340px;
}
.card:hover { transform: translateY(-8px); box-shadow: 0 18px 32px rgba(0,137,196,0.16); border-color: #d5dbe2; }
.card:has(.badge-red):hover { box-shadow: 0 18px 32px rgba(227,0,27,0.14); }

.card-illustration {
  height: 108px; margin: 0 -22px 34px; border-radius: 10px 10px 0 0;
  background: var(--gray); overflow: hidden;
}
.card-illustration img { width: 100%; height: 100%; display: block; object-fit: contain; }
.card:hover .card-illustration img { transform: scale(1.04); transition: transform 0.35s ease; }

.card-badge {
  position: absolute; top: 82px; left: 22px;
  width: 46px; height: 46px; border-radius: 50%;
  background: white; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px rgba(10,46,69,0.14);
  transition: transform 0.25s ease;
}
.card:hover .card-badge { transform: scale(1.12) rotate(-6deg); }
.card-badge svg { width: 22px; height: 22px; }
.badge-red { color: var(--red); border: 2px solid var(--red); }
.badge-blue { color: var(--blue); border: 2px solid var(--blue); }

.card h3 { margin: 22px 0 8px; color: var(--blue-dark); font-size: 1.05rem; }
.card p { color: #555; font-size: 0.95rem; }
.coming-soon {
  display: inline-block; vertical-align: middle; margin-left: 8px;
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em;
  color: #9a6b00; background: #fff3d6; border-radius: 20px; padding: 3px 10px;
}

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: white; border: 1px solid var(--border); border-radius: 10px; padding: 0 20px; transition: border-color 0.2s, box-shadow 0.2s; }
.faq-item:hover { border-color: var(--blue); box-shadow: 0 6px 16px rgba(0,137,196,0.1); }
.faq-item summary {
  cursor: pointer; padding: 16px 0; font-weight: 600; color: var(--blue-dark);
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 1.4rem; color: white; font-weight: 400; flex-shrink: 0;
  width: 24px; height: 24px; border-radius: 50%; background: var(--blue);
  display: flex; align-items: center; justify-content: center; line-height: 1;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { content: "\2212"; background: var(--red); transform: rotate(180deg); }
.faq-item p { padding-bottom: 18px; color: #555; font-size: 0.95rem; animation: faqOpen 0.25s ease; }
@keyframes faqOpen { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }

.faq-highlight {
  border: 2px solid var(--blue); position: relative; overflow: hidden;
}
.faq-highlight::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--red), var(--blue));
}
.faq-tag {
  display: inline-block; margin-left: 8px; vertical-align: middle;
  font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em;
  color: white; background: var(--blue); border-radius: 20px; padding: 3px 10px;
}
.faq-highlight .why-checklist { margin: 4px 0 20px; }

/* Ablauf / process steps */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 28px; }
.step { text-align: center; }
.step-number {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--blue); color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; margin: 0 auto 14px;
}
.step h3 { margin-bottom: 6px; color: var(--blue-dark); font-size: 1.02rem; }
.step p { color: #555; font-size: 0.92rem; }

/* Warum wir */
.why-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center; }

.why-checklist { list-style: none; margin: 20px 0 28px; display: flex; flex-direction: column; gap: 10px; }
.why-checklist li { padding-left: 28px; position: relative; font-size: 1rem; }
.why-checklist li::before {
  content: "✓"; position: absolute; left: 0; top: 1px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--red); color: white; font-size: 0.6rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.why-visual { display: flex; justify-content: center; }
.why-illustration {
  width: 100%; max-width: 400px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 8px 20px rgba(10,46,69,0.06);
}
.why-illustration svg, .why-illustration img { width: 100%; height: auto; display: block; border-radius: 4px; }

.testimonials {
  margin-top: 48px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.testimonial {
  text-align: center;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px; padding: 28px 24px;
}
.testimonial p { font-size: 0.98rem; font-style: italic; margin-bottom: 12px; }
.testimonial cite { font-size: 0.85rem; opacity: 0.75; font-style: normal; }

@media (max-width: 800px) {
  .testimonials { grid-template-columns: 1fr; }
}

.about-text { max-width: 700px; margin: 0 auto; text-align: center; font-size: 1.05rem; color: #444; }

.ueber-uns-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.ueber-uns-img { width: 100%; height: auto; border-radius: 10px; box-shadow: 0 16px 40px rgba(10,46,69,0.14); }

/* Partners */
.partners { padding: 40px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.partners-label { text-align: center; color: #888; font-size: 0.85rem; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 0.06em; }
.partners-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 32px; }
.partners-row span { color: #9aa1a8; font-weight: 700; font-size: 1.05rem; }

/* Kontakt */
.kontakt-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 40px; }
.kontakt-info h2 { text-align: left; margin-bottom: 16px; }
.kontakt-info p { margin-bottom: 10px; }
.kontakt-info a { color: var(--blue); text-decoration: none; font-weight: 500; }

.hidden-field { position: absolute; left: -9999px; }

/* Anfrage-Assistent (Wizard) */
.wizard {
  background: white; padding: 28px; border-radius: 10px; border: 1px solid var(--border);
  position: relative; overflow: hidden; box-shadow: 0 16px 40px rgba(10,46,69,0.08);
}
.wizard::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, var(--red), var(--blue));
}
.wizard label { font-weight: 500; font-size: 0.9rem; }
.wizard input[type="text"], .wizard input[type="tel"], .wizard input[type="email"], .wizard input[type="number"], .wizard textarea {
  font-family: inherit; font-size: 1rem; padding: 10px 12px; border: 1px solid #ddd; border-radius: 6px; resize: vertical;
  width: 100%; margin-top: 6px;
}
.wizard input:focus, .wizard textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,137,196,0.15); }
.wizard-field { display: block; margin-bottom: 16px; }
.wizard > label { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }

.wizard { display: flex; flex-direction: column; max-height: min(600px, 75vh); }
.wizard-tabs { display: flex; align-items: center; margin-bottom: 22px; flex-shrink: 0; }
.wizard-tab { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; font-weight: 600; color: #aaa; white-space: nowrap; }
.wizard-tab-num {
  width: 24px; height: 24px; border-radius: 50%; background: var(--gray); border: 1.5px solid var(--border); color: #999;
  display: flex; align-items: center; justify-content: center; font-size: 0.72rem; font-weight: 700; flex-shrink: 0;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.wizard-tab.active { color: var(--blue-dark); }
.wizard-tab.active .wizard-tab-num { background: var(--blue); border-color: var(--blue); color: white; }
.wizard-tab.done { color: var(--blue-dark); }
.wizard-tab.done .wizard-tab-num { background: var(--blue-dark); border-color: var(--blue-dark); color: white; }
.wizard-tab-line { flex: 1; height: 2px; background: var(--border); margin: 0 8px; }

.wizard-body { flex: 1 1 auto; overflow-y: auto; overflow-x: hidden; min-height: 0; padding-right: 6px; }

.wizard-step { display: none; }
.wizard-step.active { display: block; }

.wizard-choices { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.wizard-choice {
  display: flex; flex-direction: column; align-items: flex-start; gap: 8px; text-align: left;
  border: 1.5px solid var(--border); border-radius: 10px; padding: 22px 18px; cursor: pointer;
  background: white; font-family: inherit; transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.wizard-choice:hover { border-color: var(--blue); box-shadow: 0 8px 20px rgba(0,137,196,0.14); transform: translateY(-3px); }
.wizard-choice:active { transform: translateY(-1px) scale(0.98); }
.wizard-choice strong { color: var(--blue-dark); font-size: 1rem; }
.wizard-choice span:not(.wizard-card-icon) { font-size: 0.85rem; color: #666; }
.wizard-choice .wizard-card-icon { width: 26px; height: 26px; }

.wizard-question { font-weight: 600; margin-bottom: 12px; color: var(--blue-dark); }
.wizard-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 22px; }
.wizard-cards.small { grid-template-columns: repeat(auto-fit, minmax(132px, 1fr)); }

.wizard-card {
  position: relative; display: flex; flex-direction: column; align-items: center; gap: 8px;
  border: 1.5px solid var(--border); border-radius: 8px; padding: 18px 10px; cursor: pointer;
  text-align: center; font-size: 0.9rem; font-weight: 500;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.wizard-card.small {
  flex-direction: row; justify-content: center; align-items: center;
  padding: 12px 14px; min-height: 46px; line-height: 1.25;
}
.wizard-card.small span { word-break: break-word; hyphens: auto; }
.wizard-card input { position: absolute; opacity: 0; }
.wizard-card-icon { width: 30px; height: 30px; color: var(--blue); }
.wizard-card-icon svg { width: 100%; height: 100%; }
.wizard-card:hover { border-color: var(--blue); transform: translateY(-2px); box-shadow: 0 6px 14px rgba(0,137,196,0.12); }
.wizard-card:has(input:checked) {
  border-color: var(--blue); background: rgba(0,137,196,0.08);
  box-shadow: 0 4px 12px rgba(0,137,196,0.18);
}
.wizard-card:has(input:checked)::after {
  content: "✓"; position: absolute; top: -8px; right: -8px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--blue); color: white; font-size: 0.7rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 6px rgba(0,137,196,0.4);
}

.wizard-nav { display: flex; justify-content: space-between; gap: 12px; flex-shrink: 0; padding-top: 18px; margin-top: 14px; border-top: 1px solid var(--border); }
.wizard-nav #wizardNextBtn, .wizard-nav #wizardSubmitBtn { margin-left: auto; }
.btn-ghost-light { background: none; border: 1px solid var(--border); color: #555; }
.btn-ghost-light:hover { border-color: #bbb; transform: translateY(-2px); }
.btn-ghost-light:active { transform: translateY(0) scale(0.97); }
#wizardNextBtn:disabled { opacity: 0.5; cursor: not-allowed; }

.wizard-urgent { text-align: center; padding: 12px 0 24px; }
.wizard-urgent p { color: #555; margin-bottom: 20px; }
.wizard-urgent .btn { display: inline-flex; align-items: center; gap: 8px; }
.wizard-urgent .btn svg { width: 18px; height: 18px; }

.wizard-summary {
  background: var(--gray); border-radius: 8px; padding: 14px 16px; margin-bottom: 18px;
  font-size: 0.85rem; color: #555;
}
.wizard-summary ul { list-style: none; }
.wizard-summary li { padding: 2px 0; }
.wizard-summary strong { color: var(--blue-dark); }

.wizard-branch { display: none; padding-top: 8px; margin-top: 8px; border-top: 1px solid var(--border); }
.wizard-branch:first-child { border-top: none; margin-top: 0; padding-top: 0; }
.wizard-branch.shown { display: block; }
.wizard-branch-title { color: var(--blue-dark); font-size: 1rem; margin-bottom: 14px; }
.wizard-field-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 16px; }

.wizard-hint { font-size: 0.8rem; color: #999; margin: -10px 0 6px; display: none; }
.wizard-hint.shown { display: block; }
.wizard-card.disabled { opacity: 0.4; pointer-events: none; }


@media (max-width: 480px) {
  .wizard-cards { grid-template-columns: repeat(2, 1fr); }
  .wizard-field-row { grid-template-columns: 1fr; }
  .wizard-choices { grid-template-columns: 1fr; }
  /* Kein zweites Scroll-Fenster in der Formularbox — die Seite selbst scrollt */
  .wizard { max-height: none; }
  .wizard-body { overflow-y: visible; }
}

footer {
  position: relative;
  background: var(--blue-dark); color: white; text-align: center;
  padding: 62px 0 22px; font-size: 0.85rem;
  margin-top: -40px;
  clip-path: polygon(0 40px, 100% 0, 100% 100%, 0 100%);
}

/* Floating action button */
.fab {
  position: fixed; bottom: 22px; right: 22px;
  width: 54px; height: 54px;
  background: linear-gradient(135deg, var(--red), #b8001a); color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(227,0,27,0.45);
  z-index: 50;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.fab:hover { transform: scale(1.08) translateY(-2px); box-shadow: 0 10px 24px rgba(227,0,27,0.55); }
.fab:active { transform: scale(0.96); }
.fab svg { width: 22px; height: 22px; }

/* Mobile CTA bar */
.mobile-cta-bar { display: none; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--blue-dark); color: white; padding: 12px 20px;
  border-radius: 6px; text-decoration: none; font-weight: 600;
  z-index: 200; transition: top 0.2s ease;
}
.skip-link:focus { top: 12px; }

@media (max-width: 800px) {
  .why-grid, .kontakt-grid, .ueber-uns-grid { grid-template-columns: 1fr; }
  .ueber-uns-grid { grid-template-rows: auto auto; }
  .ueber-uns-grid img { order: -1; }
}

@media (max-width: 640px) {
  .hero h1 { font-size: 1.9rem; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    background: white; flex-direction: column; align-items: flex-start;
    padding: 20px; gap: 14px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    display: none;
  }
  .nav-links.open { display: flex; }
  .burger { display: flex; }

  body { padding-bottom: 58px; }
  .fab { display: none; }
  .mobile-cta-bar {
    display: flex;
    position: fixed; bottom: 0; left: 0; right: 0;
    z-index: 60;
    box-shadow: 0 -4px 14px rgba(0,0,0,0.12);
  }
  .mobile-cta-call, .mobile-cta-form {
    flex: 1; text-align: center; padding: 14px 10px;
    font-weight: 700; font-size: 0.92rem; text-decoration: none;
    display: flex; align-items: center; justify-content: center; gap: 6px;
  }
  .mobile-cta-call { background: linear-gradient(135deg, var(--red), #b8001a); color: white; }
  .mobile-cta-call svg { width: 18px; height: 18px; }
  .mobile-cta-form { background: linear-gradient(135deg, var(--blue), #00669c); color: white; }
  .mobile-cta-call:active, .mobile-cta-form:active { filter: brightness(0.9); }
}
