/* ============================================================
   Beaufort Cyber — Main Stylesheet
   ============================================================ */

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

:root {
  --bg-deep:       #070d1a;
  --bg-dark:       #0d1525;
  --bg-card:       #111c33;
  --bg-card-hover: #172240;
  --border:        #1e3050;
  --border-light:  #243a5e;
  --cyan:          #00c8ff;
  --cyan-dim:      #0090bb;
  --green:         #00e887;
  --green-dim:     #00a85d;
  --orange:        #ff8c42;
  --purple:        #9b6dff;
  --text-primary:  #e8f0fe;
  --text-secondary:#8ba3c7;
  --text-muted:    #4d6a96;
  --white:         #ffffff;
  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --shadow-glow-cyan:   0 0 30px rgba(0,200,255,.15);
  --shadow-glow-green:  0 0 30px rgba(0,232,135,.12);
  --transition:    .25s ease;
  --font-sans:     'Inter', 'Segoe UI', system-ui, sans-serif;
  --font-mono:     'JetBrains Mono', 'Courier New', monospace;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.65;
  min-height: 100vh;
}

a { color: var(--cyan); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--white); }

img { max-width: 100%; display: block; }

/* --- Typography ------------------------------------------- */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.02em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p { color: var(--text-secondary); max-width: 70ch; }

.text-cyan   { color: var(--cyan); }
.text-green  { color: var(--green); }
.text-orange { color: var(--orange); }
.text-purple { color: var(--purple); }
.text-white  { color: var(--white); }
.text-muted  { color: var(--text-muted); }

.mono { font-family: var(--font-mono); font-size: .9em; }

/* --- Layout ----------------------------------------------- */
.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

.section {
  padding: 96px 0;
}

.section-sm {
  padding: 64px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 14px;
  padding: 5px 14px;
  background: rgba(0,200,255,.08);
  border: 1px solid rgba(0,200,255,.2);
  border-radius: 99px;
}

.section-header p {
  margin: 16px auto 0;
  font-size: 1.1rem;
  max-width: 60ch;
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* --- Navigation ------------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(7,13,26,.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  height: 70px;
  display: flex;
  align-items: center;
}

.nav-inner {
  width: min(1280px, 94vw);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-logo .logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--bg-deep);
  font-weight: 900;
  font-family: var(--font-mono);
}

.nav-logo .logo-text span { color: var(--cyan); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  flex: 1;
  justify-content: center;
}

.nav-links > li { position: relative; }

.nav-links > li > a {
  display: block;
  padding: 8px 14px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}

.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: var(--white);
  background: rgba(255,255,255,.06);
}

/* Dropdown */
.dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 8px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  box-shadow: 0 20px 40px rgba(0,0,0,.5), var(--shadow-glow-cyan);
  list-style: none;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: calc(100% + 4px);
}

.dropdown-menu li a {
  display: block;
  padding: 9px 14px;
  font-size: .87rem;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.dropdown-menu li a:hover {
  color: var(--white);
  background: rgba(255,255,255,.07);
}

/* Has dropdown indicator */
.has-dropdown > a::after {
  content: ' ▾';
  font-size: .7rem;
  opacity: .6;
}

.nav-cta {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
  display: block;
}

/* --- Buttons --------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
  line-height: 1;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--cyan), #0090d4);
  color: var(--bg-deep);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #33d4ff, var(--cyan));
  color: var(--bg-deep);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,200,255,.3);
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
}
.btn-secondary:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  background: rgba(0,200,255,.06);
}

.btn-green {
  background: linear-gradient(135deg, var(--green), #00a85d);
  color: var(--bg-deep);
}
.btn-green:hover {
  background: linear-gradient(135deg, #33ffaa, var(--green));
  color: var(--bg-deep);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,232,135,.3);
}

.btn-ghost {
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  color: var(--text-secondary);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.1);
  color: var(--white);
}

.btn-lg {
  padding: 15px 32px;
  font-size: 1rem;
  border-radius: var(--radius-md);
}

.btn-sm {
  padding: 7px 16px;
  font-size: .82rem;
}

/* --- Hero ------------------------------------------------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 70px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(0,200,255,.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 60%, rgba(0,232,135,.05) 0%, transparent 55%),
    radial-gradient(ellipse 100% 80% at 50% 0%, rgba(13,21,37,.8) 0%, transparent 70%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30,48,80,.25) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,48,80,.25) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 90% at 50% 50%, black 30%, transparent 80%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 24px;
  padding: 6px 14px;
  background: rgba(0,200,255,.08);
  border: 1px solid rgba(0,200,255,.2);
  border-radius: 99px;
}

.hero-eyebrow .dot {
  width: 6px;
  height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.7); }
}

.hero h1 {
  margin-bottom: 24px;
  color: var(--white);
}

.hero h1 .accent { color: var(--cyan); }
.hero h1 .accent-green { color: var(--green); }

.hero-desc {
  font-size: 1.15rem;
  margin-bottom: 40px;
  color: var(--text-secondary);
  max-width: 60ch;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.hero-stat .value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  font-family: var(--font-mono);
}

.hero-stat .label {
  font-size: .82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* --- Pathway Cards ---------------------------------------- */
.pathway-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pathway-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}

