:root {
  --brand-950: #43001f;
  --brand-900: #65002d;
  --brand-800: #8f003f;
  --brand-700: #b6004f;
  --brand-600: #d50057;
  --brand-500: #ed174c;
  --brand-400: #ff4876;
  --brand-300: #ff83a4;
  --brand-100: #ffe5ee;
  --brand-50: #fff6f9;
  --ink: #22181d;
  --ink-soft: #55474e;
  --muted: #75656d;
  --line: #eadde2;
  --surface: #ffffff;
  --surface-alt: #fff8fb;
  --success: #14795f;
  --shadow-sm: 0 8px 24px rgba(90, 0, 43, 0.08);
  --shadow-md: 0 18px 55px rgba(90, 0, 43, 0.14);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--surface-alt);
}

body {
  margin: 0;
  min-width: 280px;
  color: var(--ink);
  background: var(--surface-alt);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 99999;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(234, 221, 226, 0.84);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 38px rgba(67, 0, 31, 0.09);
}

.header-accent {
  height: 4px;
  background: linear-gradient(90deg, var(--brand-900), var(--brand-500) 48%, #ff6a50 100%);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  position: relative;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(145deg, var(--brand-800), var(--brand-500));
  box-shadow: 0 10px 25px rgba(213, 0, 87, 0.25);
}

.brand-mark i,
.brand-mark b,
.brand-mark em {
  position: absolute;
  display: block;
  background: #fff;
  border-radius: 999px;
  transform-origin: center;
}

.brand-mark i {
  width: 28px;
  height: 7px;
  top: 11px;
  left: 9px;
  transform: rotate(-24deg);
}

.brand-mark b {
  width: 24px;
  height: 7px;
  top: 21px;
  left: 11px;
  transform: rotate(17deg);
  opacity: 0.88;
}

.brand-mark em {
  width: 18px;
  height: 7px;
  top: 31px;
  left: 15px;
  transform: rotate(-16deg);
  opacity: 0.7;
}

.brand-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -0.35px;
  white-space: nowrap;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--brand-700);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.15px;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.desktop-nav a {
  position: relative;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: color 0.18s ease, background 0.18s ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus,
.desktop-nav a.active {
  color: var(--brand-700);
  background: var(--brand-50);
}

.desktop-nav a.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 18px;
  height: 3px;
  border-radius: 3px;
  background: var(--brand-500);
  transform: translateX(-50%);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-call {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border: 1px solid #f4c7d6;
  border-radius: 16px;
  background: var(--brand-50);
  color: var(--brand-800);
  text-decoration: none;
}

.header-call-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--brand-700), var(--brand-500));
  color: #fff;
  font-size: 16px;
}

.header-call span:last-child {
  min-width: 0;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.header-call small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
}

.header-call strong {
  margin-top: 4px;
  color: var(--brand-800);
  font-size: 13px;
  white-space: nowrap;
}

.menu-toggle {
  width: 46px;
  height: 46px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
  cursor: pointer;
}

.menu-toggle span {
  width: 21px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
}

.mobile-nav {
  position: fixed;
  top: 86px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1001;
  overflow-y: auto;
  background: rgba(255, 248, 251, 0.98);
  border-top: 1px solid var(--line);
}

.mobile-nav[hidden] {
  display: none !important;
}

.mobile-nav-inner {
  padding-top: 22px;
  padding-bottom: 120px;
}

.mobile-nav-links {
  display: grid;
  gap: 8px;
}

.mobile-nav-links a {
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  font-weight: 850;
  text-decoration: none;
}

.mobile-nav-calls {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.mobile-nav-calls a {
  min-width: 0;
  padding: 14px;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--brand-800), var(--brand-500));
  color: #fff;
  text-decoration: none;
}

.mobile-nav-calls span,
.mobile-nav-calls strong {
  display: block;
}

