@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

@font-face {
  font-family: "Zalando Sans";
  src: url("assets/fonts/ZalandoSans-VariableFont_wdth,wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Zalando Sans";
  src: url("assets/fonts/ZalandoSans-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Zalando Sans";
  src: url("assets/fonts/ZalandoSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy: #0a1f3d;
  --navy-deep: #001529;
  --lime: #2dbd6e;
  --lime-deep: #22a05a;
  --lime-bright: #84cc16;
  --paper: #f3f5f7;
  --surface: #ffffff;
  --ink: #0a1f3d;
  --muted: #5a6b7d;
  --line: #e2e8ef;
  --soft: #eef3f7;
  --sky: #d7e8f6;
  --sky-deep: #b9d4ea;
  --grass: #5faf63;
  --grass-deep: #3d8a45;
  --whatsapp: #25d366;
  --radius: 22px;
  --radius-sm: 16px;
  --radius-lg: 32px;
  --radius-xl: 40px;
  --radius-pill: 999px;
  --max: 1180px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --shadow: 0 10px 40px rgba(10, 31, 61, 0.08);
  --shadow-sm: 0 4px 16px rgba(10, 31, 61, 0.05);
  --shadow-lg: 0 24px 60px rgba(10, 31, 61, 0.12);
  --lime-soft: rgba(45, 189, 110, 0.16);
  --bg: var(--paper);
  --bg-alt: var(--soft);
  --text: var(--ink);
  --hairline: var(--line);
  --border: var(--line);
  --font: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  --display: "Zalando Sans", "Plus Jakarta Sans", sans-serif;

  /* Legacy aliases */
  --cream: var(--paper);
  --cream-deep: var(--line);
  --ink-soft: var(--muted);
  --lavender: var(--soft);
  --lavender-deep: var(--line);
  --salmon: var(--navy);
  --salmon-deep: var(--navy-deep);
  --sage: var(--lime-soft);
  --sage-deep: var(--lime);
  --butter: var(--lime);
  --border-thin: 1px solid var(--line);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  cursor: default;
  font-family: var(--font);
  color: var(--ink);
  background: #eceff2;
  -webkit-font-smoothing: antialiased;
}
body::before,
body::after { display: none; content: none; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
img { display: block; max-width: 100%; }
mark {
  color: inherit;
  background: linear-gradient(transparent 62%, rgba(45, 189, 110, .55) 0);
  padding: 0 .04em;
}

h1, h2, h3, h4, .brand-word {
  font-family: var(--display);
  letter-spacing: -.03em;
  font-weight: 600;
}

.section-pad { padding: 88px max(20px, calc((100vw - var(--max)) / 2)); }
.section-head { max-width: 680px; margin-bottom: 40px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head h2 {
  font-size: clamp(34px, 4.4vw, 52px);
  line-height: 1.08;
  margin: 0 0 16px;
  color: var(--navy);
  font-weight: 600;
}
.section-head p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(10, 31, 61, .08);
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: none;
  color: var(--navy);
  backdrop-filter: blur(8px);
}
.brand-logo { width: 210px; height: auto; }
.brand-logo.compact { width: 148px; }

/* Soft cards / windows */
.win {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.win-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 600;
  background: var(--soft);
  color: var(--muted);
}
.win-bar.lavender,
.win-bar.salmon,
.win-bar.sage,
.win-bar.butter,
.win-bar.sky { background: var(--soft); }
.win-dots { display: flex; gap: 6px; margin-left: auto; }
.win-dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
}
.win-dots i:nth-child(1) { background: #ff5f57; }
.win-dots i:nth-child(2) { background: #febc2e; }
.win-dots i:nth-child(3) { background: #28c840; }
.win-body { padding: 20px; }

/* Header — floating pill cluster over sky hero */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 72px;
  margin: 0;
  padding: 14px max(18px, calc((100vw - var(--max)) / 2));
  border-bottom: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), backdrop-filter .35s var(--ease);
}
.site-header.is-scrolled,
.site-header.simple {
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid rgba(10, 31, 61, .06);
}
.site-header > a:first-child { display: flex; align-items: center; margin-right: auto; z-index: 2; }
.header-cluster {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  z-index: 2;
}
.desktop-nav {
  position: static;
  transform: none;
  display: flex;
  align-items: center;
  gap: 2px;
  height: 44px;
  padding: 4px 8px 4px 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  background: #fff;
  border: 0;
  border-radius: var(--radius-pill);
  box-shadow: 0 6px 22px rgba(10, 31, 61, 0.1);
}
.desktop-nav > a,
.nav-dropdown > button {
  border: 0;
  background: none;
  padding: 8px 12px;
  color: inherit;
  white-space: nowrap;
  border-radius: var(--radius-pill);
  transition: background .2s var(--ease), color .2s var(--ease);
  font: inherit;
  cursor: pointer;
}
.desktop-nav > a:hover,
.nav-dropdown > button:hover { background: rgba(10, 31, 61, .05); color: var(--navy); }
.nav-dropdown { position: relative; }
.nav-dropdown > button span { margin-left: 3px; color: #8a97a5; font-size: 11px; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  display: grid;
  padding: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  z-index: 50;
}
.dropdown-menu a { padding: 10px 12px; border-radius: var(--radius-sm); }
.dropdown-menu a:hover { background: var(--soft); }
.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  border: 1px solid rgba(10, 31, 61, .1);
  border-radius: var(--radius-pill);
  padding: 3px;
  background: rgba(255,255,255,.75);
  z-index: 2;
}
.lang-switch button {
  border: 0;
  border-radius: var(--radius-pill);
  background: none;
  color: #5e6a73;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}
.lang-switch button.active { background: var(--navy); color: #fff; }
.desktop-nav .lang-switch {
  border: 0;
  background: transparent;
  padding: 0 4px;
  margin: 0 2px;
  gap: 0;
}
.desktop-nav .lang-switch button {
  width: 30px;
  height: 30px;
  padding: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  color: #9aa5b1;
  background: transparent;
}
.desktop-nav .lang-switch button.active {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 2px 8px rgba(10, 31, 61, 0.18);
}
.lang-switch.dark {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.14);
  width: max-content;
}
.lang-switch.dark button { color: #bac8cc; }
.lang-switch.dark button.active { background: #fff; color: var(--navy); }
.header-actions { display: flex; align-items: center; gap: 10px; z-index: 2; margin-left: 0; }
.header-cta {
  display: inline-flex;
  align-items: center;
  height: 44px;
  padding: 0 18px;
  border-radius: var(--radius-pill);
  background: #fff;
  border: 0;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 6px 22px rgba(10, 31, 61, 0.1);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.header-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 26px rgba(10, 31, 61, 0.14); }
.whatsapp {
  height: 44px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--whatsapp);
  color: #fff;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.28);
}
.whatsapp svg {
  width: 18px;
  height: 18px;
  display: block;
  flex-shrink: 0;
}
.round-link {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-pill);
  background: var(--navy);
  color: #fff;
  font-size: 18px;
  line-height: 1;
  box-shadow: 0 6px 22px rgba(10, 31, 61, 0.16);
}
.round-link svg {
  width: 18px;
  height: 18px;
  display: block;
}
.round-link.pale {
  background: #fff;
  color: var(--navy);
  border: 1px solid rgba(10, 31, 61, .12);
  box-shadow: 0 6px 22px rgba(10, 31, 61, 0.1);
}
.menu-toggle {
  display: none;
  border: 0;
  background: var(--navy);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-pill);
  padding: 10px;
  z-index: 2;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  margin: 4px 0;
}
.mobile-nav {
  position: absolute;
  top: 72px;
  left: 12px;
  right: 12px;
  display: grid;
  gap: 2px;
  padding: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.mobile-nav > a { padding: 12px 14px; border-radius: var(--radius-sm); }
.mobile-nav > a:hover { background: var(--soft); }
.open-question {
  display: grid;
  text-align: right;
  font-size: 12px;
  margin-left: auto;
}
.open-question span { color: #768382; }
.open-question strong { color: var(--navy); }

/* Hero — airy sky + grass depth like reference */
.hero-shell {
  position: relative;
  overflow: clip;
  margin: 10px 10px 0;
  border-radius: var(--radius-xl);
  min-height: min(920px, 96vh);
  background:
    linear-gradient(180deg, #cfe5f7 0%, #e4f0f9 42%, #f3f7f4 78%, #eef5ef 100%);
  box-shadow: var(--shadow-sm);
}
.hero-sky,
.hero-grass {
  position: absolute;
  pointer-events: none;
  inset: 0;
}
.hero-sky {
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 45% at 78% 18%, rgba(255,255,255,.85), transparent 60%),
    radial-gradient(ellipse 55% 40% at 18% 28%, rgba(170,205,235,.55), transparent 58%),
    radial-gradient(ellipse 90% 50% at 50% -10%, rgba(255,255,255,.5), transparent 55%);
  animation: skyDrift 18s ease-in-out infinite alternate;
}
.hero-grass {
  z-index: 4;
  inset: auto -12% -12% -12%;
  height: 42%;
  background:
    radial-gradient(ellipse 70% 55% at 15% 95%, #3f8f48 0%, transparent 58%),
    radial-gradient(ellipse 80% 60% at 88% 100%, #2f7340 0%, transparent 55%),
    radial-gradient(ellipse 130% 95% at 50% 125%, #6fbf6f 0%, #4fa356 38%, #347a40 68%, transparent 78%);
  border-radius: 50% 50% 0 0 / 34% 34% 0 0;
  filter: saturate(1.08);
  transform: translateY(0);
  will-change: transform;
  mask-image: linear-gradient(180deg, transparent 0%, #000 28%, #000 100%);
}
.hero-grass::before {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  top: 10%;
  height: 70%;
  background:
    radial-gradient(ellipse 42% 70% at 28% 78%, rgba(98, 176, 102, .95), transparent 72%),
    radial-gradient(ellipse 48% 80% at 72% 88%, rgba(72, 148, 82, .9), transparent 72%),
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(55, 120, 62, .85), transparent 70%);
  filter: blur(10px);
  opacity: .95;
}
.hero-grass::after {
  content: "";
  position: absolute;
  inset: 35% 10% 0;
  background:
    repeating-linear-gradient(105deg, transparent 0 10px, rgba(255,255,255,.04) 10px 11px),
    repeating-linear-gradient(75deg, transparent 0 14px, rgba(20, 60, 30, .05) 14px 15px);
  opacity: .55;
  pointer-events: none;
}
.hero-section {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 28px;
  align-items: start;
  min-height: 0;
  padding: 28px max(20px, calc((100vw - var(--max)) / 2)) 180px;
  text-align: center;
}
.hero-glow { display: none; }
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 720px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: rise .9s var(--ease) both;
}
.hero-brand {
  display: block;
  margin-bottom: 22px;
}
.hero-brand .brand-logo { width: min(300px, 72vw); margin-inline: auto; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(10, 31, 61, .08);
  color: var(--navy);
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .01em;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}
.hero-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 3px rgba(45, 189, 110, .22);
}
.rating-chip { display: none; }
.hero-content h1 {
  font-size: clamp(42px, 6.2vw, 72px);
  line-height: 1.02;
  color: var(--navy);
  margin: 0;
  font-weight: 600;
  max-width: 14ch;
}
.hero-content > p {
  color: var(--muted);
  margin: 18px 0 28px;
  font-size: 17px;
  line-height: 1.55;
  max-width: 42ch;
}
.hero-content .search-card {
  width: min(100%, 520px);
  text-align: left;
  border-radius: 28px;
  border: 1px solid rgba(10, 31, 61, .08);
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-lg);
}
.hero-side.left { display: none; }
.hero-side.right {
  position: relative;
  z-index: 2;
  width: min(100%, 520px);
  min-height: 0;
  display: flex;
  align-items: stretch;
  justify-content: center;
  margin-top: 4px;
  margin-bottom: -40px;
  animation: floatIn 1.1s var(--ease) .15s both;
}
.hero-visual {
  position: relative;
  width: 100%;
  min-height: 0;
  border-radius: 28px;
  overflow: visible;
  background: transparent;
  color: var(--ink);
  padding: 0;
  display: grid;
  align-content: start;
  box-shadow: none;
}
.hero-visual::before { display: none; }
.hero-visual > * { position: relative; z-index: 1; }
.hero-visual .review-mock {
  background: rgba(255,255,255,.96);
  color: var(--ink);
  border: 0;
  border-radius: 22px;
  box-shadow: var(--shadow);
  transform: none;
  width: auto;
  padding: 18px;
}
.hero-visual .removed-chip {
  position: static;
  display: inline-flex;
  margin-bottom: 12px;
  background: rgba(45, 189, 110, .2);
  color: var(--navy);
  border-radius: var(--radius-pill);
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 700;
}
.hero-visual .tracking-wrap {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  gap: 12px;
  padding: 18px;
  border-radius: 28px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(10, 31, 61, .08);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.hero-visual .tracking-id,
.hero-visual .status-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: none;
  color: var(--ink);
}
.hero-visual .tracking-id small,
.hero-visual .status-card > small { color: var(--muted); }
.hero-visual .tracking-id b { color: var(--navy); }
.hero-visual .tracking-id button {
  background: rgba(45, 189, 110, .16);
  color: var(--lime-deep);
}
.hero-visual .live-chips span {
  background: rgba(45, 189, 110, .12);
  border-color: rgba(45, 189, 110, .28);
  color: var(--lime-deep);
  border-radius: var(--radius-pill);
}
.hero-visual .status-card li { color: var(--muted); }
.hero-visual .status-card li.done,
.hero-visual .status-card li.active { color: var(--navy); }
.hero-visual .status-card li span { color: var(--muted); }
.hero-visual .status-card li:before { border-color: var(--line); background: #fff; }
.hero-visual .status-card li:after { background: var(--line); }
.hero-visual .status-card li.done:before { background: var(--lime); color: var(--navy); }

/* Hide leftover brutalist hero chrome */
.hero-stage .sparkle,
.hero-window-main,
.hero-chat { display: none; }
.hero-stage {
  position: relative;
  width: 100%;
  max-width: 420px;
  min-height: 420px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-widget,
.hero-address { display: none; }

.hero-visual .status-card li.active:before {
  border: 3px solid var(--lime);
  background: var(--navy);
  box-shadow: none;
}

@keyframes skyDrift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-1.5%, 1%, 0) scale(1.03); }
}
@keyframes floatIn {
  from { opacity: 0; transform: translateY(28px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.search-card {
  position: relative;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.search-label {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  color: #6b7e79;
}
.search-label span { height: 1px; background: var(--line); }
.search-line {
  display: flex;
  align-items: center;
  height: 48px;
  border: 1px solid var(--line);
  background: #f8fafc;
  border-radius: 18px;
  overflow: hidden;
}
.platform-button {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 7px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  padding: 0 14px;
  font-weight: 700;
  color: #3b4d50;
  font-size: 13px;
  white-space: nowrap;
}
.platform-logo {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  font-style: normal;
  font-size: 13px;
  font-weight: 800;
  background: #fff;
  color: #4285f4;
  border: 1px solid #e5e7eb;
}
.platform-logo.google {
  color: transparent;
  font-size: 0;
  line-height: 0;
}
.platform-logo.google svg {
  display: block;
  width: 18px;
  height: 18px;
}
.platform-logo.trustpilot { color: #00b67a; }
.platform-logo.kununu { background: #99e000; color: #112b1d; border: 0; }
.platform-logo.jameda { background: #00aeef; color: #fff; border: 0; }
.search-line input {
  height: 100%;
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  padding: 0 14px;
  color: var(--navy);
  background: transparent;
}
.search-line input::placeholder { color: #a3afad; }
.primary-button {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--navy);
  color: #fff;
  min-height: 52px;
  padding: 12px 28px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -.01em;
  box-shadow: 0 10px 28px rgba(10, 31, 61, .18);
  transition: background .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.primary-button:hover { background: var(--navy-deep); transform: translateY(-2px); box-shadow: 0 14px 34px rgba(10, 31, 61, .22); }
.primary-button:disabled { opacity: .45; cursor: not-allowed; transform: none; box-shadow: none; }
.primary-button i {
  position: absolute;
  right: 7px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--navy);
  font-style: normal;
  font-size: 18px;
}
.search-card > .primary-button { margin-top: 10px; }
.search-card > p { font-size: 12px; color: var(--muted); margin: 10px 0 0; }
.search-card > small {
  display: block;
  font-size: 11px;
  line-height: 1.5;
  color: #74827f;
  margin-top: 8px;
}
.search-card small a { text-decoration: underline; }

.tracking-wrap { width: 270px; display: grid; gap: 11px; }
.tracking-id,
.status-card,
.review-mock {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.tracking-id {
  position: relative;
  display: grid;
  gap: 4px;
  padding: 16px;
}
.tracking-id small,
.status-card > small {
  font-size: 10px;
  letter-spacing: .12em;
  color: #8a9997;
  font-weight: 700;
}
.tracking-id b { font-size: 13px; color: var(--navy); }
.tracking-id button {
  position: absolute;
  right: 12px;
  top: 16px;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 6px;
  background: var(--soft);
  color: var(--navy);
}
.live-chips { display: flex; gap: 7px; }
.live-chips span {
  background: #e8fff4;
  border: 1px solid #a7ebd0;
  color: #15803d;
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 10px;
  font-weight: 700;
}
.status-card { padding: 16px; }
.status-card ul { list-style: none; padding: 10px 0 0; margin: 0; }
.status-card li {
  position: relative;
  display: grid;
  gap: 1px;
  padding: 0 0 14px 27px;
  color: #a0aaa8;
}
.status-card li:before {
  content: "";
  position: absolute;
  left: 6px;
  top: 0;
  width: 11px;
  height: 11px;
  border: 2px solid #c9d4d1;
  background: #fff;
  border-radius: 50%;
  z-index: 1;
}
.status-card li:after {
  content: "";
  position: absolute;
  left: 12px;
  top: 13px;
  width: 1px;
  height: 29px;
  background: #d8e1df;
}
.status-card li:last-child:after { display: none; }
.status-card li.done { color: var(--navy); }
.status-card li.done:before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 16px;
  height: 16px;
  left: 4px;
  border: 0;
  background: var(--navy);
  color: #fff;
  font-size: 9px;
}
.status-card li.active { color: var(--navy); }
.status-card li.active:before {
  width: 16px;
  height: 16px;
  left: 4px;
  border: 3px solid var(--lime);
  background: var(--navy);
  animation: ld24-pulse-ring 1.6s ease-in-out infinite;
}
.status-card li b { font-size: 12px; }
.status-card li span { font-size: 10px; color: #8b9997; }
@keyframes ld24-pulse-ring {
  0%, 100% { box-shadow: 0 0 0 0 rgba(45, 189, 110, 0.5); }
  55% { box-shadow: 0 0 0 7px rgba(45, 189, 110, 0); }
}
.review-mock { position: relative; width: 275px; padding: 20px; }
.removed-chip {
  position: absolute;
  top: -14px;
  left: 16px;
  background: #dcfce7;
  color: #166534;
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 10px;
  font-weight: 700;
}
.review-head { display: flex; align-items: center; gap: 10px; }
.review-head > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--soft);
  color: var(--navy);
  font-weight: 700;
}
.review-head > div { display: grid; gap: 4px; flex: 1; }
.review-head b { font-size: 13px; color: var(--navy); }
.review-head small { font-size: 11px; color: #9aa5a3; }
.review-head em { font-style: normal; color: #d04545; }
.review-mock > i {
  display: block;
  height: 7px;
  margin-top: 9px;
  border-radius: 99px;
  background: #eef2f1;
}
.review-mock > i:nth-of-type(2) { width: 75%; }
.review-mock > i:nth-of-type(3) { width: 45%; }
.review-foot {
  display: flex;
  justify-content: space-between;
  margin-top: 18px;
  font-size: 10px;
  color: #9aa5a3;
}
.review-foot b { color: #d04545; }

.feature-rail {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin: -70px max(16px, calc((100vw - var(--max)) / 2)) 0;
  padding: 10px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(10, 31, 61, .08);
  border-radius: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.feature-rail > div {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 14px;
  border-right: 0;
  border-radius: 20px;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.feature-rail > div:hover { background: rgba(255,255,255,.9); transform: translateY(-2px); }
.feature-rail > div:last-child { border-right: 0; }
.rail-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: var(--navy);
  color: var(--lime);
  font-size: 12px;
  font-weight: 800;
  font-family: var(--font);
}
.feature-rail p { display: grid; margin: 0; text-align: left; }
.feature-rail strong {
  font-size: 13px;
  color: var(--navy);
  font-family: var(--font);
  font-weight: 700;
}
.feature-rail small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
  margin-top: 2px;
}
.manager-section {
  background: transparent;
  margin-top: 12px;
}
.manager-layout {
  display: grid;
  grid-template-columns: minmax(260px, .9fr) minmax(0, 1.2fr);
  gap: 18px;
  align-items: stretch;
}
.manager-intro {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(45, 189, 110, .22), transparent 55%),
    linear-gradient(165deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.manager-intro::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -50px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(45, 189, 110, .12);
  pointer-events: none;
}
.manager-intro .eyebrow {
  align-self: flex-start;
  margin: 0;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, .1);
  color: var(--lime);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.manager-intro h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(32px, 3.6vw, 46px);
  line-height: 1.05;
  letter-spacing: -.03em;
  color: #fff;
}
.manager-intro h2 mark {
  color: var(--lime);
  background: none;
}
.manager-intro > p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, .72);
  line-height: 1.65;
  font-size: 15px;
  max-width: 32ch;
}
.manager-perks {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.manager-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, .88);
}
.manager-perks li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(45, 189, 110, .18);
  flex-shrink: 0;
}
.manager-intro-link {
  position: relative;
  z-index: 1;
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: var(--radius-pill);
  background: var(--lime);
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .25s var(--ease), background .25s var(--ease);
}
.manager-intro-link:hover {
  background: #b6f05a;
  transform: translateY(-2px);
}
.manager-path {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}
.manager-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  flex: 1;
}
.manager-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.manager-steps li:hover {
  border-color: rgba(45, 189, 110, .45);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.manager-steps b {
  font-family: var(--display);
  font-size: 28px;
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--lime);
  font-weight: 800;
}
.manager-steps strong {
  display: block;
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -.01em;
}
.manager-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}
.manager-launch {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.manager-launch-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  background: var(--soft);
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}
.manager-launch .mini-input {
  margin: 0;
}
.manager-launch > button {
  width: auto;
  min-width: 180px;
  white-space: nowrap;
}
.mini-search {
  display: grid;
  gap: 10px;
}
.mini-input {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 13px;
  color: #a0aaa8;
  font-size: 13px;
  background: #fff;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.mini-input:focus-within {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(10, 31, 61, .08);
  color: var(--ink);
}
.mini-input input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 13px;
}
.mini-input input::placeholder {
  color: #a0aaa8;
}
.mini-search > button {
  width: 100%;
  margin-top: 0;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--navy);
  color: #fff;
  padding: 13px 18px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.mini-search > button:hover {
  background: var(--navy-deep);
  transform: translateY(-1px);
}

/* Business / bento */
.business-section { background: transparent; text-align: center; }
.business-section > .section-head { max-width: 720px; }
.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  text-align: left;
}
.bento-grid article {
  padding: 28px;
  background: #fff;
  border: 1px solid rgba(10, 31, 61, .06);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.bento-grid article:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.bento-grid article > small {
  display: block;
  color: #99a5a3;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin: 20px 0 8px;
}
.bento-grid h3 {
  font-size: 22px;
  color: var(--navy);
  margin: 0 0 10px;
}
.bento-grid p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  font-size: 14px;
}
.bento-full {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.bento-full .tracking-wrap {
  transform: scale(.9);
  transform-origin: right center;
}
.dach-visual {
  height: 170px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #e8eef4, #d9f5e7);
  border-radius: 12px;
}
.dach-visual > span {
  position: absolute;
  left: 14px;
  top: 14px;
  font-size: 11px;
  font-weight: 700;
}
.dach-visual b {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--navy);
  font-family: Sora, sans-serif;
  opacity: 0;
  transform: translateY(12px) scale(0.92);
}
.dach-visual.is-inview b {
  animation: ld24-pop-in 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.dach-visual.is-inview b:nth-of-type(1) { animation-delay: 0.06s; }
.dach-visual.is-inview b:nth-of-type(2) { animation-delay: 0.18s; }
.dach-visual.is-inview b:nth-of-type(3) { animation-delay: 0.3s; }
.dach-visual em {
  position: absolute;
  right: 12px;
  bottom: 12px;
  background: var(--navy);
  color: var(--lime);
  padding: 6px 9px;
  border-radius: 6px;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  opacity: 0;
  transform: scale(0.82);
}
.dach-visual.is-inview em {
  animation: ld24-badge-pop 0.48s cubic-bezier(0.34, 1.4, 0.64, 1) 0.48s forwards;
}
.rating-visual,
.success-visual,
.locations-visual {
  min-height: 170px;
  padding: 18px;
  background: var(--paper);
  border-radius: 12px;
}
.rating-visual > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  align-items: center;
}
.rating-visual div span {
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  font-weight: 700;
}
.rating-visual div small { color: #8b9795; }
.rating-visual > strong {
  display: block;
  font-size: 32px;
  color: var(--navy);
  margin: 28px 0 8px;
  font-family: Sora, sans-serif;
  opacity: 0;
  transform: translateY(8px);
}
.rating-visual.is-inview > strong {
  animation: ld24-fade-up 0.55s ease forwards;
}
.rating-visual > em {
  font-style: normal;
  background: #fff;
  border: 1px solid var(--line);
  color: #159c6a;
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 700;
  display: inline-block;
  opacity: 0;
  transform: translateX(-10px);
}
.rating-visual.is-inview > em {
  animation: ld24-slide-in 0.5s ease 0.35s forwards;
}
.success-visual { display: grid; align-content: center; text-align: center; }
.success-visual > b {
  font-size: 56px;
  color: var(--navy);
  font-family: Sora, sans-serif;
}
.success-visual > div {
  height: 8px;
  background: #e3ebe8;
  border-radius: 99px;
  overflow: hidden;
  margin: 14px 0;
}
.success-visual i {
  display: block;
  height: 100%;
  width: 0;
  background: var(--lime);
  transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.success-visual.is-inview i { width: var(--fill, 99%); }
.success-visual small { color: #778784; }
.locations-visual { display: grid; gap: 7px; }
.locations-visual > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2px;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  opacity: 0;
  transform: translateY(10px);
}
.locations-visual.is-inview > div {
  animation: ld24-fade-up 0.45s ease forwards;
}
.locations-visual.is-inview > div:nth-child(1) { animation-delay: 0.06s; }
.locations-visual.is-inview > div:nth-child(2) { animation-delay: 0.18s; }
.locations-visual.is-inview > div:nth-child(3) { animation-delay: 0.3s; }
.locations-visual div b { font-size: 13px; }
.locations-visual div span {
  grid-row: 2;
  font-size: 11px;
  color: #83908e;
}
.locations-visual strong {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  color: var(--navy);
}
.locations-visual em {
  display: flex;
  justify-content: space-between;
  padding: 6px 10px;
  font-size: 11px;
  font-style: normal;
  opacity: 0;
  transform: translateY(8px);
}
.locations-visual.is-inview > em {
  animation: ld24-fade-up 0.45s ease 0.5s forwards;
}
@keyframes ld24-pop-in {
  to { opacity: 1; transform: none; }
}
@keyframes ld24-badge-pop {
  to { opacity: 1; transform: scale(1); }
}
@keyframes ld24-fade-up {
  to { opacity: 1; transform: none; }
}
@keyframes ld24-slide-in {
  to { opacity: 1; transform: none; }
}
.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
  padding: 24px 28px;
  background: var(--navy);
  color: #fff;
  border-radius: 16px;
  text-align: left;
}
.cta-band div { display: grid; gap: 5px; }
.cta-band b { font-size: 20px; font-family: Sora, sans-serif; }
.cta-band span { font-size: 13px; color: #b9c8d0; }
.cta-band a {
  background: var(--lime);
  color: var(--navy);
  font-weight: 800;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
}

/* Pricing */
.pricing-section { background: #fff; }
.country-switch {
  display: flex;
  width: max-content;
  margin: 24px auto 0;
  border: 1px solid var(--line);
  padding: 3px;
  border-radius: var(--radius-sm);
}
.country-switch button {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 0;
  background: none;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
  color: #73817f;
}
.country-switch button .flag {
  font-size: 13px;
  line-height: 1;
}
.country-switch button.active { background: var(--navy); color: #fff; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}
.price-card.featured {
  border-color: var(--navy);
  background: var(--paper);
}
.price-card.dark { background: var(--navy); color: #fff; }
.popular {
  position: absolute;
  right: 18px;
  top: -11px;
  background: var(--lime);
  color: var(--navy);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 10px;
  font-weight: 800;
}
.price-card > small { color: #788684; font-size: 12px; font-weight: 700; }
.price-card.dark > small { color: #aebfc8; }
.price { display: flex; align-items: center; margin: 18px 0; }
.price > b {
  font-size: 56px;
  line-height: 1;
  color: var(--navy);
  font-family: Sora, sans-serif;
}
.price-card.dark .price > b { color: #fff; }
.price > span { font-size: 22px; font-weight: 800; margin-left: 8px; }
.price > span small {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: #81908e;
}
.price-card h3 { font-size: 30px; margin: 18px 0 6px; }
.price-card > p { color: #b7c7cf; }
.price-card ul {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 8px 0 24px;
  padding: 0;
}
.price-card li { font-size: 13px; }
.price-card li:before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  border-radius: 4px;
  background: var(--soft);
  color: var(--navy);
  font-size: 10px;
  font-weight: 900;
}
.price-card.dark li:before {
  background: rgba(45, 189, 110, .16);
  color: var(--lime);
}
.price-card > a {
  margin-top: auto;
  text-align: center;
  border: 1px solid var(--navy);
  border-radius: var(--radius-sm);
  padding: 12px;
  font-weight: 800;
  font-size: 13px;
}
.price-card.featured > a { background: var(--navy); color: #fff; }
.price-card.dark > a {
  background: var(--lime);
  color: var(--navy);
  border-color: var(--lime);
}

/* Process */
.process-section { background: var(--paper); }
.process-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}
.process-steps > div {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--navy);
}
.process-steps span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  background: var(--navy);
  color: #fff;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
}
.process-steps b { font-size: 13px; }
.process-steps i { margin-left: 12px; color: #9eaaa7; font-style: normal; }
.process-search {
  width: min(650px, 100%);
  margin: auto;
  text-align: center;
}
.process-search .search-card {
  background: #fff;
  padding: 14px;
}
.process-search > p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

/* Testimonials */
.testimonials { text-align: center; background: #fff; overflow: hidden; }
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: left;
}
.review-grid article {
  display: flex;
  flex-direction: column;
  min-height: 280px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.review-rating { color: #c9a116; font-size: 14px; }
.review-rating b { float: right; color: var(--navy); }
.review-grid blockquote {
  margin: 22px 0;
  color: #233c3a;
  font-size: 15px;
  line-height: 1.65;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: auto;
}
.review-author > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}
.review-author p { display: grid; margin: 0; }
.review-author b { font-size: 13px; }
.review-author small { font-size: 11px; color: #8a9795; margin-top: 3px; }
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 24px 0;
}
.carousel-controls > button {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius-sm);
  color: var(--navy);
}
.carousel-controls > span { display: flex; gap: 5px; }
.carousel-controls i {
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: #d4ddda;
}
.carousel-controls i.active { width: 18px; background: var(--navy); }
.trust-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 800px;
  margin: 48px auto 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-stats > div {
  display: grid;
  gap: 4px;
  padding: 24px;
  border-right: 1px solid var(--line);
}
.trust-stats > div:last-child { border: 0; }
.trust-stats b {
  font-size: 30px;
  color: var(--navy);
  font-family: Sora, sans-serif;
}
.trust-stats span { font-size: 12px; color: #7f8d8a; }

/* Choice */
.choice-section { background: var(--paper); }
.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.choice-grid article {
  display: flex;
  flex-direction: column;
  padding: 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
}
.choice-main { border-top: 3px solid var(--lime); }
.choice-main > span {
  align-self: flex-start;
  background: var(--navy);
  color: var(--lime);
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 12px;
}
.choice-grid h3 {
  font-size: 32px;
  color: var(--navy);
  margin: 20px 0 10px;
}
.choice-grid p { color: var(--muted); line-height: 1.65; }
.choice-grid article > b { font-size: 12px; color: var(--navy); margin-top: 12px; }
.choice-grid ul {
  display: grid;
  gap: 10px;
  padding-left: 18px;
  color: #536462;
  font-size: 13px;
  line-height: 1.55;
}
.choice-grid article > a {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  padding: 12px 20px;
  background: var(--navy);
  color: #fff;
  text-align: center;
  text-decoration: none;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -.01em;
  box-shadow: 0 10px 28px rgba(10, 31, 61, .16);
  transition: background .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.choice-grid article > a:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(10, 31, 61, .22);
}
.choice-premium > a {
  margin-top: 0;
  background: var(--lime);
  color: var(--navy);
  box-shadow: 0 10px 28px rgba(163, 230, 53, .28);
}
.choice-premium > a:hover {
  background: #b6f05a;
  box-shadow: 0 14px 34px rgba(163, 230, 53, .38);
}
.choice-grid article > small {
  font-size: 11px;
  color: #8c9896;
  line-height: 1.5;
  margin-top: auto;
  margin-bottom: 6px;
}

/* FAQ */
.faq-section { background: #fff; }
.faq-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}
.faq-tabs button {
  border: 1px solid var(--line);
  background: #fff;
  color: #6e7d7a;
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 800;
}
.faq-tabs button.active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.faq-list {
  width: min(840px, 100%);
  margin: auto;
  border-top: 1px solid var(--line);
}
.faq-list article { border-bottom: 1px solid var(--line); }
.faq-list article > button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  border: 0;
  background: #fff;
  padding: 20px 4px;
  color: var(--navy);
  font-weight: 700;
  font-family: Sora, sans-serif;
}
.faq-list article > button b {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--soft);
  font-size: 18px;
  transition: transform .2s var(--ease);
}
.faq-list article.open > button b {
  transform: rotate(45deg);
  background: var(--lime);
}
.faq-list article > p {
  color: var(--muted);
  line-height: 1.7;
  margin: -4px 55px 20px 4px;
  font-size: 14px;
}
.faq-list article:not(.open) > p {
  display: none;
}

/* Contact */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  background: var(--navy-deep);
  color: #fff;
}
.contact-copy {
  color: #fff;
  min-width: 0;
}
.contact-copy h2 {
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.05;
  margin: 0 0 20px;
  color: #fff;
}
.contact-copy mark { color: #fff; }
.contact-copy > p { color: #b9c8d0; line-height: 1.7; }
.contact-copy a { color: #fff; }
.contact-copy ul {
  display: grid;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 32px 0;
}
.contact-copy li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 14px;
}
.contact-copy li > span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: rgba(255,255,255,.08);
}
.contact-form,
.lead-form {
  display: grid;
  gap: 12px;
  padding: 24px;
  background: #fff;
  border-radius: 16px;
  color: var(--ink);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.contact-form label,
.checkout-form label {
  display: grid;
  gap: 7px;
  font-size: 11px;
  font-weight: 800;
  color: #425653;
}
.contact-form input,
.contact-form textarea,
.lead-form input,
.lead-form textarea,
.checkout-form input {
  width: 100%;
  border: 1px solid var(--line);
  background: #f8fafc;
  border-radius: var(--radius-sm);
  padding: 12px;
  outline: 0;
}
.contact-form input:focus,
.contact-form textarea:focus,
.lead-form input:focus,
.lead-form textarea:focus,
.checkout-form input:focus { border-color: var(--navy); }
.contact-form textarea,
.lead-form textarea {
  min-height: 105px;
  resize: vertical;
}
.success-message {
  min-height: 300px;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
}
.success-message > b {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  background: #dcfce7;
  color: #16a366;
  border-radius: 12px;
  font-size: 26px;
}
.success-message h3 {
  font-size: 22px;
  color: var(--navy);
  margin: 16px 0 5px;
}
.success-message p { color: #687775; }
.success-message button {
  border: 0;
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 10px 16px;
}

/* Footer */
.awards-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 22px max(20px, calc((100vw - var(--max)) / 2));
  background: #e8eef4;
  border-top: 1px solid var(--line);
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
}
.awards-row > img {
  max-height: 50px;
  width: auto;
  /* White bg baked into gogreen/niedersachsen assets — blend into #eaf1ed */
  mix-blend-mode: multiply;
}
.award { display: flex; align-items: center; gap: 8px; }
.award img { width: 48px; height: 48px; object-fit: contain; }
.award b { max-width: 140px; }
.footer-shell { background: var(--navy-deep); color: #fff; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.25fr;
  gap: 48px;
  padding: 64px max(20px, calc((100vw - var(--max)) / 2)) 48px;
}
.footer-brand .brand-logo {
  filter: brightness(0) invert(1);
  width: 190px;
}
.footer-grid h4 {
  font-size: 13px;
  margin: 5px 0 18px;
  color: #fff;
  font-family: Sora, sans-serif;
}
.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.footer-grid p,
.footer-grid a {
  font-size: 13px;
  line-height: 1.65;
  color: #aabac2;
}
.footer-grid a:hover { color: var(--lime); }
.copyright {
  padding: 16px max(20px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 11px;
  color: #718794;
}

/* Inner pages */
.inner-shell { background: transparent; }
.inner-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  min-height: 580px;
  padding-top: 72px;
  padding-bottom: 88px;
}
.inner-hero-copy > .eyebrow { margin: 0 0 14px; }
.inner-hero h1 {
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1.02;
  color: var(--navy);
  margin: 0;
}
.inner-hero-copy > p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 560px;
  margin: 20px 0 14px;
}
.inner-hero-copy > small { color: #5a6e6a; font-weight: 700; }
.inner-visual { display: flex; justify-content: center; }
.tracker-dashboard,
.account-visual {
  width: min(440px, 100%);
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
}
.dash-top,
.account-top {
  display: flex;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  color: #667673;
}
.dash-top span { color: #11a66e; }
.dash-stat { display: grid; padding: 16px 0; }
.dash-stat small { color: #8b9896; }
.dash-stat b {
  font-size: 40px;
  color: var(--navy);
  font-family: Sora, sans-serif;
}
.dash-stat span { font-size: 12px; color: #778784; }
.dash-review {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3px;
  padding: 10px 12px;
  margin-top: 7px;
  background: var(--paper);
  border-radius: 8px;
}
.dash-review b { font-size: 12px; }
.dash-review span { color: #c9a116; font-size: 12px; }
.dash-review small {
  grid-column: 1 / -1;
  color: #7e8b89;
  font-size: 11px;
}
.negative-alert {
  display: grid;
  gap: 4px;
  padding: 12px;
  margin-top: 12px;
  border: 1px solid #fecaca;
  background: #fff7f7;
  border-radius: 8px;
  color: #c13d3d;
  font-size: 12px;
}
.negative-alert small { font-size: 10px; }
.account-name {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 0;
}
.account-name > span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: #f1f4f8;
  color: #4285f4;
  font-size: 22px;
  font-weight: 800;
}
.account-name p { display: grid; margin: 0; flex: 1; }
.account-name small { color: #879390; }
.account-name em {
  font-size: 10px;
  background: #fff7d8;
  color: #947500;
  border-radius: 6px;
  padding: 6px;
  font-style: normal;
  font-weight: 700;
}
.account-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-top: 1px solid var(--line);
  color: #83908e;
}
.account-step span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid #ccd6d3;
  border-radius: 6px;
  font-size: 10px;
}
.account-step.done { color: var(--navy); }
.account-step.done span {
  background: #dcfce7;
  border-color: #b8f0d3;
  color: #159768;
}
.guarantee {
  margin-top: 12px;
  padding: 11px;
  text-align: center;
  background: var(--lime);
  border-radius: 8px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
}
.detail-section { background: #fff; }
.detail-section .section-head { max-width: 780px; }
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.benefit-grid.six { grid-template-columns: repeat(3, 1fr); }
.benefit-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
}
.benefit-grid article > span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--soft);
  color: var(--navy);
  font-size: 18px;
}
.benefit-grid h3 { color: var(--navy); margin: 18px 0 8px; }
.benefit-grid p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  font-size: 13px;
}
.primary-link {
  display: inline-flex;
  margin-top: 28px;
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 13px 18px;
  font-weight: 800;
  font-size: 13px;
}
.process-cards { background: var(--paper); }
.process-cards > .section-head { margin-bottom: 36px; }
.process-cards > div:last-child {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.process-cards article {
  position: relative;
  padding: 24px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
}
.process-cards article > span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: var(--navy);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}
.process-cards h3 { color: var(--navy); margin: 16px 0 8px; }
.process-cards p {
  color: #6c7a78;
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}
.simple-plans { text-align: center; background: #fff; }
.simple-plans > .section-head { margin-bottom: 36px; }
.simple-plans > div:not(.section-head) {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  text-align: left;
}
.simple-plans article {
  position: relative;
  min-height: 330px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 14px;
}
.simple-plans article.featured {
  border-color: var(--navy);
  background: var(--paper);
}
.simple-plans article > span {
  position: absolute;
  top: -11px;
  right: 16px;
  background: var(--lime);
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 800;
}
.simple-plans article > small { color: #7e8d8a; }
.simple-plans h3 {
  font-size: 24px;
  color: var(--navy);
  margin: 12px 0 14px;
}
.simple-plans article > b { font-size: 18px; color: var(--navy); }
.simple-plans ul {
  display: grid;
  gap: 11px;
  padding: 0;
  list-style: none;
  margin-top: 24px;
  font-size: 13px;
}
.simple-plans li:before {
  content: "✓";
  margin-right: 8px;
  color: #15a06b;
  font-weight: 900;
}
.simple-plans > a {
  display: inline-flex;
  margin-top: 28px;
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 13px 18px;
  font-size: 13px;
  font-weight: 800;
}
.appointment {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  background: var(--paper);
}
.appointment h2 {
  font-size: clamp(32px, 4vw, 42px);
  line-height: 1.08;
  color: var(--navy);
  margin: 0 0 18px;
}
.appointment > div > p { color: var(--muted); line-height: 1.7; }
.appointment ul {
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
  color: var(--navy);
  font-size: 13px;
}
.appointment > div:last-child > h3 {
  font-size: 20px;
  color: var(--navy);
  margin: 0 0 14px;
}
.lead-form fieldset {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border: 0;
  padding: 0;
}
.lead-form legend {
  width: 100%;
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 6px;
}
.check {
  display: flex !important;
  align-items: center !important;
  gap: 7px !important;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 8px 11px !important;
  font-size: 11px !important;
}
.check input { width: auto !important; }
.check.terms {
  border: 0;
  border-radius: 0;
  padding: 3px !important;
  align-items: flex-start !important;
  line-height: 1.5;
}
.check.terms a { text-decoration: underline; }

.legal-page {
  width: min(920px, calc(100% - 40px));
  margin: 72px auto 96px;
}
.legal-page h1 {
  font-size: clamp(36px, 5vw, 52px);
  color: var(--navy);
  margin: 0 0 36px;
}
.legal-page h2 {
  font-size: 22px;
  line-height: 1.25;
  color: var(--navy);
  margin: 32px 0 12px;
}
.legal-page h3 {
  font-size: 15px;
  color: var(--navy);
  margin: 20px 0 5px;
}
.legal-page p {
  color: #4d605d;
  line-height: 1.8;
  margin: 0 0 12px;
}
.legal-page a { color: var(--navy); text-decoration: underline; }
.legal-intro {
  padding: 20px;
  background: var(--paper);
  border-radius: 12px;
  margin-top: -12px !important;
}

/* Löschmanager */
.manager-page {
  min-height: 100vh;
  background: var(--paper);
  padding-bottom: 72px;
}
.manager-page .site-header { margin-top: 0; }
.manager-title {
  text-align: center;
  padding: 56px 20px 28px;
}
.manager-title h1 {
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.06;
  color: var(--navy);
  margin: 0;
}
.manager-title p { color: var(--muted); }
.manager-progress {
  width: min(880px, calc(100% - 40px));
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
}
.manager-progress:before {
  content: "";
  position: absolute;
  top: 18px;
  left: 16%;
  right: 16%;
  height: 2px;
  background: var(--line);
}
.manager-progress > div {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  gap: 8px;
  text-align: center;
  color: #8a9795;
}
.manager-progress span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #e7efec;
  border: 3px solid var(--paper);
  font-size: 12px;
  font-weight: 800;
}
.manager-progress b { font-size: 11px; }
.manager-progress > div.active { color: var(--navy); }
.manager-progress > div.active span {
  background: var(--navy);
  color: #fff;
}
.manager-card {
  width: min(850px, calc(100% - 40px));
  min-height: 400px;
  margin: auto;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
}
.manager-search {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.manager-search > input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 10px;
}
.manager-search > button {
  border: 0;
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  font-weight: 800;
}
.results-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 24px 0 14px;
}
.results-head h2,
.manager-card > h2 {
  color: var(--navy);
  margin: 0;
  font-size: 22px;
}
.results-head span { font-size: 12px; color: #84918e; }
.empty-state { text-align: center; padding: 64px 0; color: #8d9997; }
.loading-state {
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
  padding: 56px 16px;
}
.loading-state.loading-timeline {
  gap: 0;
  text-align: left;
  padding: 28px 12px 40px;
}
.loading-state .loading-tracking {
  width: min(100%, 320px);
}
.loading-state .loading-tracking .tracking-id button {
  pointer-events: none;
}
.loading-bar {
  width: 100%;
  height: 8px;
  margin: 14px 0 16px;
  border-radius: 999px;
  background: #e6eeeb;
  overflow: hidden;
}
.loading-bar > span {
  display: block;
  height: 100%;
  width: 25%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--navy) 0%, var(--lime) 100%);
  transition: width 0.7s var(--ease);
  position: relative;
}
.loading-bar > span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.45), transparent);
  animation: ld24-bar-shine 1.4s ease-in-out infinite;
}
@keyframes ld24-bar-shine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
@media (prefers-reduced-motion: reduce) {
  .loading-bar > span { transition: none; }
  .loading-bar > span::after { animation: none; }
}
.loading-state .spinner {
  width: 36px;
  height: 36px;
  border: 3px solid rgba(10, 31, 61, 0.12);
  border-top-color: var(--lime);
  border-radius: 50%;
  animation: ld24-spin 0.75s linear infinite;
}
@keyframes ld24-spin {
  to { transform: rotate(360deg); }
}
.loading-state p {
  margin: 0;
  font-weight: 700;
  color: var(--navy);
}
.loading-state small {
  color: #8d9997;
  font-size: 12px;
  max-width: 280px;
  line-height: 1.45;
}
.loading-state.loading-timeline > small { display: none; }
.manager-search > button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.review-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
}
.review-filters > span {
  font-size: 12px;
  font-weight: 700;
  color: #6c7b78;
  margin-right: 2px;
}
.review-filters .review-count {
  margin-left: auto;
  margin-right: 0;
  font-size: 12px;
  font-weight: 500;
  color: #70757a;
}
.review-filters button {
  border: 1px solid #dadce0;
  background: #fff;
  color: #3c4043;
  border-radius: 16px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.review-filters button:hover:not(.active) {
  border-color: #80868b;
  background: #f8f9fa;
}
.review-filters button.active {
  background: #e8f0fe;
  border-color: #1a73e8;
  color: #174ea6;
}
.review-filters button.active[data-stars]:not([data-stars="all"]) {
  background: #fef7e0;
  border-color: #f9ab00;
  color: #3c4043;
}
.back-link,
.new-search {
  display: inline-block;
  margin-top: 18px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}
.new-search {
  border: 0;
  background: none;
  margin: 0 0 20px;
  padding: 0;
}
.company-list { display: grid; gap: 0; }
.company-list > button {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  padding: 18px 6px;
  border: 0;
  border-bottom: 1px solid #eef1f4;
  background: #fff;
  border-radius: 0;
  text-align: left;
  cursor: pointer;
  transition: background .15s ease;
}
.company-list > button:last-child { border-bottom: 0; }
.company-list > button:hover { background: #f8fafb; }
.company-list > button:disabled { opacity: .65; cursor: wait; }
.company-list .company-avatar {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #eef6f1;
  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .02em;
  line-height: 1;
}
.company-list .company-meta {
  display: grid;
  gap: 4px;
  flex: 1;
  min-width: 0;
  margin: 0;
}
.company-list .company-meta b {
  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
}
.company-list .company-meta span {
  font-size: 13px;
  font-weight: 500;
  color: #8a9499;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.company-list .company-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-left: auto;
}
.company-list .company-rating strong {
  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
}
.company-list .place-stars {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  font-size: 14px;
  line-height: 1;
}
.company-list .place-stars span {
  color: transparent;
  -webkit-text-stroke: 1.15px #e6b422;
  text-stroke: 1.15px #e6b422;
}
.company-list .company-rating em {
  font-style: normal;
  font-size: 13px;
  font-weight: 500;
  color: #8a9499;
}
.company-list .company-select {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}
.company-list > button:hover .company-select { background: var(--navy-deep); }
@media (max-width: 720px) {
  .company-list > button {
    flex-wrap: wrap;
    gap: 12px 14px;
    padding: 16px 4px;
  }
  .company-list .company-meta { flex: 1 1 calc(100% - 70px); }
  .company-list .company-rating {
    order: 3;
    margin-left: 62px;
    flex: 1 1 auto;
  }
  .company-list .company-select {
    order: 2;
    margin-left: auto;
  }
  .company-list .company-meta span { white-space: normal; }
}
.selected-company {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  margin: 16px 0;
  background: var(--paper);
  border-radius: 12px;
}
.selected-company p { display: grid; margin: 0; }
.selected-company b { color: var(--navy); }
.selected-company span { font-size: 11px; color: #7b8987; }
.select-reviews {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-height: min(520px, 55vh);
  overflow-y: auto;
  margin-bottom: 18px;
  background: #fff;
  border: 1px solid #e8eaed;
  border-radius: 8px;
}
.select-reviews > label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 14px;
  border: 0;
  border-bottom: 1px solid #e8eaed;
  border-radius: 0;
  background: #fff;
  cursor: pointer;
}
.select-reviews > label:last-child {
  border-bottom: 0;
}
.select-reviews > label[hidden] {
  display: none;
}
.select-reviews > label.active {
  border-color: transparent;
  border-bottom-color: #e8eaed;
  background: #f8f9fa;
}
.select-reviews > label:hover {
  background: #f8f9fa;
}
.select-reviews label input {
  margin-top: 3px;
  accent-color: #1a73e8;
  flex-shrink: 0;
}
.select-reviews .g-review-body {
  display: grid;
  gap: 0;
  min-width: 0;
  flex: 1;
}
.select-reviews .g-review-author {
  font-size: 14px;
  font-weight: 500;
  color: #202124;
  line-height: 1.35;
}
.select-reviews .g-review-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}
.select-reviews .g-stars {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0;
}
.select-reviews .g-star {
  color: #dadce0;
}
.select-reviews .g-star.filled {
  color: #fbbc04;
}
.select-reviews .g-review-date {
  font-size: 12px;
  font-weight: 400;
  color: #70757a;
  line-height: 1.2;
}
.select-reviews .g-review-text {
  margin: 8px 0 0;
  color: #3c4043;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 18px;
  margin-top: 18px;
}
.checkout-form { display: grid; gap: 12px; }
.checkout-layout aside {
  height: max-content;
  padding: 18px;
  background: var(--paper);
  border-radius: 12px;
}
.checkout-layout aside h3 { margin: 0; color: var(--navy); }
.checkout-layout aside p { color: #60716e; line-height: 1.6; }
.checkout-layout aside > div {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}
.checkout-layout aside small { color: #6b7c79; }
.order-success {
  display: grid;
  justify-items: center;
  text-align: center;
  padding: 48px 10px;
}
.order-success > b {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: #dcfce7;
  color: #16a266;
  font-size: 28px;
}
.order-success > span {
  margin-top: 14px;
  color: #169766;
  font-size: 12px;
  font-weight: 800;
}
.order-success h2 {
  font-size: 28px;
  color: var(--navy);
  margin: 10px 0;
}
.order-success p { color: #677875; }
.order-success strong {
  font-size: 22px;
  letter-spacing: .06em;
  color: var(--navy);
  padding: 12px 16px;
  background: var(--soft);
  border-radius: 10px;
  font-family: Sora, sans-serif;
}
.order-success a {
  margin-top: 22px;
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 800;
}


.api-error {
  color: #b42318;
  background: #fef3f2;
  border: 1px solid #fecdca;
  padding: 12px 14px;
  border-radius: 10px;
  font-weight: 600;
  margin: 0 0 14px;
}

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.fade-up.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 1050px) {
  .desktop-nav { gap: 0; }
  .desktop-nav > a,
  .nav-dropdown > button { padding: 8px 10px; }
  .hero-section { gap: 28px; }
  .feature-rail > div { padding: 14px; }
  .feature-rail strong { font-size: 12px; }
  .pricing-grid { gap: 12px; }
  .footer-grid { gap: 28px; }
}

@media (max-width: 860px) {
  .section-pad { padding: 72px 20px; }
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .brand-logo.compact { width: 140px; }
  .header-cluster { margin-left: auto; }
  .header-actions { margin-left: 0; }
  .hero-section {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 24px 20px 130px;
    text-align: center;
  }
  .hero-side.right { min-height: 0; }
  .hero-visual { min-height: 0; }
  .header-actions .whatsapp span { display: none; }
  .header-actions .round-link.pale { display: none; }
  .feature-rail { grid-template-columns: 1fr 1fr; }
  .feature-rail > div:last-child { grid-column: 1 / -1; border-right: 0; }
  .manager-layout {
    grid-template-columns: 1fr;
  }
  .manager-intro > p { max-width: none; }
  .manager-launch {
    grid-template-columns: 1fr;
  }
  .manager-launch > button {
    width: 100%;
    min-width: 0;
  }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-full { grid-column: auto; display: block; }
  .bento-full .tracking-wrap {
    transform: none;
    width: 100%;
    margin-top: 20px;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: auto;
  }
  .process-steps { align-items: flex-start; flex-wrap: wrap; }
  .process-steps > div {
    display: grid;
    justify-items: center;
    text-align: center;
  }
  .process-steps i { display: none; }
  .review-grid { grid-template-columns: 1fr; }
  .review-grid article:nth-child(n + 2) { display: none; }
  .choice-grid { grid-template-columns: 1fr; }
  .contact-section { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .inner-hero {
    grid-template-columns: 1fr;
    text-align: center;
    min-height: auto;
  }
  .inner-hero-copy > .eyebrow { margin-left: auto; margin-right: auto; }
  .inner-hero-copy > p { margin-left: auto; margin-right: auto; }
  .benefit-grid,
  .benefit-grid.six { grid-template-columns: 1fr 1fr; }
  .process-cards > div:last-child { grid-template-columns: 1fr 1fr; }
  .simple-plans > div:not(.section-head) {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: auto;
  }
  .appointment { grid-template-columns: 1fr; }
  .awards-row { flex-wrap: wrap; }
  .open-question { display: none; }
  .cta-band {
    display: grid;
    text-align: center;
  }
  .trust-stats { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .section-pad { padding: 56px 16px; }
  .section-head h2 { font-size: 30px; }
  .header-actions .whatsapp span,
  .header-actions .pale { display: none; }
  .whatsapp {
    width: 40px;
    height: 40px;
    padding: 0;
    justify-content: center;
  }
  .hero-content h1 { font-size: 38px; }
  .feature-rail { grid-template-columns: 1fr; }
  .feature-rail > div:last-child { grid-column: auto; }
  .trust-stats b { font-size: 22px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .benefit-grid,
  .benefit-grid.six,
  .process-cards > div:last-child { grid-template-columns: 1fr; }
  .manager-progress b { display: none; }
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-layout aside { grid-row: 1; }
  .hero-visual .status-card { display: none; }
  .faq-tabs {
    overflow: auto;
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
  .dach-visual b,
  .dach-visual em,
  .rating-visual > strong,
  .rating-visual > em,
  .locations-visual > div,
  .locations-visual > em {
    opacity: 1 !important;
    transform: none !important;
  }
  .success-visual i { width: var(--fill, 99%) !important; }
  .status-card li.active:before { box-shadow: none !important; }
}


/* TwelveMei-like shell polish */
main {
  position: relative;
  z-index: 1;
  margin: 0 10px;
  padding-bottom: 10px;
}
main > section {
  border-radius: var(--radius-lg);
}
.price-card,
.choice-grid > article,
.review-grid article,
.contact-form,
.faq-list {
  border-radius: var(--radius) !important;
}
.cta-band {
  border-radius: var(--radius-lg) !important;
}
.footer-shell {
  margin: 0 10px 10px;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

@media (max-width: 1100px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: grid; }
}

@media (max-width: 860px) {
  .hero-shell { margin: 6px 6px 0; border-radius: 28px; min-height: auto; }
  .hero-section { padding-bottom: 140px; }
  .hero-grass { height: 26%; }
  .feature-rail {
    margin-top: -40px;
    grid-template-columns: 1fr 1fr;
  }
  .desktop-nav { display: none; }
  .header-cta { display: none; }
  .menu-toggle { display: grid; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-sky { animation: none; }
}
