/* ============================================================
   cloud-telefonanlage.jetzt – Design-System
   Freundlich hell, modernes Blau · WCAG 2.2 AA
   ============================================================ */

:root {
  /* Farben */
  --blue-900: #0d2b5c;
  --blue-800: #1e40af;
  --blue-700: #1d4ed8;   /* Primär: 6,5:1 auf Weiß */
  --blue-600: #2563eb;
  --sky-600: #0284c7;
  --sky-400: #38bdf8;
  --ink: #0f172a;
  --slate: #475569;      /* Sekundärtext: 7,5:1 auf Weiß */
  --muted: #5b6b84;
  --bg: #ffffff;
  --bg-soft: #f4f8fd;
  --bg-tint: #e8f1fc;
  --border: #d9e4f2;
  --amber-bg: #fff1dd;
  --amber-ink: #8a4b00;
  --focus: #0284c7;

  /* Typografie */
  --font: "Inter", "SF Pro Text", -apple-system, BlinkMacSystemFont,
          "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Geometrie */
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(13, 43, 92, .06), 0 2px 8px rgba(13, 43, 92, .06);
  --shadow-md: 0 6px 24px rgba(13, 43, 92, .10);
  --container: 1120px;
}

/* ---------- Basis ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 .6em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.05rem, 4.6vw, 3.15rem); font-weight: 800; }
h2 { font-size: clamp(1.55rem, 3vw, 2.15rem); font-weight: 750; }
h3 { font-size: 1.17rem; font-weight: 700; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--blue-700); text-underline-offset: 3px; }
a:hover { color: var(--blue-800); }

ul, ol { padding-left: 1.3em; margin: 0 0 1.1em; }
li { margin-bottom: .35em; }

img, svg { max-width: 100%; height: auto; }

strong { font-weight: 650; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* Sichtbarer Fokus für Tastaturbedienung */
:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: 1rem; top: -4rem;
  background: var(--blue-700); color: #fff;
  padding: .65rem 1.1rem; border-radius: 0 0 10px 10px;
  z-index: 200; transition: top .2s;
}
.skip-link:focus { top: 0; color: #fff; }

/* ---------- Layout ---------- */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(18px, 4vw, 28px);
}

.section { padding-block: clamp(52px, 8vw, 92px); }
.section--alt { background: var(--bg-soft); }
.section--tight { padding-block: clamp(36px, 5vw, 56px); }

.section-head { max-width: 720px; margin-bottom: clamp(28px, 4vw, 44px); }
.section-head--center { margin-inline: auto; text-align: center; }

.kicker {
  display: inline-block;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--blue-700);
  margin-bottom: .8em;
}

.lead { font-size: 1.16rem; color: var(--slate); }

