*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #ffffff;
  --bg-subtle: #f8fafc;
  --bg-muted: #f1f5f9;
  --bg-card: #ffffff;
  --border: #e2e8f0;
  --border-hover: #99f6e4;
  --text: #0f172a;
  --text-secondary: #334155;
  --text-muted: #64748b;
  --mint: #5eead4;
  --mint-soft: #2dd4bf;
  --teal: #14b8a6;
  --teal-deep: #0d9488;
  --teal-darker: #0f766e;
  --accent: var(--teal-deep);
  --accent-bright: var(--teal);
  --accent-glow: rgba(13, 148, 136, 0.28);
  --accent-surface: #ecfdf5;
  --accent-border: #a7f3d0;
  --accent-border-soft: #d1fae5;
  --gradient-brand: linear-gradient(120deg, #0f766e 0%, #0d9488 28%, #14b8a6 55%, #2dd4bf 82%, #5eead4 100%);
  --gradient-text: var(--gradient-brand);
  --gradient-icon: var(--gradient-brand);
  --gradient-btn: linear-gradient(135deg, #2dd4bf 0%, #14b8a6 40%, #0d9488 75%, #0f766e 100%);
  --gradient-btn-hover: linear-gradient(135deg, #5eead4 0%, #14b8a6 42%, #0d9488 100%);
  --gradient-surface: linear-gradient(145deg, #ecfdf5 0%, #ffffff 50%, #f0fdfa 100%);
  --gradient-cta: linear-gradient(135deg, #ecfdf5 0%, #f0fdfa 55%, #ecfdf5 100%);
  --code-kw: #2dd4bf;
  --code-str: #6ee7b7;
  --code-cmt: #94a3b8;
  --code-method: #c4b5fd;
  --code-key: #67e8f9;
  --code-num: #fdba74;
  --code-path: #e2e8f0;
  --success: #059669;
  --font: "Figtree", system-ui, sans-serif;
  --font-display: "Sora", var(--font);
  --radius: 12px;
  --radius-lg: 16px;
  --radius-btn: 10px;
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.1);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1160px;
  --footer-bg: #0f172a;
  --footer-text: #cbd5e1;
}

html {
  scroll-behavior: smooth;
  --scroll-y: 0px;
  --mouse-x: 50%;
  --mouse-y: 50%;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 75% 50% at 50% -8%, rgba(45, 212, 191, 0.16), transparent 58%),
    radial-gradient(ellipse 45% 35% at 100% 15%, rgba(45, 212, 191, 0.1), transparent 55%),
    radial-gradient(ellipse 35% 30% at 0% 85%, rgba(20, 184, 166, 0.07), transparent 50%),
    var(--bg);
  pointer-events: none;
  transform: translate3d(0, calc(var(--scroll-y) * -0.25), 0);
  will-change: transform;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.45;
  background: radial-gradient(
    600px circle at var(--mouse-x) var(--mouse-y),
    rgba(45, 212, 191, 0.07),
    transparent 42%
  );
  transition: opacity 0.4s var(--ease);
}

.parallax-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

.parallax-layer .mesh-orb {
  position: absolute;
}

.parallax-layer--section {
  inset: auto;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.parallax-layer--slow .mesh-orb {
  animation-duration: 26s;
}

.mesh-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  pointer-events: none;
  animation: orbFloat 20s var(--ease) infinite alternate;
}

.mesh-orb--1 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.35) 0%, rgba(45, 212, 191, 0.08) 55%, transparent 72%);
  top: -180px;
  right: -140px;
}

.mesh-orb--2 {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.2) 0%, rgba(13, 148, 136, 0.06) 60%, transparent 75%);
  bottom: 8%;
  left: -100px;
  animation-delay: -8s;
}

@keyframes orbFloat {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(20px, 24px) scale(1.05); }
}

a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; height: auto; }

