:root {
  --bg:        #05080f;
  --bg-2:      #080d18;
  --bg-3:      #0c1220;
  --surface:   #101928;
  --surface-2: #162035;

  --border:       rgba(148, 163, 184, 0.08);
  --border-hover: rgba(148, 163, 184, 0.16);
  --border-accent: rgba(59, 130, 246, 0.28);

  --text:   #f0f4f8;
  --text-2: #94a3b8;
  --text-3: #4a6688;

  --accent:     #3b82f6;
  --accent-lt:  #60a5fa;
  --accent-dim: rgba(59, 130, 246, 0.10);
  --accent-glow: rgba(59, 130, 246, 0.20);

  --green:     #22c55e;
  --green-lt:  #4ade80;
  --green-dim: rgba(34, 197, 94, 0.10);

  --red:     #ef4444;
  --red-dim: rgba(239, 68, 68, 0.10);
  --red-border: rgba(239, 68, 68, 0.30);

  --font-display: 'Syne', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-mono:    'DM Mono', monospace;

  --section-y: 100px;
  --container: 1160px;

  --r-sm: 6px;
  --r:    10px;
  --r-lg: 16px;
  --r-xl: 20px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.4), 0 1px 2px rgba(0,0,0,.3);
  --shadow:    0 4px 16px rgba(0,0,0,.45);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.55);
}

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

/* ─── SCROLLBAR ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--surface-2); border-radius: 3px; }

/* ─── SELECTION ─────────────────────────────────────────────── */
::selection { background: rgba(59,130,246,.2); color: var(--accent-lt); }

/* ─── FOCUS ─────────────────────────────────────────────────── */
*:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 2px;
}

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

.section {
  padding: var(--section-y) 0;
}
.section-alt {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ─── SECTION HEADER ────────────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 60px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 16px;
}
.section-header p {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.75;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(59,130,246,.2);
  padding: 4px 12px;
  border-radius: var(--r-sm);
  margin-bottom: 18px;
}

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

/* ─── TYPOGRAPHY ────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
}

/* ─── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: var(--r);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s, border-color 0.18s, color 0.18s, transform 0.15s, box-shadow 0.18s;
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 0 0 var(--accent-glow);
}
.btn-primary:hover {
  background: var(--accent-lt);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px var(--accent-glow);
}
.btn-outline {
  background: transparent;
  color: var(--text-2);
  border: 1px solid var(--border-hover);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--text);
  transform: translateY(-1px);
}
.btn-plan {
  display: block;
  width: 100%;
  text-align: center;
  padding: 13px;
  border: 1px solid var(--border-hover);
  border-radius: var(--r);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-2);
  transition: border-color 0.18s, color 0.18s, transform 0.15s;
}
.btn-plan:hover { border-color: var(--accent); color: var(--text); transform: translateY(-2px); }
.btn-plan.btn-plan-accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 0 24px var(--accent-glow);
}
.btn-plan.btn-plan-accent:hover { background: var(--accent-lt); }

/* ─── STATUS DOTS ───────────────────────────────────────────── */
.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(34,197,94,.4);
  animation: ping 2.2s ease-in-out infinite;
}
.status-dot.status-red {
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(239,68,68,.4);
  animation: ping-red 2.2s ease-in-out infinite;
}
@keyframes ping {
  0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,.5); }
  60%     { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}
@keyframes ping-red {
  0%,100% { box-shadow: 0 0 0 0 rgba(239,68,68,.5); }
  60%     { box-shadow: 0 0 0 6px rgba(239,68,68,0); }
}

