:root {
  --ink: #17222d;
  --muted: #5d6d78;
  --paper: #ffffff;
  --soft: #f3f8fa;
  --line: #d8e3e8;
  --brand: #0e7681;
  --brand-dark: #164a58;
  --brand-deep: #103845;
  --cyan: #20b7c8;
  --blue: #3877ff;
  --violet: #7257ff;
  --emerald: #24a977;
  --amber: #d89b3c;
  --rose: #f06f7f;
  --coral: #ff6b5a;
  --lime: #8fd14f;
  --shadow: 0 28px 80px rgba(16, 56, 69, 0.16);
  --shadow-soft: 0 18px 54px rgba(16, 56, 69, 0.1);
  --radius: 12px;
  --radius-pill: 999px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 0%, rgba(32, 183, 200, 0.14), transparent 34rem),
    radial-gradient(circle at 92% 4%, rgba(216, 155, 60, 0.12), transparent 30rem),
    radial-gradient(circle at 50% 100%, rgba(114, 87, 255, 0.06), transparent 40rem),
    var(--paper);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}

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

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

.inline-art img,
.hero-art img,
.trust-strip-art img,
.problem-art img,
.flow-card img,
.product-panel img,
.operations-art img,
.persona-art img,
.implantation-stepper-art {
  display: block;
  width: 100%;
  height: auto;
}

button {
  font: inherit;
  cursor: pointer;
}

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

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 50;
  padding: 10px 16px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--brand-dark);
  font-weight: 800;
}

.skip-link:focus {
  top: 12px;
}

/* ── Header ── */

.site-header {
  position: sticky;
  top: 16px;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  width: min(1180px, calc(100% - 40px));
  margin: 16px auto 0;
  padding: 10px 14px;
  border: 1px solid rgba(216, 227, 232, 0.78);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
  transition:
    box-shadow 220ms ease,
    background 220ms ease,
    border-color 220ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(14, 118, 129, 0.2);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 22px 60px rgba(16, 56, 69, 0.16);
}

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

.nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.nav a:hover,
.nav a.is-active {
  color: var(--brand-dark);
}

.nav a.is-active {
  font-weight: 800;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  border-radius: 2px;
  background: var(--brand-dark);
  transition: transform 200ms ease, opacity 200ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.button,
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: none;
  border-radius: var(--radius-pill);
  font-weight: 800;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.header-cta,
.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 50%, var(--cyan) 100%);
  box-shadow: 0 18px 36px rgba(14, 118, 129, 0.28);
}

.button.secondary {
  color: var(--brand-dark);
  border: 1px solid rgba(14, 118, 129, 0.24);
  background: rgba(255, 255, 255, 0.82);
}

.button.light {
  color: var(--brand-dark);
  background: #fff;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.button.compact {
  min-height: 38px;
  padding: 0 16px;
  font-size: 0.88rem;
}

.button.full {
  width: 100%;
}

.button.inline-cta {
  margin-top: 20px;
}

.button:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

/* ── Layout ── */

.section,
.section-band {
  padding: 96px max(24px, calc((100vw - 1180px) / 2));
}

.section-band {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(14, 118, 129, 0.1), transparent 42%),
    linear-gradient(180deg, #f5fbfd 0%, #ffffff 100%);
}