.container {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

.hero-grid > *,
.compliance-columns > *,
.access-layout > *,
.cards-grid > *,
.steps-grid > *,
.pillars-grid > *,
.pricing-grid > * {
  min-width: 0;
}

/* ── Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible { opacity: 1; transform: translateY(0); }

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}

.reveal-stagger > *.is-visible:nth-child(1) { transition-delay: 0.04s; }
.reveal-stagger > *.is-visible:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger > *.is-visible:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger > *.is-visible:nth-child(4) { transition-delay: 0.22s; }
.reveal-stagger > *.is-visible:nth-child(5) { transition-delay: 0.28s; }
.reveal-stagger > *.is-visible:nth-child(6) { transition-delay: 0.34s; }

.reveal-stagger > *.is-visible { opacity: 1; transform: translateY(0); }

.reveal-stagger > *.is-visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  transform: translate3d(-32px, 20px, 0);
}

.reveal-right {
  transform: translate3d(32px, 20px, 0);
}

.reveal-left.is-visible,
.reveal-right.is-visible {
  transform: translate3d(0, 0, 0);
}

.reveal-scale {
  transform: translateY(24px) scale(0.96);
}

.reveal-scale.is-visible {
  transform: translateY(0) scale(1);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 300;
  background: var(--gradient-brand);
  box-shadow: 0 0 12px rgba(45, 212, 191, 0.45);
  pointer-events: none;
  transition: width 0.12s linear;
}

.hero-grid-glow {
  position: absolute;
  inset: 10% 5% auto;
  height: 55%;
  background: radial-gradient(ellipse 70% 80% at 70% 40%, rgba(45, 212, 191, 0.12), transparent 68%);
  pointer-events: none;
  z-index: 0;
  animation: heroGlowPulse 8s ease-in-out infinite alternate;
}

@keyframes heroGlowPulse {
  from { opacity: 0.65; transform: scale(1); }
  to { opacity: 1; transform: scale(1.04); }
}

.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  will-change: transform;
}

.hero-visual-inner .tilt-card {
  border-radius: var(--radius-lg);
}

.why-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.why-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
}

.why-orb--1 {
  width: 320px;
  height: 320px;
  top: 10%;
  left: -8%;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.22), transparent 70%);
}

.why-orb--2 {
  width: 280px;
  height: 280px;
  bottom: 5%;
  right: -5%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.14), transparent 72%);
}

.stat-item.is-visible {
  animation: statPop 0.55s var(--ease) both;
}

@keyframes statPop {
  from { transform: translateY(12px) scale(0.98); opacity: 0.6; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}

.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 38%,
    rgba(255, 255, 255, 0.28) 50%,
    transparent 62%
  );
  transform: translateX(-130%);
  transition: transform 0.65s var(--ease);
  pointer-events: none;
}

.btn-primary:hover::after {
  transform: translateX(130%);
}

.btn--calm::after {
  display: none;
}

.btn--calm:hover {
  transform: translateY(-1px);
}

.pricing-card .btn-primary:hover {
  transform: none;
  box-shadow: 0 4px 18px var(--accent-glow);
}

.compliance-code.tilt-card:hover {
  box-shadow: 0 28px 70px rgba(13, 148, 136, 0.22), var(--shadow-lg);
}

.pillar:hover .pillar-art img {
  transform: translateY(-6px) scale(1.03);
}

.pillar-art img {
  transition: transform 0.45s var(--ease);
}

.card--solution:hover {
  transform: translateY(-8px);
}

.card--solution {
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.25s;
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s var(--ease), border-color 0.3s;
}

.site-header:has(.nav-main.open) {
  border-bottom-color: var(--border);
}

.site-header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: clamp(10px, 1.6vw, 20px);
  padding: 16px 0;
  min-width: 0;
}

.logo {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.logo:hover { opacity: 0.85; }
.site-header .logo-img {
  height: 52px;
  width: auto;
  max-width: min(180px, 34vw);
  object-fit: contain;
  object-position: left center;
}

.footer-brand .logo {
  display: inline-flex;
  margin-bottom: 4px;
}

.footer-brand .logo-img,
.footer-brand .logo-img--footer {
  height: 40px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  object-position: left center;
}

.nav-main {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  justify-self: center;
  flex-shrink: 1;
  min-width: 0;
}

.nav-main a {
  font-size: clamp(0.8rem, 1vw, 0.92rem);
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-main a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: var(--teal-deep);
  border-radius: 2px;
  transition: width 0.25s var(--ease);
}

.nav-main a:hover,
.nav-main a.active { color: var(--text); }

.nav-main a:hover::after,
.nav-main a.active::after { width: 100%; }

.header-actions {
  grid-column: 3;
  grid-row: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-self: end;
  flex-shrink: 0;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: clamp(6px, 1vw, 10px);
  flex-shrink: 0;
}

.site-header .header-cta .btn {
  padding: clamp(9px, 1.1vw, 12px) clamp(14px, 1.8vw, 22px);
  font-size: clamp(0.78rem, 0.95vw, 0.9rem);
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.25s, background 0.25s, border-color 0.25s, color 0.25s;
}

.btn:active { transform: scale(0.98); }

.btn:focus-visible {
  outline: 2px solid var(--teal-deep);
  outline-offset: 2px;
}

.btn-ghost {
  background: var(--bg);
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--teal);
  color: var(--teal-deep);
  background: var(--bg-subtle);
}

.btn-primary {
  background: var(--gradient-btn);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 18px var(--accent-glow);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-primary:hover {
  background: var(--gradient-btn-hover);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(13, 148, 136, 0.35);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-shrink: 0;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
}

/* ── Hero ── */
.hero {
  position: relative;
  padding: 48px 0 28px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 70% at 92% 8%, rgba(45, 212, 191, 0.12), transparent 58%),
    radial-gradient(ellipse 55% 45% at 8% 92%, rgba(13, 148, 136, 0.06), transparent 52%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: var(--teal-darker);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-title,
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.8vw, 3.35rem);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--text);
}

.hero-title .text-accent,
.hero-title .gradient,
.hero h1 .gradient {
  background: var(--gradient-text);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  animation: gradientShift 10s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.section-band-light {
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(45, 212, 191, 0.04), transparent 70%),
    var(--bg);
}

.section-band-muted {
  background:
    radial-gradient(ellipse 50% 35% at 0% 50%, rgba(45, 212, 191, 0.05), transparent 60%),
    var(--bg-subtle);
  border-block: 1px solid var(--border);
}

.section-intro-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 760px;
  margin-inline: auto;
}

.section-intro-center .section-label,
.section-intro-center .section-title,
.section-intro-center .section-lead {
  width: 100%;
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
}

.section-lead--center { margin-inline: auto; text-align: center; }

.integration-section {
  position: relative;
  overflow: hidden;
}

.integration-section > .container {
  position: relative;
  z-index: 1;
}

.integration-section .mesh-orb--section {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.45;
  pointer-events: none;
  will-change: transform;
}

.mesh-orb--int-1 {
  width: 440px;
  height: 440px;
  top: -120px;
  left: -140px;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.22) 0%, transparent 68%);
}

.mesh-orb--int-2 {
  width: 360px;
  height: 360px;
  bottom: -80px;
  right: -100px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.16) 0%, transparent 70%);
}

.steps-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 40px;
  align-items: stretch;
  width: 100%;
  max-width: 1040px;
  margin-inline: auto;
}

.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 20px 26px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg);
  box-shadow: none;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.35s var(--ease),
    border-color 0.25s var(--ease),
    box-shadow 0.35s var(--ease);
}

.step-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(45, 212, 191, 0.07), transparent 58%);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  pointer-events: none;
}

.step-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-border);
  box-shadow: var(--shadow);
}

.step-card:hover::before {
  opacity: 1;
}