/* ─── LOADING STATES ────────────────────────────────────────── */
.loading-state {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px;
  grid-column: 1 / -1;
}
.spinner {
  width: 28px;
  height: 28px;
  border: 2px solid var(--border-hover);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── REVEAL ANIMATION ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease var(--delay, 0s), transform 0.55s ease var(--delay, 0s);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── NAVBAR ─────────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.25s, border-color 0.25s, backdrop-filter 0.25s;
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: rgba(5, 8, 15, 0.88);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom-color: var(--border);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-mark {
  width: 34px;
  height: 34px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.logo-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  letter-spacing: -0.01em;
}
.logo-accent { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-2);
  transition: color 0.18s;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-portal {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-2);
  border: 1px solid var(--border-hover);
  padding: 8px 16px;
  border-radius: var(--r);
  transition: border-color 0.18s, color 0.18s;
}
.nav-portal:hover { border-color: var(--accent); color: var(--text); }
.nav-cta {
  font-size: 0.82rem;
  font-weight: 700;
  background: var(--accent);
  color: #fff;
  padding: 9px 18px;
  border-radius: var(--r);
  transition: background 0.18s, box-shadow 0.18s;
  box-shadow: 0 0 0 0 var(--accent-glow);
}
.nav-cta:hover { background: var(--accent-lt); box-shadow: 0 4px 16px var(--accent-glow); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  margin-left: auto;
  border-radius: var(--r-sm);
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s, background 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  background: rgba(5,8,15,.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
  gap: 2px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  display: block;
  padding: 12px 8px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-2);
  border-bottom: 1px solid var(--border);
  transition: color 0.18s;
}
.nav-mobile a:hover { color: var(--text); }
.nav-mobile .nav-mobile-cta {
  display: block;
  margin-top: 16px;
  padding: 13px;
  text-align: center;
  background: var(--accent);
  color: #fff;
  border-bottom: none;
  border-radius: var(--r);
  font-weight: 700;
}

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 24px 90px;
  overflow: hidden;
}
.hero-backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 70% 60% at 50% -5%, rgba(59,130,246,.10) 0%, transparent 65%),
    linear-gradient(rgba(148,163,184,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148,163,184,.025) 1px, transparent 1px);
  background-size: auto, 64px 64px, 64px 64px;
  background-position: 0 0, -0.5px -0.5px, -0.5px -0.5px;
  mask-image: radial-gradient(ellipse 100% 80% at 50% 0%, black 30%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 100% 80% at 50% 0%, black 30%, transparent 85%);
}
.hero-glow {
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(59,130,246,.06) 0%, transparent 65%);
}
.hero-content {
  position: relative;
  max-width: 720px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-lt);
  background: var(--green-dim);
  border: 1px solid rgba(34,197,94,.2);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  animation: fadeUp 0.6s ease both;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7.5vw, 6rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 22px;
  animation: fadeUp 0.65s 0.08s ease both;
}
.hero-title .text-accent {
  position: relative;
  display: inline-block;
}
.hero-title .text-accent::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  border-radius: 2px;
}
.hero-desc {
  font-size: 1.1rem;
  color: var(--text-2);
  line-height: 1.8;
  max-width: 600px;
  margin-bottom: 36px;
  animation: fadeUp 0.65s 0.16s ease both;
}
.hero-ctas {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  animation: fadeUp 0.65s 0.24s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── TRUST STRIP ────────────────────────────────────────────── */
.trust-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
  padding: 18px 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  white-space: nowrap;
  flex-shrink: 0;
}
.trust-divider {
  width: 1px;
  height: 18px;
  background: var(--border-hover);
  flex-shrink: 0;
}
.trust-items {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.trust-item {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-2);
  padding: 5px 12px;
  border: 1px solid var(--border-hover);
  border-radius: var(--r-sm);
  background: var(--surface);
  transition: border-color 0.18s, color 0.18s;
}
.trust-item:hover { border-color: var(--accent); color: var(--text); }

