:root {
  --font: "Poppins", ui-sans-serif, system-ui, sans-serif;
  --teal: #009688;
  --teal-dark: #0b4f54;
  --teal-deep: #083e43;
  --teal-soft: #e8f6f4;
  --green: #2bb34a;
  --green-hover: #24963f;
  --green-soft: #eaf8ee;
  --text: #1e293b;
  --muted: #64748b;
  --border: #e2e8f0;
  --bg: #f7fbf9;
  --surface: #ffffff;
  --shadow: 0 12px 32px rgb(15 23 42 / 8%);
  --shadow-lg: 0 24px 50px rgb(15 23 42 / 12%);
  --radius: 20px;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--surface);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

h1,
h2,
h3,
h4,
p,
ol {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

svg {
  display: block;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgb(255 255 255 / 88%);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 8px 24px rgb(15 23 42 / 5%);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand img {
  width: 52px;
  height: auto;
}

.brand-text {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.brand-ahad {
  color: #334155;
}

.brand-pharma {
  color: #0f7c86;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  flex: 1;
}

.site-nav a.is-active,
.site-nav a[aria-current="page"] {
  color: var(--teal-dark);
  background: var(--teal-soft);
}

.site-nav a,
.nav-dropdown__trigger {
  padding: 8px 12px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #475569;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 500;
  cursor: pointer;
}

.site-nav a:hover,
.nav-dropdown__trigger:hover {
  color: var(--teal-dark);
  background: var(--teal-soft);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown__trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown__trigger svg {
  width: 11px;
  height: 11px;
}

.nav-dropdown:hover .nav-dropdown__trigger,
.nav-dropdown:focus-within .nav-dropdown__trigger {
  color: var(--teal-dark);
  background: var(--teal-soft);
}

.nav-dropdown__panel {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 50;
  min-width: 240px;
  padding-top: 10px;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.15s ease,
    visibility 0.15s ease;
}

.nav-dropdown:hover .nav-dropdown__panel,
.nav-dropdown:focus-within .nav-dropdown__panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-dropdown__panel ul {
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
}

.nav-dropdown__panel li {
  padding: 8px 12px;
  border-radius: 10px;
  color: #334155;
  font-size: 0.82rem;
  font-weight: 500;
  white-space: nowrap;
}

.nav-dropdown__panel li + li {
  margin-top: 1px;
}

.nav-dropdown__panel li:hover {
  color: var(--teal-dark);
  background: var(--teal-soft);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem;
  border: 1px solid transparent;
  transition:
    background 0.15s ease,
    color 0.15s ease,
    transform 0.15s ease,
    box-shadow 0.15s ease,
    border-color 0.15s ease;
}

.btn svg {
  width: 16px;
  height: 16px;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-green {
  background: var(--green);
  color: #fff;
  box-shadow: 0 8px 18px rgb(43 179 74 / 28%);
}

.btn-green:hover {
  background: var(--green-hover);
}

.btn-dark {
  background: var(--teal-dark);
  color: #fff;
}

.btn-dark:hover {
  background: var(--teal-deep);
}

.btn-outline {
  background: #fff;
  color: var(--teal-dark);
  border-color: #c9dbe0;
}

.btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgb(255 255 255 / 45%);
}

.btn-outline-light:hover {
  background: rgb(255 255 255 / 10%);
}

.btn-block {
  width: 100%;
}

.nav-toggle {
  display: none;
  appearance: none;
  -webkit-appearance: none;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 1px solid #c9dbe0;
  border-radius: 10px;
  background: #fff;
  padding: 0;
  color: var(--teal-dark);
  cursor: pointer;
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

.hero {
  position: relative;
  overflow: visible;
  padding: 36px 0 28px;
  background:
    radial-gradient(circle at 12% 12%, #dff7ec 0%, transparent 34%),
    radial-gradient(circle at 88% 8%, #d7f3f0 0%, transparent 32%),
    linear-gradient(180deg, #f3fbf7 0%, #ffffff 72%);
}

.hero-glow {
  position: absolute;
  inset: auto -8% 30% auto;
  width: 42%;
  height: 48%;
  background: radial-gradient(circle, rgb(43 179 74 / 12%), transparent 68%);
  pointer-events: none;
}

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

.eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgb(0 150 136 / 10%);
  color: var(--teal-dark);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

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

.hero h1 {
  font-size: clamp(2.05rem, 4.2vw, 3.35rem);
  letter-spacing: -0.04em;
  line-height: 1.12;
  max-width: 12ch;
  font-weight: 700;
  overflow-wrap: break-word;
}

.hero h1 em {
  font-style: normal;
  color: var(--teal);
}

.h-break {
  display: inline;
}

.hero-lead {
  margin: 16px 0 26px;
  max-width: 46ch;
  color: var(--muted);
  font-size: 1rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.82rem;
}

.hero-trust span:last-child {
  min-width: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.stars {
  color: #f5b400;
  letter-spacing: 1px;
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.hero-frame {
  padding: 10px;
  border: 2px solid #7dcdc4;
  border-radius: 28px;
  background: rgb(255 255 255 / 55%);
  box-shadow: var(--shadow-lg);
}

.app-mock {
  display: grid;
  grid-template-columns: 54px 1fr;
  min-height: 340px;
  overflow: hidden;
  border-radius: 20px;
  background: #f4f7fb;
  border: 1px solid #d7e4ec;
}

.app-mock__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 14px 0;
  background: #283342;
}

.app-mock__logo {
  width: 22px;
  height: 22px;
  margin-bottom: 8px;
  border-radius: 6px;
  background: linear-gradient(135deg, #7ed321, var(--teal));
}

.app-mock__nav span:not(.app-mock__logo) {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: rgb(255 255 255 / 12%);
}

.app-mock__nav .is-active {
  background: var(--teal);
}

.app-mock__body {
  padding: 16px 16px 14px;
}

.app-mock__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.app-mock__top strong {
  font-size: 0.82rem;
}

.app-mock__top span {
  font-size: 0.7rem;
  color: var(--muted);
}

.app-mock__kpis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.app-mock__kpis article {
  padding: 10px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 6px 16px rgb(15 23 42 / 5%);
}

.app-mock__kpis small {
  display: block;
  color: var(--muted);
  font-size: 0.62rem;
}

.app-mock__kpis b {
  font-size: 0.95rem;
  letter-spacing: -0.03em;
}

.app-mock__chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 92px;
  margin: 12px 0;
  padding: 10px 12px 8px;
  border-radius: 14px;
  background: #fff;
}

.app-mock__chart i {
  flex: 1;
  border-radius: 8px 8px 4px 4px;
  background: linear-gradient(180deg, #7ad3c8, var(--teal));
}

.app-mock__chart i:nth-child(1) { height: 38%; }
.app-mock__chart i:nth-child(2) { height: 55%; }
.app-mock__chart i:nth-child(3) { height: 46%; }
.app-mock__chart i:nth-child(4) { height: 78%; }
.app-mock__chart i:nth-child(5) { height: 62%; }
.app-mock__chart i:nth-child(6) { height: 88%; }
.app-mock__chart i:nth-child(7) { height: 70%; }

.app-mock__rows {
  display: grid;
  gap: 6px;
}

.app-mock__rows div {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 10px;
  background: #fff;
  font-size: 0.72rem;
}

.app-mock__rows em {
  color: var(--muted);
  font-style: normal;
}

.hero-float {
  position: absolute;
  right: 18px;
  top: 118px;
  left: auto;
  bottom: auto;
  display: grid;
  gap: 2px;
  max-width: 180px;
  padding: 10px 12px;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid #e6eef2;
  z-index: 2;
}

.hero-float strong {
  font-size: 0.8rem;
}

.hero-float span {
  color: var(--muted);
  font-size: 0.72rem;
}

.hero-pills {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.pill-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 20px rgb(15 23 42 / 4%);
}

.pill-card h2 {
  font-size: 0.88rem;
  margin-bottom: 2px;
}

.pill-card p {
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.4;
}

.pill-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--teal-soft);
  color: var(--teal-dark);
}

.pill-icon svg {
  width: 18px;
  height: 18px;
}

.section-kicker {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}

.section-lead {
  color: var(--muted);
  margin: 8px 0 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 18px;
  margin-bottom: 28px;
}

.section-head h2,
.promise h2,
.simulator h2,
.faq h2,
.pricing h2,
.why h2,
.steps h2 {
  font-size: clamp(1.45rem, 2.6vw, 2.05rem);
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.section-head--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-head--center .section-lead {
  max-width: 52ch;
}

.text-link {
  color: var(--teal-dark);
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
}

.text-link:hover {
  color: var(--teal);
}

.promise {
  padding: 80px 0 72px;
  background: #f7f8fa;
  scroll-margin-top: calc(var(--header-h) + 8px);
}

.promise-head {
  text-align: center;
  margin-bottom: 36px;
}

.promise-head h2 {
  max-width: 22em;
  margin-inline: auto;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
}

.promise-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 22px;
  align-items: stretch;
}

.promise-pain {
  padding: 32px 28px;
  border-radius: 28px;
  background: #eef1f4;
}

.promise-pain__title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  color: #e11d48;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.promise-pain__mark {
  display: inline-flex;
  flex-shrink: 0;
  color: #e11d48;
}

.promise-pain__mark svg {
  width: 20px;
  height: 20px;
}

.promise-pain__lead {
  max-width: 48ch;
  margin: 0 0 22px;
  color: #64748b;
  font-size: 0.92rem;
  line-height: 1.55;
}

.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.pain-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 16px 14px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 1px 0 rgb(15 23 42 / 3%);
}

.pain-icon {
  display: inline-flex;
  flex-shrink: 0;
  margin-top: 1px;
  color: #f43f5e;
}

.pain-icon svg {
  width: 20px;
  height: 20px;
}

.pain-card h4 {
  margin: 0 0 4px;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.pain-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.promise-card {
  display: flex;
  flex-direction: column;
  padding: 32px 30px;
  border-radius: 28px;
  background: linear-gradient(155deg, #147a73 0%, #0c585c 52%, #084348 100%);
  color: #fff;
  box-shadow: 0 22px 40px rgb(8 62 67 / 24%);
}

.promise-card__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: #9ee0c0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.promise-card__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
}

.promise-card__check svg {
  width: 12px;
  height: 12px;
}

.promise-card h3 {
  max-width: 13em;
  margin-bottom: 14px;
  font-size: clamp(1.45rem, 2.2vw, 1.85rem);
  letter-spacing: -0.03em;
  line-height: 1.22;
}

.promise-card__lead {
  max-width: 42ch;
  color: rgb(255 255 255 / 78%);
  font-size: 0.95rem;
  line-height: 1.6;
}

.promise-metric {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding: 14px 16px 14px 14px;
  border-radius: 16px;
  background: rgb(255 255 255 / 10%);
}

.promise-metric__stat {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.promise-metric__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgb(158 224 192 / 18%);
  color: #b7f0d2;
}

.promise-metric__icon svg {
  width: 18px;
  height: 18px;
}

.promise-metric__stat p {
  margin: 0;
}

.promise-metric__stat strong {
  display: block;
  font-size: 1.5rem;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.promise-metric__stat span {
  display: block;
  color: rgb(255 255 255 / 72%);
  font-size: 0.75rem;
  line-height: 1.35;
}

.promise-metric__link {
  flex-shrink: 0;
  color: #7dcc6a;
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
}

.promise-metric__link:hover {
  color: #9ee07a;
}

.features {
  padding: 24px 0 72px;
  background: #f7fbf9;
  scroll-margin-top: calc(var(--header-h) + 8px);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card {
  padding: 22px 20px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 24px rgb(15 23 42 / 4%);
}

.feature-card h3 {
  margin: 12px 0 8px;
  font-size: 1.02rem;
}

.feature-card p {
  color: var(--muted);
  font-size: 0.88rem;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
}

.feature-icon svg {
  width: 22px;
  height: 22px;
}

.feature-icon--teal {
  background: var(--teal-soft);
  color: var(--teal-dark);
}

.feature-icon--green {
  background: var(--green-soft);
  color: #178a33;
}

.feature-icon--blue {
  background: #e8f2fb;
  color: #0369a1;
}

.feature-icon--amber {
  background: #fff4e5;
  color: #b45309;
}

.why {
  padding: 72px 0;
  background: #fff;
}

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

.why-grid article {
  display: flex;
  gap: 12px;
  padding: 8px 4px;
}

.why-grid h3 {
  margin-bottom: 4px;
  font-size: 1rem;
}

.why-grid p {
  color: var(--muted);
  font-size: 0.88rem;
}

.why-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  margin-top: 2px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
}

.pricing {
  padding: 24px 0 72px;
  background: #f7fbf9;
}

.pricing-page {
  background: #fff;
}

.pricing-hero {
  padding: 48px 0 72px;
  text-align: center;
  background:
    radial-gradient(circle at 12% 0%, #dff7ec 0%, transparent 28%),
    radial-gradient(circle at 88% 8%, #e7f6f3 0%, transparent 24%),
    linear-gradient(180deg, #f7fbf9 0%, #ffffff 70%);
}

.pricing-hero h1 {
  max-width: 16em;
  margin: 0 auto;
  font-size: clamp(1.85rem, 3.6vw, 2.7rem);
  letter-spacing: -0.04em;
  line-height: 1.18;
}

.pricing-hero h1 em {
  font-style: italic;
  color: inherit;
}

.pricing-hero .section-lead {
  max-width: 42ch;
  margin: 14px auto 0;
  font-size: 1rem;
}

.pricing-jump {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 40px;
}

.plans {
  display: grid;
  grid-template-columns: 1fr 1.06fr 1fr;
  gap: 18px;
  align-items: stretch;
  text-align: left;
}

.plan-card {
  display: flex;
  flex-direction: column;
  padding: 28px 24px 24px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.plan-card .btn {
  width: 100%;
  justify-content: center;
}

.plan-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.plan-card--featured {
  background: linear-gradient(165deg, #147a73 0%, #0c585c 52%, #084348 100%);
  border-color: transparent;
  color: #fff;
  transform: translateY(-16px);
  box-shadow: 0 28px 50px rgb(8 62 67 / 28%);
}

.plan-kicker {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.plan-card__top .plan-kicker {
  margin-bottom: 0;
}

.plan-card h3 {
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.plan-tagline {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.88rem;
  min-height: 2.7em;
}

.plan-price {
  margin: 18px 0 16px;
  font-weight: 700;
  font-size: 1.05rem;
}

.plan-price span {
  font-size: 3rem;
  letter-spacing: -0.04em;
  line-height: 1;
}

.plan-price small {
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.78rem;
}

.plan-features {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
  flex: 1;
}

.plan-features li {
  position: relative;
  padding-left: 28px;
  font-size: 0.88rem;
}

.plan-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><circle cx='8' cy='8' r='8' fill='%232bb34a'/><path d='M4.4 8.2 6.7 10.4 11.6 5.6' fill='none' stroke='white' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/></svg>")
    center / 16px 16px no-repeat;
}

.plan-features li.plan-feature--bolt::before {
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><circle cx='8' cy='8' r='8' fill='%23e8c44a'/><path d='M9.1 3.2 5.4 8.6h2.6L6.8 12.8 10.7 7.2H8.1z' fill='%231a3a32'/></svg>")
    center / 16px 16px no-repeat;
}

.plan-badge {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #e8c44a;
  color: #1a3a32;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.plan-card__top .plan-badge {
  margin-bottom: 0;
}

.plan-card--featured .plan-kicker {
  color: rgb(255 255 255 / 62%);
}

.plan-card--featured .plan-tagline,
.plan-card--featured .plan-price small {
  color: rgb(255 255 255 / 68%);
}

.plan-card--featured .plan-price,
.plan-card--featured .plan-price span {
  color: #e8c44a;
}

.plan-card--featured .btn-green {
  box-shadow: 0 10px 22px rgb(0 0 0 / 18%);
}

.pricing-hero,
.simulator,
.compare,
.faq,
#essentiel,
#pro,
#private,
#simulateur,
#comparatif {
  scroll-margin-top: calc(var(--header-h) + 8px);
}

.simulator,
.faq {
  padding: 64px 0;
}

.simulator {
  background: var(--bg);
  text-align: center;
}

.sim-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.simulator .section-lead {
  max-width: 58ch;
  margin: 10px auto 28px;
}

.sim-card {
  text-align: left;
}

.sim-card {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.sim-controls {
  padding: 36px 36px 32px;
}

.sim-count-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.sim-label {
  display: block;
  font-weight: 600;
  font-size: 1rem;
  margin: 0 0 4px;
}

.sim-hint {
  color: var(--muted);
  font-size: 0.84rem;
  margin: 0;
}

.stepper {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
}

.stepper button {
  width: 38px;
  height: 38px;
  border: 0;
  background: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--text);
}

.stepper button:hover {
  color: var(--teal);
  background: var(--teal-soft);
}

.stepper input {
  width: 44px;
  height: 38px;
  text-align: center;
  border: 0;
  border-inline: 1px solid var(--border);
  font: inherit;
  font-weight: 700;
  font-size: 1.05rem;
  background: #fff;
}

.sim-slider-wrap {
  margin-bottom: 26px;
}

.sim-slider-wrap input[type="range"] {
  width: 100%;
  appearance: none;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal) 0%, var(--teal) var(--sim-pct, 0%), #dbe4ea var(--sim-pct, 0%));
  outline: none;
}

.sim-slider-wrap input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--teal);
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px var(--teal);
  cursor: pointer;
}

.sim-slider-wrap input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--teal);
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px var(--teal);
  cursor: pointer;
}

.sim-slider-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.78rem;
}

.sim-slider-labels small {
  display: block;
  font-size: 0.68rem;
}

.sim-quick-label {
  font-size: 0.88rem;
  font-weight: 500;
  margin: 0 0 10px;
}

.sim-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.sim-pills button {
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid #d5dee6;
  background: #fff;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 600;
  color: #334155;
  cursor: pointer;
}

.sim-pills button:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.sim-pills button.is-active {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: #fff;
}

.sim-result {
  padding: 32px 28px;
  background: #eaf7ef;
  display: flex;
  flex-direction: column;
}

.sim-result-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.sim-result-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
}

.sim-save-badge {
  margin: 0;
  padding: 4px 10px;
  border-radius: 999px;
  background: #e5f8ea;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 700;
}

.sim-price {
  margin: 8px 0 6px;
  font-weight: 700;
}

.sim-price span {
  font-size: 3.2rem;
  letter-spacing: -0.04em;
  line-height: 1;
}

.sim-price small {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.95rem;
}

.sim-result-note {
  color: var(--muted);
  font-size: 0.86rem;
  margin-bottom: 18px;
}

.sim-breakdown {
  border-top: 1px solid #d7eadc;
  padding: 14px 0 20px;
  display: grid;
  gap: 10px;
}

.sim-breakdown p {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.86rem;
  color: var(--muted);
}

.sim-breakdown strong {
  color: var(--text);
  font-weight: 700;
  white-space: nowrap;
}

.sim-result .btn {
  margin-top: auto;
}

.sim-result-foot {
  margin-top: 12px;
  text-align: center;
  color: var(--muted);
  font-size: 0.75rem;
}

.elite-banner {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  border-radius: 16px;
  background: #f3f6f8;
  border: 1px solid #e2e8f0;
  text-align: left;
}

.elite-copy {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-width: 0;
}

.elite-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--teal-soft);
  color: var(--teal-dark);
}

.elite-title {
  font-weight: 700;
  margin-bottom: 4px;
}

.elite-banner div p:not(.elite-title) {
  color: var(--muted);
  font-size: 0.9rem;
}

.elite-banner .btn {
  flex-shrink: 0;
}

.compare {
  padding: 24px 0 72px;
  background: #fff;
}

.compare-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 24px rgb(15 23 42 / 4%);
}

.compare-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  text-align: center;
}

.compare-table th,
.compare-table td {
  padding: 14px 18px;
  font-size: 0.88rem;
  border-bottom: 1px solid #eef2f6;
}

.compare-table thead th {
  background: #f8fafc;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748b;
}

.compare-table thead th:first-child,
.compare-table tbody th {
  text-align: left;
  font-weight: 500;
  color: var(--text);
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.88rem;
}

.compare-table thead th:first-child {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748b;
}

.compare-table tr.compare-group th {
  background: #f8fafc;
  text-align: left;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748b;
  padding: 12px 18px;
}

.compare-yes,
.compare-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  overflow: hidden;
  color: transparent;
  font-size: 0;
}

.compare-yes {
  border-radius: 50%;
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><circle cx='8' cy='8' r='8' fill='%232bb34a'/><path d='M4.4 8.2 6.7 10.4 11.6 5.6' fill='none' stroke='white' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/></svg>")
    center / 18px 18px no-repeat;
}

.compare-no {
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M5 5l6 6M11 5l-6 6' fill='none' stroke='%23f43f5e' stroke-width='1.8' stroke-linecap='round'/></svg>")
    center / 16px 16px no-repeat;
}

.faq--pricing {
  padding-top: 24px;
}

.faq--pricing .faq-inner {
  max-width: 820px;
  text-align: center;
}

.faq--pricing .section-lead {
  max-width: 46ch;
  margin: 8px auto 0;
}

.faq--pricing .faq-list {
  text-align: left;
}

.pricing-page .cta h2 {
  max-width: 22em;
}

.steps {
  padding: 24px 0 72px;
  background: #f7fbf9;
}

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

.steps-grid li {
  padding: 22px 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
}

.steps-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--teal-dark);
  font-weight: 700;
  font-size: 0.88rem;
}