.step-num {
  display: block;
  width: auto;
  height: auto;
  margin-bottom: 20px;
  padding: 0;
  border-radius: 0;
  font-family: var(--font-display);
  font-size: clamp(3.25rem, 4.2vw, 4.5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  background-image: var(--gradient-brand);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.step-card h3 {
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
  line-height: 1.35;
}

.step-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.dev-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 4px;
}

.dev-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.dev-card:hover {
  border-color: var(--accent-border);
  box-shadow: var(--shadow);
}

.dev-card__icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--accent-surface);
  border: 1px solid var(--accent-border-soft);
  color: var(--teal-deep);
}

.dev-card__body {
  flex: 1;
  min-width: 0;
}

.dev-card h3 {
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}

.dev-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  line-height: 1.55;
}

.dev-card .card-link {
  margin-top: 0;
  font-size: 0.88rem;
}

.compliance-section {
  padding: 72px 0;
}

.compliance-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.compliance-columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: 48px;
  align-items: stretch;
}

.compliance-left {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 100%;
}

.compliance-eyebrow { margin-bottom: 0; }
.compliance-title { max-width: none; margin-bottom: 0; }
.compliance-lead { max-width: none; margin-bottom: 0; }
.compliance-cards { margin-top: 0; flex: 1 1 auto; }
.compliance-cta { margin-top: auto; padding-top: 10px; }
.compliance-code {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  height: 100%;
}

.compliance-code .code-block--window {
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
  display: flex;
  flex-direction: column;
  line-height: 1.88;
  font-size: 0.79rem;
  padding: 24px 22px 28px;
  -webkit-overflow-scrolling: touch;
}

.compliance-code .code-block--window code {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1 1 auto;
  min-height: 100%;
  gap: clamp(16px, 4vh, 40px);
}

.compliance-code .code-chunk {
  display: block;
  white-space: pre;
}

.compliance-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.code-window {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #0f172a;
  box-shadow: var(--shadow-lg);
  align-self: stretch;
  will-change: transform;
  transition: box-shadow 0.4s var(--ease);
}

.compliance-layout .code-window:hover {
  box-shadow: 0 24px 60px rgba(13, 148, 136, 0.18), var(--shadow-lg);
}

.compliance-code.code-window:hover {
  box-shadow: 0 24px 60px rgba(13, 148, 136, 0.18), var(--shadow-lg);
}

.code-window__bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 14px 18px;
  background: #1e293b;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.code-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.code-dot--red { background: #ff5f57; }
.code-dot--yellow { background: #febc2e; }
.code-dot--green { background: #28c840; }

.code-block--window {
  margin: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 22px 24px 26px;
  min-height: 0;
  background: #0f172a;
}

.code-block--animated {
  position: relative;
  min-height: 340px;
  padding: 0;
  overflow: hidden;
}

.code-block--animated .code-pane {
  position: absolute;
  inset: 0;
  padding: 22px 26px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
  pointer-events: none;
}

.code-block--animated .code-pane.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.pillar--dark {
  background: var(--footer-bg);
  border-color: rgba(148, 163, 184, 0.2);
  color: var(--footer-text);
}

.pillar--dark h3 { color: #f1f5f9; }
.pillar--dark p { color: #94a3b8; }
.pillar--dark .pillar-icon { color: var(--mint-soft); }

.pillar-icon svg { display: block; }
.flow-icon { color: var(--teal-deep); display: flex; align-items: center; justify-content: center; }

.card-icon--svg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent-surface);
  border: 1px solid var(--accent-border-soft);
  color: var(--teal-deep);
  font-size: 0;
}

.why-section {
  padding: 80px 0;
  background: #0a0f1a;
  color: var(--footer-text);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 0% 50%, rgba(45, 212, 191, 0.06), transparent 60%),
    radial-gradient(ellipse 40% 50% at 100% 20%, rgba(56, 189, 248, 0.04), transparent 55%);
  pointer-events: none;
}

.why-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  column-gap: 48px;
  row-gap: 20px;
  align-items: stretch;
  grid-template-areas:
    "eyebrow eyebrow"
    "title features"
    "main features";
}

.why-eyebrow {
  grid-area: eyebrow;
  margin-bottom: 0;
  letter-spacing: 0.14em;
}

.section-label--light { color: var(--mint-soft); }

.why-title {
  grid-area: title;
  align-self: start;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.2vw, 2.45rem);
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.18;
  max-width: 12.5em;
  letter-spacing: -0.02em;
}

.why-main {
  grid-area: main;
  align-self: start;
  display: flex;
  flex-direction: column;
}

.why-features {
  grid-area: features;
  align-self: stretch;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
  min-height: 100%;
  height: 100%;
}

.why-lead {
  font-size: 1.08rem;
  color: #f1f5f9;
  margin-bottom: 18px;
  line-height: 1.65;
  max-width: 36em;
}

.why-highlight {
  color: var(--mint-soft);
  font-weight: 600;
}

.why-body {
  font-size: 0.94rem;
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 36em;
}

.why-tagline {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: auto;
  padding-top: 8px;
}

.why-tagline-text {
  margin: 0;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.why-tagline-line {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--mint-soft);
  line-height: 1.45;
}

.why-tagline-accent {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--mint-soft);
  line-height: 1.45;
}

.why-icon {
  display: block;
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
}

.why-icon-wrap {
  flex: 0 0 56px;
  width: 56px;
  min-width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon-wrap--tagline {
  flex-basis: 52px;
  width: 52px;
  min-width: 52px;
  height: 52px;
}

.why-feature {
  flex: 1 1 0;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 22px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(148, 163, 184, 0.12);
  min-height: 0;
}

.why-feature-copy {
  flex: 1;
  min-width: 0;
  padding-top: 2px;
}

.why-feature-copy strong {
  display: block;
  color: #f8fafc;
  margin-bottom: 6px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
}

.why-feature-copy p {
  font-size: 0.88rem;
  color: #94a3b8;
  line-height: 1.6;
  margin: 0;
}

.hero h1 .gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 520px;
}

