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

:root {
  --bg:         #080D18;
  --bg-mid:     #0D1525;
  --surface:    #111827;
  --surface-2:  #1A2235;
  --gold:       #C9A84C;
  --gold-dim:   #A88A38;
  --cyber:      #38BDF8;
  --cyber-dim:  #0EA5E9;
  --green:      #34D399;
  --text:       #CBD5E1;
  --text-bright:#E2E8F0;
  --text-muted: #64748B;
  --text-inv:   #080D18;
  --border:     rgba(255,255,255,0.07);
  --border-mid: rgba(255,255,255,0.12);

  --font-head: 'Outfit', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  --container: 1160px;
  --radius:    10px;
  --radius-lg: 18px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.mono {
  font-family: var(--font-mono);
  font-size: 0.85em;
  letter-spacing: 0.04em;
}

/* ── Utilities ─────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 32px;
}

.pill {
  display: inline-block;
  padding: 5px 14px;
  background: var(--gold);
  color: var(--text-inv);
  border-radius: 999px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pill--cyber {
  background: transparent;
  color: var(--cyber);
  border: 1px solid rgba(56,189,248,0.35);
}
.pill--mono {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.35);
  font-family: var(--font-mono);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--text-inv);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dim);
  border-color: var(--gold-dim);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.25);
}
.btn-outline {
  background: transparent;
  color: var(--text-bright);
  border-color: var(--border-mid);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline-inv {
  background: transparent;
  color: var(--text-bright);
  border-color: rgba(255,255,255,0.25);
}
.btn-outline-inv:hover { border-color: var(--gold); color: var(--gold); }

/* ── Nav ───────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8,13,24,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 64px;
}

.nav-logo {
  flex-shrink: 0;
  margin-right: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-mark {
  width: 34px;
  height: 34px;
  background: var(--gold);
  color: var(--text-inv);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-bright);
  letter-spacing: 0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-item { position: relative; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.nav-link:hover { background: rgba(56,189,248,0.08); color: var(--cyber); }

.nav-link--ext {
  color: var(--text-muted);
  font-size: 13px;
}
.nav-link--ext:hover { color: var(--text); background: var(--border); }

.nav-cta { margin-left: 8px; padding: 9px 20px; font-size: 14px; }

/* ── Dropdown ──────────────────────────────────────── */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--surface);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-lg);
  padding: 16px;
  min-width: 640px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}
.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius);
  transition: background 0.15s;
}
.dropdown-item:hover { background: rgba(56,189,248,0.06); }
.dropdown-icon {
  font-size: 18px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(56,189,248,0.1);
  border-radius: 8px;
  flex-shrink: 0;
}
.dropdown-name {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 2px;
}
.dropdown-desc { font-size: 12px; color: var(--text-muted); line-height: 1.4; }

/* ── Mobile nav toggle ─────────────────────────────── */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-bright);
  border-radius: 2px;
  transition: all 0.2s;
}

.nav-panel-header,
.nav-panel-cta,
.nav-backdrop { display: none; }

/* ── Hero ──────────────────────────────────────────── */
.hero {
  padding-top: 88px;
  padding-bottom: 88px;
  position: relative;
  overflow: hidden;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(56,189,248,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56,189,248,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 40%, transparent 100%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}

.hero-eyebrow { margin-bottom: 20px; }

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(42px, 5.5vw, 68px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--text-bright);
  margin-bottom: 24px;
}
.hero-title em {
  font-style: normal;
  color: var(--gold);
}

.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 36px;
}

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

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card {
  background: var(--surface);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 0 0 1px rgba(56,189,248,0.08), 0 24px 48px rgba(0,0,0,0.4);
}

.hero-card-title {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyber);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-stat-list { display: flex; flex-direction: column; gap: 12px; }

.hero-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.hero-stat:last-child { border-bottom: none; }
.hero-stat-label { color: var(--text-muted); font-family: var(--font-mono); font-size: 12px; }
.hero-stat-val { font-family: var(--font-head); font-weight: 700; color: var(--gold); }
.hero-stat-val--ok { color: var(--green); font-size: 12px; font-family: var(--font-mono); }