.section-soft {
  background:
    radial-gradient(circle at 100% 0%, rgba(114, 87, 255, 0.06), transparent 28rem),
    linear-gradient(180deg, #fafcfd 0%, #fff 100%);
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading.left {
  margin: 0;
  text-align: left;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 16px;
  padding: 7px 14px;
  border: 1px solid rgba(14, 118, 129, 0.2);
  border-radius: var(--radius-pill);
  color: var(--brand-dark);
  background: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow.dark {
  background: rgba(14, 118, 129, 0.08);
}

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

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  color: var(--brand-deep);
  font-size: clamp(2.4rem, 5.5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 14px;
  color: var(--brand-deep);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

h3 {
  margin-bottom: 8px;
  color: var(--brand-deep);
  font-size: 1.15rem;
  line-height: 1.25;
}

.section-heading p,
.hero-copy p,
.operations-copy p,
.contact-copy p {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading.left p {
  margin-left: 0;
}

/* ── Hero ── */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 1.05fr);
  align-items: center;
  gap: 48px;
  min-height: auto;
  padding-top: 56px;
  padding-bottom: 56px;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-glow--cyan {
  top: 80px;
  left: -80px;
  width: 320px;
  height: 320px;
  background: rgba(32, 183, 200, 0.2);
}

.hero-glow--amber {
  top: 40px;
  right: 8%;
  width: 260px;
  height: 260px;
  background: rgba(216, 155, 60, 0.18);
}

.hero-glow--violet {
  bottom: 10%;
  left: 42%;
  width: 220px;
  height: 220px;
  background: rgba(114, 87, 255, 0.14);
}

.hero-copy p {
  margin-left: 0;
}

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

.hero-actions {
  margin: 28px 0 20px;
}

.hero-proof span {
  padding: 7px 12px;
  border: 1px solid rgba(14, 118, 129, 0.14);
  border-radius: var(--radius-pill);
  color: var(--brand-dark);
  background: rgba(255, 255, 255, 0.82);
  font-size: 0.84rem;
  font-weight: 800;
}

.hero-proof span:nth-child(1) {
  border-color: rgba(32, 183, 200, 0.3);
  background: rgba(32, 183, 200, 0.1);
}

.hero-proof span:nth-child(2) {
  border-color: rgba(216, 155, 60, 0.3);
  background: rgba(216, 155, 60, 0.1);
}

.hero-proof span:nth-child(3) {
  border-color: rgba(36, 169, 119, 0.3);
  background: rgba(36, 169, 119, 0.1);
}

.hero-proof span:nth-child(4) {
  border-color: rgba(114, 87, 255, 0.3);
  background: rgba(114, 87, 255, 0.08);
}

.hero-art img {
  width: min(720px, 100%);
  filter: drop-shadow(0 34px 60px rgba(16, 56, 69, 0.18));
}

/* ── Animations ── */

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.float-slow {
  animation: float 7s ease-in-out infinite;
}

.float-delay {
  animation: float 6s ease-in-out 0.5s infinite;
}

.float-delay-2 {
  animation: float 6.5s ease-in-out 1s infinite;
}

/* ── Trust strip ── */

.trust-strip {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  margin: -28px auto 0;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.trust-strip-art {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.trust-chips {
  display: none;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 8px;
  list-style: none;
}

.trust-chips li {
  flex: 1 1 calc(33% - 8px);
  min-width: 96px;
  padding: 10px 8px;
  border-radius: var(--radius-pill);
  color: var(--brand-dark);
  background: #f3f8fa;
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
}

.trust-chips li[data-step="1"],
.trust-chips li[data-step="5"] {
  background: rgba(32, 183, 200, 0.14);
}

.trust-chips li[data-step="2"],
.trust-chips li[data-step="6"] {
  background: rgba(216, 155, 60, 0.14);
}

.trust-chips li[data-step="3"],
.trust-chips li[data-step="7"] {
  background: rgba(114, 87, 255, 0.1);
}

.trust-chips li[data-step="4"] {
  background: rgba(36, 169, 119, 0.12);
}

/* ── Personas ── */

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

.persona-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.persona-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.persona-card[data-accent="cyan"]:hover {
  border-color: rgba(32, 183, 200, 0.4);
}

.persona-card[data-accent="amber"]:hover {
  border-color: rgba(216, 155, 60, 0.4);
}

.persona-card[data-accent="violet"]:hover {
  border-color: rgba(114, 87, 255, 0.4);
}

.persona-art {
  width: 100%;
  margin-bottom: 16px;
  border-radius: calc(var(--radius) - 2px);
}

.persona-art img {
  display: block;
  width: 100%;
  height: auto;
}

.persona-tag {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.persona-card[data-accent="cyan"] .persona-tag {
  color: var(--brand-dark);
  background: rgba(32, 183, 200, 0.14);
}

.persona-card[data-accent="amber"] .persona-tag {
  color: #8a5a12;
  background: rgba(216, 155, 60, 0.18);
}

.persona-card[data-accent="violet"] .persona-tag {
  color: #4a38a8;
  background: rgba(114, 87, 255, 0.14);
}

.persona-pain {
  margin-bottom: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(240, 111, 127, 0.08);
  color: var(--ink);
  font-size: 0.92rem;
}

.persona-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

/* ── Value cards ── */

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.value-card,
.flow-card,
.outcome,
.testimonial,
.badge {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.value-card {
  min-height: 240px;
  padding: 26px;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.value-card[data-accent="cyan"]:hover {
  border-color: rgba(32, 183, 200, 0.35);
}

.value-card[data-accent="amber"]:hover {
  border-color: rgba(216, 155, 60, 0.35);
}

.value-card[data-accent="emerald"]:hover {
  border-color: rgba(36, 169, 119, 0.35);
}

.value-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
  border-radius: 12px;
  background: rgba(32, 183, 200, 0.12);
}

.value-card[data-accent="amber"] .value-icon {
  background: rgba(216, 155, 60, 0.14);
}

.value-card[data-accent="emerald"] .value-icon {
  background: rgba(36, 169, 119, 0.12);
}

.value-icon img {
  stroke: var(--brand-dark);
}

.value-num {
  display: inline-flex;
  margin-bottom: 28px;
  font-size: 1.1rem;
  font-weight: 950;
}

.value-card[data-accent="cyan"] .value-num {
  color: var(--cyan);
}

.value-card[data-accent="amber"] .value-num {
  color: var(--amber);
}

.value-card[data-accent="emerald"] .value-num {
  color: var(--emerald);
}

.value-card p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.problem-split {
  margin-bottom: 48px;
}

.problem-art {
  width: min(720px, 100%);
  filter: drop-shadow(0 24px 48px rgba(16, 56, 69, 0.12));
}

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

.diff-item[data-accent="violet"] {
  background:
    linear-gradient(135deg, rgba(114, 87, 255, 0.08), transparent),
    #fff;
}

.diff-item[data-accent="cyan"] {
  background:
    linear-gradient(135deg, rgba(32, 183, 200, 0.08), transparent),
    #fff;
}

.diff-item[data-accent="emerald"] {
  background:
    linear-gradient(135deg, rgba(36, 169, 119, 0.08), transparent),
    #fff;
}

.diff-icon {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
  border-radius: 10px;
  background: rgba(14, 118, 129, 0.1);
}

.diff-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--brand-deep);
  font-size: 1rem;
}

.diff-item span {
  color: var(--muted);
  font-size: 0.92rem;
}

/* ── Flow stage ── */

.flow-stage {
  background:
    radial-gradient(circle at 82% 18%, rgba(114, 87, 255, 0.22), transparent 26rem),
    radial-gradient(circle at 12% 80%, rgba(216, 155, 60, 0.2), transparent 25rem),
    radial-gradient(circle at 50% 50%, rgba(32, 183, 200, 0.08), transparent 30rem),
    linear-gradient(135deg, #133f4d, #0e7681);
}

.flow-stage h2,
.flow-stage .section-heading p {
  color: #fff;
}

.flow-stage .section-heading p {
  color: rgba(255, 255, 255, 0.8);
}

.flow-stage .eyebrow {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
}

.flow-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.flow-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.9fr) 1fr;
  align-items: center;
  gap: 20px;
  padding: 22px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.16);
}

.flow-tag {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  color: var(--brand-dark);
  background: rgba(14, 118, 129, 0.12);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.1em;
}

.flow-tag--amber {
  color: #8a5a12;
  background: rgba(216, 155, 60, 0.18);
}

.flow-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.cta-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.cta-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.08rem;
  font-weight: 700;
}

/* ── Product showcase ── */

.product-showcase {
  max-width: 820px;
  margin: 0 auto;
}

.product-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.product-tab {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  color: var(--muted);
  background: #fff;
  font-weight: 800;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.product-tab.active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--brand-dark), var(--cyan));
}

.product-panels {
  position: relative;
}

.product-panel {
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.product-panel.active {
  animation: panel-in 420ms ease;
}

@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-panel img {
  width: 100%;
  border-radius: calc(var(--radius) - 4px);
}

.product-panel figcaption {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.94rem;
  text-align: center;
}

/* ── Modules ── */

.split {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: start;
  gap: 48px;
}

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

.module {
  min-height: 130px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  text-align: left;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.module-icon {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 10px;
  border-radius: 10px;
  background: rgba(32, 183, 200, 0.12);
}

.module h3 {
  margin: 0 0 8px;
  color: var(--brand-dark);
  font-size: inherit;
  font-weight: 950;
}

.module p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.module:hover {
  transform: translateY(-4px);
  border-color: rgba(32, 183, 200, 0.38);
  box-shadow: var(--shadow-soft);
  background:
    linear-gradient(135deg, rgba(32, 183, 200, 0.12), transparent),
    #fff;
}

/* ── Operations ── */

.operations {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  align-items: center;
  gap: 48px;
  background:
    radial-gradient(circle at 18% 22%, rgba(36, 169, 119, 0.16), transparent 23rem),
    radial-gradient(circle at 88% 70%, rgba(255, 107, 90, 0.08), transparent 20rem),
    linear-gradient(180deg, #f7fbfd, #fff);
}

.operations-copy p {
  margin-left: 0;
}

.operations-art {
  width: min(660px, 100%);
  filter: drop-shadow(0 32px 60px rgba(16, 56, 69, 0.12));
}

/* ── Outcomes ── */

.outcomes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 56px 0;
}

.outcome {
  padding: 28px;
  text-align: center;
  transition: transform 200ms ease;
}

.outcome:hover {
  transform: translateY(-4px);
}

.outcome[data-accent="cyan"] {
  background:
    linear-gradient(135deg, rgba(32, 183, 200, 0.12), transparent),
    #fff;
}

.outcome[data-accent="violet"] {
  background:
    linear-gradient(135deg, rgba(114, 87, 255, 0.1), transparent),
    #fff;
}

.outcome[data-accent="emerald"] {
  background:
    linear-gradient(135deg, rgba(36, 169, 119, 0.1), transparent),
    #fff;
}

.outcome strong {
  display: block;
  margin-bottom: 6px;
  color: var(--brand);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.outcome span {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.92rem;
}

/* ── Implantation stepper ── */

.stepper-wrap {
  width: 100%;
  margin-top: 32px;
}

.implantation-stepper-art {
  width: 100%;
  height: auto;
}

/* ── Social proof ── */

.social-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: stretch;
  gap: 10px;
  max-width: 980px;
  margin: 0 auto;
}

.testimonials {
  display: grid;
  gap: 10px;
}

.testimonial {
  margin: 0;
  padding: 28px;
  border-left: 4px solid var(--cyan);
}

.testimonial-alt {
  border-left-color: var(--emerald);
}

.testimonial p {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 1.06rem;
  font-style: italic;
  line-height: 1.6;
}

.testimonial footer strong {
  display: block;
  color: var(--brand-deep);
}

.testimonial footer span {
  color: var(--muted);
  font-size: 0.9rem;
}

.trust-badges {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 10px;
  height: 100%;
}

.trust-badges .badge {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
  padding: 20px 18px;
}

.badge-icon {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 8px;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-dark), var(--cyan));
}

.badge-icon img {
  filter: brightness(0) invert(1);
}

.badge:nth-child(2) .badge-icon {
  background: linear-gradient(135deg, var(--amber), var(--coral));
}

.badge:nth-child(3) .badge-icon {
  background: linear-gradient(135deg, var(--violet), var(--blue));
}

.badge strong {
  display: block;
  margin-bottom: 4px;
  color: var(--brand-deep);
}

.badge span {
  color: var(--muted);
  font-size: 0.88rem;
}

/* ── FAQ ── */

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
}