.steps-grid h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.steps-grid p {
  color: var(--muted);
  font-size: 0.86rem;
}

.faq {
  background: #fff;
}

.faq-inner {
  max-width: 760px;
}

.faq-list {
  margin-top: 24px;
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fbfcfd;
  padding: 4px 16px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  padding: 14px 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-list summary::after {
  content: "+";
  color: var(--teal);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "–";
}

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

.faq-list details p,
.faq-answer {
  color: var(--muted);
  padding: 0 0 16px;
  font-size: 0.92rem;
}

.faq-answer p {
  padding: 0;
}

.faq-answer p + p {
  margin-top: 8px;
}

.faq-answer a {
  color: var(--teal-dark);
  font-weight: 600;
}

.faq-answer a:hover {
  color: var(--teal);
}

.cta {
  padding: 8px 0 72px;
}

.cta-inner {
  background: linear-gradient(180deg, #0d5c61 0%, #083e43 100%);
  color: #fff;
  border-radius: 28px;
  padding: 56px 28px;
  text-align: center;
}

.cta h2 {
  max-width: 18ch;
  margin: 0 auto 10px;
  font-size: clamp(1.5rem, 2.8vw, 2.15rem);
  letter-spacing: -0.03em;
  line-height: 1.25;
}

.cta p {
  color: rgb(255 255 255 / 75%);
}

.cta-actions {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.site-footer {
  background: #f4f7f8;
  border-top: 1px solid var(--border);
  padding: 40px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 24px;
}

.footer-brand .footer-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 12px;
  color: inherit;
  font-size: inherit;
}

.footer-brand .footer-logo:hover {
  color: inherit;
}

.footer-logo__mark {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo__mark img {
  width: 52px;
  height: auto;
}

.footer-logo__tagline {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #475569;
  font-size: 0.78rem;
  font-weight: 500;
}

.footer-logo__tagline::before,
.footer-logo__tagline::after {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: #8cc337;
}

.footer-brand p,
.footer-copy {
  color: var(--muted);
  font-size: 0.85rem;
}

.site-footer h3 {
  font-size: 0.82rem;
  margin-bottom: 12px;
}

.site-footer li + li {
  margin-top: 8px;
}

.site-footer a {
  color: #475569;
  font-size: 0.85rem;
}

.site-footer a:hover {
  color: var(--teal);
}

.footer-copy {
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

@media (max-width: 980px) {
  .site-header {
    background: #fff;
  }
  .hero-grid,
  .promise-grid,
  .feature-grid,
  .why-grid,
  .plans,
  .sim-card,
  .steps-grid,
  .footer-grid,
  .hero-pills,
  .elite-banner {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .why-grid,
  .hero-pills {
    grid-template-columns: 1fr 1fr;
  }

  .plan-card--featured {
    transform: none;
    order: -1;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-float {
    position: static;
    max-width: none;
    margin-top: 12px;
  }

  .sim-count-row,
  .elite-banner,
  .header-inner {
    flex-wrap: wrap;
  }

  .header-actions {
    display: flex;
    width: auto;
    order: 2;
    margin-left: auto;
    gap: 8px;
  }

  .nav-toggle {
    display: inline-flex;
    order: 3;
    margin-left: 0;
  }

  .site-nav {
    display: none;
    flex: none;
    width: 100%;
    order: 4;
  }

  .header-actions .btn {
    min-height: 38px;
    padding: 0 14px;
    font-size: 0.8rem;
  }

  .header-actions .btn svg {
    display: none;
  }

  .header-actions .btn-extra {
    display: none;
  }

  .site-nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding-bottom: 12px;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown__trigger {
    width: 100%;
    justify-content: space-between;
  }

  .nav-dropdown__panel {
    position: static;
    left: auto;
    transform: none;
    padding: 0 0 8px 12px;
    opacity: 1;
    visibility: visible;
    pointer-events: none;
  }

  .nav-dropdown__panel ul {
    box-shadow: none;
    border-color: #edf2f5;
    background: #f8fafc;
  }

  .header-actions.is-open {
    width: auto;
    padding-bottom: 0;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 20px;
  }

  .brand img,
  .footer-logo__mark img {
    width: 48px;
  }

  .brand-text {
    font-size: 0.95rem;
  }

  .header-actions {
    display: none;
  }

  .header-actions.is-open {
    display: flex;
    width: 100%;
    order: 5;
    margin-left: 0;
    padding-bottom: 16px;
  }

  .header-actions.is-open .btn-extra {
    display: inline;
  }

  .header-actions.is-open .btn svg {
    display: block;
  }

  .nav-toggle {
    margin-left: auto;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .h-break,
  .hero h1 em {
    display: block;
  }

  .hero-pills,
  .feature-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .hero-trust {
    display: block;
  }

  .hero-trust .stars {
    display: inline-block;
    margin-right: 8px;
  }

  .hero-frame {
    overflow: hidden;
  }

  .app-mock {
    min-height: 0;
    grid-template-columns: 44px 1fr;
  }

  .app-mock__kpis {
    grid-template-columns: 1fr 1fr;
  }

  .app-mock__kpis article:last-child {
    display: none;
  }

  .app-mock__rows {
    display: none;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .sim-controls,
  .sim-result {
    padding: 22px 18px;
  }

  .promise-card,
  .promise-pain,
  .cta-inner {
    padding: 28px 20px;
  }

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

  .promise-metric {
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn:hover {
    transform: none;
  }
}

.trial-page {
  background:
    radial-gradient(circle at 12% 0%, #dff7ec 0%, transparent 32%),
    radial-gradient(circle at 88% 8%, #e7f6f3 0%, transparent 28%),
    #f7fbf9;
}

.trial-hero {
  padding: 36px 0 8px;
}

.trial-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 auto 18px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--teal-dark);
  font-size: 0.75rem;
  font-weight: 600;
}

.trial-hero .container {
  text-align: center;
}

.trial-hero h1 {
  max-width: 20ch;
  margin: 0 auto;
  font-size: clamp(1.85rem, 4vw, 2.8rem);
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.trial-hero h1 em {
  font-style: normal;
  color: var(--teal);
}

.trial-lead {
  max-width: 46ch;
  margin: 14px auto 36px;
  color: var(--muted);
}

.trial-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  text-align: left;
  align-items: start;
}

.trial-aside,
.trial-form-wrap {
  display: grid;
  gap: 16px;
}

.trial-card,
.trial-quote,
.trial-security,
.trial-form,
.trial-success {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.trial-card,
.trial-form,
.trial-success {
  padding: 26px 24px;
}

.trial-card-kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
  font-weight: 700;
  color: var(--teal-dark);
}

.trial-card-sub {
  color: var(--muted);
  font-size: 0.82rem;
  margin-bottom: 18px;
}

.trial-checks {
  display: grid;
  gap: 14px;
}

.trial-checks li {
  position: relative;
  padding-left: 28px;
}

.trial-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 700;
}

.trial-checks strong {
  display: block;
  font-size: 0.92rem;
}

.trial-checks span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.82rem;
}

.trial-quote {
  padding: 20px 22px;
  background: #f3f6f8;
  border: 0;
  box-shadow: none;
}

.trial-quote .stars {
  margin-bottom: 8px;
}

.trial-quote blockquote {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #334155;
}

.trial-quote-meta {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.trial-security {
  padding: 16px 18px;
}

.trial-security > p {
  margin-bottom: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.trial-security-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.trial-security-row span {
  display: grid;
  gap: 2px;
  font-size: 0.75rem;
  color: var(--muted);
}

.trial-security-row strong {
  color: var(--text);
  font-size: 0.82rem;
}

.trial-form h2,
.trial-success h2 {
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.trial-form-lead {
  margin: 8px 0 22px;
  color: var(--muted);
  font-size: 0.9rem;
}

.trial-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.trial-form label,
.trial-select-label {
  display: grid;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #334155;
}

.trial-form > .trial-choice,
.trial-form > .trial-select-label,
.trial-form > .trial-message-label,
.trial-form > .trial-consent {
  margin: 14px 0 0;
}

.trial-form input[type="text"],
.trial-form input[type="email"],
.trial-form input[type="tel"],
.trial-form select {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #f8fafc;
  font: inherit;
  font-weight: 500;
  color: var(--text);
}

.trial-form input:focus,
.trial-form select:focus,
.trial-form textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgb(0 150 136 / 16%);
  background: #fff;
}

.trial-form textarea {
  width: 100%;
  min-height: 112px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #f8fafc;
  font: inherit;
  font-weight: 500;
  color: var(--text);
  resize: vertical;
}

.trial-form textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgb(0 150 136 / 16%);
  background: #fff;
}

.trial-message-label {
  display: grid;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #334155;
}

.trial-choice-label {
  margin: 0 0 6px;
  color: #334155;
  font-size: 0.82rem;
  font-weight: 600;
}

.trial-offers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.trial-offer {
  position: relative;
  cursor: pointer;
}

.trial-offer input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.trial-offer span {
  display: grid;
  gap: 6px;
  min-height: 100%;
  padding: 14px 12px;
  border: 2px solid var(--border);
  border-radius: 16px;
  background: #fff;
}

.trial-offer small {
  display: inline-flex;
  align-self: start;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 700;
}

.trial-offer strong {
  font-size: 0.86rem;
  line-height: 1.25;
}

.trial-offer em {
  font-style: normal;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 500;
}

.trial-offer:has(input:checked) span,
.trial-offer.is-selected span,
.trial-offer input:focus-visible + span {
  border-color: var(--teal);
  box-shadow: inset 0 0 0 1px rgb(0 150 136 / 24%);
  background: #f3fbfb;
}

.trial-form label.trial-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #475569;
  cursor: pointer;
}

.trial-consent input {
  margin-top: 3px;
  accent-color: var(--teal);
}

.trial-error {
  margin: 0 0 12px;
  color: #b91c1c;
  font-size: 0.84rem;
  font-weight: 600;
}

.trial-form .btn {
  min-height: 48px;
}

.trial-form-foot {
  margin-top: 12px;
  text-align: center;
  color: var(--muted);
  font-size: 0.75rem;
}

.trial-success {
  padding: 42px 28px;
  text-align: center;
}

.trial-success p {
  max-width: 42ch;
  margin: 10px auto 22px;
  color: var(--muted);
}

.trial-faq {
  padding-top: 24px;
}

.trial-faq .faq-inner {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.trial-faq h2 {
  font-size: clamp(1.45rem, 2.6vw, 2.05rem);
  letter-spacing: -0.03em;
}

.trial-faq .faq-list {
  text-align: left;
}

@media (max-width: 980px) {
  .trial-layout,
  .trial-fields,
  .trial-offers,
  .trial-security-row {
    grid-template-columns: 1fr;
  }
}

.demo-page {
  background:
    radial-gradient(circle at 8% 0%, #dff7ec 0%, transparent 34%),
    radial-gradient(circle at 92% 6%, #e7f6f3 0%, transparent 30%),
    linear-gradient(180deg, #f4fbf8 0%, #ffffff 42%);
}

.demo-hero {
  padding: 48px 0 28px;
}

.demo-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: 48px;
  align-items: start;
}

.demo-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.demo-kicker::before {
  content: "";
  width: 36px;
  height: 2px;
  background: var(--teal);
}

.demo-copy h1 {
  max-width: 18ch;
  font-size: clamp(2.05rem, 4.4vw, 3.15rem);
  letter-spacing: -0.045em;
  line-height: 1.12;
}

.demo-copy h1 em {
  font-style: normal;
  background-image: linear-gradient(#2bb34a, #2bb34a);
  background-repeat: no-repeat;
  background-position: 0 88%;
  background-size: 100% 0.18em;
}

.demo-lead {
  max-width: 44ch;
  margin: 18px 0 28px;
  color: var(--muted);
  font-size: 0.98rem;
}

.demo-channels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.demo-channel {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
  padding: 18px 16px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 22px rgb(15 23 42 / 5%);
}

.demo-channel:hover {
  border-color: #b9e4de;
}

.demo-channel__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--teal-soft);
  color: var(--teal);
}

.demo-channel__icon svg {
  width: 20px;
  height: 20px;
}

.demo-channel strong,
.demo-channel small,
.demo-channel em {
  display: block;
}

.demo-channel strong {
  font-size: 0.92rem;
}

.demo-channel small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.75rem;
}

.demo-channel em {
  margin-top: 10px;
  color: var(--teal);
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 600;
}

.demo-channel em::after {
  content: " →";
}

.demo-form-wrap {
  min-width: 0;
}

.demo-form,
.demo-success {
  padding: 28px 26px 26px;
  border: 1px solid rgb(255 255 255 / 70%);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 24px 60px rgb(15 23 42 / 10%);
}

.demo-form h2,
.demo-success h2 {
  margin-bottom: 22px;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.demo-form label,
.demo-message-label {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  color: #334155;
  font-size: 0.82rem;
  font-weight: 600;
}

.demo-form > label:first-of-type {
  margin-top: 0;
}

.demo-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 16px;
}

.demo-fields label {
  margin-top: 0;
}

.demo-form input[type="text"],
.demo-form input[type="tel"],
.demo-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #f4f7f8;
  font: inherit;
  font-weight: 500;
  color: var(--text);
}

.demo-form input[type="text"],
.demo-form input[type="tel"] {
  min-height: 48px;
  padding: 0 14px;
}

.demo-form textarea {
  min-height: 108px;
  padding: 12px 14px;
  resize: vertical;
}

.demo-form input::placeholder,
.demo-form textarea::placeholder {
  color: #94a3b8;
  font-weight: 500;
}

.demo-form input:focus,
.demo-form textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: #fff;
  box-shadow: 0 0 0 3px rgb(0 150 136 / 16%);
}

.demo-choice {
  margin-top: 18px;
}

.demo-choice-label {
  margin: 0 0 10px;
  color: #334155;
  font-size: 0.82rem;
  font-weight: 600;
}

.demo-solutions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.demo-solution {
  position: relative;
  margin: 0;
  cursor: pointer;
}

.demo-solution input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.demo-solution span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 64px;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  background: #fff;
  color: #334155;
  font-size: 0.9rem;
  font-weight: 600;
}

.demo-solution span svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--teal);
}

.demo-solution span::after {
  content: "";
  width: 16px;
  height: 16px;
  margin-left: auto;
  border: 2px solid #cbd5e1;
  border-radius: 999px;
  background: #fff;
  box-shadow: inset 0 0 0 3px #fff;
}

.demo-solution:has(input:checked) span,
.demo-solution.is-selected span,
.demo-solution input:focus-visible + span {
  border-color: var(--teal);
  background: #f3fbfb;
  box-shadow: inset 0 0 0 1px rgb(0 150 136 / 18%);
}

.demo-solution:has(input:checked) span::after,
.demo-solution.is-selected span::after {
  border-color: var(--teal);
  background: var(--teal);
}

.demo-error {
  margin: 14px 0 0;
  color: #b91c1c;
  font-size: 0.84rem;
  font-weight: 600;
}

.demo-form .btn {
  margin-top: 20px;
  min-height: 50px;
}

.demo-success {
  text-align: center;
  padding: 42px 28px;
}

.demo-success p {
  max-width: 42ch;
  margin: 0 auto 22px;
  color: var(--muted);
}

.demo-presence {
  padding: 36px 0 72px;
  background: #fff;
}

.demo-presence__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 36px;
  align-items: center;
}

.demo-presence__copy h2 {
  font-size: clamp(1.55rem, 2.8vw, 2.05rem);
  letter-spacing: -0.03em;
}

.demo-presence__copy > p {
  max-width: 42ch;
  margin: 12px 0 22px;
  color: var(--muted);
}

.demo-office {
  max-width: 360px;
  padding: 18px 18px 16px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 24px rgb(15 23 42 / 5%);
}

.demo-office__title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--teal-dark);
  font-weight: 700;
}

