/* ── TRIKARA DESIGN SYSTEM (RAVI REFERENCE THEME) ── */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Sora:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #F6F4EC;
  --bg-soft: #FBFAF4;
  --bg-alt: #EDEADF;
  --ink: #0E0F0C;
  --ink-soft: #171911;
  --ink-2: #3C3B33;
  --accent: #3D8FA6;
  --accent-dark: #2D7488;
  --text-main: #3C3B33;
  --text-body: #5B5A4F;
  --text-muted: #8F8E80;
  --text-muted-dark: #8A8977;
  --border-light: rgba(14,15,12,0.14);
  --border-subtle: rgba(14,15,12,0.08);
  --border-dark: rgba(246,244,236,0.15);
  --r-xs: 2px;
  --r-sm: 4px;
  --r-md: 6px;
  --r-lg: 12px;
  --r-xl: 10px;
  --r-pill: 999px;
  /* ── Aliases used by inner service/industry pages ── */
  --border: rgba(14,15,12,0.14);
  --muted: #8F8E80;
  --body: #5B5A4F;
  --blue: #3D8FA6;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  font-family: 'Sora', sans-serif;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease, color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

a:hover {
  opacity: 0.85;
}

::selection {
  background: #3D8FA6;
  color: #0E0F0C;
}

input::placeholder, textarea::placeholder {
  color: #8F8E80;
}

/* ── TYPOGRAPHY UTILITIES ── */
.disp {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
}

.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ── BUTTON UTILITIES ── */
.btn-primary {
  background: #0E0F0C;
  color: #F6F4EC;
  padding: 14px 26px;
  border-radius: 2px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid #0E0F0C;
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary:hover {
  background: #3D8FA6;
  color: #0E0F0C;
  border-color: #3D8FA6;
  opacity: 1;
}

.btn-outline {
  background: transparent;
  padding: 14px 26px;
  border-radius: 2px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid rgba(14,15,12,0.28);
  color: #0E0F0C;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  cursor: pointer;
}

.btn-outline:hover {
  border-color: #0E0F0C;
  opacity: 1;
  background: rgba(14,15,12,0.04);
}

.btn-ink {
  background: #0E0F0C;
  color: #3D8FA6;
  padding: 16px 30px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 15px;
  border-radius: 2px;
  border: 1px solid #0E0F0C;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  cursor: pointer;
}

.btn-ink:hover {
  opacity: 0.9;
  background: #171911;
}

.tag-chip {
  border: 1px solid rgba(246,244,236,0.22);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  padding: 9px 16px;
  border-radius: 999px;
  color: #EDEBDF;
  display: inline-block;
  transition: all 0.2s ease;
}

.tag-chip:hover {
  border-color: #3D8FA6;
  color: #3D8FA6;
  opacity: 1;
}

.tag-chip-dark {
  border: 1px solid rgba(14,15,12,0.18);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  padding: 6px 12px;
  border-radius: 999px;
  color: #3C3B33;
  display: inline-block;
}

/* ── HEADER NAVIGATION ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(246,244,236,0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(14,15,12,0.1);
}

.hdr-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 16px clamp(20px,4vw,48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #0E0F0C;
  letter-spacing: -0.02em;
}

.logo-dot {
  width: 9px;
  height: 9px;
  background: var(--accent);
  display: inline-block;
  border-radius: 1px;
  transition: transform 0.2s ease;
}

.logo:hover .logo-dot {
  transform: scale(1.15);
}

.logo-img {
  height: 32px;
  width: auto;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-item {
  position: relative;
}

.nav-btn {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #3C3B33;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 0;
}

.nav-btn:hover, .nav-link:hover {
  color: #0E0F0C;
  opacity: 0.8;
}

.nav-btn svg {
  width: 12px;
  height: 12px;
  transition: transform 0.2s ease;
}

.nav-item:hover .nav-drop {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.nav-link {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #3C3B33;
}

.nav-drop {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #FBFAF4;
  border: 1px solid rgba(14,15,12,0.14);
  padding: 16px;
  box-shadow: 0 12px 32px rgba(14,15,12,0.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.2s ease;
  min-width: 240px;
  z-index: 100;
  border-radius: 2px;
}

.nav-drop.w2 { min-width: 560px; }
.nav-drop.w3 { min-width: 760px; }

.dg { display: grid; gap: 4px; }
.dg.c2 { grid-template-columns: repeat(2, 1fr); }
.dg.c4 { grid-template-columns: repeat(4, 1fr); }

.dlbl {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8A8977;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(14,15,12,0.1);
  grid-column: 1 / -1;
  margin-bottom: 6px;
}

.di {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 2px;
  font-size: 13.5px;
  font-weight: 500;
  color: #3C3B33;
}

.di:hover {
  background: #EDEADF;
  color: #0E0F0C;
  opacity: 1;
}

.di-ic {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3D8FA6;
}

.hdr-acts {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mob-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}

.mob-menu-btn span {
  width: 22px;
  height: 2px;
  background: #0E0F0C;
  display: block;
}

/* ── MOBILE NAV DRAWER ── */
.mob-nav {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #F6F4EC;
  z-index: 999;
  padding: 24px;
  overflow-y: auto;
  display: none;
}

.mob-nav.is-open {
  display: block;
}

.mob-nav-section {
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(14,15,12,0.1);
  padding-bottom: 16px;
}

.mob-nav-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: #8A8977;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.mob-nav-link {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #0E0F0C;
  padding: 8px 0;
}