.cols-2 {
  display: grid; gap: clamp(28px, 4vw, 56px);
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.cols-3 { display: grid; gap: 1.5rem; grid-template-columns: repeat(3, 1fr); }
.cards {
  display: grid; gap: 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

/* ---------- Header & Navigation ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}
.site-header.is-scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 2px 14px rgba(13, 43, 92, .07);
}
.site-header__inner {
  display: flex; align-items: center; gap: 1.5rem;
  min-height: 72px;
}

.logo {
  display: inline-flex; align-items: center; gap: .55rem;
  font-weight: 750; font-size: 1.04rem; letter-spacing: -.01em;
  color: var(--ink); text-decoration: none; white-space: nowrap;
}
.logo:hover { color: var(--ink); }
.logo svg { flex: none; }
.logo .tld { color: var(--blue-700); }

.site-nav { margin-left: auto; display: flex; align-items: center; gap: 1.1rem; }
.site-nav ul {
  display: flex; gap: .2rem; list-style: none; margin: 0; padding: 0;
}
.site-nav li { margin: 0; }
.site-nav a:not(.btn) {
  display: block; padding: .55rem .8rem;
  color: var(--ink); text-decoration: none;
  font-weight: 550; font-size: .98rem; border-radius: 10px;
}
.site-nav a:not(.btn):hover { background: var(--bg-tint); color: var(--blue-800); }
.site-nav a[aria-current="page"] { color: var(--blue-700); background: var(--bg-tint); }

.nav-toggle {
  display: none; margin-left: auto;
  background: none; border: 1.5px solid var(--border);
  border-radius: 10px; padding: .55rem .65rem; cursor: pointer;
  color: var(--ink);
}
.nav-toggle svg { display: block; }
.nav-toggle .icon-close { display: none; }

@media (max-width: 940px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: absolute; inset: 100% 0 auto 0;
    display: none;
    flex-direction: column; align-items: stretch; gap: .4rem;
    background: #fff; border-bottom: 1px solid var(--border);
    box-shadow: 0 18px 30px rgba(13, 43, 92, .12);
    padding: 1rem clamp(18px, 4vw, 28px) 1.4rem;
  }
  .site-nav ul { flex-direction: column; gap: .15rem; }
  .site-nav a:not(.btn) { padding: .8rem .9rem; font-size: 1.05rem; }
  body.nav-open .site-nav { display: flex; }
  body.nav-open .nav-toggle .icon-menu { display: none; }
  body.nav-open .nav-toggle .icon-close { display: block; }
  body.nav-open { overflow: hidden; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .78rem 1.45rem;
  border-radius: 999px;
  font-weight: 650; font-size: 1rem; line-height: 1.25;
  text-decoration: none; cursor: pointer;
  border: 2px solid transparent;
  transition: background .18s, color .18s, border-color .18s, transform .18s;
}
.btn:active { transform: translateY(1px); }

.btn--primary { background: var(--blue-700); color: #fff; }
.btn--primary:hover { background: var(--blue-800); color: #fff; }

.btn--ghost { background: #fff; color: var(--blue-700); border-color: var(--blue-700); }
.btn--ghost:hover { background: var(--bg-tint); color: var(--blue-800); border-color: var(--blue-800); }

.btn--light { background: #fff; color: var(--blue-800); }
.btn--light:hover { background: var(--bg-tint); color: var(--blue-900); }

.btn--lg { padding: .95rem 1.9rem; font-size: 1.08rem; }

/* ---------- Badges & Pills ---------- */
.badges { display: flex; flex-wrap: wrap; gap: .6rem; padding: 0; margin: 1.3rem 0 1.6rem; list-style: none; }
.badges li { margin: 0; }
.badge {
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--bg-tint); color: var(--blue-900);
  font-weight: 650; font-size: .92rem;
  padding: .42rem .95rem; border-radius: 999px;
}
.badge svg { color: var(--blue-700); flex: none; }

.badge--action { background: var(--amber-bg); color: var(--amber-ink); }

.plan-tag {
  display: inline-block; font-size: .78rem; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
  padding: .18rem .6rem; border-radius: 6px;
  background: var(--bg-tint); color: var(--blue-800);
  vertical-align: middle;
}
.plan-tag--ultimate { background: #ede9fe; color: #5b21b6; }
.plan-tag--addon { background: var(--amber-bg); color: var(--amber-ink); }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(900px 480px at 85% -12%, var(--bg-tint), transparent 70%),
    linear-gradient(180deg, var(--bg-soft), #fff 82%);
  padding-block: clamp(48px, 7vw, 84px) clamp(48px, 7vw, 76px);
  overflow: hidden;
}
.hero__grid {
  display: grid; gap: clamp(30px, 5vw, 64px);
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: .4rem; }
.hero__visual { min-width: 0; }

.trust-row {
  display: flex; flex-wrap: wrap; gap: .5rem 2rem;
  list-style: none; margin: clamp(30px, 4vw, 44px) 0 0; padding: 1.1rem 0 0;
  border-top: 1px solid var(--border);
  font-size: .95rem; color: var(--slate);
}
.trust-row li { display: inline-flex; align-items: center; gap: .5rem; margin: 0; }
.trust-row svg { color: var(--blue-700); flex: none; }

/* ---------- Karten ---------- */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card h3 { margin-bottom: .45em; }
.card p { color: var(--slate); font-size: .99rem; }

.icon-chip {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--bg-tint); color: var(--blue-700);
  margin-bottom: .9rem;
}
.icon-chip svg { display: block; }

/* ---------- Häkchenlisten ---------- */
.check-list { list-style: none; padding: 0; margin: 0 0 1.1em; }
.check-list li {
  position: relative; padding-left: 1.85em; margin-bottom: .55em;
}
.check-list li::before {
  content: "";
  position: absolute; left: 0; top: .28em;
  width: 1.15em; height: 1.15em;
  background: var(--bg-tint) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%231d4ed8" stroke-width="3.2" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>') center/68% no-repeat;
  border-radius: 50%;
}

/* ---------- Schritte ---------- */
.steps { list-style: none; counter-reset: step; padding: 0; margin: 0; display: grid; gap: 1.3rem; grid-template-columns: repeat(4, 1fr); }
.step { counter-increment: step; position: relative; margin: 0; }
.step__inner {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.4rem 1.3rem 1.3rem; height: 100%; box-shadow: var(--shadow-sm);
}
.step__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--blue-700); color: #fff; font-weight: 750;
  margin-bottom: .8rem;
}
.step__num::before { content: counter(step); }
.step h3 { font-size: 1.06rem; }
.step p { color: var(--slate); font-size: .96rem; margin: 0; }