.demo-office p + p,
.demo-office a {
  color: var(--muted);
  font-size: 0.9rem;
}

.demo-office a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: var(--teal);
  font-weight: 600;
}

.demo-office a::before {
  content: "";
  width: 14px;
  height: 11px;
  border: 1.6px solid currentColor;
  border-radius: 3px;
  background:
    linear-gradient(135deg, transparent 46%, currentColor 46% 54%, transparent 54%),
    linear-gradient(45deg, transparent 46%, currentColor 46% 54%, transparent 54%);
  background-size: 100% 50%;
  background-repeat: no-repeat;
  background-position: top, bottom;
}

.demo-map {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  min-height: 340px;
  background: #cde8e4;
}

.demo-map iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
  filter: saturate(0.85) hue-rotate(8deg);
}

.demo-map figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgb(255 255 255 / 92%);
  backdrop-filter: blur(10px);
  color: #334155;
  font-size: 0.82rem;
  font-weight: 600;
}

.demo-map__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #15803d;
  font-size: 0.78rem;
}

.demo-map__status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
}

@media (max-width: 980px) {
  .demo-hero__grid,
  .demo-fields,
  .demo-solutions,
  .demo-channels,
  .demo-presence__grid {
    grid-template-columns: 1fr;
  }

  .demo-copy h1 {
    max-width: 16ch;
  }

  .demo-map iframe {
    height: 280px;
  }
}