.mobile-nav-calls span {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.mobile-nav-calls strong {
  margin-top: 5px;
  font-size: 14px;
  overflow-wrap: anywhere;
}

main {
  overflow: hidden;
}

.hero {
  position: relative;
  padding: 78px 0 64px;
  background:
    radial-gradient(circle at 90% 5%, rgba(255, 72, 118, 0.16), transparent 27%),
    radial-gradient(circle at 15% 85%, rgba(143, 0, 63, 0.09), transparent 29%),
    linear-gradient(180deg, #fff 0%, #fff8fb 100%);
}

.hero::before {
  content: "";
  position: absolute;
  top: -170px;
  right: -160px;
  width: 410px;
  height: 410px;
  border: 70px solid rgba(213, 0, 87, 0.05);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
  align-items: center;
  gap: 62px;
}

.eyebrow,
.page-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 12px;
  border: 1px solid #f1bdce;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--brand-800);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.eyebrow::before,
.page-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-500);
  box-shadow: 0 0 0 5px rgba(237, 23, 76, 0.12);
}

.hero h1,
.page-hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 950;
  line-height: 0.98;
  letter-spacing: -3px;
}

.hero h1 .gradient-text,
.page-hero h1 .gradient-text {
  display: inline-block;
  color: var(--brand-600);
  background: linear-gradient(90deg, var(--brand-800), var(--brand-500) 66%, #ff5e53);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead,
.page-lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions,
.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  min-width: 0;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 17px;
  font-weight: 900;
  line-height: 1.15;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover,
.btn:focus {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-800), var(--brand-500));
  color: #fff;
  box-shadow: 0 14px 30px rgba(213, 0, 87, 0.22);
}

.btn-secondary {
  border-color: #efcad6;
  background: #fff;
  color: var(--brand-800);
  box-shadow: var(--shadow-sm);
}

.btn-icon {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 15px;
}

.btn-secondary .btn-icon {
  background: var(--brand-100);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 25px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-proof span::before {
  content: "✓";
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e5f6ef;
  color: var(--success);
  font-size: 11px;
  font-weight: 900;
}

.finder-card {
  position: relative;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.97), rgba(255, 244, 248, 0.96));
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.finder-card::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -50px;
  width: 190px;
  height: 190px;
  border-radius: 48% 52% 57% 43%;
  background: linear-gradient(145deg, rgba(213, 0, 87, 0.2), rgba(255, 94, 83, 0.1));
  transform: rotate(19deg);
}

.finder-head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.finder-head span:first-child {
  display: block;
  color: var(--brand-700);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.finder-head h2 {
  margin: 7px 0 0;
  color: var(--ink);
  font-size: 25px;
  line-height: 1.15;
  letter-spacing: -0.8px;
}

.finder-badge {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(145deg, var(--brand-800), var(--brand-500));
  color: #fff;
  font-size: 22px;
  box-shadow: 0 12px 26px rgba(213, 0, 87, 0.24);
}

.finder-list {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 13px;
}

.finder-phone {
  min-width: 0;
  min-height: 90px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px;
  border: 1px solid #efd4de;
  border-radius: 20px;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(67, 0, 31, 0.07);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.finder-phone:hover,
.finder-phone:focus {
  transform: translateY(-3px);
  box-shadow: 0 15px 32px rgba(67, 0, 31, 0.12);
}

.finder-phone.gas {
  border-color: transparent;
  background: linear-gradient(135deg, var(--brand-800), var(--brand-500));
  color: #fff;
}

.finder-phone-icon {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--brand-100);
  color: var(--brand-700);
  font-size: 21px;
}

.finder-phone.gas .finder-phone-icon {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.finder-phone-copy {
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.finder-phone-copy small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
}

.finder-phone.gas .finder-phone-copy small {
  color: rgba(255, 255, 255, 0.75);
}

.finder-phone-copy strong {
  margin-top: 4px;
  font-size: clamp(19px, 4vw, 23px);
  font-weight: 950;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.finder-arrow {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-50);
  color: var(--brand-700);
  font-size: 21px;
}

.finder-phone.gas .finder-arrow {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.finder-note {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 9px;
  margin-top: 16px;
  padding: 12px 13px;
  border: 1px solid #efd9e2;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.finder-note b {
  color: var(--brand-700);
}

.section {
  padding: 86px 0;
}

.section-white {
  background: #fff;
}

.section-soft {
  background: var(--surface-alt);
}

.section-dark {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #2a101d, #500026 62%, #740033);
  color: #fff;
}

.section-dark::before,
.section-dark::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.section-dark::before {
  width: 360px;
  height: 360px;
  top: -190px;
  right: -80px;
  background: rgba(255, 72, 118, 0.14);
}

.section-dark::after {
  width: 240px;
  height: 240px;
  bottom: -150px;
  left: 5%;
  background: rgba(255, 94, 83, 0.1);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--brand-700);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.75px;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 24px;
  height: 3px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--brand-700), var(--brand-400));
}