.mob-nav-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

/* ── HERO SECTION ── */
.hero-sec {
  background: #0E0F0C;
  color: #F6F4EC;
  padding: clamp(56px,9vw,104px) clamp(20px,4vw,48px) 0;
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -160px;
  left: -120px;
  width: 420px;
  height: 420px;
  background: #3D8FA6;
  border-radius: 50%;
  opacity: 0.14;
  filter: blur(70px);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(32px,4.6vw,64px);
  line-height: 1.05;
  margin: 0 0 14px;
  color: #F6F4EC;
  letter-spacing: -0.02em;
}

.hero-h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(22px,3vw,38px);
  line-height: 1.15;
  margin: 0 0 26px;
  color: #3D8FA6;
  letter-spacing: -0.02em;
}

.hero-p {
  font-size: clamp(16px,1.5vw,19px);
  line-height: 1.55;
  color: #C7C6B8;
  max-width: 480px;
  margin: 0 0 40px;
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(246,244,236,0.15);
  margin-top: 56px;
}

.hero-stat-cell {
  padding: 22px clamp(6px,2vw,22px) 26px;
  border-right: 1px solid rgba(246,244,236,0.15);
}

.hero-stat-cell:first-child {
  padding-left: 0;
}

.hero-stat-cell:last-child {
  border-right: none;
  padding-right: 0;
}

/* ── BENTO & SERVICES ── */
.bento {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

.bento-card-lg {
  border: 1px solid rgba(14,15,12,0.14);
  padding: clamp(28px,3vw,44px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 420px;
  background: #FBFAF4;
}

.bento-card-mini {
  border: 1px solid rgba(14,15,12,0.14);
  padding: 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #FBFAF4;
}

/* ── PROOF STRIP ── */
.proof-strip {
  background: #0E0F0C;
  color: #F6F4EC;
  padding: 56px clamp(20px,4vw,48px);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid rgba(246,244,236,0.15);
  border-left: 1px solid rgba(246,244,236,0.15);
}

.proof-cell {
  padding: 22px 16px;
  border-right: 1px solid rgba(246,244,236,0.15);
  border-bottom: 1px solid rgba(246,244,236,0.15);
}

/* ── PRINCIPLES GRID ── */
.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(14,15,12,0.14);
  border-left: 1px solid rgba(14,15,12,0.14);
}

.grid3-cell {
  padding: 32px 30px;
  border-right: 1px solid rgba(14,15,12,0.14);
  border-bottom: 1px solid rgba(14,15,12,0.14);
  background: #FBFAF4;
}

.num-stroke {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 22px;
  -webkit-text-stroke: 1px #0E0F0C;
  color: transparent;
  margin-bottom: 18px;
}

/* ── CYBERSECURITY CARD ── */
.sec-card-dark {
  background: #0E0F0C;
  color: #F6F4EC;
  border-radius: 4px;
  padding: 28px;
  font-family: 'JetBrains Mono', monospace;
}

/* ── PROCESS STEPS ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.steps-line {
  position: absolute;
  top: 11px;
  left: 5%;
  right: 5%;
  height: 1px;
  background: rgba(14,15,12,0.16);
  z-index: 0;
}

.step-node {
  position: relative;
  z-index: 1;
}

.step-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #0E0F0C;
  margin-bottom: 22px;
}

.step-dot.accent {
  background: #3D8FA6;
}

/* ── STORIES GRID ── */
.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(14,15,12,0.14);
  border: 1px solid rgba(14,15,12,0.14);
}