@media (max-width: 640px) {
  .demo-hero {
    padding-top: 28px;
  }

  .demo-form,
  .demo-success {
    padding: 22px 18px;
  }
}

.features-page {
  background: #fff;
}

.fx-hero {
  padding: 48px 0 8px;
  text-align: center;
  background:
    radial-gradient(circle at 12% 0%, #dff7ec 0%, transparent 28%),
    radial-gradient(circle at 88% 8%, #e7f6f3 0%, transparent 24%),
    linear-gradient(180deg, #f7fbf9 0%, #ffffff 78%);
}

.fx-hero h1 {
  max-width: 18em;
  margin: 0 auto;
  font-size: clamp(1.85rem, 3.6vw, 2.7rem);
  letter-spacing: -0.04em;
  line-height: 1.18;
}

.fx-hero h1 em {
  font-style: italic;
  color: inherit;
}

.fx-hero .section-lead {
  max-width: 54ch;
  margin: 14px auto 0;
  font-size: 1rem;
}

.fx-hero .eyebrow {
  margin-bottom: 16px;
}

.fx-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 8px 0 0;
  text-align: left;
}

.fx-stats div {
  padding: 18px 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgb(255 255 255 / 82%);
}

.fx-stats dt {
  color: var(--teal-dark);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.fx-stats dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.4;
}

.fx-jump {
  position: sticky;
  top: var(--header-h);
  z-index: 30;
  padding: 10px 0 12px;
  background: rgb(255 255 255 / 96%);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgb(226 232 240 / 80%);
}

.fx-jump .container {
  display: flex;
  justify-content: center;
}

.fx-jump ul {
  display: flex;
  justify-content: center;
  gap: 6px;
  width: max-content;
  max-width: 100%;
  padding: 6px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 10px 24px rgb(15 23 42 / 5%);
  overflow-x: auto;
  scrollbar-width: none;
}

.fx-jump ul::-webkit-scrollbar {
  display: none;
}

.fx-jump a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  color: #475569;
  font-size: 0.84rem;
  font-weight: 600;
  white-space: nowrap;
}

.fx-jump svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.fx-jump a:hover,
.fx-jump a.is-active {
  color: var(--teal-dark);
  background: var(--teal-soft);
}

.fx-section {
  padding: 64px 0;
  scroll-margin-top: calc(var(--header-h) + 64px);
}

.fx-section--soft {
  background: #f7fbf9;
}

.fx-section__head {
  max-width: 640px;
  margin-bottom: 28px;
}

.fx-section__head h2 {
  font-size: clamp(1.45rem, 2.6vw, 2.05rem);
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.fx-section__head--center {
  margin-inline: auto;
  text-align: center;
}

.fx-section__head--center .section-lead {
  margin-inline: auto;
}

.fx-cards,
.fx-deploy {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.fx-deploy {
  grid-template-columns: 1fr 1fr;
}

.fx-card {
  display: flex;
  flex-direction: column;
  padding: 24px 22px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 24px rgb(15 23 42 / 4%);
}

.fx-card h3 {
  margin: 14px 0 8px;
  font-size: 1.05rem;
}

.fx-card > p,
.fx-row p,
.fx-chart-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

.fx-card--accent {
  background: linear-gradient(180deg, #0d5c61 0%, #083e43 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.fx-card--accent p,
.fx-card--accent .fx-checks li {
  color: rgb(255 255 255 / 78%);
}

.fx-card--accent .fx-checks li::before {
  background: #7dcc6a;
}

.fx-card--accent .feature-icon {
  background: rgb(255 255 255 / 12%);
  color: #c6f0c0;
}

.fx-card__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 14px;
}

.fx-card__title h3 {
  margin: 0;
}

.fx-badge {
  flex-shrink: 0;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--teal-dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.fx-badge--light {
  background: rgb(125 204 106 / 18%);
  color: #c6f0c0;
}

.fx-checks {
  margin-top: 16px;
}

.fx-checks li {
  position: relative;
  padding-left: 22px;
  color: #334155;
  font-size: 0.86rem;
}

.fx-checks li + li {
  margin-top: 8px;
}

.fx-checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
}

.fx-card .text-link {
  margin-top: auto;
  padding-top: 18px;
}

.fx-split {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 20px;
  align-items: stretch;
}

.fx-split--chart {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
}

.fx-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fx-row {
  display: flex;
  gap: 14px;
  padding: 20px 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 20px rgb(15 23 42 / 4%);
}

.fx-row h3 {
  margin-bottom: 6px;
  font-size: 1rem;
}

.fx-spotlight {
  display: flex;
  flex-direction: column;
  padding: 26px 24px;
  border-radius: 22px;
  background: linear-gradient(180deg, #0d5c61 0%, #083e43 100%);
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.fx-spotlight__kicker {
  margin-bottom: 10px;
  color: #9ee07a;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fx-spotlight h3 {
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  line-height: 1.25;
}

.fx-spotlight > p {
  margin: 10px 0 18px;
  color: rgb(255 255 255 / 74%);
  font-size: 0.9rem;
}

.fx-spotlight .btn {
  margin-top: auto;
  justify-content: center;
}

.fx-pos {
  margin-bottom: 18px;
  padding: 14px;
  border-radius: 16px;
  background: rgb(255 255 255 / 8%);
  border: 1px solid rgb(255 255 255 / 10%);
}

.fx-pos__top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.78rem;
}

.fx-pos__top span {
  color: #9ee07a;
  font-weight: 600;
}

.fx-pos li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-top: 1px solid rgb(255 255 255 / 10%);
  font-size: 0.82rem;
}

.fx-pos em {
  color: rgb(255 255 255 / 55%);
  font-style: normal;
  font-size: 0.75rem;
}

.fx-pos__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgb(255 255 255 / 16%);
}

.fx-pos__total strong {
  font-size: 1.15rem;
}

.fx-chart-card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 24px rgb(15 23 42 / 4%);
}

.fx-chart-card__top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 8px;
}

.fx-chart-card h3 {
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.fx-chart-card__badge {
  flex-shrink: 0;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--green-soft);
  color: #178a33;
  font-size: 0.72rem;
  font-weight: 700;
}

.fx-chart {
  display: block;
  width: 100%;
  height: auto;
  margin: 8px 0 4px;
}

.fx-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 8px;
}

