/* ============================================================
   Equilibrisk — Main Stylesheet
   Palette: Deep Slate Blue | Oxidized Teal | Muted Graphite | Signal Amber
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=DM+Mono:wght@400;500&display=swap');

/* ── Design Tokens ────────────────────────────────────────── */
:root {
  --color-slate:        #1E2A3A;   /* deep slate blue */
  --color-slate-mid:    #253347;
  --color-slate-light:  #2E3E52;
  --color-teal:         #3A7D7B;   /* oxidized teal */
  --color-teal-muted:   #2E6462;
  --color-teal-pale:    #4A9491;
  --color-graphite:     #4A505A;   /* muted graphite */
  --color-graphite-mid: #6B7280;
  --color-graphite-light:#9CA3AF;
  --color-amber:        #D97706;   /* signal amber */
  --color-amber-light:  #F59E0B;
  --color-bg:           #F5F6F7;
  --color-bg-dark:      #1E2A3A;
  --color-surface:      #FFFFFF;
  --color-surface-tinted: #F0F3F6;
  --color-border:       #DDE2E8;
  --color-border-dark:  rgba(255,255,255,0.1);
  --color-text:         #1E2A3A;
  --color-text-muted:   #4A505A;
  --color-text-light:   #6B7280;
  --color-text-inverse: #F5F6F7;

  --font-sans: 'Inter', system-ui, sans-serif;
  --font-mono: 'DM Mono', 'Courier New', monospace;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  12px;
  --radius-xl:  16px;

  --shadow-sm:  0 1px 3px rgba(30,42,58,0.08);
  --shadow-md:  0 4px 12px rgba(30,42,58,0.10);
  --shadow-lg:  0 8px 24px rgba(30,42,58,0.12);

  --max-width: 1200px;
  --section-pad: 96px 24px;
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── Utilities ────────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--color-teal);
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-slate);
}

.section-desc {
  font-size: 17px;
  line-height: 1.65;
  color: var(--color-text-muted);
  max-width: 600px;
}

.amber-accent { color: var(--color-amber); }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-teal);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
}
.btn-primary:hover { background: var(--color-teal-muted); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--color-teal);
  font-size: 14px;
  font-weight: 500;
  padding: 11px 24px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--color-teal);
}
.btn-outline:hover {
  background: var(--color-teal);
  color: #fff;
}

.btn-amber {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-amber);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  border: 1.5px solid transparent;
}
.btn-amber:hover { background: #B45309; }

.tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.tag-teal { background: rgba(58,125,123,0.12); color: var(--color-teal); }
.tag-amber { background: rgba(217,119,6,0.12); color: var(--color-amber); }
.tag-slate { background: rgba(30,42,58,0.08); color: var(--color-slate); }

/* ── Header ───────────────────────────────────────────────── */
.site-header {
  background: var(--color-slate);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.logo-group {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-group .brand-name {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #FFFFFF;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header-nav a {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.01em;
}
.header-nav a:hover { color: #fff; }
.header-cta {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  background: var(--color-teal);
  padding: 9px 20px;
  border-radius: var(--radius-md);
}
.header-cta:hover { background: var(--color-teal-muted); }

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  background: var(--color-slate);
  padding: 100px 24px 88px;
  overflow: hidden;
  position: relative;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(58,125,123,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(58,125,123,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-teal-pale);
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: normal;
  color: var(--color-amber-light);
}
.hero-desc {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,0.60);
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-disclaimer {
  margin-top: 20px;
  font-size: 12px;
  color: rgba(255,255,255,0.30);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}

/* Hero visual — topology dashboard mockup */
.hero-visual {
  position: relative;
}
.dashboard-card {
  background: var(--color-slate-mid);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-lg);
  padding: 20px;
  position: relative;
}
.dashboard-card .card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.card-header-title {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.40);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.card-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--color-amber); }
.placeholder-chart {
  width: 100%;
  height: 160px;
  background: var(--color-slate-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: flex-end;
  padding: 12px;
  gap: 6px;
  overflow: hidden;
}
.chart-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: var(--color-teal);
  opacity: 0.7;
}
.chart-bar.hi { opacity: 1; background: var(--color-amber); }
.dashboard-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}
.stat-chip {
  background: var(--color-slate-light);
  border-radius: var(--radius-md);
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,0.05);
}
.stat-chip .val {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  font-family: var(--font-mono);
}
.stat-chip .lbl {
  font-size: 10px;
  color: rgba(255,255,255,0.40);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}