.story-card {
  background: #F6F4EC;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
}

.quote-mark {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 44px;
  color: #3D8FA6;
  -webkit-text-stroke: 1.5px #0E0F0C;
  line-height: 1;
  margin-bottom: 14px;
}

/* ── CTA BAND ── */
.cta-band-sec {
  background: #3D8FA6;
  color: #0E0F0C;
  padding: clamp(72px,9vw,112px) clamp(20px,4vw,48px);
}

/* ── NEWSLETTER ── */
.newsletter-sec {
  background: #171911;
  color: #F6F4EC;
  padding: 32px clamp(20px,4vw,48px);
}

/* ── FOOTER ── */
.site-footer {
  background: #0E0F0C;
  color: #F6F4EC;
  padding: clamp(56px,7vw,80px) clamp(20px,4vw,48px) 28px;
}

.footgrid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}

/* ── MODAL & FORM STYLING ── */
.audit-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14,15,12,0.85);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}

.audit-modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.audit-modal {
  position: relative;
  width: 100%;
  max-width: 620px;
  max-height: 90vh;
  overflow-y: auto;
  background: #0E0F0C;
  color: #F6F4EC;
  border: 1px solid rgba(246,244,236,0.2);
  border-radius: 4px;
  padding: 36px 32px 28px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.8);
}

.audit-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 2px;
  border: 1px solid rgba(246,244,236,0.2);
  background: #171911;
  color: #F6F4EC;
  font-size: 18px;
  cursor: pointer;
}

.audit-field {
  margin-bottom: 18px;
}

.audit-field label {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: #F6F4EC;
  margin-bottom: 8px;
}

.audit-field input, .audit-field textarea, .audit-field select {
  width: 100%;
  background: #171911;
  border: 1px solid rgba(246,244,236,0.2);
  color: #F6F4EC;
  padding: 12px 14px;
  border-radius: 2px;
  font-size: 14px;
  font-family: 'Sora', sans-serif;
  outline: none;
}

.audit-field input:focus, .audit-field textarea:focus {
  border-color: #3D8FA6;
}

.audit-repeater-row {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}

.audit-repeater-row input { flex: 1; }

.audit-remove-btn {
  background: #171911;
  border: 1px solid rgba(246,244,236,0.2);
  color: #F6F4EC;
  padding: 0 12px;
  border-radius: 2px;
  cursor: pointer;
}

.audit-remove-btn:hover { color: #FF5A1F; border-color: #FF5A1F; }

.audit-add-btn {
  background: none;
  border: none;
  color: #3D8FA6;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12.5px;
  cursor: pointer;
  padding: 4px 0;
}

/* ── INNER PAGE CONTAINERS ── */
.page-hero {
  background: #0E0F0C;
  color: #F6F4EC;
  padding: clamp(64px, 8vw, 110px) clamp(20px, 4vw, 48px);
  position: relative;
  overflow: hidden;
}

.page-section {
  padding: clamp(64px, 8vw, 110px) clamp(20px, 4vw, 48px);
}

.card-box {
  background: #FBFAF4;
  border: 1px solid rgba(14,15,12,0.14);
  padding: 28px;
  border-radius: 2px;
}

.card-box-dark {
  background: #171911;
  color: #F6F4EC;
  border: 1px solid rgba(246,244,236,0.15);
  padding: 28px;
  border-radius: 2px;
}

/* ── INDIVIDUAL SERVICE PAGES & HERO SPLIT ── */
.inner-hero {
  background: #0E0F0C;
  color: #F6F4EC;
  padding: clamp(56px, 8vw, 104px) clamp(20px, 4vw, 48px);
  position: relative;
  overflow: hidden;
}

.inner-hero-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.svc-hero-split {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: center;
}

.svc-hero-left {
  display: flex;
  flex-direction: column;
}

.inner-breadcrumb {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #8F8E80;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.inner-breadcrumb a {
  color: #8F8E80;
}

.inner-breadcrumb a:hover {
  color: #3D8FA6;
}

.inner-breadcrumb span {
  color: #8F8E80;
}

.inner-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #3D8FA6;
  margin-bottom: 14px;
}