.hero-lead strong { color: var(--text-secondary); font-weight: 600; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.hero-trust span { font-size: 0.82rem; color: var(--text-muted); }

.trust-pills { display: flex; flex-wrap: wrap; gap: 8px; }

.trust-pill {
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 600;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  transition: border-color 0.2s, background 0.2s;
}

.trust-pill:hover {
  border-color: #a7f3d0;
  background: #ecfdf5;
  color: var(--teal-darker);
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  overflow: visible;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  will-change: transform;
  transition: transform 0.35s var(--ease);
}

.hero-visual:hover {
  transform: translateY(-4px);
}

.hero-visual-inner {
  animation: heroFloat 7s var(--ease) infinite alternate;
}

@keyframes heroFloat {
  from { transform: translateY(0); }
  to { transform: translateY(-14px); }
}

.hero-illustration {
  display: block;
  width: 100%;
  max-width: 560px;
  height: auto;
  margin-inline: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center center;
}

.verify-flow { display: flex; flex-direction: column; gap: 12px; }

.flow-step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}

.flow-step:hover {
  transform: translateX(4px);
  border-color: #a7f3d0;
  box-shadow: var(--shadow-sm);
}

.flow-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  background: #ecfdf5;
  border: 1px solid #d1fae5;
}

.flow-step strong { display: block; font-size: 0.9rem; color: var(--text); }
.flow-step span { font-size: 0.8rem; color: var(--text-muted); }

.flow-status {
  margin-left: auto;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}

.flow-status.done { background: #d1fae5; color: var(--success); }
.flow-status.live { background: #ccfbf1; color: var(--teal-darker); animation: statusPulse 1.5s ease infinite; }

@keyframes statusPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(13, 148, 136, 0.25); }
  50% { box-shadow: 0 0 0 5px rgba(13, 148, 136, 0); }
}

/* ── Pillars ── */
.pillars {
  padding: 20px 0 52px;
  background: var(--bg);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 40px;
  align-items: start;
}

.pillar {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  text-align: center;
}

.pillar:hover {
  transform: none;
  box-shadow: none;
  border-color: transparent;
}

.pillar-art {
  margin-bottom: 16px;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pillar-art img,
.pillar-art svg {
  width: min(100%, 180px);
  height: auto;
  max-height: 150px;
  object-fit: contain;
  object-position: center center;
  margin-inline: auto;
  display: block;
}

.pillar h3 {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.35;
  color: var(--text);
  max-width: 22rem;
  margin-inline: auto;
}

.pillar p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 22rem;
  margin-inline: auto;
}

.pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
  background: #ecfdf5;
  border: 1px solid #d1fae5;
}

/* ── Stats (dark band, footer palette) ── */
.stats-bar {
  position: relative;
  padding: 52px 0;
  background: linear-gradient(180deg, #0b1220 0%, var(--footer-bg) 45%, #0b1220 100%);
  overflow: hidden;
  color: var(--footer-text);
}

.stats-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(45, 212, 191, 0.35),
    var(--mint-soft),
    rgba(45, 212, 191, 0.35),
    transparent
  );
  background-size: 200% 100%;
  animation: statsShine 5s ease-in-out infinite;
}

.stats-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 90% at 50% 50%, rgba(45, 212, 191, 0.08), transparent 65%);
  pointer-events: none;
}

@keyframes statsShine {
  0%, 100% { background-position: 100% 0; }
  50% { background-position: 0% 0; }
}

.stats-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-item {
  padding: 28px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  background: transparent;
  transition:
    transform 0.4s var(--ease),
    border-color 0.35s,
    box-shadow 0.35s,
    background 0.35s;
}

.stat-item:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(45, 212, 191, 0.35);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.stat-value {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 2.85rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--mint-soft);
  display: inline-block;
  font-variant-numeric: tabular-nums;
  transition: transform 0.3s var(--ease), text-shadow 0.3s;
}

.stat-value.count-done {
  animation: statPop 0.55s var(--ease);
}

@keyframes statPop {
  0% { transform: scale(1); }
  40% { transform: scale(1.08); text-shadow: 0 0 28px rgba(94, 234, 212, 0.55); }
  100% { transform: scale(1); }
}

.stat-mini {
  font-weight: 700;
  color: var(--mint);
  font-variant-numeric: tabular-nums;
}

.stat-label {
  margin-top: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: #f1f5f9;
  transition: color 0.25s;
}

.stat-item:hover .stat-label { color: #fff; }

.stat-sub {
  font-size: 0.85rem;
  color: #94a3b8;
  margin-top: 4px;
  transition: color 0.25s;
}

.stat-item:hover .stat-sub { color: var(--footer-text); }

/* ── Sections ── */
section { padding: 64px 0; position: relative; }

.section-alt { background: var(--bg-subtle); border-block: 1px solid var(--border); }

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  max-width: 640px;
  letter-spacing: -0.02em;
  color: var(--text);
}

.section-lead {
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 28px;
  font-size: 1.05rem;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.two-col > *,
.compliance-layout > * {
  min-width: 0;
}

.feature-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }

.feature-list li {
  display: flex;
  gap: 14px;
  padding: 16px 18px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}

.feature-list li:hover {
  transform: translateX(6px);
  border-color: #a7f3d0;
  box-shadow: var(--shadow);
}

.feature-list .check {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: #ecfdf5;
  color: var(--teal-deep);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 0.85rem;
  font-weight: 700;
  border: 1px solid #d1fae5;
}

.feature-list strong { display: block; margin-bottom: 2px; font-size: 0.95rem; }
.feature-list p { font-size: 0.88rem; color: var(--text-muted); }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.35s;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-deep));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: #a7f3d0;
}