.stat-chip .delta {
  font-size: 10px;
  font-family: var(--font-mono);
  color: var(--color-amber);
}

/* ── METRICS STRIP ────────────────────────────────────────── */
.metrics-strip {
  background: var(--color-slate-light);
  padding: 36px 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.metrics-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.metric-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.metric-num {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.02em;
}
.metric-num span { color: var(--color-amber-light); }
.metric-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.50);
  line-height: 1.4;
}
.metric-divider {
  width: 1px;
  background: rgba(255,255,255,0.08);
  margin: 0;
  display: none;
}

/* ── PLATFORM OVERVIEW ────────────────────────────────────── */
.platform-overview {
  padding: var(--section-pad);
  background: var(--color-surface);
}
.platform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}
.platform-visual-area {
  position: relative;
}
.topology-diagram {
  background: var(--color-surface-tinted);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.topo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.topo-node {
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 14px;
  text-align: center;
  position: relative;
}
.topo-node.active {
  border-color: var(--color-teal);
  background: rgba(58,125,123,0.06);
}
.topo-node.alert {
  border-color: var(--color-amber);
  background: rgba(217,119,6,0.06);
}
.topo-node-icon {
  width: 32px;
  height: 32px;
  margin: 0 auto 8px;
}
.topo-node-label {
  font-size: 11px;
  font-family: var(--font-mono);
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
}
.topo-connector {
  height: 1px;
  background: var(--color-border);
  margin: 12px 0;
  position: relative;
}
.topo-connector::after {
  content: '';
  position: absolute;
  right: 0; top: -3px;
  width: 7px; height: 7px;
  border-right: 1.5px solid var(--color-teal);
  border-top: 1.5px solid var(--color-teal);
  transform: rotate(45deg);
}

.platform-content { display: flex; flex-direction: column; gap: 24px; }
.platform-points { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
.platform-point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.point-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: rgba(58,125,123,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.point-icon svg { width: 18px; height: 18px; stroke: var(--color-teal); fill: none; stroke-width: 1.8; }
.point-text h4 { font-size: 15px; font-weight: 600; color: var(--color-slate); margin-bottom: 4px; }
.point-text p { font-size: 14px; color: var(--color-text-muted); line-height: 1.55; }

/* ── CORE SERVICES ────────────────────────────────────────── */
.services {
  padding: var(--section-pad);
  background: var(--color-surface-tinted);
}
.services-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.services-header {
  margin-bottom: 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.service-card:hover { border-color: var(--color-teal); box-shadow: var(--shadow-md); }
.service-icon-wrap {
  width: 44px;
  height: 44px;
  background: var(--color-slate);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-icon-wrap svg { width: 20px; height: 20px; stroke: var(--color-teal-pale); fill: none; stroke-width: 1.8; }
.service-card h3 { font-size: 17px; font-weight: 600; color: var(--color-slate); }
.service-card p { font-size: 14px; color: var(--color-text-muted); line-height: 1.6; flex: 1; }
.service-card .learn-more {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-teal);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}
.service-card .learn-more svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ── PHOTO BLOCK ──────────────────────────────────────────── */
.photo-section {
  padding: 0;
  background: var(--color-slate);
}
.photo-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 460px;
}
.photo-content {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.photo-content .section-label { color: var(--color-teal-pale); }
.photo-content .section-label::before { background: var(--color-teal-pale); }
.photo-content .section-title { color: #fff; }
.photo-content p { font-size: 16px; color: rgba(255,255,255,0.60); line-height: 1.65; }
.photo-img-area {
  background: var(--color-slate-light);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(135deg, var(--color-slate-mid) 0%, var(--color-slate-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  min-height: 460px;
  border-radius: 12px;
  overflow: hidden;
}
.photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.photo-placeholder-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.photo-placeholder svg {
  width: 40px;
  height: 40px;
  stroke: rgba(255,255,255,0.15);
  fill: none;
  stroke-width: 1.2;
}

/* ── HOW IT WORKS ─────────────────────────────────────────── */
.how-it-works {
  padding: var(--section-pad);
  background: var(--color-surface);
}
.how-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.how-header { margin-bottom: 56px; text-align: center; }
.how-header .section-label { justify-content: center; }
.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.how-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--color-border);
  z-index: 0;
}
.step-item {
  text-align: center;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-slate);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-slate-light);
}
.step-item.current .step-num {
  background: var(--color-teal);
  border-color: var(--color-teal);
}
.step-title { font-size: 16px; font-weight: 600; color: var(--color-slate); }
.step-desc { font-size: 14px; color: var(--color-text-muted); line-height: 1.55; }

/* ── USE CASES ────────────────────────────────────────────── */
.use-cases {
  padding: var(--section-pad);
  background: var(--color-surface-tinted);
}
.use-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.use-header { margin-bottom: 48px; }
.use-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.use-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
}
.use-card-accent {
  width: 4px;
  flex-shrink: 0;
  background: var(--color-teal);
}
.use-card.amber .use-card-accent { background: var(--color-amber); }
.use-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.use-card-body h3 { font-size: 16px; font-weight: 600; color: var(--color-slate); }
.use-card-body p { font-size: 14px; color: var(--color-text-muted); line-height: 1.6; }
.use-tag-row { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }

/* ── PRODUCTS / PLANS ─────────────────────────────────────── */
.products {
  padding: var(--section-pad);
  background: var(--color-surface);
}
.products-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.products-header { margin-bottom: 52px; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--color-surface-tinted);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.product-card.featured {
  background: var(--color-slate);
  border-color: var(--color-teal);
}
.product-badge {
  position: absolute;
  top: -1px;
  right: 24px;
  background: var(--color-teal);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 4px 10px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.product-card .product-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(58,125,123,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card.featured .product-icon { background: rgba(58,125,123,0.2); }
.product-icon svg { width: 22px; height: 22px; stroke: var(--color-teal-pale); fill: none; stroke-width: 1.8; }
.product-card h3 { font-size: 19px; font-weight: 600; color: var(--color-slate); margin-bottom: 4px; }
.product-card.featured h3 { color: #fff; }
.product-price {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-teal);
  margin-bottom: 8px;
}
.product-price span {
  font-size: 13px;
  font-weight: 400;
  color: var(--color-graphite-light);
  margin-left: 4px;
}
.product-card.featured .product-price {
  color: var(--color-amber-light);
}
.product-card.featured .product-price span {
  color: rgba(255,255,255,0.50);
}
.product-card > p { font-size: 14px; color: var(--color-text-muted); line-height: 1.6; flex: 1; }
.product-card.featured > p { color: rgba(255,255,255,0.60); }
.product-features { display: flex; flex-direction: column; gap: 8px; }
.product-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--color-text-muted);
}
.product-card.featured .product-feature { color: rgba(255,255,255,0.65); }
.product-feature svg { width: 14px; height: 14px; stroke: var(--color-teal); fill: none; stroke-width: 2.5; flex-shrink: 0; }
.product-cta { margin-top: 8px; }
.product-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  padding: 11px 22px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--color-teal);
  color: var(--color-teal);
  width: 100%;
  justify-content: center;
}
.product-card.featured .product-cta a {
  background: var(--color-teal);
  color: #fff;
}
.product-cta a:hover { background: var(--color-teal); color: #fff; }
.product-card.featured .product-cta a:hover { background: var(--color-teal-muted); }

/* ── INSIGHT / CTA BAND ───────────────────────────────────── */
.insight-band {
  padding: 72px 24px;
  background: var(--color-teal);
}
.insight-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.insight-inner h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 600;
  color: #fff;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.insight-inner p { font-size: 16px; color: rgba(255,255,255,0.75); margin-top: 10px; max-width: 520px; }
.insight-actions { display: flex; gap: 12px; align-items: center; flex-shrink: 0; }
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--color-teal-muted);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  border: 1.5px solid transparent;
}
.btn-white:hover { background: rgba(255,255,255,0.90); }
.btn-ghost-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
  padding: 11px 22px;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-ghost-white:hover { border-color: #fff; color: #fff; }

/* ── TESTIMONIALS / TRUST ─────────────────────────────────── */
.trust-section {
  padding: var(--section-pad);
  background: var(--color-surface-tinted);
}
.trust-inner { max-width: var(--max-width); margin: 0 auto; }
.trust-header { text-align: center; margin-bottom: 52px; }
.trust-header .section-label { justify-content: center; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.trust-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.trust-quote {
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-text-muted);
  font-style: italic;
  flex: 1;
}
.trust-author { display: flex; align-items: center; gap: 12px; }
.trust-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-surface-tinted);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-teal);
}
.trust-author-info { display: flex; flex-direction: column; gap: 2px; }
.trust-author-name { font-size: 14px; font-weight: 600; color: var(--color-slate); }
.trust-author-role { font-size: 12px; color: var(--color-text-light); }