.inner-hero-h {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 4.5vw, 60px);
  line-height: 1.08;
  color: #F6F4EC;
  margin: 0 0 18px;
  letter-spacing: -0.02em;
}

.inner-hero-h span {
  color: #3D8FA6 !important;
}

.inner-hero-p {
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.55;
  color: #C7C6B8;
  max-width: 580px;
  margin: 0 0 32px;
}

.inner-hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-hp {
  background: #3D8FA6;
  color: #0E0F0C;
  padding: 14px 26px;
  border-radius: 2px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #3D8FA6;
}

.btn-hp:hover {
  background: #F6F4EC;
  color: #0E0F0C;
  border-color: #F6F4EC;
  opacity: 1;
}

.btn-hs {
  background: transparent;
  padding: 14px 26px;
  border-radius: 2px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid rgba(246,244,236,0.32);
  color: #F6F4EC;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-hs:hover {
  border-color: #F6F4EC;
  background: rgba(246,244,236,0.06);
  opacity: 1;
}

.svc-hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.svc-hero-svg {
  width: 100%;
  max-width: 480px;
  height: auto;
  display: block;
}

/* ── SERVICE STATS BAR ── */
.svc-stats-bar {
  background: #171911;
  color: #F6F4EC;
  border-top: 1px solid rgba(246,244,236,0.12);
  border-bottom: 1px solid rgba(246,244,236,0.12);
  padding: 32px clamp(20px, 4vw, 48px);
}

.svc-stats-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.svc-stat {
  padding: 0 16px;
  border-right: 1px solid rgba(246,244,236,0.12);
}

.svc-stat:last-child {
  border-right: none;
}

.svc-stat-n {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3vw, 40px);
  color: #F6F4EC;
  line-height: 1;
}

.svc-stat-n em {
  color: #3D8FA6;
  font-style: normal;
}

.svc-stat-l {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: #8F8E80;
  margin-top: 8px;
  letter-spacing: 0.05em;
}

/* ── WHAT WE DO & CAPABILITIES ── */
.sec {
  padding: clamp(64px, 8vw, 110px) clamp(20px, 4vw, 48px);
}

.sec-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.sec-h {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3.8vw, 44px);
  line-height: 1.1;
  color: #0E0F0C;
}

.sec-p {
  color: #5B5A4F;
  font-size: 16px;
  line-height: 1.6;
}

.svc-caps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.svc-cap-card {
  background: #FBFAF4;
  border: 1px solid rgba(14,15,12,0.14);
  padding: 32px 28px;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
}

.svc-cap-ic {
  width: 44px;
  height: 44px;
  border-radius: 2px;
  background: rgba(61,143,166,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #3D8FA6;
}

.svc-cap-ic svg {
  stroke: #3D8FA6 !important;
}

.svc-cap-ttl {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #0E0F0C;
  margin: 0 0 10px;
}

.svc-cap-dsc {
  color: #5B5A4F;
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

/* ── PROCESS STEPS ── */
.svc-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.svc-proc-step {
  background: #FBFAF4;
  border: 1px solid rgba(14,15,12,0.14);
  padding: 32px 24px;
  border-radius: 2px;
}

.svc-proc-num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: #3D8FA6;
  margin-bottom: 16px;
  line-height: 1;
}

.svc-proc-body h4 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #0E0F0C;
  margin: 0 0 10px;
}