.card:hover::before { transform: scaleX(1); }

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-surface);
  border: 1px solid var(--accent-border-soft);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  margin-bottom: 16px;
  transition: transform 0.35s var(--ease);
}

.card:hover .card-icon { transform: scale(1.06); }

.card-icon--img {
  width: 100%;
  max-width: 148px;
  height: auto;
  min-height: 96px;
  margin-bottom: 18px;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.card-icon--img img {
  width: 100%;
  height: auto;
  max-height: 112px;
  object-fit: contain;
  object-position: left center;
  display: block;
}

.card--solution:hover .card-icon--img {
  transform: none;
}

.card h3 { font-size: 1.05rem; margin-bottom: 8px; font-weight: 600; }
.card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.55; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal-deep);
  transition: gap 0.2s, color 0.2s;
}

.card:hover .card-link { gap: 10px; color: var(--teal-darker); }

.code-block {
  background: #0f172a;
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.76rem;
  line-height: 1.7;
  overflow-x: auto;
  color: #e2e8f0;
  box-shadow: var(--shadow);
  white-space: pre-wrap;
  word-break: break-word;
}

.code-block .kw { color: var(--code-kw); }
.code-block .method { color: var(--code-method); font-weight: 500; }
.code-block .path { color: var(--code-path); }
.code-block .key { color: var(--code-key); }
.code-block .str { color: var(--code-str); }
.code-block .num { color: var(--code-num); }
.code-block .cmt { color: var(--code-cmt); }

.cta-band {
  width: 100%;
  margin: 0;
  padding: 48px 0 56px;
  text-align: center;
  background: var(--bg);
  border: none;
  box-shadow: none;
}

.cta-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: var(--gradient-cta);
  border: 1px solid #bbf7d0;
  box-shadow: 0 18px 48px rgba(13, 148, 136, 0.08);
  padding: clamp(40px, 5vw, 56px) clamp(20px, 4vw, 32px);
}

.cta-deco-row {
  display: none;
}

.cta-deco--side {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(132px, 17vw, 220px);
  height: auto;
  pointer-events: none;
  user-select: none;
  opacity: 1;
  z-index: 0;
}

.cta-deco--left {
  left: clamp(12px, 3vw, 32px);
}

.cta-deco--right {
  right: clamp(12px, 3vw, 32px);
}

.cta-card__body {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin-inline: auto;
  padding-inline: clamp(96px, 12vw, 120px);
}

.cta-band > .container {
  text-align: center;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text);
  line-height: 1.25;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.cta-band p {
  color: var(--text-muted);
  margin-bottom: 26px;
  max-width: 560px;
  margin-inline: auto;
  line-height: 1.65;
  font-size: 0.98rem;
  text-wrap: pretty;
}

.center-cta { text-align: center; margin-top: 28px; }

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.cta-band .btn-ghost {
  background: #fff;
  border-color: #d1d5db;
  color: var(--text);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
}

.cta-band .btn-ghost:hover {
  background: #fff;
  border-color: var(--teal);
  color: var(--teal-deep);
}

@media (max-width: 900px) {
  .cta-deco--side {
    display: none;
  }

  .cta-card__body {
    padding-inline: 0;
    max-width: none;
  }
}

@media (max-width: 768px) {
  .cta-band {
    padding: 32px 0 40px;
  }

  .cta-card {
    padding: 28px 20px 24px;
    border-radius: 16px;
  }

  .cta-deco-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 18px;
  }

  .cta-deco--mini {
    width: 64px;
    height: auto;
    opacity: 0.9;
  }

  .cta-band h2 {
    font-size: clamp(1.28rem, 5.2vw, 1.55rem);
    line-height: 1.3;
    margin-bottom: 12px;
  }

  .cta-band p {
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .cta-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .cta-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .cta-band {
    padding: 24px 0 32px;
  }

  .cta-card {
    padding: 24px 16px 20px;
  }

  .cta-deco-row {
    gap: 16px;
    margin-bottom: 16px;
  }

  .cta-deco--mini {
    width: 56px;
  }
}

/* ── FAQ ── */
.faq-section {
  padding: 56px 0 64px;
  text-align: center;
}

.faq-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.faq-heading {
  margin-bottom: 32px;
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 820px;
  margin-inline: auto;
  text-align: left;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.faq-item[open] {
  border-color: #a7f3d0;
  box-shadow: var(--shadow);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 48px 18px 20px;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--text);
  position: relative;
  transition: color 0.2s;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--teal-deep);
  transition: transform 0.25s var(--ease);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item summary:hover { color: var(--teal-deep); }

.faq-answer {
  padding: 0 20px 18px;
  border-top: 1px solid var(--border);
}

.faq-answer p {
  margin: 14px 0 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.faq-answer a {
  color: var(--teal-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-answer a:hover { color: var(--teal-darker); }

#page-bottom .cta-band,
.cta-band.page-bottom-cta {
  width: 100%;
  max-width: none;
  margin: 0;
}

/* ── Trust certifications (Veriff-style, above footer) ── */
.trust-certs {
  padding: 36px 0 40px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.trust-certs-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px 14px;
  align-items: center;
  justify-items: center;
}

.trust-cert {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  width: 100%;
}

.trust-cert img {
  width: 100%;
  max-width: 118px;
  height: auto;
  max-height: 76px;
  object-fit: contain;
  display: block;
  transition: opacity 0.25s, transform 0.25s var(--ease);
}

.trust-cert:hover img {
  opacity: 0.88;
  transform: translateY(-2px);
}

.trust-cert--ibeta img {
  max-width: 168px;
  max-height: 88px;
}

.trust-cert--ibeta:hover img {
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .trust-certs-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 18px;
  }

  .trust-cert img { max-width: 128px; }
}

@media (max-width: 640px) {
  .trust-certs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 14px;
  }

  .trust-certs { padding: 32px 0 36px; }

  .trust-cert img {
    max-width: 108px;
    max-height: 72px;
  }

  .trust-cert--ibeta {
    grid-column: 1 / -1;
    justify-self: center;
  }

  .trust-cert--ibeta img {
    max-width: 148px;
    max-height: 80px;
  }
}

@media (max-width: 380px) {
  .trust-certs-grid {
    gap: 18px 10px;
  }

  .trust-cert img {
    max-width: 96px;
    max-height: 64px;
  }
}

/* ── Footer (dark strip like iDenfy / Veriff) ── */
.site-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 56px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr minmax(160px, 1fr);
  gap: 32px 48px;
  align-items: start;
  margin-bottom: 40px;
}