/* ── CONTACTS ─────────────────────────────────────────────── */
.contacts {
  padding: var(--section-pad);
  background: var(--color-surface);
}
.contacts-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contacts-info { display: flex; flex-direction: column; gap: 8px; }
.contact-items { display: flex; flex-direction: column; gap: 20px; margin-top: 12px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--color-surface-tinted);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-icon svg { width: 18px; height: 18px; stroke: var(--color-teal); fill: none; stroke-width: 1.8; }
.contact-detail { display: flex; flex-direction: column; gap: 2px; }
.contact-label { font-family: var(--font-mono); font-size: 10px; color: var(--color-text-light); text-transform: uppercase; letter-spacing: 0.08em; }
.contact-value { font-size: 15px; font-weight: 500; color: var(--color-text); }
.contact-value a { color: var(--color-teal); }
.contact-map-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--color-surface-tinted);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
}
.contact-map-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.contact-map-placeholder svg { width: 36px; height: 36px; stroke: var(--color-graphite-light); fill: none; stroke-width: 1.2; }
.contact-map-placeholder span { font-family: var(--font-mono); font-size: 11px; color: var(--color-graphite-light); letter-spacing: 0.06em; text-transform: uppercase; }
.contacts-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 12px; font-weight: 500; color: var(--color-text-muted); letter-spacing: 0.03em; }
.form-group input,
.form-group textarea,
.form-group select {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--color-text);
  background: var(--color-surface-tinted);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  outline: none;
  resize: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-teal);
  background: #fff;
}
.form-group textarea { min-height: 100px; }
.form-disclaimer { font-size: 12px; color: var(--color-text-light); line-height: 1.5; }

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer {
  background: var(--color-slate);
  border-top: 1px solid rgba(255,255,255,0.07);
}
.footer-main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 64px 24px 48px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-brand .logo-group { margin-bottom: 4px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.65; max-width: 260px; }
.footer-disclaimer {
  font-size: 12px;
  color: rgba(255,255,255,0.30);
  line-height: 1.55;
  font-family: var(--font-mono);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 14px;
  margin-top: 4px;
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}
.footer-col ul li a:hover { color: rgba(255,255,255,0.85); }
.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.30); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.30); }
.footer-legal a:hover { color: rgba(255,255,255,0.60); }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .platform-grid { grid-template-columns: 1fr; gap: 48px; }
  .photo-inner { grid-template-columns: 1fr; }
  .photo-content { padding: 60px 40px; }
  .photo-placeholder { min-height: 280px; }
  .how-steps { grid-template-columns: repeat(2, 1fr); }
  .how-steps::before { display: none; }
  .insight-inner { grid-template-columns: 1fr; }
  .insight-actions { justify-content: flex-start; }
  .contacts-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 64px 20px; }
  .container { padding: 0 20px; }
  .header-nav { display: none; }
  .header-cta { display: none; }
  .mobile-menu-btn { display: flex; }
  .metrics-inner { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .services-header { grid-template-columns: 1fr; gap: 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .use-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-legal { flex-wrap: wrap; gap: 16px; }
  .photo-content { padding: 48px 24px; }
}

@media (max-width: 480px) {
  .metrics-inner { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .insight-actions { flex-direction: column; align-items: flex-start; }
  .topo-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Mobile Nav Overlay ───────────────────────────────────── */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--color-slate);
  z-index: 200;
  flex-direction: column;
  padding: 24px;
}
.mobile-nav-overlay.open { display: flex; }
.mobile-nav-close {
  align-self: flex-end;
  color: rgba(255,255,255,0.70);
  font-size: 28px;
  line-height: 1;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 8px;
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 32px;
}
.mobile-nav-links a {
  font-size: 22px;
  font-weight: 500;
  color: rgba(255,255,255,0.80);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mobile-nav-links a:hover { color: #fff; }

/* ── Cookie Banner (Main Pages) ───────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-slate);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 24px;
  z-index: 999;
  box-shadow: 0 -4px 12px rgba(30,42,58,0.20);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
}
.cookie-banner.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.cookie-banner-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cookie-banner-text {
  flex: 1;
}
.cookie-banner-text p {
  font-size: 14px;
  color: rgba(255,255,255,0.60);
  line-height: 1.6;
}
.cookie-banner-text a {
  color: var(--color-teal-pale);
  text-decoration: none;
}
.cookie-banner-text a:hover {
  text-decoration: underline;
}
.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.cookie-banner-btn {
  padding: 10px 16px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s;
}
.cookie-banner-btn:hover {
  opacity: 0.85;
}
.cookie-banner-btn.accept {
  background: var(--color-teal);
  color: #FFFFFF;
}
.cookie-banner-btn.decline {
  background: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.80);
}
.cookie-banner-btn.customize {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.90);
}

/* ── Customize Cookie View ─────────────────────────────────── */
.cookie-customize-view {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookie-customize-header {
  border-bottom: 1px solid rgba(255,255,255,0.10);
  padding-bottom: 16px;
}
.cookie-customize-header h3 {
  font-size: 16px;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0 0 8px 0;
}
.cookie-customize-header p {
  font-size: 13px;
  color: rgba(255,255,255,0.60);
  margin: 0;
}
.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-height: 240px;
  overflow-y: auto;
  padding-right: 8px;
}
.cookie-option {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cookie-option-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.cookie-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: rgba(255,255,255,0.90);
  position: relative;
  user-select: none;
  flex: 1;
}
.cookie-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  width: 0;
  height: 0;
}
.cookie-checkbox input:disabled {
  cursor: not-allowed;
}
.cookie-checkbox .checkmark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.30);
  border-radius: 3px;
  background: transparent;
  flex-shrink: 0;
}
.cookie-checkbox input:checked ~ .checkmark {
  background: var(--color-teal);
  border-color: var(--color-teal);
}
.cookie-checkbox input:checked ~ .checkmark::after {
  content: '✓';
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 600;
}
.cookie-checkbox input:disabled ~ .checkmark {
  background: rgba(58, 125, 123, 0.4);
  border-color: rgba(58, 125, 123, 0.4);
  cursor: not-allowed;
}
.cookie-required-badge {
  display: inline-block;
  padding: 2px 8px;
  background: rgba(217, 119, 6, 0.2);
  border: 1px solid rgba(217, 119, 6, 0.4);
  border-radius: 3px;
  font-size: 11px;
  color: rgba(217, 119, 6, 0.8);
  font-weight: 500;
  letter-spacing: 0.03em;
  flex-shrink: 0;
}
.cookie-option-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.50);
  margin: 0 0 0 28px;
  line-height: 1.4;
}
.cookie-customize-actions {
  display: flex;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 16px;
}
.cookie-customize-actions .cookie-banner-btn {
  flex: 1;
}

@media (max-width: 768px) {
  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .cookie-banner-actions {
    width: 100%;
    flex-direction: column;
  }
  .cookie-banner-btn {
    flex: 1;
  }
  .cookie-options {
    max-height: 200px;
  }
  .cookie-option-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