.section-dark .kicker {
  color: #ffb6cc;
}

.section-heading h2,
.split-copy h2,
.cta-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 950;
  line-height: 1.05;
  letter-spacing: -1.9px;
}

.section-dark .section-heading h2,
.section-dark .split-copy h2,
.section-dark .cta-copy h2 {
  color: #fff;
}

.section-heading p,
.split-copy > p,
.cta-copy > p {
  margin: 17px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.65;
}

.section-dark .section-heading p,
.section-dark .split-copy > p,
.section-dark .cta-copy > p {
  color: rgba(255, 255, 255, 0.72);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  position: relative;
  min-width: 0;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(67, 0, 31, 0.055);
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  right: -35px;
  bottom: -45px;
  width: 120px;
  height: 120px;
  border: 22px solid rgba(213, 0, 87, 0.055);
  border-radius: 50%;
}

.service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(145deg, var(--brand-100), #fff0f5);
  color: var(--brand-700);
  font-size: 23px;
}

.service-card h3 {
  margin: 20px 0 0;
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.service-card p {
  margin: 12px 0 20px;
  color: var(--muted);
  font-size: 14px;
}

.service-card a {
  position: relative;
  z-index: 2;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-700);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.service-card a::after {
  content: "→";
}

.step-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.step-grid::before {
  content: "";
  position: absolute;
  top: 39px;
  left: 14%;
  right: 14%;
  height: 2px;
  background: linear-gradient(90deg, rgba(213, 0, 87, 0.15), rgba(213, 0, 87, 0.55), rgba(213, 0, 87, 0.15));
}

.step-card {
  position: relative;
  z-index: 2;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
}

.step-number {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 15px;
  background: linear-gradient(145deg, var(--brand-800), var(--brand-500));
  color: #fff;
  font-size: 16px;
  font-weight: 950;
  box-shadow: 0 10px 22px rgba(213, 0, 87, 0.2);
}

.step-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
}

.step-card p {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 58px;
}

.visual-panel {
  position: relative;
  min-height: 440px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.22), transparent 22%),
    linear-gradient(145deg, var(--brand-800), var(--brand-500) 62%, #ff5d5a);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.visual-panel::before {
  content: "";
  position: absolute;
  width: 390px;
  height: 390px;
  left: -150px;
  bottom: -190px;
  border: 70px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.visual-panel::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -80px;
  top: -70px;
  border-radius: 47% 53% 40% 60%;
  background: rgba(255, 255, 255, 0.09);
  transform: rotate(22deg);
}