/* ── Trust strip ───────────────────────────────────── */
.trust-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
  background: var(--bg-mid);
}
.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-stat { text-align: center; flex: 1; min-width: 120px; }
.trust-stat-num {
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 500;
  color: var(--cyber);
  line-height: 1;
  margin-bottom: 6px;
}
.trust-stat-label { font-size: 13px; color: var(--text-muted); letter-spacing: 0.04em; }
.trust-divider { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; }

/* ── Section titles ────────────────────────────────── */
.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyber);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-bright);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 560px;
}

/* ── Services section ──────────────────────────────── */
.services-section { padding: 96px 0; }
.services-header { margin-bottom: 56px; }

/* Category cards on homepage */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.category-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: all 0.25s var(--ease);
  position: relative;
  overflow: hidden;
}
.category-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.category-card--cyber::before { background: var(--cyber); }
.category-card:hover {
  border-color: rgba(201,168,76,0.25);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.4);
}
.category-card--cyber:hover { border-color: rgba(56,189,248,0.25); }
.category-card:hover::before { transform: scaleX(1); }

.category-icon { font-size: 28px; margin-bottom: 16px; }
.category-num {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.category-name {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--text-bright);
  margin-bottom: 12px;
}
.category-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.category-services {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
  flex: 1;
}
.category-services li {
  font-size: 13px;
  color: var(--text);
  padding-left: 14px;
  position: relative;
}
.category-services li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 11px;
}
.category-card--cyber .category-services li::before { color: var(--cyber); }

.category-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-dim);
  margin-top: auto;
}
.category-card--cyber .category-link { color: var(--cyber-dim); }

/* Services grid (list page) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all 0.25s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.service-card--cyber::after { background: var(--cyber); }
.service-card:hover {
  border-color: rgba(201,168,76,0.2);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}
.service-card--cyber:hover { border-color: rgba(56,189,248,0.2); }
.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  font-size: 24px;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(201,168,76,0.08);
  border-radius: 10px;
  margin-bottom: 16px;
}
.service-card--cyber .service-icon { background: rgba(56,189,248,0.08); }

.service-name {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 8px;
}
.service-tagline {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 16px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-dim);
}
.service-card--cyber .service-link { color: var(--cyber-dim); }

.service-category-block { margin-bottom: 64px; }
.service-category-label {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  color: var(--text-bright);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.service-category-label .mono { color: var(--gold); }

/* ── Feature section ───────────────────────────────── */
.feature-section {
  background: var(--surface);
  padding: 96px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.feature-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feature-list { margin-top: 36px; display: flex; flex-direction: column; gap: 20px; }
.feature-item { display: flex; gap: 16px; align-items: flex-start; }
.feature-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cyber);
  margin-top: 8px;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(56,189,248,0.5);
}
.feature-item-title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 4px;
}
.feature-item-desc { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

.process-steps { display: flex; flex-direction: column; gap: 0; }
.process-step {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.process-step:last-child { border-bottom: none; }
.step-num {
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  width: 32px;
  flex-shrink: 0;
  padding-top: 2px;
}
.step-title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 4px;
}
.step-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ── Plans section ─────────────────────────────────── */
.plans-teaser { padding: 96px 0; }
.plans-teaser-header { margin-bottom: 48px; }

.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.plans-grid--full {
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.plan-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  transition: border-color 0.2s;
}
.plan-card:hover { border-color: var(--border-mid); }
.plan-card--featured {
  border-color: rgba(201,168,76,0.35);
  box-shadow: 0 0 0 1px rgba(201,168,76,0.15), 0 20px 48px rgba(0,0,0,0.3);
}
.plan-card--enterprise { border-color: rgba(56,189,248,0.25); }

.plan-badge {
  display: inline-block;
  padding: 3px 10px;
  background: var(--gold);
  color: var(--text-inv);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.plan-header { margin-bottom: 16px; }
.plan-name {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--text-bright);
  margin-bottom: 8px;
}
.plan-price {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
}
.plan-price span { font-size: 13px; font-weight: 500; color: var(--text-muted); }
.plan-price-block { margin-bottom: 8px; }
.plan-users { font-size: 13px; color: var(--text-muted); font-family: var(--font-mono); }
.plan-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
}
.plan-features--full { margin-top: 16px; }
.plan-features li {
  font-size: 13px;
  color: var(--text);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.plan-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-size: 12px;
}