.fx-kpis div {
  padding: 12px;
  border-radius: 14px;
  background: #f7fbf9;
}

.fx-kpis small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
}

.fx-kpis strong {
  font-size: 1.05rem;
}

.cta-kicker {
  margin-bottom: 10px;
  color: #9ee07a;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

@media (max-width: 980px) {
  .fx-stats,
  .fx-cards,
  .fx-deploy,
  .fx-split,
  .fx-split--chart,
  .fx-kpis {
    grid-template-columns: 1fr;
  }

  .fx-stats {
    grid-template-columns: 1fr 1fr;
  }

  .fx-jump ul {
    justify-content: flex-start;
  }

  .fx-hero h1 {
    max-width: 16em;
  }
}

@media (max-width: 640px) {
  .fx-hero {
    padding-top: 28px;
  }

  .fx-stats,
  .fx-kpis {
    grid-template-columns: 1fr;
  }

  .fx-section {
    padding: 48px 0;
  }

  .fx-jump {
    padding-inline: 0;
  }

  .fx-jump .container {
    width: calc(100% - 24px);
  }
}

.about-page {
  background: #fff;
}

.about-hero {
  padding: 48px 0 8px;
  text-align: center;
  background:
    radial-gradient(circle at 12% 0%, #dff7ec 0%, transparent 28%),
    radial-gradient(circle at 88% 8%, #e7f6f3 0%, transparent 24%),
    linear-gradient(180deg, #f7fbf9 0%, #ffffff 78%);
}

.about-hero .eyebrow {
  margin-bottom: 16px;
}

.about-hero h1 {
  max-width: 16em;
  margin: 0 auto;
  font-size: clamp(1.85rem, 3.6vw, 2.7rem);
  letter-spacing: -0.04em;
  line-height: 1.18;
}

.about-hero h1 em {
  font-style: italic;
  color: inherit;
}

.about-hero .section-lead {
  max-width: 54ch;
  margin: 16px auto 0;
  font-size: 1.02rem;
}

.about-hero__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 40px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgb(255 255 255 / 82%);
  box-shadow: 0 16px 40px rgb(15 23 42 / 6%);
}

.about-stats li {
  display: grid;
  justify-items: center;
  gap: 6px;
  padding: 8px 10px;
  text-align: center;
}

.about-stats__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 4px;
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--teal);
}

.about-stats__icon svg {
  width: 20px;
  height: 20px;
}

.about-stats strong {
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.about-stats li > span:last-child {
  max-width: 22ch;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.4;
}

.about-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding: 6px 12px 6px 6px;
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 700;
}

.about-kicker__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #fff;
  color: var(--teal);
}