.svc-proc-body p {
  color: #5B5A4F;
  font-size: 13.5px;
  line-height: 1.55;
  margin: 0;
}

/* ── SPLIT SECTION ── */
.split-sec {
  background: #F6F4EC;
}

.split {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: center;
}

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

.blt {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: #3C3B33;
}

.blt-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3D8FA6;
  display: inline-block;
  flex-shrink: 0;
}

.btn-blue {
  background: #0E0F0C;
  color: #F6F4EC;
  padding: 14px 26px;
  border-radius: 2px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-blue:hover {
  background: #3D8FA6;
  color: #0E0F0C;
  opacity: 1;
}

.btn-cta-p {
  background: #0E0F0C;
  color: #3D8FA6;
  padding: 16px 30px;
  font-weight: 700;
  font-size: 15px;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
}

.btn-cta-p:hover {
  background: #171911;
}

.btn-cta-g {
  background: transparent;
  color: #0E0F0C;
  padding: 16px 30px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid #0E0F0C;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
}

.btn-cta-g:hover {
  background: rgba(14,15,12,0.06);
}

/* ── RESPONSIVE MEDIA QUERIES ── */
@media (max-width: 992px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-grid > div:last-child { order: -1; max-width: 380px; margin: 0 auto 24px; }
  .svc-hero-split { grid-template-columns: 1fr; }
  .svc-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .svc-caps-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-process { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; }
  .grid3 { grid-template-columns: repeat(2, 1fr); }
  .footgrid { grid-template-columns: repeat(2, 1fr); }
  .proof-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .site-nav, .hdr-acts { display: none; }
  .mob-menu-btn { display: flex; }
  .hero-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stat-cell { border-right: 1px solid rgba(246,244,236,0.15); border-bottom: 1px solid rgba(246,244,236,0.15); padding: 16px; }
  .grid3 { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .stories-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .footgrid { grid-template-columns: 1fr; }
  .svc-stats-inner { grid-template-columns: 1fr; }
  .svc-caps-grid { grid-template-columns: 1fr; }
  .svc-process { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; align-items: flex-start; }
  .split { grid-template-columns: 1fr; }
}

/* ── CTA BAND ── */
.cta-band {
  background: #F6F4EC;
  border-top: 1px solid rgba(14,15,12,0.12);
  padding: clamp(64px, 8vw, 100px) clamp(20px, 4vw, 48px);
  text-align: center;
}

.cta-inner {
  max-width: 680px;
  margin: 0 auto;
}

.cta-h {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.1;
  color: #0E0F0C;
  margin: 0 0 18px;
  letter-spacing: -0.02em;
}

.cta-p {
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.65;
  color: #5B5A4F;
  margin: 0 0 36px;
}

.cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* ── SPLIT VIS (right-side visual panel in split sections) ── */
.split-vis {
  background: #FBFAF4;
  border: 1px solid rgba(14,15,12,0.14);
  border-radius: 10px;
  overflow: hidden;
}

.split-vis.dk {
  background: #171911;
  border-color: rgba(246,244,236,0.12);
}

/* ── REVEAL ANIMATIONS (.rv, .d1, .d2, .d3) ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.rv {
  animation: fadeUp 0.55s ease both;
}

.d1 { animation-delay: 0.08s; }
.d2 { animation-delay: 0.16s; }
.d3 { animation-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  .rv { animation: none; opacity: 1; }
}

/* ── SPLIT REVERSED ── */
.split.rev {
  direction: rtl;
}
.split.rev > * {
  direction: ltr;
}

/* ── SERVICE LINK ── */
.svc-lnk {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: #3D8FA6;
  border-bottom: 1px solid rgba(61,143,166,0.3);
  padding-bottom: 2px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.svc-lnk:hover {
  color: #2D7488;
  border-color: #2D7488;
  opacity: 1;
}

/* ── OFF UTILITY (greyed-out feature row) ── */
.off {
  opacity: 0.35;
}

/* ── FAQ ACCORDION ── */
.faq-list {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(14,15,12,0.12);
  border-radius: 4px;
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid rgba(14,15,12,0.1);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #0E0F0C;
  text-align: left;
  transition: background 0.18s;
}

.faq-q:hover {
  background: rgba(14,15,12,0.03);
}

.faq-q .material-icons {
  font-size: 20px;
  color: #3D8FA6;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item.expanded .faq-q .material-icons {
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 28px;
  font-size: 14.5px;
  line-height: 1.65;
  color: #5B5A4F;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.expanded .faq-a {
  max-height: 400px;
  padding: 0 28px 22px;
}

/* ── PLAN / PRICING CARDS ── */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  align-items: start;
}

.plan-card {
  background: #FBFAF4;
  border: 1px solid rgba(14,15,12,0.14);
  border-radius: 4px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: visible;
}

.plan-card--featured {
  background: #0E0F0C;
  border-color: #3D8FA6;
  color: #F6F4EC;
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(14,15,12,0.18);
}

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #3D8FA6;
  color: #0E0F0C;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.plan-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: inherit;
  margin-bottom: 10px;
}

.plan-card--featured .plan-name {
  color: #F6F4EC;
}

.plan-for {
  font-size: 13px;
  line-height: 1.55;
  color: #5B5A4F;
  margin-bottom: 20px;
}

.plan-card--featured .plan-for {
  color: #C7C6B8;
}

.plan-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 4px;
}