/* ---------- Skalierungs-Balken ---------- */
.scale-bar { margin-top: 2rem; }
.scale-bar__track {
  height: 14px; border-radius: 999px;
  background: linear-gradient(90deg, var(--sky-400), var(--blue-700));
}
.scale-bar__marks {
  display: flex; justify-content: space-between;
  margin-top: .6rem; font-size: .92rem; color: var(--slate); font-weight: 600;
}

/* ---------- Preis-Karten ---------- */
.price-cards {
  display: grid; gap: 1.6rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}
.price-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.price-card--featured {
  border: 2px solid var(--blue-700);
  box-shadow: var(--shadow-md);
  position: relative;
}
.price-card__flag {
  position: absolute; top: -0.95rem; left: 1.6rem;
  background: var(--blue-700); color: #fff;
  font-size: .8rem; font-weight: 700; letter-spacing: .05em;
  padding: .3rem .9rem; border-radius: 999px;
}
.price-card__price { font-size: clamp(2.4rem, 4vw, 3.1rem); font-weight: 800; line-height: 1; letter-spacing: -.02em; }
.price-card__price small { font-size: 1rem; font-weight: 600; color: var(--slate); letter-spacing: 0; }
.price-card__per { color: var(--slate); margin: .4rem 0 1.2rem; font-size: .97rem; }
.price-card .btn { margin-top: auto; }
.price-card .check-list { margin-bottom: 1.6rem; }
.price-card .check-list li { font-size: .97rem; }

.price-note { font-size: .92rem; color: var(--muted); margin-top: 1.2rem; }

/* ---------- Preisrechner ---------- */
.calc {
  background: linear-gradient(160deg, #fff, var(--bg-soft));
  border: 2px solid var(--blue-700);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.3rem);
  box-shadow: var(--shadow-md);
}
.calc__head {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: .8rem; margin-bottom: 1rem;
}
.calc__label { font-weight: 700; font-size: 1.1rem; }
.calc__value { display: inline-flex; align-items: center; gap: .5rem; color: var(--slate); font-weight: 600; }
.calc__value input {
  width: 5.2em; padding: .5rem .6rem;
  border: 1.5px solid var(--border); border-radius: 10px;
  font: inherit; font-weight: 700; color: var(--ink); text-align: center;
  background: #fff;
}

