/* ─── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #091E16;
  --bg-alt: #0C331E;
  --bg-deep: #061410;
  --forest: #0D634D;
  --forest-hover: #0A5241;
  --sage: #40A083;
  --lagoon: #3BA4AC;
  --citrus: #87C12D;
  --white: #FFFFFF;
  --text: #E7ECEA;
  --text-muted: #8FA69D;
  --text-dim: #6B7A73;
  --border: rgba(255,255,255,0.07);
  --border-hover: rgba(255,255,255,0.16);
  --card-bg: rgba(255,255,255,0.03);
  --card-bg-hover: rgba(255,255,255,0.055);
  --radius: 14px;
  --radius-sm: 8px;
  --radius-full: 9999px;
  --font: 'Inter', -apple-system, sans-serif;
  --max-w: 1120px;
  --transition: 0.22s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Animations ────────────────────────────────────────────── */
@keyframes reveal-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
@keyframes draw-line {
  to { stroke-dashoffset: 0; }
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}
@keyframes count-up { from { opacity: 0; } to { opacity: 1; } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ─── Header ────────────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(9,30,22,0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}
.logo .chevron { color: var(--citrus); }

.nav { display: flex; align-items: center; gap: 32px; }
.nav a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav a:hover { color: var(--white); }

.header-actions { display: flex; align-items: center; gap: 10px; }
.btn-ghost {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.btn-ghost:hover { color: var(--white); background: rgba(255,255,255,0.06); }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  background: var(--forest);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), transform var(--transition);
  border: none;
}
.btn-primary:hover { background: var(--forest-hover); transform: translateY(-1px); }
.btn-primary .ms { font-size: 16px; }

/* Mobile menu */
.menu-toggle {
  display: none;
  color: var(--text-muted);
  padding: 6px;
}
.mobile-nav {
  display: none;
  border-top: 1px solid var(--border);
  padding: 12px 24px 16px;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav a {
  display: block;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:last-child { border: none; }
.mobile-nav .btn-primary { margin-top: 8px; justify-content: center; }

@media (max-width: 768px) {
  .nav, .header-actions { display: none; }
  .menu-toggle { display: block; }
  .mobile-nav.open { display: flex; }
}

/* ─── Buttons (Reusable) ────────────────────────────────────── */
.btn-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  border: none;
}
.btn-lg.green {
  background: var(--forest);
  color: var(--white);
}
.btn-lg.green:hover { background: var(--forest-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(13,99,77,0.35); }
.btn-lg.outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.18);
}
.btn-lg.outline:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.28); }
.btn-lg .ms { font-size: 18px; }

/* ─── Section Utilities ─────────────────────────────────────── */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.tag-green  { color: var(--sage); }
.tag-lagoon { color: var(--lagoon); }
.tag-citrus { color: var(--citrus); }
.tag-white  { color: rgba(255,255,255,0.5); }

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--white);
}
.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 560px;
  margin-top: 16px;
}
.text-center { text-align: center; }
.text-center .section-sub { margin: 16px auto 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
}

/* ─── Cards ─────────────────────────────────────────────────── */
.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.card:hover {
  background: var(--card-bg-hover);
  border-color: var(--border-hover);
  transform: translateY(-2px);
}
.card .ms { font-size: 26px; margin-bottom: 14px; display: block; }
.card h3 { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.card p { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* ─── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 30%, transparent 100%);
  pointer-events: none;
}
.hero-glow-right {
  position: absolute;
  top: -100px; right: -80px;
  width: 640px; height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13,99,77,0.28), transparent 65%);
  pointer-events: none;
}
.hero-glow-left {
  position: absolute;
  bottom: -100px; left: -120px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,164,172,0.12), transparent 65%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sage);
  background: rgba(64,160,131,0.1);
  border: 1px solid rgba(64,160,131,0.25);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}
.hero-badge .ms { font-size: 14px; }
.hero-title {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 20px;
}
.hero-title .hl-green  { color: var(--sage); }
.hero-title .hl-lagoon { color: var(--lagoon); }
.hero-title .hl-citrus { color: var(--citrus); }

.hero-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 32px;
}
.hero-sub strong { color: var(--white); font-weight: 500; }

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

