/* Landing page styles — extends colors_and_type.css */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ml-bg);
  color: var(--fg-1);
  overflow-x: hidden;
}

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}
@media (min-width: 768px) { .container { padding: 0 32px; } }

.container-narrow {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 28px;
}
@media (min-width: 768px) { .container-narrow { padding: 0 32px; } }

.hero-cta-row .btn { width: 100%; justify-content: center; }
@media (min-width: 480px) { .hero-cta-row .btn { width: auto; } }
.cta-actions .btn { width: 100%; justify-content: center; }
@media (min-width: 480px) { .cta-actions .btn { width: auto; } }

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

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(180%) blur(8px);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--ml-line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 16px;
}
.nav-logo img { height: 26px; width: auto; }
.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--fg-1);
  font-weight: var(--w-medium);
  font-size: 15px;
}
.nav-links a:hover { text-decoration: none; color: var(--ml-teal-700); }
.nav-cta { display: flex; gap: 10px; align-items: center; }

/* Hamburger toggle */
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--ml-line-strong);
  border-radius: var(--r-md);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ml-ink);
  border-radius: 2px;
  transition: transform var(--dur-fast) var(--ease-standard), opacity var(--dur-fast);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile-first: nav-links hidden behind toggle */
@media (max-width: 960px) {
  #primary-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: white;
    border-bottom: 1px solid var(--ml-line);
    box-shadow: var(--shadow-card);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--dur-base) var(--ease-out);
  }
  #primary-nav[data-open="true"] { max-height: 70vh; }
  .nav-links {
    flex-direction: column;
    gap: 0;
    padding: 8px 24px 16px;
  }
  .nav-links li { border-top: 1px solid var(--ml-line); }
  .nav-links li:first-child { border-top: none; }
  .nav-links a {
    display: block;
    padding: 14px 0;
    font-size: 16px;
  }
}
@media (min-width: 961px) {
  .nav-toggle { display: none; }
  .nav-cta-mobile { display: none; }
}
@media (max-width: 960px) {
  .nav-cta-btn { display: none !important; }
  .nav-cta-mobile { border-top: 1px solid var(--ml-line); padding-top: 14px; margin-top: 4px; }
  .nav-cta-mobile a.btn-primary { display: inline-flex !important; width: 100%; justify-content: center; padding: 14px 20px !important; font-size: 15px !important; color: var(--fg-on-dark) !important; background: var(--ml-ink); border-radius: var(--r-md); }
  .nav-cta-mobile a.btn-primary:hover { color: var(--fg-on-dark) !important; background: var(--ml-ink-2); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: var(--w-semibold);
  font-size: 16px;
  padding: 14px 22px;
  border-radius: var(--r-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color var(--dur-fast) var(--ease-standard),
              color var(--dur-fast) var(--ease-standard),
              transform var(--dur-fast) var(--ease-standard);
  text-decoration: none;
  line-height: 1;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: var(--ml-ink);
  color: var(--fg-on-dark);
}
.btn-primary:hover { background: var(--ml-ink-2); color: var(--fg-on-dark); }
.btn-secondary {
  background: var(--ml-bg);
  color: var(--fg-1);
  border-color: var(--ml-line-strong);
}
.btn-secondary:hover { background: var(--ml-bg-tint); color: var(--fg-1); }
.btn-on-dark {
  background: #ffffff;
  color: var(--ml-ink);
}
.btn-on-dark:hover { background: var(--ml-bg-tint); color: var(--ml-ink); }
.btn-sm { padding: 10px 16px; font-size: 14px; }
.btn-lg { padding: 16px 26px; font-size: 17px; }

.btn .arrow {
  width: 18px; height: 18px;
  stroke-width: 2;
  stroke: currentColor;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 48px 0 56px;
  overflow: hidden;
}
@media (min-width: 768px) { .hero { padding: 64px 0 80px; } }
@media (min-width: 1024px) { .hero { padding: 80px 0 96px; } }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--ml-teal-50);
  color: var(--ml-teal-700);
  font-size: 13px;
  font-weight: var(--w-semibold);
  border-radius: var(--r-pill);
  margin-bottom: 22px;
  letter-spacing: 0.01em;
}
.hero-eyebrow .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ml-teal-light);
  box-shadow: 0 0 0 4px rgba(47,167,158,0.18);
}
.hero h1 {
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: var(--w-semibold);
  margin: 0 0 22px;
}
.hero h1 .accent { color: var(--ml-teal); }
.hero-sub {
  font-size: 19px;
  line-height: 1.55;
  color: var(--fg-2);
  margin: 0 0 32px;
  max-width: 56ch;
}
.hero-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--fg-2);
}
.hero-trust .tick {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-trust .tick svg {
  width: 16px; height: 16px;
  color: var(--ml-teal);
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-arch {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-38%, -62%);
  width: min(520px, 92%);
  aspect-ratio: 1 / 1;
  height: auto;
  background: var(--ml-arch-grad);
  border-radius: 50%;
  z-index: 0;
}
.hero-card {
  position: relative;
  z-index: 2;
  background: white;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  padding: 26px;
  width: 100%;
  max-width: 420px;
  margin-top: 36px;
  border: 1px solid var(--ml-line);
}
.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.hero-card-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--ml-lavender-soft);
  color: #6B3DAF;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: var(--w-semibold);
}
.hero-card-chip.green { background: var(--ml-teal-50); color: var(--ml-teal-700); }
.hero-card h3 {
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 6px;
}
.hero-card-meta {
  display: flex;
  gap: 14px;
  font-size: 13px;
  color: var(--fg-2);
  margin-bottom: 18px;
}
.hero-card-meta .item { display: inline-flex; align-items: center; gap: 5px; }
.hero-card-meta svg { width: 14px; height: 14px; color: var(--ml-muted); }
.hero-card-progress {
  background: var(--ml-bg-tint);
  border-radius: var(--r-md);
  padding: 14px;
  margin-bottom: 16px;
}
.hero-card-progress .row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 8px;
  color: var(--fg-2);
}
.hero-card-progress .row strong { color: var(--fg-1); }
.hero-card-progress .bar {
  height: 8px;
  background: white;
  border-radius: var(--r-pill);
  overflow: hidden;
  border: 1px solid var(--ml-line);
}
.hero-card-progress .bar-fill {
  height: 100%;
  width: 74%;
  background: var(--ml-arch-grad-soft);
  border-radius: var(--r-pill);
}
.hero-card-list { list-style: none; padding: 0; margin: 0; }
.hero-card-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--ml-line);
}
.hero-card-list li:last-child { border-bottom: none; }
.hero-card-list .status {
  margin-left: auto;
  font-size: 12px;
  font-weight: var(--w-semibold);
  padding: 3px 8px;
  border-radius: var(--r-pill);
}
.hero-card-list .status.done { background: var(--ml-teal-50); color: var(--ml-teal-700); }
.hero-card-list .status.pending { background: var(--ml-warning-soft); color: #8a6420; }
.hero-card-list .avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--ml-bg-tint);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: var(--w-semibold);
  color: var(--ml-teal-700);
}