.plan-price {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 2.2vw, 26px);
  color: #0E0F0C;
  line-height: 1;
}

.plan-card--featured .plan-price {
  color: #3D8FA6;
}

.plan-price-unit {
  font-size: 12px;
  color: #8F8E80;
  margin-bottom: 4px;
}

.plan-price-note {
  font-size: 11.5px;
  color: #8F8E80;
  margin-bottom: 20px;
}

.plan-divider {
  border: none;
  border-top: 1px solid rgba(14,15,12,0.1);
  margin: 16px 0;
}

.plan-card--featured .plan-divider {
  border-color: rgba(246,244,236,0.14);
}

.plan-feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  margin-bottom: 24px;
}

.plan-feature {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13.5px;
  line-height: 1.4;
  color: #3C3B33;
  position: relative;
}

.plan-card--featured .plan-feature {
  color: #C7C6B8;
}

.plan-feature .material-icons {
  font-size: 17px;
  color: #3D8FA6;
  flex-shrink: 0;
  margin-top: 1px;
}

.plan-feature.off .material-icons {
  color: #8F8E80;
}

.plan-cta {
  background: #0E0F0C;
  color: #3D8FA6;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 14px 22px;
  border-radius: 2px;
  text-align: center;
  display: block;
  transition: background 0.2s;
}

.plan-cta:hover {
  background: #171911;
  opacity: 1;
}

.plan-card--featured .plan-cta {
  background: #3D8FA6;
  color: #0E0F0C;
}

.plan-card--featured .plan-cta:hover {
  background: #F6F4EC;
}

/* Plan tooltip */
.plan-tip {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-left: 4px;
  cursor: pointer;
}

.plan-tip-ic {
  font-size: 14px !important;
  color: #8F8E80 !important;
  vertical-align: middle;
}

.plan-tip-bubble {
  display: none;
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #0E0F0C;
  color: #C7C6B8;
  font-size: 12px;
  line-height: 1.55;
  padding: 10px 14px;
  border-radius: 4px;
  width: 220px;
  z-index: 100;
  pointer-events: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.plan-tip:hover .plan-tip-bubble,
.plan-tip:focus .plan-tip-bubble {
  display: block;
}

.plan-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(14,15,12,0.04);
  border: 1px solid rgba(14,15,12,0.1);
  border-radius: 4px;
  padding: 16px 20px;
  margin-top: 28px;
  font-size: 13px;
  line-height: 1.6;
  color: #5B5A4F;
}

.plan-disclaimer .material-icons {
  font-size: 18px;
  color: #8F8E80;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── SCOPE CARDS ── */
.scope-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.scope-card {
  border-radius: 4px;
  padding: 28px;
  border: 1px solid rgba(14,15,12,0.14);
}

.scope-card h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 17px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 20px;
}