/* ─── SERVICES ───────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
  transition: border-color 0.22s, transform 0.22s, box-shadow 0.22s;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--accent-dim) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.service-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.service-card:hover::before { opacity: 1; }
.service-card.featured {
  border-color: var(--border-accent);
  background: var(--bg-3);
}
.card-icon {
  width: 42px; height: 42px;
  background: var(--accent-dim);
  border: 1px solid rgba(59,130,246,.18);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
  flex-shrink: 0;
}
.card-icon svg { width: 20px; height: 20px; }
.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 20px;
}
.card-features {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 24px;
  margin-top: auto;
}
.card-features li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.82rem;
  color: var(--text-2);
}
.card-features li::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 5px rgba(34,197,94,.5);
}
.card-link {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: auto;
  transition: gap 0.18s, color 0.18s;
}
.card-link:hover { gap: 10px; color: var(--accent-lt); }

/* ─── DIFFERENTIATORS ───────────────────────────────────────── */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.diff-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px;
  transition: border-color 0.22s, transform 0.22s;
}
.diff-card:hover { border-color: var(--border-hover); transform: translateY(-2px); }
.diff-icon {
  width: 44px; height: 44px;
  background: var(--accent-dim);
  border: 1px solid rgba(59,130,246,.18);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  margin-bottom: 18px;
}
.diff-icon svg { width: 22px; height: 22px; }
.diff-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.diff-card p {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.75;
}

/* ─── PROCESS ────────────────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.process-step {
  padding: 36px 32px;
  border-right: 1px solid var(--border);
}
.process-step:last-child { border-right: none; }
.step-num {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.step-num::after {
  content: '';
  flex: 1;
  max-width: 28px;
  height: 1px;
  background: linear-gradient(90deg, var(--border-accent), transparent);
}
.process-step h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.process-step p {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.75;
}

/* ─── STATS ──────────────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--border);
  gap: 1px;
}
.stat-block {
  background: var(--bg-3);
  padding: 44px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.stat-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-3);
}

/* ─── INSIGHTS ───────────────────────────────────────────────── */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.insights-grid.has-featured .insight-card:first-child {
  grid-column: span 2;
}
.insight-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: border-color 0.22s, transform 0.22s;
}
.insight-card:hover { border-color: var(--border-hover); transform: translateY(-3px); }
.insight-image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.insight-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.insight-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.insight-category {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 3px 9px;
  border-radius: 4px;
}
.insight-date,
.insight-read {
  font-size: 0.78rem;
  color: var(--text-3);
}
.insight-read { margin-left: auto; }
.insight-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
.insight-card.featured .insight-title { font-size: 1.3rem; }
.insight-summary {
  font-size: 0.86rem;
  color: var(--text-2);
  line-height: 1.75;
  flex: 1;
}
.insight-cta {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 4px;
  transition: gap 0.18s;
}
.insight-card:hover .insight-cta { gap: 10px; }

/* ─── TESTIMONIALS ───────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.testimonial-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.22s, transform 0.22s;
}
.testimonial-card:hover { border-color: var(--border-hover); transform: translateY(-2px); }
.testimonial-rating {
  display: flex;
  gap: 3px;
}
.star {
  width: 14px; height: 14px;
  fill: #f59e0b;
  stroke: none;
}
.testimonial-card blockquote {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.8;
  font-style: italic;
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 40px; height: 40px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}
.author-avatar img {
  width: 40px; height: 40px;
  object-fit: cover;
  border-radius: 50%;
}
.author-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  display: block;
}
.author-title {
  font-family: var(--font-mono);
  font-size: 0.73rem;
  color: var(--text-3);
  display: block;
}

/* ─── PRICING ────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: start;
}
.pricing-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  transition: border-color 0.22s, transform 0.22s;
}
.pricing-card:hover { border-color: var(--border-hover); transform: translateY(-3px); }
.pricing-card.popular {
  border-color: var(--border-accent);
  background: var(--bg-3);
  box-shadow: 0 0 40px rgba(59,130,246,.06);
}
.popular-badge {
  position: absolute;
  top: 0; left: 50%;
  transform: translate(-50%, -1px);
  background: var(--accent);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  white-space: nowrap;
}
.plan-name {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
}
.plan-price {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  margin: 8px 0 2px;
}
.plan-price .plan-period {
  font-size: 1rem;
  color: var(--text-3);
  font-weight: 400;
}
.plan-billing {
  font-size: 0.78rem;
  color: var(--text-3);
  margin-bottom: 8px;
}
.plan-desc {
  font-size: 0.86rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 16px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.plan-features {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 28px;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
  color: var(--text-2);
}
.plan-check {
  width: 15px; height: 15px;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ─── FAQ ─────────────────────────────────────────────────────── */