@media (max-width: 900px) {
  .hero { padding: 48px 0 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-arch { display: none; }
  .hero-card { margin-top: 0; }
}

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--ml-bg-soft);
  border-top: 1px solid var(--ml-line);
  border-bottom: 1px solid var(--ml-line);
  padding: 28px 0;
}
.trust-strip-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-strip-label {
  font-size: 13px;
  font-weight: var(--w-semibold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-2);
}
.trust-badges {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
@media (min-width: 768px) { .trust-badges { gap: 24px; } }
@media (min-width: 1024px) { .trust-badges { gap: 36px; } }
.trust-badges img {
  height: 44px;
  width: auto;
  opacity: 0.92;
}
.trust-badges .pill {
  font-size: 14px;
  font-weight: var(--w-semibold);
  color: var(--fg-1);
  padding: 8px 14px;
  background: white;
  border: 1px solid var(--ml-line);
  border-radius: var(--r-pill);
}

/* ---------- Section base ---------- */
.section {
  padding: 64px 0;
}
@media (min-width: 768px) { .section { padding: 80px 0; } }
@media (min-width: 1024px) { .section { padding: 96px 0; } }
.section-tight { padding: 48px 0; }
@media (min-width: 1024px) { .section-tight { padding: 64px 0; } }
.section.alt { background: var(--ml-bg-soft); }
.section.dark {
  background: var(--ml-ink);
  color: var(--fg-on-dark);
}
.section.dark h2, .section.dark h3 { color: var(--fg-on-dark); }
.section.dark p { color: rgba(255,255,255,0.78); }

.section-head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head.left {
  margin-left: 0;
  text-align: left;
}
.eyebrow {
  font-size: 12px;
  font-weight: var(--w-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ml-teal);
  margin-bottom: 14px;
  display: inline-block;
}
.section h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 18px;
}
.section-lede {
  font-size: 18px;
  line-height: 1.6;
  color: var(--fg-2);
  margin: 0;
}
.section.dark .section-lede { color: rgba(255,255,255,0.78); }