/* Hero visual */
.hero-visual {
  animation: float 5.5s ease-in-out infinite;
}
.dash-card {
  background: linear-gradient(160deg, #0C331E, #071811);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
}
.dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.dash-title {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #7C9186;
}
.dash-badge-live {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 600;
  color: var(--citrus);
  background: rgba(135,193,45,0.12);
  padding: 3px 8px;
  border-radius: var(--radius-full);
}
.dot-live {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--citrus);
  animation: pulse-dot 1.8s ease-in-out infinite;
}
.chart-svg { width: 100%; height: 90px; overflow: visible; margin-bottom: 16px; }
.line-path {
  stroke-dasharray: 700;
  stroke-dashoffset: 700;
  animation: draw-line 2.4s ease-out 0.4s forwards;
}
.dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.stat-mini {
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
  padding: 12px 10px;
}
.stat-mini-label {
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #7C9186;
  margin-bottom: 5px;
}
.stat-mini-value {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}

/* second card under */
.dash-mini-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}
.dash-mini {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.dash-mini .ms { font-size: 18px; margin: 0; flex-shrink: 0; }
.dash-mini-text { flex: 1; }
.dash-mini-title { font-size: 11px; font-weight: 600; color: var(--white); }
.dash-mini-val   { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .hero { padding: 48px 0 64px; }
}

/* ─── Ticker bar ────────────────────────────────────────────── */
.ticker-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(7,24,17,0.7);
  overflow: hidden;
  padding: 10px 0;
}
.ticker-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: ticker 28s linear infinite;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 500;
  color: #C7D1CC;
  padding: 0 32px;
  white-space: nowrap;
  border-right: 1px solid var(--border);
}
.ticker-item .ms { font-size: 15px; color: var(--sage); }