.about-kicker__icon svg {
  width: 16px;
  height: 16px;
}

.section-head .about-kicker {
  margin-bottom: 10px;
}

.about-mission,
.about-values,
.about-method,
.about-group,
.about-deploy,
.about-presence {
  padding: 72px 0;
  scroll-margin-top: calc(var(--header-h) + 8px);
}

.about-mission {
  background: #fff;
}

.about-mission__grid,
.about-group__grid,
.about-deploy__grid,
.about-presence__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 28px;
  align-items: start;
}

.about-mission h2,
.about-values h2,
.about-method h2,
.about-group h2,
.about-deploy h2,
.about-presence h2 {
  font-size: clamp(1.45rem, 2.6vw, 2.05rem);
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.about-mission__grid h2 {
  margin-bottom: 16px;
}

.about-mission__grid p,
.about-presence p {
  color: var(--muted);
  font-size: 0.96rem;
}

.about-mission__grid p + p {
  margin-top: 12px;
}

.about-checks {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.about-checks li {
  position: relative;
  padding-left: 28px;
  color: #334155;
  font-size: 0.92rem;
  font-weight: 500;
}

.about-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.about-panel {
  padding: 28px 26px 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, #0d5c61 0%, #083e43 100%);
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.about-panel__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: #9ee0c2;
  font-size: 0.78rem;
  font-weight: 700;
}

.about-panel__kicker span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgb(255 255 255 / 12%);
}

.about-panel h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  line-height: 1.25;
}