.scope-card h4 .material-icons {
  font-size: 20px;
}

.scope-card--in {
  background: rgba(61,143,166,0.06);
  border-color: rgba(61,143,166,0.22);
}

.scope-card--in h4 {
  color: #2D7488;
}

.scope-card--in h4 .material-icons {
  color: #3D8FA6;
}

.scope-card--out {
  background: rgba(14,15,12,0.03);
  border-color: rgba(14,15,12,0.12);
}

.scope-card--out h4 {
  color: #5B5A4F;
}

.scope-card--out h4 .material-icons {
  color: #8F8E80;
}

.scope-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.scope-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: #3C3B33;
  line-height: 1.4;
}

.scope-card--in .scope-item .material-icons {
  font-size: 16px;
  color: #3D8FA6;
  flex-shrink: 0;
}

.scope-card--out .scope-item .material-icons {
  font-size: 16px;
  color: #8F8E80;
  flex-shrink: 0;
}

/* ── TECH STACK GRID ── */
.tech-stack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 10px;
}

/* ── RESPONSIVE: NEW COMPONENTS ── */
@media (max-width: 992px) {
  .plan-grid { grid-template-columns: repeat(2, 1fr); }
  .plan-card--featured { transform: none; }
  .scope-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .plan-grid { grid-template-columns: 1fr; }
  .faq-q { padding: 18px 20px; font-size: 14px; }
  .faq-a { padding: 0 20px; }
  .faq-item.expanded .faq-a { padding: 0 20px 18px; }
  .scope-grid { grid-template-columns: 1fr; }
  .tech-stack-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── CYBERSECURITY SERVICES STYLES ── */
.cs-hero {
  background: #0E0F0C;
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 8vw, 110px) clamp(20px, 4vw, 48px);
}

.cs-hero-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.16;
  pointer-events: none;
}

.cs-hero-glow-r {
  right: -100px;
  top: -100px;
  background: #ef4444;
}

.cs-hero-glow-l {
  left: -100px;
  bottom: -100px;
  background: #3b82f6;
}

.cs-hero-inner {
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cs-hero-split {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.cs-hero-h {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #F6F4EC;
  margin-bottom: 20px;
}

.cs-red {
  color: #ef4444;
}

.cs-hero-p {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.65;
  color: #C7C6B8;
  margin-bottom: 32px;
  max-width: 580px;
}

.cs-hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.btn-cs-red {
  background: #ef4444;
  color: #ffffff !important;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 13px 24px;
  border-radius: 2px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  box-shadow: 0 4px 14px rgba(239, 68, 68, 0.3);
}

.btn-cs-red:hover {
  background: #dc2626;
  color: #ffffff !important;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.45);
  transform: translateY(-1px);
}

.btn-cs-ghost {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #F6F4EC !important;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 13px 24px;
  border-radius: 2px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.btn-cs-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.3);
}

.cs-trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
}

.cs-trust-item {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 6px;
}

.cs-trust-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.8);
}

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

.cs-hero-svg {
  width: 100%;
  max-width: 440px;
  height: auto;
  display: block;
}

/* ── CS STATS BAR ── */
.cs-stats-bar {
  background: #121417;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 20px;
}

.cs-stats-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  text-align: center;
}

.cs-stat {
  padding: 8px 12px;
}

.cs-stat-n {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 700;
  color: #ef4444;
  line-height: 1;
  margin-bottom: 4px;
}

.cs-stat-n em {
  font-size: 0.6em;
  font-style: normal;
  color: rgba(255, 255, 255, 0.7);
}

.cs-stat-l {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ── SHIELD FRAMEWORK ── */
.cs-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ef4444;
  display: inline-block;
  margin-bottom: 8px;
}

.shield-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.shield-card {
  background: #FBFAF4;
  border: 1px solid rgba(14, 15, 12, 0.12);
  border-radius: 4px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.shield-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(14, 15, 12, 0.08);
  border-color: rgba(239, 68, 68, 0.4);
}