/* ─── Numbers bar ───────────────────────────────────────────── */
.numbers-bar {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.numbers-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.number-item {
  padding: 40px 20px;
  border-right: 1px solid var(--border);
}
.number-item:last-child { border-right: none; }
.number-value {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.number-value .accent { color: var(--sage); }
.number-label { font-size: 12px; color: var(--text-muted); font-weight: 500; }

@media (max-width: 700px) {
  .numbers-inner { grid-template-columns: repeat(2, 1fr); }
  .number-item { border-bottom: 1px solid var(--border); }
}

/* ─── Journey (tabs) ────────────────────────────────────────── */
.tabs-wrapper { display: flex; justify-content: center; margin: 40px 0 0; }
.tabs {
  display: inline-flex;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 4px;
  gap: 2px;
}
.tab-btn {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  transition: all 0.2s;
  white-space: nowrap;
}
.tab-btn:hover { color: rgba(255,255,255,0.75); }
.tab-btn.active {
  background: var(--forest);
  color: var(--white);
  font-weight: 600;
}
.tab-panel { display: none; margin-top: 40px; }
.tab-panel.active { display: grid; }

@media (max-width: 480px) {
  .tabs { flex-direction: column; border-radius: var(--radius); }
  .tab-btn { text-align: center; border-radius: 10px; }
}

/* ─── White-label showcase ──────────────────────────────────── */
.wl-demo {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
}
.wl-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.wl-dots { display: flex; gap: 6px; }
.wl-dot { width: 10px; height: 10px; border-radius: 50%; }
.wl-url {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.06);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}
.wl-body { padding: 20px; }
.wl-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.wl-logo-block {
  width: 32px; height: 32px;
  border-radius: 8px;
  transition: background 0.6s;
}
.wl-brand-name { font-size: 15px; font-weight: 600; color: var(--white); transition: color 0.6s; }
.wl-event-title { font-size: 18px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.wl-event-meta  { font-size: 12px; color: var(--text-muted); margin-bottom: 16px; }
.wl-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 10px;
}
.wl-price-name { font-size: 13px; color: var(--white); font-weight: 500; }
.wl-price-val  { font-size: 15px; color: var(--white); font-weight: 600; }
.wl-cta-btn {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  text-align: center;
  transition: background 0.6s;
  margin-top: 12px;
  cursor: default;
}
.wl-skin-label {
  text-align: center;
  font-size: 11px;
  color: var(--text-dim);
  margin-top: 14px;
}
.wl-list { list-style: none; margin-top: 32px; display: flex; flex-direction: column; gap: 18px; }
.wl-list li { display: flex; gap: 14px; align-items: flex-start; }
.wl-list .ms { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.wl-list strong { display: block; font-size: 14px; color: var(--white); font-weight: 600; margin-bottom: 3px; }
.wl-list span { font-size: 13px; color: var(--text-muted); }

/* ─── Gateway Section ───────────────────────────────────────── */
.gateway-section { background: var(--bg-alt); }
.gw-flow {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 40px;
}
.gw-row {
  display: flex;
  align-items: stretch;
  gap: 16px;
}
.gw-step {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.gw-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--forest);
  color: var(--sage);
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.gw-line { width: 2px; flex: 1; background: rgba(13,99,77,0.3); margin: 4px auto; }
.gw-content {
  flex: 1;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-bottom: 4px;
  transition: border-color var(--transition), background var(--transition);
}
.gw-content:hover { border-color: rgba(13,99,77,0.4); background: rgba(13,99,77,0.05); }
.gw-content h4 { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.gw-content p  { font-size: 13px; color: var(--text-muted); }

.gw-highlight {
  background: rgba(13,99,77,0.08);
  border: 1px solid rgba(13,99,77,0.25);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 32px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.gw-highlight .ms { font-size: 28px; color: var(--sage); flex-shrink: 0; }
.gw-highlight h4 { font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 6px; }
.gw-highlight p  { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

.gw-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.gw-col {
  border-radius: var(--radius);
  padding: 22px;
}
.gw-col.bad {
  background: rgba(239,68,68,0.05);
  border: 1px solid rgba(239,68,68,0.15);
}
.gw-col.good {
  background: rgba(13,99,77,0.06);
  border: 1px solid rgba(13,99,77,0.2);
}
.gw-col-title {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 14px;
}
.gw-col.bad  .gw-col-title { color: #F87171; }
.gw-col.good .gw-col-title { color: var(--sage); }
.gw-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.gw-col li { font-size: 13px; display: flex; gap: 8px; align-items: flex-start; color: var(--text-muted); }
.gw-col li .ms { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.gw-col.bad  li .ms { color: #F87171; }
.gw-col.good li .ms { color: var(--sage); }

@media (max-width: 640px) {
  .gw-comparison { grid-template-columns: 1fr; }
}

/* ─── Security ──────────────────────────────────────────────── */
.security-section { background: var(--bg-deep); }
.security-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 48px;
}
.sec-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: background var(--transition), border-color var(--transition);
}
.sec-card:hover { background: rgba(59,164,172,0.05); border-color: rgba(59,164,172,0.2); }
.sec-card .ms { font-size: 28px; color: var(--lagoon); margin-bottom: 14px; display: block; }
.sec-card h3 { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.sec-card p  { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

@media (max-width: 860px) { .security-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .security-grid { grid-template-columns: 1fr; } }

/* ─── Segments ──────────────────────────────────────────────── */
.segments-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 48px;
}
.seg-card {
  text-align: center;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 16px;
  transition: all var(--transition);
}
.seg-card:hover { background: var(--card-bg-hover); border-color: rgba(135,193,45,0.3); transform: translateY(-3px); }
.seg-card .ms { font-size: 32px; color: var(--citrus); margin-bottom: 14px; display: block; }
.seg-card h3 { font-size: 13px; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.seg-card p  { font-size: 12px; color: var(--text-muted); line-height: 1.6; }

@media (max-width: 900px) { .segments-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px) { .segments-grid { grid-template-columns: repeat(2, 1fr); } }

/* ─── Pricing ───────────────────────────────────────────────── */
.pricing-section { background: var(--bg-alt); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  transition: all var(--transition);
}
.pricing-card.featured {
  background: linear-gradient(160deg, rgba(13,99,77,0.15), rgba(13,99,77,0.05));
  border-color: rgba(13,99,77,0.4);
}
.pricing-card:hover { transform: translateY(-3px); box-shadow: 0 20px 48px rgba(0,0,0,0.3); }
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bg);
  background: var(--citrus);
  padding: 3px 12px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}
.pricing-name { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 12px; }
.pricing-fee { font-size: 36px; font-weight: 600; color: var(--white); letter-spacing: -0.03em; line-height: 1; }
.pricing-fee sup { font-size: 16px; vertical-align: top; margin-top: 8px; font-weight: 500; }
.pricing-fee span { font-size: 14px; font-weight: 400; color: var(--text-muted); }
.pricing-desc { font-size: 13px; color: var(--text-muted); margin-top: 10px; margin-bottom: 24px; line-height: 1.6; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.pricing-features li { display: flex; gap: 8px; align-items: flex-start; font-size: 13px; color: var(--text-muted); }
.pricing-features .ms { font-size: 16px; color: var(--sage); flex-shrink: 0; margin-top: 1px; }
.pricing-cta { display: block; text-align: center; }

@media (max-width: 760px) { .pricing-grid { grid-template-columns: 1fr; } }

/* ─── Testimonials ──────────────────────────────────────────── */
.testimonials-section { overflow: hidden; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.test-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.test-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}
.test-stars .ms { font-size: 16px; color: var(--citrus); }
.test-quote { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.test-quote strong { color: var(--white); font-style: normal; font-weight: 500; }
.test-author { display: flex; gap: 12px; align-items: center; }
.test-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  flex-shrink: 0;
}
.test-name  { font-size: 13px; font-weight: 600; color: var(--white); }
.test-role  { font-size: 12px; color: var(--text-dim); }

@media (max-width: 800px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ─── FAQ ───────────────────────────────────────────────────── */
.faq-section { background: var(--bg-alt); }
.faq-list {
  max-width: 720px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: rgba(13,99,77,0.3); }
.faq-q {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition);
}
.faq-q .ms {
  font-size: 20px;
  color: var(--text-muted);
  transition: transform 0.25s, color 0.25s;
  flex-shrink: 0;
}
.faq-item.open .faq-q .ms { transform: rotate(45deg); color: var(--sage); }
.faq-a {
  display: none;
  padding: 0 20px 18px;
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-a a { color: var(--sage); text-decoration: underline; }
.faq-item.open .faq-a { display: block; }

/* ─── Contact CTA ───────────────────────────────────────────── */
.contact-section { padding: 100px 0; }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.form-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-grid .full { grid-column: 1 / -1; }
.field-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.field-input, .field-select, .field-textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 10px 14px;
  font-family: var(--font);
  font-size: 13.5px;
  color: var(--white);
  outline: none;
  transition: border-color var(--transition), background var(--transition);
}
.field-input::placeholder, .field-textarea::placeholder { color: rgba(255,255,255,0.25); }
.field-input:focus, .field-select:focus, .field-textarea:focus {
  border-color: var(--forest);
  background: rgba(13,99,77,0.07);
}
.field-select { -webkit-appearance: none; background-color: #0C1F17; color: var(--white); }
.field-select option { background: #0C1F17; }
.field-textarea { resize: vertical; min-height: 90px; }
.form-submit { margin-top: 18px; width: 100%; }

.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.aside-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.aside-card.green-tint {
  background: rgba(13,99,77,0.06);
  border-color: rgba(13,99,77,0.22);
}
.aside-card .ms { font-size: 28px; margin-bottom: 12px; display: block; }
.aside-card h3 { font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 6px; }
.aside-card p  { font-size: 13px; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; }
.aside-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.aside-list li { font-size: 13px; color: var(--text-muted); display: flex; gap: 8px; }
.aside-list .ms { font-size: 15px; color: var(--sage); flex-shrink: 0; margin-top: 1px; }

@media (max-width: 800px) {
  .contact-inner { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}

/* ─── Footer ────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  background: var(--bg-deep);
  padding: 48px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand {}
.footer-logo {
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.02em;
  display: inline-block;
  margin-bottom: 12px;
}
.footer-logo .chevron { color: var(--citrus); }
.footer-tagline { font-size: 13px; color: var(--text-dim); line-height: 1.7; max-width: 220px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 34px; height: 34px;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-size: 16px;
  transition: all var(--transition);
}
.footer-social a:hover { color: var(--white); border-color: var(--border-hover); background: rgba(255,255,255,0.05); }
.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 13px; color: var(--text-muted); transition: color var(--transition); }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 12px; color: var(--text-dim); }
.footer-copy a { color: inherit; transition: color var(--transition); }
.footer-copy a:hover { color: var(--white); }

@media (max-width: 760px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 420px) {
  .footer-inner { grid-template-columns: 1fr; }
}

/* ─── Misc Utilities ────────────────────────────────────────── */
.success-msg {
  display: none;
  background: rgba(13,99,77,0.15);
  border: 1px solid rgba(13,99,77,0.3);
  border-radius: 10px;
  padding: 16px;
  font-size: 14px;
  color: var(--sage);
  text-align: center;
  margin-top: 14px;
}
.section-divider {
  height: 1px;
  background: var(--border);
}
.highlight-box {
  background: rgba(64,160,131,0.07);
  border: 1px solid rgba(64,160,131,0.2);
  border-radius: var(--radius);
  padding: 20px 24px;
}
.highlight-box p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}
.highlight-box strong { color: var(--sage); }

/* Material Symbols size fix */
.ms {
  font-family: 'Material Symbols Rounded';
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