.footer-nav {
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding-top: 4px;
}

.nav-main--footer a {
  color: #cbd5e1;
  font-size: 0.92rem;
}

.nav-main--footer a:hover,
.nav-main--footer a.active {
  color: var(--mint-soft);
}

.nav-main--footer a::after {
  background: var(--mint-soft);
}

.footer-brand p {
  margin-top: 14px;
  font-size: 0.88rem;
  color: #94a3b8;
  max-width: 280px;
  line-height: 1.6;
}

.footer-brand .contact-email { color: var(--mint-soft); }

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e2e8f0;
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }

.footer-col a {
  font-size: 0.88rem;
  color: #94a3b8;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--mint-soft); }

.footer-legal {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.78rem;
  color: #64748b;
  line-height: 1.6;
}

.footer-legal a { color: var(--mint-soft); }
.footer-legal a:hover { color: #fff; }

.contact-email {
  font-weight: 600;
  color: var(--teal-deep);
  transition: color 0.2s;
}

.contact-email:hover { color: var(--teal-darker); }

/* ── Inner pages ── */
.page-hero {
  padding: 56px 0 48px;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, rgba(45, 212, 191, 0.08), transparent 55%),
    var(--bg-subtle);
  position: relative;
  overflow: hidden;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.65rem);
  margin-bottom: 12px;
  position: relative;
  color: var(--text);
}

.page-hero .section-lead {
  max-width: 640px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.pricing-card {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.pricing-card.featured {
  border-color: var(--teal-deep);
  box-shadow: 0 0 0 1px var(--teal-deep), var(--shadow-lg);
  position: relative;
}

.pricing-card.featured::before {
  content: "Popular";
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-btn);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: 0.05em;
}

.pricing-tier {
  font-size: 0.8rem;
  color: var(--teal-deep);
  font-weight: 700;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text);
}

.pricing-price span { font-size: 0.95rem; font-weight: 400; color: var(--text-muted); }
.pricing-desc { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 20px; min-height: 40px; }

.pricing-features { list-style: none; flex: 1; margin-bottom: 24px; }

.pricing-features li {
  font-size: 0.86rem;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  display: flex;
  gap: 8px;
}

.pricing-features li::before { content: "✓"; color: var(--teal-deep); font-weight: 800; }

.api-section { padding: 48px 0; }
.api-endpoints { display: flex; flex-direction: column; gap: 12px; }

.endpoint {
  padding: 18px 22px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}

.endpoint:hover {
  transform: translateX(4px);
  border-color: #a7f3d0;
  box-shadow: var(--shadow);
}

.endpoint-method {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 5px;
  margin-right: 8px;
}

.endpoint-method.post { background: #ccfbf1; color: var(--teal-darker); }
.endpoint-method.get { background: #d1fae5; color: var(--success); }

.endpoint-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.endpoint-path {
  font-family: ui-monospace, monospace;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}

.endpoint p {
  margin: 10px 0 0;
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── Legal ── */
.legal-main { padding: 40px 0 80px; }

.legal-wrap { max-width: 720px; margin-inline: auto; }

.legal-wrap h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.2rem);
  margin-bottom: 8px;
  color: var(--text);
}

.legal-updated { font-size: 0.86rem; color: var(--text-muted); margin-bottom: 32px; }

.legal-wrap h2 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 28px 0 10px;
  color: var(--teal-deep);
}

.legal-wrap h3 { font-size: 0.98rem; font-weight: 600; margin: 18px 0 6px; color: var(--text); }

.legal-wrap p,
.legal-wrap li { font-size: 0.94rem; color: var(--text-muted); margin-bottom: 12px; }

.legal-wrap ul,
.legal-wrap ol { margin: 0 0 14px 1.2rem; }

.legal-wrap a:not(.btn) { color: var(--teal-deep); text-decoration: underline; text-underline-offset: 3px; }
.legal-wrap a:not(.btn):hover { color: var(--teal-darker); }

/* ── Access / Try for free ── */
.page-access .access-main {
  padding: 48px 0 88px;
}

.access-page {
  max-width: 1120px;
}

.access-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 420px);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.access-intro {
  padding-top: 8px;
}

.access-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 2.75rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: var(--text);
}

.access-title .gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.access-lead {
  max-width: 520px;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 28px;
}

.access-illustration {
  display: flex;
  justify-content: center;
  margin: 8px 0 32px;
  max-width: 420px;
}

.access-illustration img {
  width: min(100%, 420px);
  height: auto;
}

.access-features {
  list-style: none;
  display: grid;
  gap: 22px;
  margin-bottom: 28px;
}

.access-feature {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.access-feature__icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--teal-deep);
}

.access-feature strong {
  display: block;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.access-feature p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.access-secure {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: var(--accent-surface);
  border: 1px solid var(--accent-border-soft);
  max-width: 520px;
}

.access-secure__icon {
  flex-shrink: 0;
  color: var(--teal-deep);
  margin-top: 1px;
}

.access-secure p {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.access-form {
  padding: 28px 28px 24px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.access-form h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 22px;
  color: var(--text);
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.field > span:first-child {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-secondary);
}

.field-control {
  position: relative;
  display: block;
}

.field-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--teal-deep);
  pointer-events: none;
  z-index: 1;
}