/* ---------- Info section (Was ist) ---------- */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 880px) { .info-grid { grid-template-columns: 1fr; gap: 40px; } }

.info-text p { font-size: 17px; line-height: 1.7; color: var(--fg-1); margin-bottom: 16px; }
.info-text p:last-child { margin-bottom: 0; }
.info-text strong { font-weight: var(--w-semibold); }

.compare-card {
  background: white;
  border: 1px solid var(--ml-line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.compare-card .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--ml-line);
}
.compare-card .row:last-child { border-bottom: none; }
.compare-card .row > div { padding: 18px 22px; }
.compare-card .row > div + div { border-left: 1px solid var(--ml-line); }
.compare-card .head {
  background: var(--ml-bg-soft);
  font-weight: var(--w-semibold);
  color: var(--fg-1);
  font-size: 14px;
  letter-spacing: 0.02em;
}
.compare-card .head .badge {
  display: inline-block;
  background: var(--ml-teal-50);
  color: var(--ml-teal-700);
  font-size: 11px;
  padding: 3px 8px;
  border-radius: var(--r-pill);
  margin-left: 6px;
  letter-spacing: 0.04em;
}
.compare-card .label {
  font-size: 13px;
  font-weight: var(--w-semibold);
  color: var(--fg-2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.compare-card .value {
  font-size: 15px;
  color: var(--fg-1);
  line-height: 1.5;
}

/* ---------- Who-needs section ---------- */
.who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) { .who-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .who-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .who-grid { grid-template-columns: 1fr; } }

.who-card {
  background: white;
  border: 1px solid var(--ml-line);
  border-radius: var(--r-lg);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.who-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}
.who-card .icon {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  background: var(--ml-teal-50);
  color: var(--ml-teal-700);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.who-card .icon svg { width: 22px; height: 22px; stroke-width: 2; }
.who-card h3 {
  font-size: 16px;
  margin: 0;
  font-weight: var(--w-semibold);
}
.who-card p {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.5;
  margin: 0;
}

/* ---------- Interval section ---------- */
.interval-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 880px) { .interval-wrap { grid-template-columns: 1fr; } }

.interval-card {
  background: white;
  border: 1px solid var(--ml-line);
  border-radius: var(--r-xl);
  padding: 36px;
  box-shadow: var(--shadow-card);
}
.interval-card .big {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}
.interval-card .big .num {
  font-size: 72px;
  font-weight: var(--w-semibold);
  color: var(--ml-teal);
  line-height: 1;
  letter-spacing: -0.03em;
}
.interval-card .big .unit {
  font-size: 22px;
  color: var(--fg-2);
  font-weight: var(--w-medium);
}
.interval-card .sub {
  font-size: 16px;
  color: var(--fg-2);
  margin-bottom: 24px;
}
.interval-card .duty {
  border-top: 1px solid var(--ml-line);
  padding-top: 20px;
  display: grid;
  gap: 12px;
}
.interval-card .duty .item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.5;
}
.interval-card .duty .item svg {
  width: 18px; height: 18px;
  color: var(--ml-teal);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---------- Online (Trust) section ---------- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .benefits-grid { grid-template-columns: 1fr; } }

