:root {
  --ink: #10221a;
  --muted: #64736b;
  --line: #dbe5dd;
  --paper: #f7faf5;
  --white: #ffffff;
  --green-900: #053d25;
  --green-800: #06492c;
  --green-700: #0a5b38;
  --mint: #dff4df;
  --lime: #b8e46a;
  --amber: #f4c15d;
  --blue: #d9e8ff;
  --shadow: 0 24px 80px rgba(6, 73, 44, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, Helvetica, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(247, 250, 245, 0.88);
  border-bottom: 1px solid rgba(219, 229, 221, 0.8);
  backdrop-filter: blur(18px);
}

.brand,
.nav,
.hero__actions,
.trust-strip,
.hero__stats {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.brand__mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--white);
  box-shadow: 0 8px 22px rgba(6, 73, 44, 0.18);
}

.nav {
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

.nav a:hover {
  color: var(--green-800);
}

.header-cta {
  padding: 10px 16px;
  color: var(--white);
  background: var(--green-800);
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 76px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(360px, 0.6fr);
  gap: 58px;
  align-items: center;
  min-height: calc(100vh - 68px);
  padding-top: 68px;
  padding-bottom: 44px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-700);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 860px;
  margin-bottom: 22px;
  font-size: clamp(32px, 3.8vw, 60px);
  line-height: 1.04;
  letter-spacing: 0;
  overflow-wrap: break-word;
  text-wrap: balance;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 4.2vw, 54px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: 0;
}

.hero__lead {
  max-width: 650px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.58;
}