.field-icon--area {
  top: 16px;
  transform: none;
}

.field-control input,
.field-control textarea,
.field-control select {
  width: 100%;
  padding: 13px 14px 13px 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  font: inherit;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.field-control textarea {
  min-height: 112px;
  resize: vertical;
  padding-top: 14px;
}

.field-control select {
  appearance: none;
  cursor: pointer;
  padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.field-control input:focus,
.field-control textarea:focus,
.field-control select:focus {
  outline: none;
  border-color: var(--teal-deep);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.12);
}

.access-form .btn {
  margin-top: 6px;
  padding-block: 14px;
  border-radius: 12px;
  font-size: 0.98rem;
}

.access-form-note {
  margin-top: 14px;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(6, 11, 20, 0.72);
  backdrop-filter: blur(6px);
}

.modal-overlay[hidden] { display: none; }

.modal-dialog {
  width: min(100%, 480px);
  padding: 28px;
  border-radius: var(--radius-lg);
  background: #fff;
  color: #0f172a;
  box-shadow: var(--shadow-lg);
}

.modal-dialog h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.modal-dialog p {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.55;
  margin-bottom: 10px;
}

.modal-dialog a { color: var(--teal-deep); }

.modal-dialog .btn { margin-top: 16px; }

/* ── Solution pages ── */
.solution-section { padding: 24px 0 80px; }

.solution-prose {
  max-width: 760px;
}

.solution-prose h2 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 28px 0 10px;
  color: var(--teal-deep);
}

.solution-prose p {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 12px;
}

.solution-list {
  margin: 0 0 18px 1.1rem;
  color: var(--text-muted);
}

.solution-list li {
  margin-bottom: 8px;
  line-height: 1.5;
}

.solution-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 12px;
}

.back-link a {
  color: var(--text-muted);
  font-size: 0.88rem;
  text-decoration: none;
}

.back-link a:hover { color: var(--teal-deep); }

.contact-page {
  padding-bottom: 72px;
}

.contact-page .contact-grid {
  margin-top: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
}

.contact-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.contact-card h2 { font-size: 1rem; margin: 0 0 10px; color: var(--text); }
.contact-card p { margin-bottom: 12px; color: var(--text-muted); font-size: 0.9rem; }

@media (max-width: 1100px) {
  .site-header .header-cta .btn-ghost {
    display: none;
  }

  .site-header .logo-img {
    height: 48px;
    max-width: 156px;
  }

  .nav-main {
    gap: 16px;
  }

  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
    margin-inline: 0;
    width: 100%;
  }

  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .access-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .access-form {
    max-width: 560px;
    width: 100%;
    margin-inline: auto;
  }
}