.benefit-card {
  background: white;
  border: 1px solid var(--ml-line);
  border-radius: var(--r-lg);
  padding: 26px;
}
.benefit-card .icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  background: var(--ml-teal-50);
  color: var(--ml-teal-700);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.benefit-card .icon svg { width: 24px; height: 24px; stroke-width: 2; }
.benefit-card h3 {
  font-size: 18px;
  margin: 0 0 8px;
}
.benefit-card p {
  font-size: 15px;
  color: var(--fg-2);
  line-height: 1.55;
  margin: 0;
}

/* ---------- Why mindlane ---------- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr; } }

.why-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 18px;
}
.why-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.why-list .tick {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--ml-teal-50);
  color: var(--ml-teal-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-list .tick svg { width: 16px; height: 16px; stroke-width: 2.5; }
.why-list .text h4 {
  font-size: 17px;
  margin: 0 0 4px;
}
.why-list .text p {
  font-size: 15px;
  color: var(--fg-2);
  margin: 0;
  line-height: 1.55;
}

.why-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.why-illus-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
}
.why-illus-bg::before {
  content: "";
  width: 84%;
  height: 84%;
  background: var(--ml-teal-50);
  border-top-left-radius: 9999px;
  border-top-right-radius: 9999px;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
}
.why-illus {
  position: relative;
  z-index: 1;
  max-width: 440px;
}
@media (max-width: 900px) {
  .why-visual { display: none; }
}

/* ---------- Steps section ---------- */
.steps-list {
  display: grid;
  gap: 14px;
  counter-reset: step;
}
.step {
  background: white;
  border: 1px solid var(--ml-line);
  border-radius: var(--r-lg);
  padding: 22px 24px;
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 20px;
  transition: border-color var(--dur-base) var(--ease-out);
}
.step:hover { border-color: var(--ml-teal-200); }
.step .num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--ml-ink);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--w-semibold);
  font-size: 17px;
}
.step h3 {
  font-size: 17px;
  margin: 0 0 4px;
}
.step p {
  font-size: 15px;
  color: var(--fg-2);
  line-height: 1.5;
  margin: 0;
}
.step .step-icon {
  width: 40px; height: 40px;
  color: var(--ml-teal);
  flex-shrink: 0;
}
.step .step-icon svg { width: 100%; height: 100%; stroke-width: 1.8; }
@media (max-width: 640px) {
  .step { grid-template-columns: 40px 1fr; padding: 18px; }
  .step .step-icon { display: none; }
  .step .num { width: 36px; height: 36px; font-size: 15px; }
}

/* ---------- Vorteile (advantages) ---------- */
.adv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .adv-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .adv-grid { grid-template-columns: 1fr; } }

.adv-card {
  background: white;
  border: 1px solid var(--ml-line);
  border-radius: var(--r-lg);
  padding: 24px;
}
.adv-card .icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-sm);
  background: var(--ml-teal-50);
  color: var(--ml-teal-700);
  margin-bottom: 14px;
}
.adv-card .icon svg { width: 20px; height: 20px; stroke-width: 2; }
.adv-card h3 {
  font-size: 16px;
  margin: 0 0 6px;
}
.adv-card p {
  font-size: 14px;
  color: var(--fg-2);
  margin: 0;
  line-height: 1.55;
}