.hero__actions {
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.hero__microcopy {
  margin: -18px 0 28px;
  color: var(--green-700);
  font-size: 14px;
  font-weight: 800;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
}

.button--primary {
  color: var(--white);
  background: var(--green-800);
  box-shadow: 0 14px 28px rgba(6, 73, 44, 0.2);
}

.button--ghost {
  color: var(--green-800);
  background: var(--white);
  border-color: var(--line);
}

.hero__stats {
  gap: 14px;
  flex-wrap: wrap;
  margin: 0;
}

.hero__stats div {
  min-width: 148px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.hero__stats dt {
  font-size: 28px;
  font-weight: 900;
  color: var(--green-800);
}

.hero__stats dd {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.hero-panel {
  min-width: 0;
}

.radar-card {
  padding: 24px;
  background: var(--green-900);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: var(--white);
  overflow: hidden;
}

.radar-card__head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.radar-card__head strong {
  color: var(--white);
}

.radar {
  position: relative;
  aspect-ratio: 1;
  min-height: 390px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(184, 228, 106, 0.28), rgba(6, 73, 44, 0.1) 38%, rgba(4, 42, 27, 0.86) 74%);
  background-size: 52px 52px, 52px 52px, auto;
  overflow: hidden;
}

.radar__ring {
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
}

.radar__ring--middle {
  inset: 25%;
}

.radar__ring--inner {
  inset: 40%;
}

.radar__dot {
  position: absolute;
  padding: 8px 10px;
  color: var(--ink);
  background: var(--mint);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.radar__dot--best {
  left: 35%;
  top: 42%;
  background: var(--lime);
}

.radar__dot--trust {
  right: 12%;
  top: 20%;
  background: var(--blue);
}

.radar__dot--kurs {
  left: 10%;
  top: 22%;
}

.radar__dot--top {
  right: 16%;
  bottom: 18%;
  background: var(--amber);
}

.radar__dot--well {
  left: 14%;
  bottom: 20%;
  background: var(--white);
}

.trust-strip {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  gap: 12px;
  flex-wrap: wrap;
  padding: 24px 0 44px;
}

.trust-strip span,
.trust-strip a {
  padding: 10px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}

.trust-strip a:hover {
  color: var(--green-800);
  border-color: var(--green-700);
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 72px;
  border-top: 1px solid var(--line);
}

.text-stack p {
  color: var(--muted);
  font-size: 19px;
}

.symptom-grid,
.lead-path__steps,
.boundary-grid {
  display: grid;
  gap: 18px;
}

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

.symptom-card,
.boundary-card,
.lead-path__steps li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.symptom-card {
  display: grid;
  min-height: 310px;
  padding: 26px;
}

.symptom-card span,
.lead-path__steps span {
  color: var(--green-700);
  font-weight: 900;
}

.symptom-card p {
  color: var(--muted);
}

.symptom-card strong {
  align-self: end;
  color: var(--green-900);
}

.section-head {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.platform-grid,
.package-grid,
.case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.platform,
.package,
.case,
.steps li,
.deliverable,
.faq-list details,
.lead {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.platform {
  min-height: 245px;
  padding: 28px;
}

.platform--main {
  color: var(--white);
  background: var(--green-800);
  border-color: var(--green-800);
}

.platform p,
.package p,
.case p {
  color: var(--muted);
}

.platform--main p {
  color: rgba(255, 255, 255, 0.78);
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--green-800);
  font-weight: 900;
}

.platform--main .text-link {
  color: var(--lime);
}

.platform__tag {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 6px 10px;
  background: var(--mint);
  border-radius: 999px;
  color: var(--green-800);
  font-size: 12px;
  font-weight: 900;
}

.platform--main .platform__tag {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.bestchange-focus {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: stretch;
}

.bestchange-focus__content {
  padding: 42px;
  color: var(--white);
  background: var(--green-800);
  border-radius: 8px;
}

.bestchange-focus__content .eyebrow {
  color: var(--lime);
}

.bestchange-focus__content p {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.bestchange-board {
  display: grid;
  gap: 16px;
}

.bestchange-board div {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.bestchange-board span {
  display: block;
  margin-bottom: 12px;
  color: var(--green-700);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.bestchange-board strong {
  display: block;
  max-width: 620px;
  font-size: 21px;
  line-height: 1.22;
}

.process {
  width: 100%;
  max-width: none;
  padding-right: max(18px, calc((100vw - 1180px) / 2));
  padding-left: max(18px, calc((100vw - 1180px) / 2));
  background: var(--green-900);
  color: var(--white);
}

.process .eyebrow {
  color: var(--lime);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.steps li {
  padding: 28px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.steps span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--lime);
  font-weight: 900;
}

.steps p {
  color: rgba(255, 255, 255, 0.72);
}

.lead-path__steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 0;
  margin: 0;
  list-style: none;
}

.lead-path__steps li {
  min-height: 240px;
  padding: 28px;
}

.lead-path__steps span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 30px;
  background: var(--mint);
  border-radius: 50%;
}

.lead-path__steps p {
  color: var(--muted);
}

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

.deliverable {
  min-height: 116px;
  padding: 26px;
  color: var(--green-900);
  font-weight: 800;
}

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

.package {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.package:hover,
.package:focus-within {
  transform: translateY(-3px);
  border-color: var(--green-700);
  box-shadow: var(--shadow);
}

.package__cta {
  width: 100%;
  margin-top: auto;
}

.package__badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 10px;
  color: var(--green-900);
  background: var(--lime);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.package__price {
  margin-bottom: 18px;
  color: var(--green-800) !important;
  font-size: 24px;
  font-weight: 900;
}

.package ul {
  padding-left: 18px;
  margin: 22px 0 0;
  color: var(--ink);
}

.package li + li {
  margin-top: 9px;
}

.contacts {
  padding-bottom: 34px;
}

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

.contact-card {
  display: grid;
  min-height: 210px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.contact-card:hover {
  transform: translateY(-2px);
  border-color: var(--green-700);
  box-shadow: 0 18px 42px rgba(6, 73, 44, 0.12);
}

.contact-card span {
  color: var(--green-700);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-card strong {
  margin-top: 18px;
  color: var(--ink);
  font-size: 24px;
}

.contact-card em {
  align-self: end;
  color: var(--muted);
  font-style: normal;
}

.contact-card--primary {
  color: var(--white);
  background: var(--green-800);
  border-color: var(--green-800);
}

.contact-card--primary span,
.contact-card--primary strong,
.contact-card--primary em {
  color: var(--white);
}

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

.case {
  padding: 28px;
}

.case span {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--green-700);
  font-weight: 900;
}

.case b {
  color: var(--green-900);
}

.boundaries {
  padding-top: 30px;
}

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

.boundary-card {
  min-height: 230px;
  padding: 28px;
}

.boundary-card p {
  color: var(--muted);
}

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

.faq-list details {
  padding: 22px 24px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--green-900);
  font-weight: 900;
}

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

.lead {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 46px;
  padding: 42px;
  margin-bottom: 72px;
  background: linear-gradient(135deg, var(--white), #ecf7ec);
}

.lead__content p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.lead-form {
  display: grid;
  gap: 14px;
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--green-900);
  font-weight: 800;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  color: var(--ink);
}

.lead-form textarea {
  min-height: 132px;
  resize: vertical;
  line-height: 1.5;
}

.lead-form input:focus,
.lead-form textarea:focus {
  outline: 3px solid rgba(184, 228, 106, 0.45);
  border-color: var(--green-700);
}

.lead-actions {
  display: grid;
  gap: 14px;
  align-content: center;
}

.lead-actions .button {
  width: 100%;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.form-note a {
  color: var(--green-800);
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.76);
  background: var(--green-900);
}

.site-footer p {
  margin: 6px 0 0;
}

.site-footer strong,
.site-footer a {
  color: var(--white);
}

.footer-links {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.policy-page .policy {
  max-width: 920px;
}

.policy-page h1 {
  font-size: clamp(42px, 6vw, 72px);
  overflow-wrap: anywhere;
}

.policy__lead {
  max-width: 720px;
  color: var(--muted);
  font-size: 20px;
}

.policy__content {
  margin-top: 42px;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow-wrap: anywhere;
}

.policy__content h2 {
  margin-top: 34px;
  margin-bottom: 10px;
  font-size: 24px;
}

.policy__content h2:first-child {
  margin-top: 0;
}

.policy__content p {
  color: var(--muted);
}

.policy__content a {
  color: var(--green-800);
  font-weight: 800;
}

/* Radar sweep */
.radar::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background: conic-gradient(
    from 0deg,
    rgba(184, 228, 106, 0.32) 0deg,
    rgba(184, 228, 106, 0.08) 26deg,
    transparent 60deg,
    transparent 360deg
  );
  animation: radar-sweep 5.5s linear infinite;
  pointer-events: none;
}

@keyframes radar-sweep {
  to {
    transform: rotate(360deg);
  }
}

.radar__dot {
  z-index: 1;
}

/* FAQ accordion marker */
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "";
  flex: none;
  width: 11px;
  height: 11px;
  border-right: 2px solid var(--green-700);
  border-bottom: 2px solid var(--green-700);
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(-135deg);
}

/* Sticky mobile CTA */
.mobile-cta {
  display: none;
  position: fixed;
  inset: auto 0 0 0;
  z-index: 40;
  gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(247, 250, 245, 0.94);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.mobile-cta a {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 15px;
}

.mobile-cta__ghost {
  flex: 0 0 auto;
  padding: 12px 16px;
  color: var(--green-800);
  background: var(--white);
  border: 1px solid var(--line);
}

.mobile-cta__primary {
  color: var(--white);
  background: var(--green-800);
  box-shadow: 0 10px 24px rgba(6, 73, 44, 0.22);
}

@media (prefers-reduced-motion: reduce) {
  .radar::after {
    animation: none;
  }
  html {
    scroll-behavior: auto;
  }
}

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

  .hero,
  .split,
  .bestchange-focus,
  .lead {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .steps,
  .symptom-grid,
  .lead-path__steps,
  .boundary-grid,
  .deliverables__grid,
  .contact-grid,
  .package-grid,
  .case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .mobile-cta {
    display: flex;
  }

  body {
    padding-bottom: 78px;
  }

  .site-header {
    padding: 12px 18px;
  }

  .brand__text {
    display: none;
  }

  .header-cta {
    padding: 9px 13px;
  }

  .section {
    width: min(100% - 28px, 1180px);
    padding: 54px 0;
  }

  h1 {
    font-size: clamp(28px, 8.2vw, 38px);
  }

  .hero__lead {
    font-size: 18px;
  }

  .platform-grid,
  .steps,
  .symptom-grid,
  .lead-path__steps,
  .boundary-grid,
  .deliverables__grid,
  .contact-grid,
  .package-grid,
  .case-grid {
    grid-template-columns: 1fr;
  }

  .radar {
    min-height: 320px;
  }

  .radar__dot {
    font-size: 12px;
  }

  .lead {
    padding: 22px;
  }

  .policy__content {
    padding: 22px;
  }

  .policy-page h1 {
    font-size: 36px;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}