.pathway-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .3s;
  border-radius: inherit;
}

.pathway-card.home::before  { background: radial-gradient(ellipse at top left, rgba(0,200,255,.08), transparent 70%); }
.pathway-card.biz::before   { background: radial-gradient(ellipse at top left, rgba(0,232,135,.07), transparent 70%); }
.pathway-card.agent::before { background: radial-gradient(ellipse at top left, rgba(155,109,255,.08), transparent 70%); }

.pathway-card:hover { border-color: var(--border-light); transform: translateY(-4px); }
.pathway-card:hover::before { opacity: 1; }

.pathway-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.pathway-card.home .pathway-icon  { background: rgba(0,200,255,.1); }
.pathway-card.biz .pathway-icon   { background: rgba(0,232,135,.1); }
.pathway-card.agent .pathway-icon { background: rgba(155,109,255,.1); }

.pathway-card h3 { margin-bottom: 10px; color: var(--white); }
.pathway-card p  { font-size: .93rem; margin-bottom: 24px; }

.pathway-services {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 28px;
}

.pathway-services li {
  font-size: .84rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.pathway-services li::before {
  content: '→';
  font-size: .75rem;
  color: var(--text-muted);
}

/* --- Operating Model -------------------------------------- */
.model-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.model-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
}

.model-card:hover {
  border-color: var(--border-light);
  transform: translateY(-3px);
}

.model-number {
  font-size: .75rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: var(--font-mono);
}

.model-verb {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.model-card:nth-child(1) .model-verb { color: var(--cyan); }
.model-card:nth-child(2) .model-verb { color: var(--green); }
.model-card:nth-child(3) .model-verb { color: var(--orange); }
.model-card:nth-child(4) .model-verb { color: var(--purple); }

.model-card p { font-size: .88rem; margin: 0; }

/* --- Service Cards ---------------------------------------- */
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: all var(--transition);
}

.service-card:hover {
  border-color: var(--border-light);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}

.service-card .icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
  display: block;
}

.service-card h4 { color: var(--white); margin-bottom: 8px; }
.service-card p  { font-size: .88rem; }

/* --- Feature List ----------------------------------------- */
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .92rem;
  color: var(--text-secondary);
}

.feature-list li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  margin-top: 2px;
  flex-shrink: 0;
}

/* --- Revenue Model ---------------------------------------- */
.revenue-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.revenue-tier {
  background: var(--bg-card);
  padding: 32px 24px;
}

.revenue-tier .tier-num {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-family: var(--font-mono);
}

.revenue-tier h4 { color: var(--white); font-size: 1rem; margin-bottom: 4px; }
.revenue-tier .sub { font-size: .8rem; color: var(--cyan); margin-bottom: 16px; }

.revenue-tier ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.revenue-tier ul li {
  font-size: .82rem;
  color: var(--text-muted);
  padding-left: 14px;
  position: relative;
}

.revenue-tier ul li::before {
  content: '·';
  position: absolute;
  left: 4px;
  color: var(--text-muted);
}

/* --- CTA Banner ------------------------------------------- */
.cta-banner {
  background: linear-gradient(135deg, #0d2040, #071830);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 30% 50%, rgba(0,200,255,.08), transparent),
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(0,232,135,.06), transparent);
}

.cta-banner > * { position: relative; }

.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p  { margin: 0 auto 32px; font-size: 1.05rem; }
.cta-banner .actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* --- Footer ----------------------------------------------- */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding: 72px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand p {
  font-size: .88rem;
  margin-top: 16px;
  margin-bottom: 24px;
  max-width: 28ch;
}

.footer-col h5 {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-col ul li a {
  font-size: .87rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--cyan); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom p { font-size: .82rem; color: var(--text-muted); }
.footer-tagline { color: var(--cyan); font-family: var(--font-mono); font-size: .8rem; }

/* --- Page Hero (inner pages) ------------------------------ */
.page-hero {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 0%, rgba(0,200,255,.06), transparent 60%);
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero .label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
  padding: 5px 14px;
  background: rgba(0,200,255,.08);
  border: 1px solid rgba(0,200,255,.2);
  border-radius: 99px;
}

.page-hero h1 { color: var(--white); margin-bottom: 20px; }
.page-hero p  { font-size: 1.1rem; margin-bottom: 32px; max-width: 65ch; }

/* --- Tabs ------------------------------------------------- */
.tabs {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 48px;
  overflow-x: auto;
  scrollbar-width: none;
}