.about-panel > p {
  color: rgb(255 255 255 / 78%);
  font-size: 0.92rem;
}

.about-panel__metric {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgb(255 255 255 / 14%);
}

.about-panel__metric strong,
.about-panel__metric span {
  display: block;
}

.about-panel__metric strong {
  font-size: 1.02rem;
}

.about-panel__metric span {
  margin-top: 4px;
  color: rgb(255 255 255 / 68%);
  font-size: 0.8rem;
}

.about-panel__metric a {
  flex-shrink: 0;
  color: #9ee0c2;
  font-size: 0.84rem;
  font-weight: 600;
}

.about-values {
  background: var(--bg);
}

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.about-values__grid article,
.about-card {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 24px 22px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 28px rgb(15 23 42 / 5%);
}

.about-values__grid h3,
.about-card h3 {
  font-size: 1.02rem;
}

.about-values__grid p,
.about-card p,
.about-card li {
  color: var(--muted);
  font-size: 0.88rem;
}

.about-values__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
}

.about-values__icon svg {
  width: 22px;
  height: 22px;
}

.about-values__icon--teal {
  background: var(--teal-soft);
  color: var(--teal);
}

.about-values__icon--green {
  background: var(--green-soft);
  color: var(--green);
}

.about-values__icon--blue {
  background: #e8f1fb;
  color: #2563eb;
}