@media (max-width: 1024px) {
  .site-header {
    position: sticky;
  }

  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .site-header .nav-main {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    justify-self: stretch;
    gap: 4px;
    margin-left: 0;
    padding: 20px;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }

  .site-header .nav-main.open { display: flex; }

  .site-header .header-actions {
    grid-column: 2;
    grid-row: 1;
    gap: 6px;
  }

  .site-header .nav-toggle { display: block; }

  .site-header .header-cta .btn {
    padding: 9px 14px;
    font-size: 0.82rem;
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .two-col,
  .cards-grid,
  .pricing-grid,
  .footer-grid,
  .pillars-grid { grid-template-columns: 1fr; }

  .compliance-columns {
    grid-template-columns: 1fr;
    row-gap: 24px;
  }

  .compliance-left {
    gap: 16px;
  }

  .compliance-code {
    height: auto;
    min-height: 0;
  }

  .compliance-code .code-block--window {
    min-height: 360px;
  }

  .compliance-code .code-block--window code {
    justify-content: space-between;
    gap: 24px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "eyebrow"
      "title"
      "features"
      "main";
    row-gap: 20px;
  }

  .why-title {
    max-width: none;
  }

  .why-features {
    height: auto;
    min-height: 0;
  }

  .why-feature {
    flex: none;
    align-items: flex-start;
  }

  .why-tagline {
    margin-top: 0;
  }

  .steps-grid { grid-template-columns: 1fr; max-width: none; margin-inline: 0; width: 100%; }
  .why-grid { grid-template-columns: 1fr; }

  .page-access .access-main {
    padding: 28px 0 64px;
  }

  .access-form {
    max-width: none;
    margin-inline: 0;
  }

  .access-title {
    font-size: clamp(1.85rem, 5vw, 2.35rem);
  }

  .solution-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .solution-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .stats-grid { grid-template-columns: 1fr; gap: 12px; }

  .two-col,
  .compliance-layout {
    gap: 32px;
    align-items: stretch;
  }

  .section-title,
  .section-lead,
  .page-hero .section-lead {
    max-width: none;
  }

  .compliance-section {
    padding: 56px 0;
  }

  section { padding: 56px 0; }
}

@media (max-width: 768px) {
  .container {
    width: min(100% - 32px, var(--max));
  }

  .header-inner {
    column-gap: 10px;
    padding: 12px 0;
  }

  .site-header .header-actions {
    gap: 4px;
  }

  .site-header .logo-img {
    height: 44px;
    max-width: 132px;
  }

  .site-header .header-cta .btn {
    padding: 8px 12px;
    font-size: 0.78rem;
  }

  .page-hero {
    padding: 40px 0 32px;
  }

  .page-hero h1 {
    font-size: clamp(1.65rem, 6vw, 2rem);
  }

  .hero {
    padding: 36px 0 24px;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-visual {
    max-width: 420px;
    margin-inline: auto;
  }

  .integration-section .section-intro {
    margin-bottom: 8px;
  }

  .integration-section .section-title,
  .integration-section .section-lead {
    max-width: none;
  }

  .compliance-columns {
    row-gap: 20px;
  }

  .compliance-code .code-block--window {
    min-height: 320px;
    max-height: 420px;
  }

  .dev-card {
    flex-direction: column;
    gap: 12px;
  }

  .cta-row,
  .compliance-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-row .btn,
  .compliance-cta .btn {
    width: 100%;
  }

  .footer-legal {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer-grid {
    gap: 28px;
  }

  .section-compact {
    padding: 52px 0;
  }

  .api-section {
    padding: 44px 0;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  section { padding: 48px 0; }
  .section-compact { padding: 48px 0; }
  .api-section { padding: 40px 0; }
  .stats-bar { padding: 40px 0; }
  .compliance-section {
    padding: 48px 0;
  }

  .why-section {
    padding: 56px 0;
  }

  .why-title {
    font-size: clamp(1.55rem, 6vw, 1.9rem);
  }

  .why-feature {
    padding: 18px 16px;
  }

  .dev-card {
    padding: 18px 16px;
  }

  .legal-main {
    padding: 32px 0 64px;
  }

  .step-card {
    padding: 22px 18px;
  }

  .step-num {
    font-size: 3rem;
  }

  .cards-grid {
    gap: 16px;
  }

  .card {
    padding: 22px 18px;
  }

  .card--solution {
    text-align: center;
  }

  .card--solution .card-icon--img {
    margin-inline: auto;
    justify-content: center;
  }

  .card--solution .card-link {
    margin-inline: auto;
  }

  .pillar h3,
  .pillar p {
    max-width: none;
  }

  .code-block {
    font-size: 0.68rem;
    line-height: 1.65;
  }

  .code-block--window {
    padding: 16px 14px 20px;
  }

  .code-window__bar {
    padding: 12px 14px;
  }

  .pricing-card {
    padding: 26px 20px;
  }

  .pricing-card.featured {
    margin-top: 8px;
  }

  .faq-item summary {
    padding: 16px 40px 16px 16px;
    font-size: 0.92rem;
  }

  .endpoint-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .endpoint-path {
    font-size: 0.8rem;
    word-break: break-all;
  }

  .feature-list li:hover,
  .endpoint:hover,
  .contact-card:hover,
  .card:hover,
  .step-card:hover {
    transform: none;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-page {
    padding-bottom: 56px;
  }

  .access-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .access-illustration {
    margin-inline: auto;
  }

  .access-secure {
    max-width: none;
  }

  .access-form {
    padding: 22px 18px 20px;
  }

  .legal-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 16px 0;
  }

  .legal-table {
    min-width: 520px;
    margin: 0;
  }

  .why-feature {
    padding: 16px 18px;
  }

  .trust-certs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 24px, var(--max));
  }

  .header-cta .btn {
    padding: 8px 10px;
    font-size: 0.72rem;
  }

  .site-header .header-cta .btn-primary {
    padding: 8px 12px;
  }

  .access-title {
    font-size: clamp(1.65rem, 8vw, 2rem);
  }

  .access-feature {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 12px;
  }

  .hero-title,
  .hero h1 {
    font-size: clamp(1.65rem, 8vw, 2rem);
  }

  .section-title {
    font-size: clamp(1.45rem, 6.5vw, 1.8rem);
  }

  .step-num {
    font-size: 2.75rem;
  }

  .stat-value {
    font-size: 2rem;
  }

  .stat-item {
    padding: 22px 16px;
  }

  .nav-main.open {
    padding: 16px;
  }

  .pillars-grid {
    gap: 28px;
  }

  .steps-grid {
    gap: 14px;
  }

  .code-block {
    font-size: 0.62rem;
  }

  .page-hero h1 {
    font-size: 1.55rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; }
  .reveal-left, .reveal-right, .reveal-scale { transform: none; }
  .hero-visual-inner { animation: none; }
  .hero-title .gradient,
  .hero h1 .gradient { animation: none; }
  [data-parallax], .parallax-layer { transform: none !important; }
  body::before { transform: none !important; }
  body::after { opacity: 0 !important; }
  .scroll-progress { display: none; }
  .tilt-card { transform: none !important; }
}

/* ── Utilities ── */
.u-mt-24 { margin-top: 24px; }
.u-mt-32 { margin-top: 32px; }
.u-mt-40 { margin-top: 40px; }
.u-text-left { text-align: left; }
.u-text-center { text-align: center; }
.section-title--sm { font-size: 1.5rem; max-width: none; }
.section-title--md { font-size: 1.35rem; max-width: none; text-align: center; }
.section-title--mb { margin-bottom: 32px; }
.section-lead--tight { margin-bottom: 24px; }
.section-lead--flush { margin-bottom: 0; }
.section-compact { padding: 64px 0; }
.btn-block { width: 100%; }
.back-link { margin-top: 24px; }
.back-link a {
  color: var(--teal-deep);
  font-weight: 600;
  transition: color 0.2s;
}
.back-link a:hover { color: var(--teal-darker); }
.cta-row {
  margin-top: 40px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.cta-row .btn + .btn {
  margin-left: 0;
}
.page-hero code,
code.code-inline {
  color: var(--teal-deep);
  background: var(--accent-surface);
  padding: 2px 6px;
  border-radius: 6px;
  font-size: 0.92em;
}
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 0.9rem;
}
.legal-table th,
.legal-table td {
  padding: 10px 8px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}
.legal-table th { color: var(--text); }
.legal-table td { color: var(--text-muted); }
.contact-card strong { color: var(--text); }
.footer-note { margin-top: 12px; font-size: 0.95rem; }
.note-muted { text-align: center; margin-top: 32px; color: var(--text-muted); font-size: 0.9rem; }