.faq-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: start;
}
.faq-header {
  text-align: left;
  margin: 0;
  position: sticky;
  top: 88px;
}
.faq-list {
  border-top: 1px solid var(--border);
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  color: var(--text);
  font-size: 0.97rem;
  font-weight: 600;
  line-height: 1.5;
  transition: color 0.18s;
}
.faq-question:hover { color: var(--accent); }
.faq-chevron {
  width: 18px; height: 18px;
  color: var(--text-3);
  flex-shrink: 0;
  margin-top: 2px;
  transition: transform 0.3s ease, color 0.18s;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--accent); }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.36s ease, padding-bottom 0.36s ease;
}
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 22px; }
.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.8;
}

/* ─── CONTACT ────────────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 80px;
  align-items: start;
}
.contact-info .section-tag { display: block; margin-bottom: 18px; }
.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.contact-info > p {
  font-size: 0.93rem;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 32px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text-2);
}
.contact-item a { transition: color 0.18s; }
.contact-item a:hover { color: var(--accent); }
.contact-item-icon {
  width: 36px; height: 36px;
  background: var(--accent-dim);
  border: 1px solid rgba(59,130,246,.18);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.contact-item-icon svg { width: 16px; height: 16px; }
.emergency-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--red-dim);
  border: 1px solid var(--red-border);
  border-radius: var(--r);
  padding: 14px 16px;
  font-size: 0.85rem;
  color: #fca5a5;
  flex-wrap: wrap;
}
.emergency-bar strong { color: var(--red); font-weight: 700; }

.contact-form {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-field label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: 0.02em;
}
.req { color: var(--red); }
.form-field input,
.form-field select,
.form-field textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 11px 14px;
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.18s, box-shadow 0.18s;
  resize: vertical;
  appearance: none;
  -webkit-appearance: none;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--text-3); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(59,130,246,.12);
}
.form-field input.invalid,
.form-field textarea.invalid {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(239,68,68,.1);
}
.form-field select {
  background-image: url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%234a6688' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E\");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-field select option { background: var(--bg-2); }
.field-error {
  font-size: 0.75rem;
  color: var(--red);
  display: none;
}
.field-error.visible { display: block; }
.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.form-privacy {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.76rem;
  color: var(--text-3);
}
.form-privacy svg { width: 13px; height: 13px; color: var(--green); flex-shrink: 0; }
.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--green-dim);
  border: 1px solid rgba(34,197,94,.25);
  border-radius: var(--r);
  padding: 14px 18px;
  font-size: 0.88rem;
  color: var(--green-lt);
}
.form-success svg { width: 18px; height: 18px; flex-shrink: 0; }
.form-error-msg {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--red-dim);
  border: 1px solid var(--red-border);
  border-radius: var(--r);
  padding: 14px 18px;
  font-size: 0.88rem;
  color: #fca5a5;
}
.form-error-msg svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ─── FOOTER ─────────────────────────────────────────────────── */
#footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 72px 0 36px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 80px;
  margin-bottom: 52px;
}
.footer-brand p {
  font-size: 0.86rem;
  color: var(--text-3);
  line-height: 1.75;
  margin-top: 18px;
  max-width: 320px;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-social a {
  width: 34px; height: 34px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-3);
  transition: border-color 0.18s, color 0.18s;
}
.footer-social a:hover { border-color: var(--accent); color: var(--accent); }
.footer-social svg { width: 15px; height: 15px; }
.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 0.84rem;
  color: var(--text-3);
  transition: color 0.18s;
}
.footer-col a:hover { color: var(--text-2); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-3);
  letter-spacing: 0.02em;
}