.visual-card-stack {
  position: absolute;
  inset: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.visual-mini-card {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: 0 16px 32px rgba(67, 0, 31, 0.16);
}

.visual-mini-card:nth-child(2) {
  margin-left: 34px;
  background: rgba(67, 0, 31, 0.88);
  color: #fff;
}

.visual-mini-card:nth-child(3) {
  margin-right: 28px;
}

.visual-mini-icon {
  width: 45px;
  height: 45px;
  flex: 0 0 45px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: var(--brand-100);
  color: var(--brand-700);
  font-size: 19px;
}

.visual-mini-card:nth-child(2) .visual-mini-icon {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.visual-mini-card strong,
.visual-mini-card small {
  display: block;
}

.visual-mini-card strong {
  font-size: 15px;
}

.visual-mini-card small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.visual-mini-card:nth-child(2) small {
  color: rgba(255, 255, 255, 0.7);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 11px;
  color: var(--ink-soft);
}

.check-list li::before {
  content: "✓";
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  display: grid;
  place-items: center;
  margin-top: 1px;
  border-radius: 9px;
  background: var(--brand-100);
  color: var(--brand-700);
  font-size: 12px;
  font-weight: 950;
}

.section-dark .check-list li {
  color: rgba(255, 255, 255, 0.78);
}

.section-dark .check-list li::before {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.info-card {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
}

.info-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
}

.info-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.info-card a {
  display: inline-flex;
  margin-top: 15px;
  color: var(--brand-700);
  font-weight: 900;
  text-decoration: none;
}

.faq-list {
  display: grid;
  gap: 13px;
}

.faq-item {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
}

.faq-item h3 {
  margin: 0;
  font-size: 18px;
}

.faq-item p {
  margin: 10px 0 0;
  color: var(--muted);
}

.cta-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.72fr);
  align-items: center;
  gap: 44px;
  padding: 48px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 87% 18%, rgba(255, 255, 255, 0.12), transparent 26%),
    linear-gradient(145deg, #43001f, #8f003f 65%, #d50057);
  color: #fff;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.cta-panel::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -140px;
  width: 300px;
  height: 300px;
  border: 55px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.cta-copy,
.cta-calls {
  position: relative;
  z-index: 2;
}

.cta-copy h2 {
  color: #fff;
}

.cta-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.cta-calls {
  display: grid;
  gap: 12px;
}

.cta-call {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  text-decoration: none;
}

.cta-call:first-child {
  background: #fff;
  color: var(--brand-800);
}

.cta-call span,
.cta-call strong {
  display: block;
}

.cta-call span {
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.cta-call strong {
  margin-top: 4px;
  font-size: 20px;
  overflow-wrap: anywhere;
}

.cta-call-icon {
  width: 45px;
  height: 45px;
  flex: 0 0 45px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 20px;
}

.cta-call:first-child .cta-call-icon {
  background: var(--brand-100);
}

.page-hero {
  position: relative;
  padding: 70px 0 60px;
  background:
    radial-gradient(circle at 85% 12%, rgba(255, 72, 118, 0.15), transparent 28%),
    linear-gradient(180deg, #fff 0%, #fff7fa 100%);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.65fr);
  align-items: center;
  gap: 50px;
}

.page-hero h1 {
  font-size: clamp(40px, 5.5vw, 64px);
}

.page-side-card {
  padding: 25px;
  border: 1px solid #f0d2dc;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-md);
}

.page-side-card h2 {
  margin: 0;
  font-size: 22px;
}

.page-side-card p {
  margin: 11px 0 17px;
  color: var(--muted);
  font-size: 14px;
}

.page-side-card .finder-phone {
  min-height: 82px;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 0.38fr);
  align-items: start;
  gap: 34px;
}

.article-card,
.sidebar-card,
.legal-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(67, 0, 31, 0.045);
}

.article-card,
.legal-card {
  padding: 32px;
}

.article-card h2,
.legal-card h2 {
  margin: 30px 0 10px;
  color: var(--ink);
  font-size: 27px;
  line-height: 1.2;
  letter-spacing: -0.75px;
}

.article-card h2:first-child,
.legal-card h2:first-child {
  margin-top: 0;
}

.article-card h3,
.legal-card h3 {
  margin: 22px 0 8px;
  font-size: 19px;
}

.article-card p,
.article-card li,
.legal-card p,
.legal-card li {
  color: var(--ink-soft);
}

.article-card ul,
.legal-card ul {
  padding-left: 22px;
}

.sidebar-card {
  position: sticky;
  top: 108px;
  padding: 22px;
}

.sidebar-card h2 {
  margin: 0;
  font-size: 20px;
}

.sidebar-card p {
  margin: 10px 0 16px;
  color: var(--muted);
  font-size: 13px;
}

.sidebar-card .finder-list {
  gap: 10px;
}

.sidebar-card .finder-phone {
  min-height: 78px;
  padding: 12px;
}

.sidebar-card .finder-phone-copy strong {
  font-size: 18px;
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 21px;
  background: #fff;
}

.timeline-index {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(145deg, var(--brand-800), var(--brand-500));
  color: #fff;
  font-weight: 950;
}

.timeline-item h3 {
  margin: 1px 0 0;
  font-size: 20px;
}

.timeline-item p {
  margin: 7px 0 0;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-card {
  padding: 28px;
}

.contact-card.accent {
  border-color: transparent;
  background: linear-gradient(145deg, var(--brand-800), var(--brand-500));
  color: #fff;
}

.contact-card h2 {
  margin: 0;
  font-size: 25px;
}

.contact-card p {
  margin: 11px 0 20px;
  color: var(--muted);
}

.contact-card.accent p {
  color: rgba(255, 255, 255, 0.75);
}

.contact-phone {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  border-radius: 19px;
  background: var(--brand-50);
  color: var(--brand-800);
  text-decoration: none;
}

.contact-card.accent .contact-phone {
  background: #fff;
}

.contact-phone span,
.contact-phone strong {
  display: block;
}

.contact-phone span {
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-phone strong {
  margin-top: 5px;
  font-size: 22px;
  overflow-wrap: anywhere;
}

.notice {
  padding: 16px 18px;
  border-left: 4px solid var(--brand-500);
  border-radius: 13px;
  background: var(--brand-50);
  color: var(--ink-soft);
}

.site-footer {
  position: relative;
  padding: 72px 0 0;
  background: #241019;
  color: rgba(255, 255, 255, 0.74);
  overflow: hidden;
}

.footer-wave {
  position: absolute;
  top: -80px;
  left: -5%;
  width: 110%;
  height: 130px;
  border-radius: 50%;
  background: var(--surface-alt);
}

.footer-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) repeat(2, minmax(150px, 0.5fr)) minmax(250px, 0.72fr);
  gap: 34px;
  padding-top: 38px;
  padding-bottom: 44px;
}

.brand-footer {
  color: #fff;
}

.footer-intro p {
  max-width: 420px;
  margin: 18px 0 0;
  font-size: 13px;
}

.footer-transparency {
  padding: 12px 13px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
}

.footer-column,
.footer-phone-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-column h2,
.footer-phone-card h2 {
  margin: 0 0 4px;
  color: #fff;
  font-size: 14px;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  text-decoration: none;
}

.footer-column a:hover,
.footer-column a:focus {
  color: #fff;
}

.footer-phone-card a {
  width: 100%;
  min-width: 0;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  text-decoration: none;
}

.footer-phone-card span,
.footer-phone-card strong {
  display: block;
}

.footer-phone-card span {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-phone-card strong {
  margin-top: 4px;
  font-size: 16px;
  overflow-wrap: anywhere;
}

.footer-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  padding-bottom: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 11px;
}

.footer-bottom p {
  margin: 0;
}

.mobile-call-bar {
  display: none;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .desktop-nav a {
    padding-inline: 8px;
    font-size: 12px;
  }

  .header-call {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
    gap: 38px;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(140px, 0.5fr));
  }

  .footer-phone-card {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto repeat(2, minmax(0, 1fr));
    align-items: center;
  }
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    padding-top: 58px;
  }

  .hero-grid,
  .page-hero-grid,
  .split-grid,
  .content-grid,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 34px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-lead,
  .hero-actions,
  .hero-proof {
    justify-content: center;
    margin-inline: auto;
  }

  .finder-card {
    width: min(100%, 620px);
    margin-inline: auto;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-grid .service-card:last-child {
    grid-column: 1 / -1;
  }

  .step-grid::before {
    display: none;
  }

  .visual-panel {
    order: 2;
    min-height: 390px;
  }

  .page-side-card {
    width: min(100%, 600px);
  }

  .sidebar-card {
    position: static;
  }

  .cta-panel {
    padding: 38px;
  }

  .cta-calls {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .header-inner {
    min-height: 72px;
  }

  .brand-mark {
    width: 41px;
    height: 41px;
    flex-basis: 41px;
    border-radius: 14px;
  }

  .brand-mark i {
    top: 10px;
    left: 8px;
    width: 25px;
  }

  .brand-mark b {
    top: 20px;
    left: 10px;
    width: 22px;
  }

  .brand-mark em {
    top: 29px;
    left: 13px;
    width: 17px;
  }

  .brand-copy strong {
    font-size: 15px;
  }

  .brand-copy small {
    font-size: 10px;
  }

  .mobile-nav {
    top: 76px;
  }

  .hero,
  .page-hero {
    padding: 44px 0 48px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(38px, 12vw, 54px);
    letter-spacing: -2px;
  }

  .hero-lead,
  .page-lead {
    font-size: 16px;
  }

  .hero-actions,
  .page-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-proof {
    flex-direction: column;
    align-items: flex-start;
    width: min(100%, 340px);
  }

  .finder-card {
    padding: 20px;
    border-radius: 28px;
  }

  .finder-head h2 {
    font-size: 22px;
  }

  .finder-badge {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .finder-phone {
    min-height: 82px;
    padding: 12px;
  }

  .finder-phone-icon {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
    border-radius: 14px;
  }

  .finder-phone-copy strong {
    font-size: 18px;
  }

  .section {
    padding: 64px 0;
  }

  .section-heading h2,
  .split-copy h2,
  .cta-copy h2 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .section-heading p,
  .split-copy > p,
  .cta-copy > p {
    font-size: 15px;
  }

  .service-grid,
  .step-grid,
  .info-grid,
  .contact-grid,
  .cta-calls {
    grid-template-columns: 1fr;
  }

  .service-grid .service-card:last-child {
    grid-column: auto;
  }

  .service-card {
    min-height: auto;
  }

  .visual-panel {
    min-height: 360px;
  }

  .visual-card-stack {
    inset: 28px 18px;
  }

  .visual-mini-card:nth-child(2) {
    margin-left: 18px;
  }

  .visual-mini-card:nth-child(3) {
    margin-right: 12px;
  }

  .cta-panel {
    padding: 28px 20px;
    border-radius: 28px;
  }

  .article-card,
  .legal-card,
  .contact-card {
    padding: 23px;
  }

  .timeline-item {
    grid-template-columns: 44px minmax(0, 1fr);
    padding: 16px;
  }

  .timeline-index {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
  }

  .footer-intro,
  .footer-phone-card {
    grid-column: 1 / -1;
  }

  .footer-phone-card {
    display: grid;
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .site-footer {
    padding-bottom: 88px;
  }

  .mobile-call-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    padding: 8px max(8px, env(safe-area-inset-right)) max(8px, env(safe-area-inset-bottom)) max(8px, env(safe-area-inset-left));
    background: rgba(36, 16, 25, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .mobile-call-bar a {
    min-width: 0;
    padding: 10px 8px;
    border-radius: 13px;
    background: linear-gradient(145deg, var(--brand-800), var(--brand-500));
    color: #fff;
    text-align: center;
    text-decoration: none;
  }

  .mobile-call-bar a:last-child {
    background: #fff;
    color: var(--brand-800);
  }

  .mobile-call-bar span,
  .mobile-call-bar strong {
    display: block;
  }

  .mobile-call-bar span {
    font-size: 9px;
    font-weight: 850;
    text-transform: uppercase;
  }

  .mobile-call-bar strong {
    margin-top: 3px;
    font-size: 12px;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 430px) {
  .brand-copy strong {
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .finder-phone {
    align-items: flex-start;
  }

  .finder-arrow {
    display: none;
  }

  .finder-phone-copy strong {
    white-space: normal;
  }

  .contact-phone {
    align-items: flex-start;
  }

  .contact-phone strong {
    font-size: 18px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-column {
    grid-column: auto;
  }
}

@media (max-width: 340px) {
  .container {
    width: min(calc(100% - 20px), var(--container));
  }

  .brand-copy strong {
    max-width: 115px;
    font-size: 14px;
  }

  .brand-copy small {
    letter-spacing: 0.7px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .finder-card {
    padding: 15px;
  }

  .finder-phone {
    gap: 10px;
    padding: 10px;
  }

  .finder-phone-icon {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .finder-phone-copy small {
    font-size: 10px;
  }

  .finder-phone-copy strong {
    font-size: 16px;
  }

  .mobile-call-bar strong {
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Schutz vor langen deutschen Komposita auf sehr schmalen Displays */
.hero h1,
.page-hero h1,
.section-heading h2,
.split-copy h2,
.cta-copy h2,
.article-card h2,
.legal-card h2,
.service-card h3,
.faq-item h3 {
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
}