.shield-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.shield-ic {
  width: 42px;
  height: 42px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.shield-ic.red {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.shield-ttl {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #0E0F0C;
  margin: 0;
}

.shield-dsc {
  font-size: 14px;
  line-height: 1.6;
  color: #5B5A4F;
  margin-bottom: 20px;
  flex: 1;
}

.shield-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.shield-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  background: rgba(14, 15, 12, 0.05);
  color: #3C3B33;
  padding: 4px 10px;
  border-radius: 2px;
  border: 1px solid rgba(14, 15, 12, 0.08);
}

/* ── PROACTIVE OFFENSE LOOP ── */
.cs-loop-sec {
  background: #0A0D14;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  padding: clamp(60px, 8vw, 100px) clamp(20px, 4vw, 48px);
}

.cs-loop-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cs-loop-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.cs-loop-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}

.cs-loop-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 18px 20px;
}

.cs-loop-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.cs-loop-vis {
  position: relative;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  width: 340px;
  margin: 0 auto;
}

.cs-loop-ring {
  position: absolute;
  border-radius: 50%;
}

.cs-loop-ring-outer {
  width: 100%;
  height: 100%;
  border: 1px stroke rgba(239, 68, 68, 0.25);
  animation: csSpin 30s linear infinite;
}

.cs-loop-ring-inner {
  width: 70%;
  height: 70%;
  border: 1px stroke rgba(59, 130, 246, 0.25);
  animation: csSpinRev 20s linear infinite;
}

@keyframes csSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes csSpinRev {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

.cs-loop-center {
  font-size: 42px;
  position: relative;
  z-index: 2;
}

.cs-loop-label {
  position: absolute;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  background: #0A0D14;
  border: 1px solid;
  border-radius: 2px;
  white-space: nowrap;
  z-index: 3;
}

.cs-loop-quote {
  position: absolute;
  bottom: -48px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 100%;
  max-width: 320px;
  font-style: italic;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.4);
}

/* ── WHY TRIKARA ── */
.cs-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.cs-why-card {
  background: #ffffff;
  border: 1px solid rgba(14, 15, 12, 0.1);
  border-radius: 4px;
  padding: 28px;
  transition: transform 0.2s, border-color 0.2s;
}

.cs-why-card:hover {
  transform: translateY(-3px);
  border-color: rgba(239, 68, 68, 0.35);
}

.cs-why-ic {
  font-size: 28px;
  margin-bottom: 14px;
}

.cs-why-ttl {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #0E0F0C;
  margin-bottom: 8px;
}

.cs-why-dsc {
  font-size: 13.5px;
  line-height: 1.6;
  color: #5B5A4F;
  margin: 0;
}

/* ── PROCESS GRID ── */
.cs-process-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.cs-proc-card {
  background: #FBFAF4;
  border: 1px solid rgba(14, 15, 12, 0.12);
  border-radius: 4px;
  padding: 22px 18px;
  flex: 1;
  min-width: 180px;
  max-width: 220px;
}

.cs-proc-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #ef4444;
  margin-bottom: 8px;
}

.cs-proc-ttl {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #0E0F0C;
  margin-bottom: 6px;
}

.cs-proc-dsc {
  font-size: 12.5px;
  line-height: 1.5;
  color: #5B5A4F;
  margin: 0;
}

.cs-proc-arrow {
  font-size: 18px;
  color: #ef4444;
  font-weight: bold;
  flex-shrink: 0;
  opacity: 0.6;
}

/* ── COMPLIANCE BAR ── */
.cs-compliance-bar {
  background: #0E0F0C;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 20px;
}

.cs-comp-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cs-comp-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.cs-comp-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cs-comp-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 14px;
  border-radius: 2px;
}

.cs-cta-badge {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
  padding: 4px 12px;
  border-radius: 999px;
}

@media (max-width: 992px) {
  .cs-hero-split { grid-template-columns: 1fr; text-align: center; }
  .cs-hero-text { margin: 0 auto; }
  .cs-hero-btns { justify-content: center; }
  .cs-trust-row { justify-content: center; }
  .cs-loop-layout { grid-template-columns: 1fr; }
  .cs-proc-arrow { display: none; }
  .cs-proc-card { max-width: 100%; }
}