/* ─── RESPONSIVE: TABLET (≤1100px) ─────────────────────────── */
@media (max-width: 1100px) {
  :root { --section-y: 80px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step { border-right: none; border-bottom: 1px solid var(--border); }
  .process-step:nth-child(2n) { border-right: none; }
  .process-step:last-child { border-bottom: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .faq-header { position: static; }
  .contact-layout { grid-template-columns: 1fr; gap: 52px; }
  .footer-top { grid-template-columns: 1fr; gap: 48px; }
  .insights-grid { grid-template-columns: repeat(2, 1fr); }
  .insights-grid.has-featured .insight-card:first-child { grid-column: span 2; }
}

/* ─── RESPONSIVE: MOBILE (≤768px) ──────────────────────────── */
@media (max-width: 768px) {
  :root { --section-y: 60px; }
  .nav-links, .nav-actions { display: none; }
  .nav-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid var(--border); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .insights-grid { grid-template-columns: 1fr; }
  .insights-grid.has-featured .insight-card:first-child { grid-column: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px 20px; }
  .footer-nav { grid-template-columns: repeat(2, 1fr); }
  .hero-title { font-size: clamp(2.6rem, 9vw, 3.5rem); }
  .section-header { margin-bottom: 44px; }
  .trust-inner { gap: 12px; }
  .trust-divider { display: none; }
}

/* ─── RESPONSIVE: SMALL MOBILE (≤480px) ────────────────────── */
@media (max-width: 480px) {
  .footer-nav { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-badge { font-size: 0.65rem; }
}

/* ─── PAGE FADE-IN ───────────────────────────────────────────── */
@keyframes pageFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
body { animation: pageFadeIn 0.35s ease both; }

/* ─── SCROLL PROGRESS ────────────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--green));
  z-index: 1001;
  transition: width 0.08s linear;
  pointer-events: none;
  border-radius: 0 2px 2px 0;
}

/* ─── BACK TO TOP ────────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 42px; height: 42px;
  background: var(--surface-2);
  border: 1px solid var(--border-hover);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-2);
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.24s, transform 0.24s, border-color 0.18s, color 0.18s, background 0.18s;
  z-index: 90;
  pointer-events: none;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-dim); }
.back-to-top svg { width: 18px; height: 18px; }

/* ─── HERO SPLIT LAYOUT ──────────────────────────────────────── */
.hero-wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content { max-width: none; }

/* ─── HERO TERMINAL ──────────────────────────────────────────── */
.hero-terminal-col {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-terminal {
  width: 100%;
  max-width: 440px;
  background: #080d18;
  border: 1px solid rgba(59,130,246,.22);
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.025) inset,
    0 32px 72px rgba(0,0,0,.6),
    0 0 80px rgba(59,130,246,.07);
  animation: fadeUp 0.65s 0.32s ease both;
  font-family: var(--font-mono);
  font-size: 0.76rem;
}
.term-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #0a1020;
  border-bottom: 1px solid rgba(255,255,255,.05);
  padding: 10px 14px;
  user-select: none;
}
.term-dots {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}
.td-red, .td-amber, .td-green {
  width: 11px; height: 11px;
  border-radius: 50%;
  flex-shrink: 0;
}
.td-red   { background: #ff5f57; }
.td-amber { background: #ffbd2e; }
.td-green { background: #28c840; }
.term-title {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: rgba(148,163,184,.4);
  flex: 1;
  text-align: center;
}
.term-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.term-line {
  display: flex;
  align-items: baseline;
  gap: 8px;
  opacity: 0;
  animation: termReveal 0.3s ease forwards;
  line-height: 1.5;
}
.term-space {
  height: 8px;
  opacity: 0;
  animation: termReveal 0s ease forwards;
}
.term-sep {
  height: 1px;
  background: rgba(255,255,255,.06);
  margin: 4px 0;
  opacity: 0;
  animation: termReveal 0s ease forwards;
}
@keyframes termReveal {
  to { opacity: 1; }
}

/* Staggered animation delays for each terminal line */
.tl-1  { animation-delay: 0.6s;  }
.tl-2  { animation-delay: 0.9s;  }
.tl-3  { animation-delay: 1.1s;  }
.tl-4  { animation-delay: 1.2s;  }
.tl-5  { animation-delay: 1.45s; }
.tl-6  { animation-delay: 1.7s;  }
.tl-7  { animation-delay: 1.95s; }
.tl-8  { animation-delay: 2.2s;  }
.tl-9  { animation-delay: 2.45s; }
.tl-10 { animation-delay: 2.65s; }
.tl-11 { animation-delay: 2.75s; }
.tl-12 { animation-delay: 2.95s; }
.tl-13 { animation-delay: 3.15s; }
.tl-14 { animation-delay: 3.35s; }
.tl-15 { animation-delay: 3.45s; }

/* Terminal line type styles */
.term-cmd { color: var(--text); }
.term-prompt {
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}
.term-muted { color: var(--text-3); }
.term-pass  { color: var(--green-lt); }
.term-fail  { color: #f87171; }
.term-warn  { color: #fbbf24; }
.term-summary { color: var(--text-2); }
.term-action  { color: var(--accent-lt); font-style: italic; }

.ti { flex-shrink: 0; width: 14px; text-align: center; }
.tk { color: var(--text-2); flex: 1; min-width: 0; }
.tv { color: var(--text-3); margin-left: auto; white-space: nowrap; }
.tdots {
  flex: 1;
  border-bottom: 1px dotted rgba(148,163,184,.18);
  margin: 0 6px;
  align-self: center;
  height: 0;
  min-width: 16px;
}
.tv-high   { color: #f87171; font-weight: 700; margin-left: auto; white-space: nowrap; }
.tv-accent { color: var(--accent-lt); font-weight: 600; margin-left: auto; white-space: nowrap; }

/* ─── STAT ICON ───────────────────────────────────────────────── */
.stat-icon {
  width: 40px; height: 40px;
  background: var(--accent-dim);
  border: 1px solid rgba(59,130,246,.18);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  margin: 0 auto 12px;
}
.stat-icon svg { width: 20px; height: 20px; }

/* ─── TEAM SECTION ────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.team-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 20px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: border-color 0.22s, transform 0.22s;
}
.team-card:hover { border-color: var(--border-hover); transform: translateY(-3px); }
.team-avatar {
  width: 72px; height: 72px;
  background: var(--accent-dim);
  border: 2px solid var(--border-accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent);
  overflow: hidden;
  margin-bottom: 6px;
  flex-shrink: 0;
}
.team-avatar img {
  width: 72px; height: 72px;
  object-fit: cover;
  border-radius: 50%;
}
.team-name {
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--text);
}
.team-title {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.team-bio {
  font-size: 0.83rem;
  color: var(--text-3);
  line-height: 1.7;
  margin-top: 4px;
}
.team-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: var(--text-3);
  transition: color 0.18s;
  margin-top: 6px;
}
.team-linkedin:hover { color: var(--accent); }
.team-linkedin svg { width: 13px; height: 13px; }

/* ─── CTA BANNER ──────────────────────────────────────────────── */
.cta-banner {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}
.cta-banner-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 100% at 50% 50%, rgba(59,130,246,.07) 0%, transparent 65%),
    linear-gradient(180deg, var(--bg-3) 0%, var(--bg-2) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-banner-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-banner-text h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.cta-banner-text p {
  font-size: 0.93rem;
  color: var(--text-2);
  line-height: 1.75;
  max-width: 540px;
}
.cta-banner-actions {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
  flex-wrap: wrap;
  align-items: center;
}

/* ─── RESPONSIVE ADDITIONS ────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero-wrap { gap: 48px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .hero-wrap { grid-template-columns: 1fr; }
  .hero-terminal-col { display: flex; justify-content: center; }
  .hero-terminal { max-width: 500px; }
  .cta-banner-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 768px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .back-to-top { bottom: 20px; right: 20px; }
}
@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .hero-terminal { font-size: 0.68rem; }
}