.about-values__icon--amber {
  background: #fff4e5;
  color: #d97706;
}

.about-method {
  background: #fff;
}

.about-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 8px;
}

.about-steps li {
  padding: 22px 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 24px rgb(15 23 42 / 4%);
}

.about-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--teal-dark);
  font-weight: 700;
  font-size: 0.88rem;
}

.about-steps h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.about-steps p {
  color: var(--muted);
  font-size: 0.86rem;
}

.about-group,
.about-presence {
  background: var(--bg);
}

.about-deploy {
  background: #fff;
}

.about-group__grid,
.about-deploy__grid {
  grid-template-columns: 1fr 1fr;
}

.about-card__kicker {
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.about-card ul {
  display: grid;
  gap: 8px;
  margin: 6px 0 4px;
}

.about-card li {
  position: relative;
  padding-left: 16px;
}

.about-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--teal);
}

.about-card .text-link {
  margin-top: 8px;
}

.about-card--featured {
  background: linear-gradient(180deg, #0d5c61 0%, #083e43 100%);
  border-color: transparent;
  color: #fff;
}

.about-card--featured .about-card__kicker,
.about-card--featured .text-link {
  color: #9ee0c2;
}

.about-card--featured p,
.about-card--featured li {
  color: rgb(255 255 255 / 78%);
}

.about-card--featured li::before {
  background: #9ee0c2;
}

.about-card__badge {
  justify-self: start;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgb(43 179 74 / 18%);
  color: #86efac;
  font-size: 0.7rem;
  font-weight: 700;
}

.about-office {
  max-width: 360px;
  margin-top: 22px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 24px rgb(15 23 42 / 5%);
}

.about-office__title {
  margin-bottom: 6px;
  color: var(--teal-dark);
  font-weight: 700;
}

.about-office p + p,
.about-office a {
  color: var(--muted);
  font-size: 0.9rem;
}

.about-office a {
  display: inline-block;
  margin-top: 10px;
  color: var(--teal);
  font-weight: 600;
}

.about-quote {
  padding: 28px 26px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 16px 40px rgb(15 23 42 / 6%);
}

.about-quote .stars {
  color: #f5b400;
  letter-spacing: 2px;
}

.about-quote blockquote {
  margin: 12px 0 16px;
  color: var(--text);
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.55;
}

.about-quote > p:last-child {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.about-page .faq {
  padding: 24px 0 48px;
  scroll-margin-top: calc(var(--header-h) + 8px);
}

.about-page .faq-inner {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.about-page .faq-list {
  text-align: left;
}

.about-page .faq .section-lead {
  max-width: 48ch;
  margin: 10px auto 0;
}

.about-page .faq .text-link {
  display: inline;
  white-space: normal;
}

@media (max-width: 980px) {
  .about-stats,
  .about-mission__grid,
  .about-values__grid,
  .about-steps,
  .about-group__grid,
  .about-deploy__grid,
  .about-presence__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .about-hero {
    padding-top: 32px;
  }

  .about-stats,
  .about-mission__grid,
  .about-values__grid,
  .about-steps,
  .about-group__grid,
  .about-deploy__grid,
  .about-presence__grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    padding: 12px;
  }

  .about-panel__metric {
    flex-direction: column;
    align-items: flex-start;
  }
}

.faq-page {
  background:
    radial-gradient(circle at 12% 0%, #dff7ec 0%, transparent 28%),
    radial-gradient(circle at 88% 8%, #e7f6f3 0%, transparent 24%),
    linear-gradient(180deg, #f7fbf9 0%, #ffffff 42%);
}

.faq-hero {
  padding: 48px 0 12px;
  text-align: center;
}

.faq-hero h1 {
  max-width: 16em;
  margin: 0 auto;
  font-size: clamp(1.85rem, 3.6vw, 2.7rem);
  letter-spacing: -0.04em;
  line-height: 1.18;
}

.faq-hero h1 em {
  font-style: italic;
}

.faq-hero .section-lead {
  max-width: 48ch;
  margin: 14px auto 0;
  font-size: 1rem;
}

.faq-search {
  position: relative;
  max-width: 560px;
  margin: 28px auto 0;
}

.faq-search svg {
  position: absolute;
  left: 18px;
  top: 50%;
  width: 20px;
  height: 20px;
  color: var(--muted);
  transform: translateY(-50%);
  pointer-events: none;
}

.faq-search input {
  width: 100%;
  min-height: 54px;
  padding: 0 18px 0 50px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  color: var(--text);
  font: inherit;
  font-size: 0.95rem;
  box-shadow: var(--shadow);
  outline: none;
}

.faq-search input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgb(0 150 136 / 14%);
}

.faq-search input::-webkit-search-decoration,
.faq-search input::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.faq-live {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.faq-cats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.faq-cats button {
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  color: #475569;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
}

.faq-cats button:hover {
  color: var(--teal-dark);
  background: var(--teal-soft);
  border-color: transparent;
}

.faq-cats button[aria-pressed="true"] {
  color: var(--teal-dark);
  background: var(--teal-soft);
  border-color: transparent;
}

.faq-body {
  padding: 28px 0 64px;
}

.faq-group {
  max-width: 820px;
  margin: 0 auto 40px;
  scroll-margin-top: calc(var(--header-h) + 16px);
}

.faq-group__head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}

.faq-group__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 14px;
  background: var(--teal-soft);
  color: var(--teal);
}

.faq-group__icon svg {
  width: 22px;
  height: 22px;
}

.faq-group__head h2 {
  font-size: 1.12rem;
  letter-spacing: -0.02em;
}

.faq-group__head p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.86rem;
}

.faq-page .faq-list details {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

.faq-page .faq-list details[open] {
  border-color: #b7e4dc;
  background: #fff;
  box-shadow: 0 10px 28px rgb(15 23 42 / 5%);
}

.faq-empty {
  max-width: 520px;
  margin: 8px auto 48px;
  padding: 42px 24px;
  text-align: center;
  border: 1px dashed var(--border);
  border-radius: 22px;
  background: #fff;
}

.faq-empty h2 {
  font-size: 1.2rem;
}

.faq-empty p {
  margin: 10px auto 22px;
  color: var(--muted);
}

.faq-empty__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.faq-help {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 820px;
  margin: 8px auto 0;
}

.faq-help article {
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
}

.faq-help h2 {
  margin: 4px 0 8px;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.faq-help p {
  color: var(--muted);
  font-size: 0.9rem;
}

.faq-help .btn {
  margin-top: 18px;
}

.faq-help article:last-child {
  background: linear-gradient(180deg, #0d5c61 0%, #083e43 100%);
  border-color: transparent;
  color: #fff;
}

.faq-help article:last-child .section-kicker {
  color: #9ee0c2;
}

.faq-help article:last-child p:not(.section-kicker) {
  color: rgb(255 255 255 / 75%);
}

.faq-more {
  margin-top: 18px;
  text-align: center;
}

.faq-inner .section-head {
  margin-bottom: 0;
}

@media (max-width: 980px) {
  .faq-help {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .faq-hero {
    padding-top: 28px;
  }

  .faq-cats {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
    margin-inline: -16px;
    padding-inline: 16px;
    scrollbar-width: none;
  }

  .faq-cats::-webkit-scrollbar {
    display: none;
  }

  .faq-cats button {
    flex-shrink: 0;
  }
}