/* ── Pricing page ──────────────────────────────────── */
.pricing-approach { padding: 64px 0 48px; }
.pricing-approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}
.pricing-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}
.pricing-block-icon { font-size: 28px; margin-bottom: 16px; }
.pricing-block-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  color: var(--text-bright);
  margin-bottom: 12px;
}
.pricing-block-desc { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

.pricing-cta-block {
  text-align: center;
  padding: 64px 40px;
  background: var(--surface);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-lg);
  margin-bottom: 64px;
}
.pricing-cta-block h2 {
  font-family: var(--font-head);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--text-bright);
  margin-bottom: 12px;
}
.pricing-cta-block p { font-size: 16px; color: var(--text-muted); max-width: 480px; margin: 0 auto; line-height: 1.65; }

.plans-page { padding: 0 0 96px; }
.plans-note {
  margin-top: 40px;
  padding: 20px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}
.plans-note a { color: var(--gold); text-decoration: underline; }

/* ── CTA strip ─────────────────────────────────────── */
.cta-strip {
  background: var(--surface);
  padding: 72px 0;
  border-top: 1px solid var(--border);
}
.cta-strip-inner { display: flex; align-items: center; gap: 48px; }
.cta-strip-text { flex: 1; }
.cta-strip-text h2 {
  font-family: var(--font-head);
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 800;
  color: var(--text-bright);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.cta-strip-text p { font-size: 15px; color: var(--text-muted); max-width: 480px; line-height: 1.6; }

/* ── Page inner hero ───────────────────────────────── */
.page-hero {
  padding: 80px 0 64px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(56,189,248,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56,189,248,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.page-hero-inner { max-width: 700px; position: relative; }
.page-hero .pill { margin-bottom: 16px; }
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text-bright);
  margin-bottom: 16px;
  line-height: 1.05;
}
.page-tagline { font-size: 17px; color: var(--text-muted); line-height: 1.65; max-width: 580px; }

.compliance-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.compliance-tag {
  padding: 4px 12px;
  background: rgba(52,211,153,0.1);
  border: 1px solid rgba(52,211,153,0.25);
  color: var(--green);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
}

/* ── Prose ─────────────────────────────────────────── */
.page-content { padding: 72px 0; }
.prose { max-width: 720px; }
.prose h2 {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 800;
  color: var(--text-bright);
  margin: 40px 0 14px;
  letter-spacing: -0.02em;
}
.prose h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-bright);
  margin: 28px 0 10px;
}
.prose p { margin-bottom: 18px; font-size: 16px; line-height: 1.75; color: var(--text); }
.prose ul { margin: 0 0 18px 20px; list-style: disc; }
.prose ul li { margin-bottom: 8px; font-size: 15px; line-height: 1.65; color: var(--text); }
.prose strong { font-weight: 700; color: var(--text-bright); }
.prose a { color: var(--gold); text-decoration: underline; }
.prose code {
  font-family: var(--font-mono);
  font-size: 13px;
  background: var(--surface-2);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--cyber);
}