/* ---------- Stats / numbers strip ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--r-lg);
  padding: 8px;
}
@media (max-width: 700px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat {
  padding: 26px 22px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--r-md);
}
.stat .num {
  font-size: 40px;
  font-weight: var(--w-semibold);
  letter-spacing: -0.02em;
  color: var(--ml-teal-light);
  line-height: 1;
  margin-bottom: 8px;
}
.stat .label {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
}

/* ---------- Testimonials placeholders ---------- */
.testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 40px;
}
@media (max-width: 760px) { .testi-grid { grid-template-columns: 1fr; } }
.testi {
  background: white;
  border: 1px solid var(--ml-line);
  border-radius: var(--r-lg);
  padding: 28px;
}
.testi .quote-mark {
  font-size: 36px;
  color: var(--ml-teal);
  line-height: 1;
  font-weight: var(--w-semibold);
  margin-bottom: 8px;
}
.testi p.body {
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg-1);
  margin: 0 0 18px;
}
.testi .person {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--ml-line);
  padding-top: 14px;
}
.testi .avatar {
  width: 38px; height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--ml-arch-grad-soft);
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: var(--w-semibold);
}
.testi .name { font-size: 14px; font-weight: var(--w-semibold); color: var(--fg-1); }
.testi .role { font-size: 13px; color: var(--fg-2); }

.logo-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 24px;
  margin-top: 36px;
  border-top: 1px solid var(--ml-line);
}
@media (min-width: 768px) { .logo-strip { gap: 32px; } }
@media (min-width: 1024px) { .logo-strip { gap: 48px; } }
.logo-strip .logo-placeholder {
  font-family: var(--font-sans);
  font-weight: var(--w-semibold);
  color: var(--ml-muted-2);
  font-size: 18px;
  letter-spacing: 0.04em;
  opacity: 0.7;
}

/* ---------- FAQ ---------- */
.faq-list {
  display: grid;
  gap: 12px;
}
.faq-item {
  background: white;
  border: 1px solid var(--ml-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--dur-fast) var(--ease-standard);
}
.faq-item[open] { border-color: var(--ml-teal-200); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 17px;
  font-weight: var(--w-semibold);
  color: var(--fg-1);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  width: 22px; height: 22px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23012A30' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform var(--dur-base) var(--ease-out);
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item .answer {
  padding: 0 24px 22px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--fg-2);
}
.faq-item .answer p { color: var(--fg-2); font-size: 16px; line-height: 1.65; margin: 0 0 10px; }
.faq-item .answer p:last-child { margin-bottom: 0; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  background: var(--ml-ink);
  color: white;
  border-radius: var(--r-2xl);
  padding: 64px 56px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px circle at -10% 110%, rgba(47,167,158,0.35) 0%, transparent 55%),
    radial-gradient(700px circle at 110% -10%, rgba(34,131,126,0.25) 0%, transparent 55%);
  pointer-events: none;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 {
  color: white;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.15;
  margin: 0 0 14px;
}
.cta-band p {
  font-size: 17px;
  color: rgba(255,255,255,0.82);
  margin: 0 0 26px;
  max-width: 50ch;
}
.cta-band .cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-band-mini {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-lg);
  padding: 22px;
}
.cta-band-mini h4 {
  color: white;
  font-size: 15px;
  margin: 0 0 14px;
  letter-spacing: 0.02em;
}
.cta-band-mini ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.cta-band-mini li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}
.cta-band-mini li svg {
  width: 16px; height: 16px;
  color: var(--ml-teal-light);
  flex-shrink: 0;
}
@media (max-width: 880px) {
  .cta-band {
    grid-template-columns: 1fr;
    padding: 40px 28px;
  }
}

/* ---------- Footer ---------- */
.site-footer {
  background: #021A1E;
  color: rgba(255,255,255,0.7);
  padding: 56px 0 28px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-brand img { height: 30px; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.55; max-width: 36ch; }
.footer-col h5 {
  color: white;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 16px;
  font-weight: var(--w-semibold);
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-col a { color: rgba(255,255,255,0.7); font-size: 14px; }
.footer-col a:hover { color: white; text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* Decorative arch behind some sections */
.arch-decoration {
  position: absolute;
  pointer-events: none;
  opacity: 0.85;
  z-index: 0;
}
.section { position: relative; }
.section > .container, .section > .container-narrow { position: relative; z-index: 1; }