.calc input[type="range"] {
  width: 100%; margin: .4rem 0 1.2rem;
  appearance: none; -webkit-appearance: none;
  height: 10px; border-radius: 999px;
  background: linear-gradient(90deg, var(--sky-400), var(--blue-700));
  outline-offset: 6px;
}
.calc input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 28px; height: 28px; border-radius: 50%;
  background: #fff; border: 3px solid var(--blue-700);
  box-shadow: var(--shadow-sm); cursor: grab;
}
.calc input[type="range"]::-moz-range-thumb {
  width: 24px; height: 24px; border-radius: 50%;
  background: #fff; border: 3px solid var(--blue-700);
  box-shadow: var(--shadow-sm); cursor: grab;
}

.plan-switch { border: 0; padding: 0; margin: 0 0 1.2rem; display: flex; flex-wrap: wrap; gap: .7rem; }
.plan-switch label {
  display: inline-flex; align-items: center; gap: .5rem;
  border: 1.5px solid var(--border); border-radius: 999px;
  padding: .5rem 1.05rem; cursor: pointer; background: #fff;
  font-weight: 600; font-size: .97rem;
}
.plan-switch label:has(input:checked) {
  border-color: var(--blue-700);
  background: var(--bg-tint); color: var(--blue-900);
}
.plan-switch input { accent-color: var(--blue-700); width: 1.05em; height: 1.05em; }

.calc__result {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.2rem 1.3rem; margin-bottom: 1.3rem;
}
.calc__total { font-size: clamp(1.9rem, 3.4vw, 2.5rem); font-weight: 800; letter-spacing: -.02em; margin-bottom: .15em; }
.calc__total small { font-size: 1rem; font-weight: 600; color: var(--slate); }
.calc__detail { color: var(--slate); font-size: .97rem; margin-bottom: .5em; }
.calc__note { font-size: .88rem; color: var(--muted); margin: 0; }

/* ---------- Tabellen ---------- */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
table.compare {
  width: 100%; border-collapse: collapse;
  background: #fff; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  font-size: .98rem;
}
table.compare th, table.compare td {
  padding: .85rem 1rem; text-align: left; vertical-align: top;
  border-bottom: 1px solid var(--border);
}
table.compare thead th {
  background: var(--blue-900); color: #fff; font-weight: 650;
}
table.compare tbody tr:last-child td { border-bottom: 0; }
table.compare tbody th { font-weight: 650; background: var(--bg-soft); }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: .85rem; }
details.faq-item {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
details.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.05rem 1.3rem;
  font-weight: 650; font-size: 1.04rem;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
  content: ""; flex: none;
  width: 1.5rem; height: 1.5rem;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%231d4ed8" stroke-width="2.4" stroke-linecap="round"><line x1="12" y1="5" x2="12" y2="19"/><line x1="5" y1="12" x2="19" y2="12"/></svg>') center/100% no-repeat;
  transition: transform .2s;
}
details.faq-item[open] summary::after { transform: rotate(45deg); }
details.faq-item .faq-item__body { padding: 0 1.3rem 1.2rem; color: var(--slate); }

/* ---------- Hinweise & Platzhalter ---------- */
.notice {
  border-radius: var(--radius);
  padding: 1.1rem 1.3rem;
  font-size: .97rem;
  margin: 1.4rem 0;
}
.notice--info { background: var(--bg-tint); color: var(--blue-900); }
.notice--legal { background: var(--amber-bg); color: var(--amber-ink); }
.notice p { margin-bottom: .5em; }

mark.ph {
  background: var(--amber-bg); color: var(--amber-ink);
  border: 1.5px dashed var(--amber-ink);
  border-radius: 6px; padding: .06em .4em;
  font-weight: 650; font-size: .93em;
}

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { padding-top: 1.2rem; font-size: .92rem; }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .35rem; padding: 0; margin: 0; color: var(--muted); }
.breadcrumbs li { margin: 0; display: inline-flex; align-items: center; gap: .35rem; }
.breadcrumbs li + li::before { content: "›"; color: var(--muted); }
.breadcrumbs a { color: var(--slate); text-decoration: none; }
.breadcrumbs a:hover { color: var(--blue-700); text-decoration: underline; }
.breadcrumbs [aria-current="page"] { color: var(--ink); font-weight: 600; }