/* ── Service single ────────────────────────────────── */
.service-single-hero {
  background: var(--bg-mid);
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.service-single-body {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 64px;
  padding: 72px 0;
  align-items: start;
}

.service-sidebar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: sticky;
  top: 88px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.sidebar-block { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.sidebar-block:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.service-sidebar-title {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.tools-list { display: flex; flex-wrap: wrap; gap: 6px; }
.tool-tag {
  padding: 3px 10px;
  background: rgba(56,189,248,0.08);
  border: 1px solid rgba(56,189,248,0.2);
  color: var(--cyber);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
}
.tool-tag--compliance {
  background: rgba(52,211,153,0.08);
  border-color: rgba(52,211,153,0.2);
  color: var(--green);
}
.service-sidebar ul { display: flex; flex-direction: column; gap: 4px; }
.service-sidebar ul li a {
  display: block;
  padding: 6px 10px;
  font-size: 13px;
  color: var(--text);
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.service-sidebar ul li a:hover { background: rgba(56,189,248,0.07); color: var(--cyber); }

/* ── About page ────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}
.belief-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.belief-card-num { font-family: var(--font-mono); font-size: 11px; color: var(--gold); margin-bottom: 10px; }
.belief-card-title {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 800;
  color: var(--text-bright);
  margin-bottom: 10px;
}
.belief-card-body { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ── Contact page ──────────────────────────────────── */
.contact-layout-section { padding: 72px 0 96px; }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.contact-info-title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--text-bright);
  margin-bottom: 14px;
}
.contact-info-desc { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 32px; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.contact-detail-icon {
  width: 40px; height: 40px;
  background: rgba(56,189,248,0.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-detail-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 3px;
}
.contact-detail-val { font-size: 14px; color: var(--text); font-weight: 500; }
.contact-detail-val a { color: var(--cyber); }

.whatsapp-cta {
  background: var(--surface);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 4px 32px rgba(0,0,0,0.3);
}
.whatsapp-icon-wrap {
  width: 48px; height: 48px;
  background: rgba(201,168,76,0.12);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin-bottom: 20px;
  flex-shrink: 0;
}
.whatsapp-cta-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--text-bright);
  margin-bottom: 12px;
}
.whatsapp-cta-desc { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 32px; max-width: 400px; }
.whatsapp-btn { font-size: 15px; padding: 14px 28px; }

/* ── Services list hero ────────────────────────────── */
.services-list-hero {
  background: var(--bg-mid);
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.services-list-body { padding: 80px 0; }

/* ── Footer ────────────────────────────────────────── */
.site-footer {
  background: var(--bg-mid);
  border-top: 1px solid var(--border);
  padding-top: 72px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}
.footer-brand .logo-text { color: var(--text-bright); }
.footer-tagline {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-top: 16px;
  max-width: 280px;
}
.footer-compliance { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.compliance-badge {
  padding: 3px 10px;
  background: rgba(52,211,153,0.08);
  border: 1px solid rgba(52,211,153,0.2);
  color: var(--green);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col-title {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: var(--text-muted); transition: color 0.15s; }
.footer-col ul li a:hover { color: var(--text-bright); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.2);
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom-note { font-size: 12px; color: rgba(255,255,255,0.15); }

/* ── Responsive ────────────────────────────────────── */
@media (max-width: 1024px) {
  .category-grid { grid-template-columns: 1fr; gap: 16px; }
  .plans-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero-inner,
  .feature-inner,
  .contact-layout,
  .service-single-body { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .service-sidebar { position: static; }
  .cta-strip-inner { flex-direction: column; text-align: center; }
  .plans-grid--full { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .container { padding-inline: 20px; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: var(--bg);
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(320px, 85vw);
    background: var(--surface);
    border-left: 1px solid var(--border-mid);
    padding: 0 0 32px;
    overflow-y: auto;
    gap: 0;
    z-index: 200;
    transform: translateX(110%);
    visibility: hidden;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0.3s;
    align-items: stretch;
    box-shadow: -8px 0 40px rgba(0,0,0,0.5);
  }
  .nav-links.is-open {
    transform: translateX(0);
    visibility: visible;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0s;
  }

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 199;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .nav-backdrop.is-open { opacity: 1; pointer-events: all; }

  .nav-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 8px;
    list-style: none;
  }
  .nav-panel-title {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
  }
  .nav-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text);
    padding: 4px;
    display: flex;
    align-items: center;
  }

  .nav-links .nav-item { list-style: none; }
  .nav-links .nav-link {
    color: var(--text);
    padding: 14px 24px;
    font-size: 16px;
    border-radius: 0;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .nav-links .nav-link:hover { background: rgba(56,189,248,0.06); color: var(--cyber); }

  .has-dropdown:hover .nav-dropdown,
  .has-dropdown:focus-within .nav-dropdown { transform: none; }

  .nav-dropdown {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: all;
    box-shadow: none;
    border: none;
    min-width: 0;
    padding: 0 0 8px 16px;
    background: transparent;
  }
  .dropdown-grid { grid-template-columns: 1fr; gap: 2px; }
  .dropdown-item { padding: 8px 12px; }
  .dropdown-item:hover { background: rgba(56,189,248,0.05); }
  .nav-dropdown .dropdown-icon { background: rgba(56,189,248,0.1); width: 28px; height: 28px; font-size: 13px; }
  .nav-dropdown .dropdown-name { color: var(--text); }
  .nav-dropdown .dropdown-desc { color: var(--text-muted); }

  .nav-panel-cta {
    display: block;
    list-style: none;
    padding: 24px 24px 0;
    margin-top: auto;
  }

  .hero-title { font-size: clamp(32px, 9vw, 44px); }
  .plans-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
  .whatsapp-cta { padding: 32px 24px; }
  .whatsapp-fab { bottom: 20px; right: 20px; width: 50px; height: 50px; }
  .whatsapp-fab svg { width: 24px; height: 24px; }
}

/* ── Typewriter caret ──────────────────────────────── */
.typed-caret {
  display: inline-block;
  width: 0.55em;
  height: 1.05em;
  background: var(--text-bright);
  margin-left: 1px;
  vertical-align: text-bottom;
  border-radius: 0;
  animation: caret-blink 1s step-end infinite;
}
@keyframes caret-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* ── SVG icon colors ───────────────────────────────── */
.service-icon { color: var(--gold); }
.service-card--cyber .service-icon { color: var(--cyber); }
.service-icon svg { display: block; }

.dropdown-icon { color: var(--cyber); }
.dropdown-icon svg { display: block; }

.category-icon { color: var(--gold); }
.category-card--cyber .category-icon { color: var(--cyber); }
.category-icon svg { display: block; }

/* ── Hero card scan animation ──────────────────────── */
.hero-card { position: relative; overflow: hidden; }
@keyframes scan-line {
  0%   { transform: translateY(-4px); opacity: 0; }
  6%   { opacity: 1; }
  94%  { opacity: 1; }
  100% { transform: translateY(340px); opacity: 0; }
}
.hero-card::after {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(56,189,248,0.7) 40%, rgba(56,189,248,0.7) 60%, transparent 100%);
  animation: scan-line 6s ease-in-out infinite;
  animation-delay: 1.5s;
  pointer-events: none;
}

/* ── WhatsApp FAB ──────────────────────────────────── */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 500;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
  color: #fff;
}
.whatsapp-fab:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 8px 28px rgba(37,211,102,0.55);
  color: #fff;
}
.whatsapp-fab svg { display: block; }

/* ── Service hero grid bg ──────────────────────────── */
.service-single-hero { position: relative; overflow: hidden; }
.service-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(56,189,248,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56,189,248,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 120% at 50% 0%, black 40%, transparent 100%);
  pointer-events: none;
}

/* ── Sidebar contact block ─────────────────────────── */
.sidebar-contact-block { border-top: 1px solid var(--border); }
.sidebar-cta-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 14px;
}
.sidebar-wa-link {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-family: var(--font-head);
  font-weight: 600;
  color: #25D366;
  transition: opacity 0.15s;
}
.sidebar-wa-link:hover { opacity: 0.75; }

/* ── Sidebar service link with icon ───────────────── */
.sidebar-service-link {
  display: flex !important;
  align-items: center;
  gap: 8px;
}
.sidebar-service-icon {
  flex-shrink: 0;
  color: var(--text-muted);
  display: flex;
  align-items: center;
}
.sidebar-service-link:hover .sidebar-service-icon { color: var(--cyber); }

/* ── Typography refinements ───────────────────────── */
.section-title { letter-spacing: -0.025em; }
.hero-title { letter-spacing: -0.035em; }
.service-single-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text-bright);
  margin: 12px 0 16px;
  line-height: 1.05;
}