.faq-item summary {
  padding: 18px 20px;
  color: var(--brand-deep);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--cyan);
  font-size: 1.2rem;
  font-weight: 900;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
  font-size: 0.96rem;
}

/* ── Contact ── */

.contact {
  background:
    radial-gradient(circle at 80% 20%, rgba(216, 155, 60, 0.28), transparent 24rem),
    radial-gradient(circle at 16% 84%, rgba(32, 183, 200, 0.22), transparent 24rem),
    linear-gradient(135deg, #103845, #0e7681);
}

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

.contact-copy p,
.contact-points {
  color: rgba(255, 255, 255, 0.82);
}

.contact-copy p {
  margin-left: 0;
}

.contact .eyebrow {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: start;
}

.contact-points {
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.contact-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.contact-points li img {
  flex-shrink: 0;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.contact-form {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
}

.field {
  margin-bottom: 14px;
}

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

.field label {
  display: block;
  margin-bottom: 6px;
  color: var(--brand-deep);
  font-size: 0.88rem;
  font-weight: 700;
}

.field input,
.field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(32, 183, 200, 0.5);
  box-shadow: 0 0 0 3px rgba(32, 183, 200, 0.15);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #b8c4cc;
  opacity: 1;
}

.button.primary:disabled {
  opacity: 0.72;
  cursor: not-allowed;
}

.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  text-align: center;
}

.field-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-error {
  margin: 12px 0 0;
  color: #c0392b;
  font-size: 0.88rem;
  text-align: center;
}

.form-success {
  margin: 12px 0 0;
  padding: 12px;
  border-radius: 8px;
  color: var(--brand-dark);
  background: rgba(36, 169, 119, 0.12);
  font-size: 0.9rem;
  text-align: center;
}

/* ── Footer ── */

.site-footer {
  padding: 48px max(24px, calc((100vw - 1180px) / 2)) 28px;
  background: var(--brand-deep);
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  align-items: start;
  gap: 40px 64px;
  margin-bottom: 28px;
}

.footer-heading {
  display: block;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-brand p {
  max-width: 320px;
  margin: 14px 0 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 32px;
  row-gap: 2px;
}

.footer-nav .footer-heading {
  grid-column: 1 / -1;
}

.footer-nav a {
  display: inline-block;
  width: fit-content;
  padding: 5px 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.94rem;
  font-weight: 600;
  transition: color 180ms ease;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.84rem;
  text-align: center;
}

/* ── Reveal ── */

.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

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

/* ── Responsive ── */

@media (max-width: 1050px) {
  .hero,
  .split,
  .operations,
  .contact-grid,
  .social-grid {
    grid-template-columns: 1fr;
  }

  .persona-grid,
  .value-grid,
  .outcomes,
  .diff-strip {
    grid-template-columns: 1fr;
  }

  .flow-cards {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr auto;
    width: calc(100% - 24px);
    margin-top: 10px;
    top: 10px;
    padding: 8px 10px;
    border-radius: 16px;
  }

  .nav {
    position: fixed;
    top: 72px;
    right: 12px;
    left: 12px;
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 10px 12px;
    border-radius: 8px;
  }

  .nav a:hover {
    background: rgba(32, 183, 200, 0.08);
  }

  .menu-toggle {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .section,
  .section-band,
  .contact {
    padding: 64px 18px;
  }

  .hero {
    gap: 32px;
    min-height: auto;
    padding-top: 48px;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 2rem;
  }

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

  .button {
    width: 100%;
  }

  .hero-proof {
    display: none;
  }

  .trust-strip {
    margin-top: 0;
    padding: 8px;
  }

  .trust-strip-art {
    display: none;
  }

  .trust-chips {
    display: flex;
  }

  .flow-card {
    grid-template-columns: 1fr;
  }

  .module-panel {
    grid-template-columns: 1fr;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

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

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }

  .float-slow,
  .float-delay,
  .float-delay-2 {
    animation: none;
  }
}