.tabs::-webkit-scrollbar { display: none; }

.tab-btn {
  padding: 12px 20px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  margin-bottom: -1px;
}

.tab-btn:hover { color: var(--text-secondary); }
.tab-btn.active {
  color: var(--cyan);
  border-bottom-color: var(--cyan);
}

.tab-pane { display: none; }
.tab-pane.active { display: block; }

/* --- Offer Card ------------------------------------------- */
.offer-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all var(--transition);
}

.offer-card:hover {
  border-color: var(--border-light);
  box-shadow: var(--shadow-glow-cyan);
}

.offer-card .offer-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
}

.offer-card h3 { color: var(--white); margin-bottom: 12px; }
.offer-card p  { margin-bottom: 24px; }

.offer-deliverables {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}

.offer-deliverables li {
  font-size: .87rem;
  color: var(--text-secondary);
  display: flex;
  gap: 10px;
}

.offer-deliverables li::before {
  content: '→';
  color: var(--cyan);
  flex-shrink: 0;
}

/* --- Comparison Table ------------------------------------- */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

table {
  width: 100%;
  border-collapse: collapse;
}

thead th {
  background: var(--bg-card);
  padding: 16px 20px;
  text-align: left;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

tbody td {
  padding: 14px 20px;
  font-size: .9rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}

tbody tr:last-child td { border-bottom: none; }
tbody tr:hover td { background: rgba(255,255,255,.02); }

/* --- Accordion -------------------------------------------- */
.accordion { display: flex; flex-direction: column; gap: 2px; }

.accordion-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-primary);
  font-size: .95rem;
  font-weight: 500;
  text-align: left;
  transition: all var(--transition);
}

.accordion-header:hover { background: rgba(255,255,255,.03); }
.accordion-header .chevron { transition: transform var(--transition); flex-shrink: 0; color: var(--text-muted); font-size: .8rem; }
.accordion-item.open .accordion-header .chevron { transform: rotate(180deg); }

.accordion-body {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .25s;
}

.accordion-item.open .accordion-body {
  max-height: 800px;
  padding: 0 22px 20px;
}

.accordion-body p { font-size: .9rem; }

/* --- Alert / Callout -------------------------------------- */
.callout {
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  gap: 14px;
  font-size: .9rem;
}

.callout-info { background: rgba(0,200,255,.07); border: 1px solid rgba(0,200,255,.2); }
.callout-green { background: rgba(0,232,135,.07); border: 1px solid rgba(0,232,135,.2); }
.callout-warn  { background: rgba(255,140,66,.07); border: 1px solid rgba(255,140,66,.2); }

.callout-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.callout p { margin: 0; max-width: none; color: var(--text-secondary); }

/* --- Badge ------------------------------------------------ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 99px;
  font-size: .75rem;
  font-weight: 600;
}

.badge-cyan  { background: rgba(0,200,255,.12); color: var(--cyan); }
.badge-green { background: rgba(0,232,135,.12); color: var(--green); }
.badge-orange{ background: rgba(255,140,66,.12); color: var(--orange); }
.badge-purple{ background: rgba(155,109,255,.12); color: var(--purple); }

/* --- Testimonial ------------------------------------------ */
.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
}

.testimonial .quote {
  font-size: 1rem;
  color: var(--text-primary);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial .author { font-size: .85rem; color: var(--text-muted); }
.testimonial .author strong { color: var(--text-secondary); }

/* --- Process Steps ---------------------------------------- */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 44px;
  bottom: 24px;
  width: 1px;
  background: linear-gradient(to bottom, var(--cyan), transparent);
}

.process-step {
  display: flex;
  gap: 24px;
  padding: 20px 0;
  position: relative;
}

.step-num {
  width: 44px;
  height: 44px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  font-weight: 700;
  color: var(--cyan);
  font-family: var(--font-mono);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.step-content h4 { color: var(--white); margin-bottom: 6px; margin-top: 10px; }
.step-content p  { font-size: .9rem; }

/* --- Utility ---------------------------------------------- */
.divider {
  height: 1px;
  background: var(--border);
  margin: 80px 0;
}

.text-center { text-align: center; }
.text-center p { margin-inline: auto; }

.mt-8  { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mb-64 { margin-bottom: 64px; }

/* --- Responsive ------------------------------------------- */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .model-grid { grid-template-columns: repeat(2, 1fr); }
  .revenue-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .pathway-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 24px; }
}

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .hero-actions { flex-direction: column; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .revenue-grid { grid-template-columns: 1fr; }
  .model-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .cta-banner { padding: 48px 28px; }

  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0; right: 0;
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border);
    padding: 16px;
    gap: 4px;
  }
}

/* --- Animations ------------------------------------------- */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-up {
  animation: fade-up .6s ease both;
}

.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }
.delay-4 { animation-delay: .4s; }