/* ---------- CTA-Band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--blue-800), var(--blue-700) 55%, var(--sky-600));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.4rem);
  text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #e3eeff; max-width: 640px; margin-inline: auto; }
.cta-band .hero__ctas { justify-content: center; margin-top: 1.4rem; }
.cta-band a:not(.btn) { color: #fff; }
.cta-band .btn--ghost { background: transparent; color: #fff; border-color: #fff; }
.cta-band .btn--ghost:hover { background: rgba(255, 255, 255, .14); color: #fff; border-color: #fff; }
.cta-band :focus-visible { outline-color: #bae6fd; }

/* ---------- Formulare ---------- */
.form { display: grid; gap: 1.1rem; }
.form__row { display: grid; gap: 1.1rem; grid-template-columns: 1fr 1fr; }
.form__field { display: grid; gap: .35rem; }
.form__field label { font-weight: 650; font-size: .97rem; }
.form__field .hint { font-weight: 400; color: var(--muted); font-size: .88rem; }
.form__field input, .form__field textarea, .form__field select {
  font: inherit; color: var(--ink);
  padding: .78rem .95rem;
  border: 1.5px solid var(--border); border-radius: 10px;
  background: #fff; width: 100%;
}
.form__field input:focus-visible, .form__field textarea:focus-visible {
  outline: 3px solid var(--focus); outline-offset: 1px; border-color: var(--focus);
}
.form__consent { display: flex; gap: .7rem; align-items: flex-start; font-size: .94rem; color: var(--slate); }
.form__consent input { width: 1.25em; height: 1.25em; margin-top: .2em; accent-color: var(--blue-700); flex: none; }
.form__status { font-weight: 600; }

/* ---------- Kontakt ---------- */
.contact-grid { display: grid; gap: 2.4rem; grid-template-columns: .9fr 1.1fr; align-items: start; }
.contact-card {
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.8rem 1.6rem;
}
.contact-card h2 { font-size: 1.35rem; }
.contact-card ul { list-style: none; padding: 0; margin: 0; }
.contact-card li { display: flex; gap: .8rem; align-items: flex-start; margin-bottom: 1rem; }
.contact-card li svg { flex: none; color: var(--blue-700); margin-top: .2rem; }
.contact-card a { font-weight: 650; }
.contact-card .big-phone { font-size: 1.3rem; font-weight: 750; color: var(--ink); text-decoration: none; }
.contact-card .big-phone:hover { color: var(--blue-700); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--blue-900); color: #cfdff5;
  margin-top: clamp(52px, 8vw, 92px);
  padding-block: clamp(44px, 6vw, 64px) 28px;
  font-size: .96rem;
}
.site-footer a { color: #fff; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; color: #fff; }
.site-footer :focus-visible { outline-color: #7dd3fc; }
.footer-grid {
  display: grid; gap: 2.2rem;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  margin-bottom: 2.4rem;
}
.footer-col .footer-title {
  color: #fff; font-size: .95rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; margin-bottom: .9em;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: .55em; }
.footer-about p { color: #cfdff5; font-size: .95rem; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .18);
  padding-top: 1.4rem;
  display: flex; flex-wrap: wrap; gap: .6rem 1.8rem;
  justify-content: space-between; align-items: center;
  font-size: .9rem; color: #a9c2e8;
}

/* ---------- Dezente Einblendungen ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Responsiv ---------- */
@media (max-width: 1000px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 880px) {
  .hero__grid, .cols-2, .contact-grid { grid-template-columns: 1fr; }
  .hero__visual { order: -1; max-width: 460px; }
  .cols-3 { grid-template-columns: 1fr; }
  .price-cards { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero__ctas .btn { width: 100%; }
}
