:root {
  /* Color tokens */
  --bg-primary: #050505;
  --bg-secondary: #101114;
  --bg-panel: #16181D;
  --border: #2C3138;
  --brand: #B70E18;
  --brand-hover: #D91F2F;
  --metallic: #B7BDC7;
  --white: #FFFFFF;
  --success: #22C55E;
  --text-primary: #FFFFFF;
  --text-muted: #B7BDC7;

  /* Typography tokens */
  --font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-size-hero: clamp(50px, 6.2vw, 78px);
  --font-size-h2: clamp(32px, 4vw, 48px);
  --font-size-h3: 20px;
  --font-size-body: 16px;
  --font-size-small: 14px;
  --font-size-eyebrow: 13px;
  --font-weight-bold: 800;
  --font-weight-medium: 600;
  --line-height-tight: 0.96;
  --line-height-normal: 1.65;
  --letter-spacing-tight: -0.06em;

  /* Spacing tokens */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 48px;
  --space-xl: 80px;
  --radius-sm: 9px;
  --radius-md: 16px;
  --radius-lg: 22px;

  /* Shadow tokens */
  --shadow-card: 0 18px 55px rgba(0, 0, 0, 0.25);
  --shadow-btn: 0 12px 30px rgba(183, 14, 24, 0.28);
  --shadow-panel: 0 24px 80px rgba(0, 0, 0, 0.35);

  /* Transition tokens */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  /* Legacy mappings — keep existing selectors working until fully migrated */
  --bg: var(--bg-primary);
  --panel: var(--bg-secondary);
  --panel2: var(--bg-panel);
  --text: var(--text-primary);
  --muted: var(--text-muted);
  --line: var(--border);
  --blue: var(--brand);
  --blue2: var(--brand-hover);
  --ink: var(--bg-primary);
  --soft: var(--bg-secondary);
  --dark: var(--bg-primary);
  --radius: var(--radius-lg);
  --shadow: var(--shadow-panel);
}
*{box-sizing:border-box}html{scroll-behavior:smooth;overflow-x:hidden}body{margin:0;font-family:Inter,ui-sans-serif,system-ui,-apple-system,Segoe UI,Arial,sans-serif;background:var(--bg-primary);color:var(--text-primary);overflow-x:hidden}a{color:inherit;text-decoration:none}img{max-width:100%;display:block}.container{width:min(1180px,calc(100% - 48px));margin:0 auto}

/* ===== GLOBAL KEYBOARD FOCUS STATES ===== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

/* ===== HEADER / NAV ===== */
.top{position:sticky;top:0;z-index:1000;background:var(--bg-primary);backdrop-filter:blur(18px);border-bottom:1px solid var(--border);transition:background var(--transition-base),border-bottom var(--transition-base)}
.top[data-nav-transparent]{background:transparent;border-bottom:1px solid rgba(255,255,255,0.08);backdrop-filter:none}
.top[data-nav-transparent].nav-scrolled{background:var(--bg-primary);backdrop-filter:blur(18px);border-bottom:1px solid var(--border)}
.nav{height:70px;display:flex;align-items:center;justify-content:space-between}
.brand{display:flex;align-items:center;gap:12px;font-weight:800;color:#fff}
.brand img{height:54px !important;width:auto !important;object-fit:contain;max-width:none !important}
.brand span{font-size:18px;letter-spacing:-.03em}
.links{display:flex;align-items:center;gap:30px;color:#fff;font-size:13px;font-weight:700;text-transform:uppercase;letter-spacing:.03em}
.links a.active{color:var(--brand)}
.links .has-dropdown{position:relative;display:flex;align-items:center;gap:5px}
.links .has-dropdown::after{content:"";width:0;height:0;border-left:4px solid transparent;border-right:4px solid transparent;border-top:5px solid #fff;opacity:.6}
.dropdown-wrap{position:relative}
.dropdown{position:absolute;top:100%;left:50%;transform:translateX(-50%);min-width:160px;background:#0b0f17;border:1px solid rgba(255,255,255,.12);border-radius:10px;padding:8px 0;opacity:0;visibility:hidden;transition:.2s;z-index:100;margin-top:12px}
.dropdown-wrap:hover .dropdown{opacity:1;visibility:visible}
.dropdown a{display:block;padding:10px 20px;color:#cdd5e0;font-size:13px;font-weight:600;text-transform:none;letter-spacing:0;transition:.15s}
.dropdown a:hover{background:rgba(255,255,255,.06);color:#fff}
.nav-cta,.btn{display:inline-flex;align-items:center;justify-content:center;gap:10px;height:52px;padding:0 24px;border-radius:9px;border:1px solid rgba(255,255,255,.28);font-weight:800;font-size:13px;text-transform:uppercase;letter-spacing:.02em;transition:.2s ease}
.nav-cta{color:#fff;background:transparent;border-color:#fff;box-shadow:none;border-radius:999px;height:46px;padding:0 22px;font-size:12px}
.nav-cta svg{flex-shrink:0}
.nav-cta:hover,.btn:hover{transform:translateY(-2px)}
.nav-cta:hover{background:var(--brand);border-color:var(--brand);box-shadow:0 0 24px rgba(183,14,24,0.4)}
.btn.primary{background:var(--brand);border:1px solid var(--brand);color:#fff;border-radius:999px;box-shadow:var(--shadow-btn)}
.btn.primary:hover{box-shadow:0 0 24px rgba(183,14,24,0.4);transform:translateY(-2px)}
.btn .arrow{display:inline-flex;align-items:center;justify-content:center;margin-left:6px}
.btn.secondary{color:#fff;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.18);border-radius:999px}
.btn.secondary:hover{transform:translateY(-2px);border-color:rgba(255,255,255,.35)}
.btn.light{color:var(--text-primary);background:var(--bg-panel);border-color:var(--border)}
.btn:focus-visible{outline:2px solid var(--brand);outline-offset:2px;border-radius:var(--radius-sm)}

/* ===== HERO ===== */
.hero{background:radial-gradient(circle at 70% 20%,rgba(183,14,24,.12),transparent 40%),linear-gradient(135deg,#050505,#101114);color:#fff;position:relative;overflow:hidden}
.hero:before,.dark-band:before,.cta:before{content:"";position:absolute;inset:0;background-image:linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px);background-size:62px 62px;mask-image:radial-gradient(circle at 75% 20%,#000,transparent 60%);pointer-events:none}
.hero-inner{min-height:auto;display:grid;grid-template-columns:0.9fr 1.1fr;gap:32px;align-items:start;position:relative;z-index:1;padding:20px 0 30px}
.eyebrow{color:var(--brand-hover);font-weight:900;text-transform:uppercase;letter-spacing:.08em;font-size:13px;margin:0 0 18px}
.hero h1{font-size:clamp(42px,5.2vw,66px);font-weight:900;font-style:normal;line-height:1.0;letter-spacing:-0.02em;margin:0 0 22px;text-transform:uppercase;background:linear-gradient(180deg,#ffffff 0%,#a8b0ba 40%,#c8cdd4 70%,#ffffff 100%);-webkit-background-clip:text;background-clip:text;color:transparent;font-stretch:condensed}
.hero p{font-size:18px;line-height:1.65;color:#c6d0df;max-width:560px;margin:0 0 34px}
.actions{display:flex;gap:18px;flex-wrap:wrap}
.metrics-strip{display:grid;grid-template-columns:repeat(3,1fr);gap:0;margin-top:50px;border:1px solid var(--line);border-radius:18px;background:rgba(255,255,255,.04);overflow:hidden}
.metric{padding:22px 24px;border-right:1px solid var(--line);display:flex;gap:14px;align-items:center;min-height:112px}
.metric:last-child{border-right:none}
.metric svg{width:28px;height:28px;stroke:var(--brand);fill:none;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round;flex-shrink:0;color:var(--brand)}
.metric:nth-child(3) svg{fill:var(--brand);stroke:none}
.metric b{display:block;font-size:13px;text-transform:uppercase;line-height:1.08;color:#fff}
.metric small{display:block;color:#fff;margin-top:3px;font-size:14px;line-height:1.15}

/* ===== OPS DASHBOARD ===== */
.hero-right{display:flex;flex-direction:column;gap:20px;align-items:flex-start}
.ops-dashboard{background:rgba(22,24,29,0.7);backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);border:1px solid rgba(255,255,255,0.1);border-radius:var(--radius-lg);box-shadow:0 44px 120px rgba(0,0,0,.5);padding:0;overflow:hidden;transform:none;width:100%;max-width:100%}
.mission-badge{display:flex;align-items:center;gap:14px;color:#fff;padding:8px 0 0}
.mission-badge svg{flex-shrink:0;opacity:.85}
.mission-badge b{display:block;font-size:14px;text-transform:uppercase;letter-spacing:.06em}
.mission-badge small{display:block;font-size:13px;text-transform:uppercase;letter-spacing:.06em;color:#aeb8c7;margin-top:2px}
.ops-shell{display:grid;grid-template-columns:110px 1fr;min-height:400px}
.ops-rail{background:rgba(3,6,12,.5);border-right:1px solid rgba(255,255,255,.1);padding:18px 12px}
.ops-rail-mark{width:30px;height:30px;margin:0 auto 18px;display:grid;place-items:center}
.ops-rail-mark img{width:26px;height:26px}
.ops-nav{display:grid;gap:8px}
.ops-nav span{display:flex;gap:8px;align-items:center;color:#8e9aab;font-size:11px;font-weight:700;padding:9px 10px;border-radius:9px}
.ops-nav span.active{color:var(--brand);background:rgba(183,14,24,.14)}
.ops-main{padding:24px 22px;background:rgba(7,11,18,.64)}
.ops-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:18px}
.ops-head h3{margin:0;font-size:18px;color:#fff}
.ops-icons{display:flex;gap:10px;color:#9aa7ba}
.ops-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-bottom:16px}
.ops-stat{background:#080c13;border:1px solid rgba(255,255,255,.1);border-radius:13px;padding:17px 18px}
.ops-stat span{display:block;color:#8d98aa;font-size:12px;margin-bottom:9px}
.ops-stat strong{font-size:29px;letter-spacing:-.05em}
.ops-stat .stat-sub{display:block;color:var(--text-muted);font-size:11px;margin-top:4px;font-weight:400}
.sparkline{width:100%;height:34px;margin-top:10px;display:block}
.spark{height:34px;margin-top:10px;border-radius:20px;background:linear-gradient(90deg,transparent 0%,rgba(183,14,24,.65) 22%,rgba(183,14,24,.22) 38%,rgba(39,190,105,.5) 62%,transparent 100%)}
.spark.blue{background:linear-gradient(90deg,transparent 0%,rgba(183,14,24,.6) 30%,rgba(183,14,24,.35) 55%,rgba(183,14,24,.5) 75%,transparent 100%)}
.spark.green{background:linear-gradient(90deg,transparent 0%,rgba(39,190,105,.5) 25%,rgba(39,190,105,.3) 50%,rgba(39,190,105,.55) 75%,transparent 100%)}
.ops-table{border:1px solid rgba(255,255,255,.1);border-radius:14px;overflow:hidden;background:#080c13}
.ops-table-head{padding:14px 16px;border-bottom:1px solid rgba(255,255,255,.08);color:#fff;font-size:14px;font-weight:700}
.ops-row{display:grid;grid-template-columns:18px 1fr auto 18px;align-items:center;gap:10px;padding:15px 16px;border-bottom:1px solid rgba(255,255,255,.08);color:#d9e1ee;font-weight:700}
.ops-row:last-child{border-bottom:none}
.ops-row-icon{color:#8e9aab;flex-shrink:0}
.ops-ok{color:#54d887;font-size:13px}
.ops-arrow{color:#748094}
.ops-dot{width:8px;height:8px;border-radius:50%;background:#54d887}
.dash{display:none}

/* ===== SECTIONS ===== */
.section{padding:56px 0}
.center{text-align:center}
.section h2{font-size:clamp(32px,4vw,48px);line-height:1.05;letter-spacing:-.058em;margin:0 0 16px}
.section p.lead{font-size:17px;line-height:1.7;color:var(--text-muted);margin:0 auto 42px;max-width:700px}
.section.center{padding-top:76px}

/* ===== SERVICE CARDS ===== */
.cards{display:grid;grid-template-columns:repeat(4,1fr);gap:22px}
.card{border:1px solid var(--border);border-radius:var(--radius-lg);padding:42px 32px;background:linear-gradient(165deg,rgba(255,255,255,.03) 0%,var(--bg-panel) 40%,var(--bg-panel) 100%);box-shadow:0 18px 55px rgba(0,0,0,.25);transition:transform .25s ease,border-color .25s ease,box-shadow .25s ease;text-align:left;display:flex;flex-direction:column;align-items:flex-start;min-height:270px}
.card:hover{transform:translateY(-4px);border-color:rgba(183,14,24,0.4);box-shadow:0 0 20px rgba(183,14,24,0.15)}
.card:hover .icon{color:var(--brand)}
.icon{width:54px;height:54px;border:1px solid var(--border);border-radius:15px;display:grid;place-items:center;margin-bottom:25px;color:#D91F2F;background:var(--bg-secondary);transition:color var(--transition-base)}
.icon svg,.industry-icon svg,.value-icon svg,.op svg{width:30px;height:30px;stroke:currentColor;fill:none;stroke-width:1.65;stroke-linecap:round;stroke-linejoin:round}
.card h3{margin:0 0 12px;font-size:20px;letter-spacing:-.03em}
.card p{color:var(--text-muted);line-height:1.65;margin:0 0 22px;font-size:15px}
.learn{color:var(--brand);font-weight:800;font-size:13px;text-transform:uppercase;margin-top:auto}

/* ===== INDUSTRIES ===== */
.industries{background:var(--bg-secondary);padding-top:76px}
.industry-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
.industry{min-height:280px;border-radius:14px;padding:26px;display:flex;flex-direction:column;color:#fff;overflow:hidden;position:relative;background-size:cover;background-position:center;background-color:#0d1117}
.industry:before{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(5,7,11,.35) 0%,rgba(5,7,11,.82) 100%);z-index:0}
.industry>*{position:relative}
.industry-icon{color:#fff;width:36px;height:36px;margin-bottom:auto}
.industry-icon svg{width:36px;height:36px}
.industry-icon img{width:36px;height:36px}
.industry h3{font-size:23px;margin:0 0 8px}
.industry p{margin:0;color:#d5dbe5;line-height:1.5}
.industry .learn{margin-top:18px;color:#fff}

/* ===== INDUSTRY ICON ROW ===== */
.industry-icon-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.industry-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: var(--transition-base);
}
.industry-link img {
  width: 48px;
  height: 48px;
  filter: grayscale(1) brightness(2);
  opacity: 0.7;
  transition: filter var(--transition-base), opacity var(--transition-base);
}
.industry-link:hover img {
  filter: grayscale(0);
  opacity: 1;
}
.industry-link span {
  font-size: var(--font-size-small);
  font-weight: 700;
  color: var(--text-muted);
  transition: color var(--transition-base);
}
.industry-link:hover span {
  color: var(--brand);
}

/* ===== VALUES / DARK BAND ===== */
.dark-band{background:#05070b;color:#fff;position:relative;overflow:hidden}
.values{display:grid;grid-template-columns:1.25fr repeat(5,1fr);gap:0;align-items:center;position:relative;z-index:1}
.value-intro{padding-right:42px}
.value{padding:16px 24px;border-left:1px solid var(--line);min-height:170px;text-align:center}
.value-icon{color:var(--metallic);margin:0 auto 15px}
.value h3{margin:0 0 9px}
.value p{color:#aeb8c7;line-height:1.55;margin:0}

/* ===== LIVE OPS ===== */
.ops-title-row{display:flex;justify-content:space-between;align-items:end;gap:24px;margin-bottom:18px}
.ops-title-row .learn{white-space:nowrap}
.ops-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.op{background:#05070b;color:#fff;border-radius:16px;padding:28px;border:1px solid #101827;min-height:132px;display:grid;grid-template-columns:auto 1fr;gap:18px;align-items:center}
.op svg{width:48px;height:48px;color:#fff}
.op strong{display:block;font-size:37px;letter-spacing:-.04em}
.op span{display:block;color:#aab5c5;font-size:14px;line-height:1.35}
.op-indicator{width:48px;height:48px;border-radius:50%;display:grid;place-items:center;flex-shrink:0}
.op-indicator.green{background:rgba(84,216,135,.12);border:1.5px solid rgba(84,216,135,.3)}
.op-indicator.green svg{color:#54d887}
.op-indicator.blue{background:rgba(183,14,24,.12);border:1.5px solid rgba(183,14,24,.3)}
.op-indicator.blue svg{color:var(--brand)}
.op-indicator svg{width:24px;height:24px}

/* ===== CTA ===== */
.cta{position:relative;overflow:hidden;background:#05070b;color:#fff;border-radius:14px;padding:42px 56px;display:grid;grid-template-columns:1fr auto;gap:24px;align-items:center}
.cta h2{font-size:clamp(24px,3vw,42px);margin:0}
.cta .eyebrow{margin-bottom:12px}

/* ===== FOOTER ===== */
.footer{background:#05070b;color:#fff;padding:58px 0 30px;border-top:1px solid var(--line)}
.footer-grid{display:grid;grid-template-columns:1.6fr repeat(4,1fr);gap:34px}
.footer .brand img{height:42px;width:auto}
.footer h4{margin:0 0 16px;text-transform:uppercase;font-size:13px}
.footer a,.footer p{display:block;color:#aeb8c7;margin:0 0 10px;line-height:1.5}
.footer-social{display:flex;gap:12px;margin-top:18px}
.footer-social a{width:36px;height:36px;border-radius:50%;border:1px solid rgba(255,255,255,.15);display:grid;place-items:center;color:#aeb8c7;transition:.2s}
.footer-social a:hover{border-color:var(--brand);color:#fff}
.footer-social svg{width:16px;height:16px;fill:currentColor}
.copyright{border-top:1px solid var(--line);margin-top:34px;padding-top:24px;color:#8c96a6;text-align:center;font-size:13px}

/* ===== PAGE HERO ===== */
.page-hero{background:#05070b;color:#fff;padding:20px 0 40px}
.page-hero h1{font-size:clamp(38px,4.8vw,60px);font-weight:900;font-style:normal;letter-spacing:-0.03em;margin:0 0 18px;text-transform:uppercase;background:linear-gradient(180deg,#ffffff 0%,#a8b0ba 40%,#c8cdd4 70%,#ffffff 100%);-webkit-background-clip:text;background-clip:text;color:transparent}
.page-hero p{color:#bdc7d6;font-size:19px;max-width:760px;line-height:1.7}

/* ===== SPLIT / LIST / FORM ===== */
.split{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:start}
.list{display:grid;gap:16px}
.list-item{padding:22px;border:1px solid var(--border);border-radius:16px;background:var(--bg-panel)}
.form{background:var(--bg-panel);border:1px solid var(--border);border-radius:22px;padding:32px;box-shadow:var(--shadow)}
.field{margin-bottom:16px}
.field label{display:block;font-weight:800;font-size:13px;margin-bottom:8px}
.field input,.field textarea,.field select{width:100%;border:1px solid var(--border);border-radius:10px;padding:15px 14px;font:inherit;background:var(--bg-secondary);color:var(--text-primary)}
.field textarea{min-height:130px}

/* ===== RESPONSIVE ===== */
.mobile{display:none}

/* ===== PAGINATION ===== */
.pagination{display:flex;justify-content:center;gap:8px;margin-top:48px}
.page-link{display:inline-flex;align-items:center;justify-content:center;width:42px;height:42px;border-radius:10px;border:1px solid var(--border);font-weight:700;font-size:14px;color:var(--text-muted);transition:.2s}
.page-link:hover{border-color:var(--brand);color:var(--brand)}
.page-link.active{background:var(--brand);border-color:var(--brand);color:#fff}

@media(max-width:900px){
  .links{display:none}
  .mobile{display:inline-flex}
  .hero-inner{grid-template-columns:1fr;padding:74px 0}
  .hero-right{align-items:center}
  .ops-dashboard{transform:none}
  .ops-shell{grid-template-columns:1fr}
  .ops-rail{display:none}
  .ops-stats{grid-template-columns:1fr}
  .metrics-strip{grid-template-columns:1fr}
  .cards,.industry-grid,.ops-grid{grid-template-columns:1fr}
  .industry-icon-row{flex-direction:column;gap:32px}
  .split,.cta{grid-template-columns:1fr}
  .values{grid-template-columns:1fr}
  .metric,.value{border-right:none;border-left:none;border-bottom:1px solid var(--line)}
  .section{padding:64px 0}
  .hero-inner{padding:80px 0}
  .container{width:min(100% - 32px,1180px)}
  .page-hero h1{font-size:44px}
  .footer-grid{grid-template-columns:1fr}
  .ops-title-row{display:block}
  .cta{padding:32px 24px}
  .ind-cta{padding:40px 24px}
}

/* ===== SERVICES PAGE ===== */
.services-hero .metrics-strip{grid-template-columns:repeat(4,1fr)}
.services-hero .hero-inner{min-height:580px}
.ops-live{color:#54d887;font-size:12px;font-weight:700}
.service-block{display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:start}
.service-num{color:var(--brand-hover);font-weight:900;font-size:14px;margin:0 0 8px}
.service-subtitle{color:var(--brand-hover);font-weight:700;font-size:16px;margin:0 0 14px}
.service-block h2{margin:0 0 8px}
.service-block p{color:#aeb8c7;line-height:1.7}
.service-features{list-style:none;padding:0;margin:0 0 20px;display:grid;gap:12px}
.service-features li{color:#d5dbe5;font-size:15px;padding-left:20px;position:relative}
.service-features li:before{content:"●";color:#54d887;position:absolute;left:0;font-size:10px;top:3px}
.partner-logos{display:flex;align-items:center;justify-content:center;gap:36px;flex-wrap:wrap;margin-top:32px;color:#8e9aab;font-size:15px;font-weight:700}
.process-steps{display:flex;align-items:flex-start;justify-content:center;gap:12px;margin-top:40px}
.process-step{text-align:center;max-width:160px}
.process-icon{width:56px;height:56px;border:1px solid var(--border);border-radius:50%;display:grid;place-items:center;margin:0 auto 12px;color:var(--brand)}
.process-icon svg{width:24px;height:24px}
.process-num{color:var(--brand);font-weight:900;font-size:13px;margin:0 0 6px}
.process-step h4{margin:0 0 6px;font-size:15px}
.process-step p{font-size:13px;color:var(--text-muted);margin:0;line-height:1.5}
.process-arrow{font-size:24px;color:var(--text-muted);margin-top:18px;font-style:normal}
.stats-grid{display:flex;justify-content:center;gap:28px;margin-top:32px;flex-wrap:wrap}
.stat-card{background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.1);border-radius:14px;padding:28px 24px;text-align:center;min-width:140px}
.stat-card strong{display:block;font-size:32px;letter-spacing:-.03em;color:#fff;margin-bottom:6px}
.stat-card span{display:block;color:#8d98aa;font-size:13px}
.testimonial{max-width:700px;margin:0 auto;text-align:center}
.testimonial blockquote{font-size:18px;line-height:1.7;color:var(--text-muted);margin:0 0 20px;font-style:italic;quotes:none}
.testimonial-author{color:var(--text-muted);font-size:14px}
.testimonial-author strong{color:var(--text-primary);display:block}
@media(max-width:900px){
  .service-block{grid-template-columns:1fr}
  .process-steps{flex-direction:column;align-items:center}
  .process-arrow{transform:rotate(90deg)}
  .stats-grid{flex-direction:column;align-items:center}
  .services-hero .metrics-strip{grid-template-columns:1fr 1fr}
}

/* =========================================================
   SERVICES PAGE MERGE
   Built By Veterans
   Scope: .services-page only
   Added safely to existing assets/css/styles.css
========================================================= */
.services-page .hero{
  background:radial-gradient(circle at 78% 18%,rgba(183,14,24,.12),transparent 35%),linear-gradient(135deg,#050505,#101114);
}
.services-page .hero-inner{
  min-height:auto;
  grid-template-columns:.9fr 1.1fr;
  padding:24px 0 0;
}
.services-page .hero h1{
  font-size:clamp(46px,5.8vw,72px);
}
.services-page .hero p{
  max-width:540px;
}
.services-page .trust{
  display:flex;
  gap:28px;
  flex-wrap:nowrap;
  margin-top:42px;
  color:#dce5f3;
  font-size:12px;
  font-weight:800;
}
.services-page .trust span{
  display:flex;
  gap:9px;
  align-items:center;
}
.services-page .trust svg{
  width:24px;
  height:24px;
}
.services-page .trust .icon{
  width:24px;
  height:24px;
  border:none;
  border-radius:0;
  background:none;
  margin-bottom:0;
  padding:0;
  min-height:auto;
  color:#dce5f3;
}
.services-page .hero-image{
  border:1px solid rgba(255,255,255,.15);
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 40px 120px rgba(0,0,0,.45);
}
.services-page .hero-image img{
  width:100%;
  height:auto;
  display:block;
}
.services-page #coverage{
  padding-top:60px;
  padding-bottom:20px;
}
.services-page .icon-box{
  width:52px;
  height:52px;
  border:1px solid var(--border);
  border-radius:14px;
  background:var(--bg-secondary);
  color:var(--brand);
  display:grid;
  place-items:center;
  margin-bottom:22px;
}
.services-page .icon-box svg{
  width:26px;
  height:26px;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.services-page .soft{
  background:var(--bg-secondary);
  padding-top:40px;
  padding-bottom:40px;
}
.services-page .story{
  display:grid;
  gap:18px;
}
.services-page .story-card{
  display:grid;
  grid-template-columns:.92fr 1.08fr;
  gap:26px;
  align-items:center;
  background:var(--bg-panel);
  border:1px solid var(--border);
  border-radius:18px;
  padding:24px;
  overflow:hidden;
  box-shadow:0 18px 50px rgba(0,0,0,.25);
}
.services-page .story-card.reverse{
  grid-template-columns:1.08fr .92fr;
}
.services-page .story-card.red{
  border-color:rgba(183,14,24,.3);
  background:var(--bg-panel);
}
.services-page .visual{
  border-radius:14px;
  overflow:hidden;
  background:var(--bg-secondary);
}
.services-page .visual img{
  width:100%;
  height:auto;
}
.services-page .story-copy h3{
  font-size:34px;
  line-height:1.05;
  letter-spacing:-.055em;
  margin:0 0 12px;
}
.services-page .story-copy p{
  color:var(--text-muted);
  line-height:1.6;
  margin:0 0 15px;
}
.services-page .checks{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px 20px;
  margin:16px 0;
}
.services-page .check{
  font-size:14px;
  font-weight:700;
  color:var(--text-primary);
}
.services-page .check:before{
  content:"✓";
  display:inline-grid;
  place-items:center;
  width:18px;
  height:18px;
  border-radius:50%;
  background:rgba(183,14,24,.12);
  color:var(--brand);
  font-size:11px;
  margin-right:8px;
}
.services-page .red .check:before{
  background:rgba(183,14,24,.12);
  color:var(--brand);
}
.services-page .green-check .check:before{
  background:rgba(22,163,106,.12);
  color:#16a34a;
}
.services-page .process{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:24px;
  margin-top:32px;
}
.services-page .step{
  text-align:center;
}
.services-page .circle{
  width:66px;
  height:66px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:rgba(183,14,24,.08);
  color:var(--brand);
  margin:0 auto 14px;
}
.services-page .circle svg{
  width:26px;
  height:26px;
  stroke:currentColor;
  fill:none;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.services-page .circle .icon{
  width:26px;
  height:26px;
  border:none;
  border-radius:0;
  background:none;
  margin-bottom:0;
  padding:0;
  min-height:auto;
  color:var(--brand);
}
.services-page .step b{
  display:block;
  font-size:13px;
  margin-bottom:8px;
}
.services-page .step p{
  color:var(--text-muted);
  font-size:12px;
  line-height:1.5;
  margin:0;
}
.services-page .partners-img,
.services-page .stats-img{
  width:100%;
  border-radius:11px;
}
.services-page .results-wrap{
  padding-top:0;
  padding-bottom:0;
}
.services-page .cta{
  border-radius:13px;
}
.services-page .cta h2{
  line-height:1.1;
}
@media(max-width:900px){
  .services-page .hero-inner,
  .services-page .story-card,
  .services-page .story-card.reverse{
    grid-template-columns:1fr;
  }
  .services-page .checks{
    grid-template-columns:1fr;
  }
  .services-page .process{
    grid-template-columns:1fr;
  }
}

/* ===== VENDORS LOGO ROW ===== */
.vendors {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 42px;
  padding: 20px 0;
  background: var(--bg-primary);
}
.vendors img {
  height: 41px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) brightness(2);
  opacity: 0.55;
  transition: var(--transition-base);
}
.vendors img:hover {
  opacity: 1;
  filter: grayscale(0);
}

/* ===== SERVICE BLOCK (new layout) ===== */
.service-block{padding:110px 0;}
.service-block .row{display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:center;}
.service-number{display:inline-block;margin-bottom:15px;font-size:.85rem;font-weight:700;letter-spacing:.08em;color:var(--brand);text-transform:uppercase;}
.service-title{font-size:2.6rem;font-weight:800;line-height:1.15;margin-bottom:20px;color:var(--text-primary);}
.service-description{font-size:1.05rem;line-height:1.8;color:var(--text-muted);margin-bottom:25px;}
.service-list{list-style:none;padding:0;margin:0;}
.service-list li{position:relative;padding-left:28px;margin-bottom:14px;color:var(--text-muted);font-weight:500;}
.service-list li::before{content:"✓";position:absolute;left:0;color:var(--brand);font-weight:700;}
.btn-link{display:inline-flex;align-items:center;gap:8px;font-weight:700;color:var(--brand);text-decoration:none;transition:.25s;}
.btn-link:hover{color:var(--brand-hover);}
.strategic-dashboard{max-width:100%;border-radius:18px;filter:drop-shadow(0 30px 60px rgba(0,0,0,.15));}
.service-block .row .col-md-6{display:inline-block;vertical-align:top;width:48%;}
.service-block .mt-4{margin-top:24px;}
.service-block .row.mt-4{display:flex;gap:20px;}
@media(max-width:900px){
  .service-block .row{grid-template-columns:1fr;}
  .service-block{padding:60px 0;}
}

/* ===== WHY PARTNER WITH US ===== */
.why-partner{
  background:var(--bg-secondary);
  padding:60px 0 40px;
}
.why-header{
  text-align:center;
  margin-bottom:56px;
}
.why-header h2{
  font-size:clamp(32px,4vw,48px);
  letter-spacing:-.05em;
  margin:0 0 14px;
  color:var(--text-primary);
}
.why-header .lead{
  color:var(--text-muted);
  font-size:17px;
  max-width:620px;
  margin:0 auto;
  line-height:1.7;
}
.why-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.why-card{
  background:var(--bg-panel);
  border:1px solid var(--border);
  border-radius:16px;
  padding:36px 30px;
  display:flex;
  flex-direction:column;
  transition:transform .25s ease, box-shadow .25s ease;
}
.why-card:hover{
  transform:translateY(-4px);
  box-shadow:0 20px 50px rgba(0,0,0,.25);
}
.why-icon{
  width:48px;
  height:48px;
  min-width:48px;
  min-height:48px;
  border-radius:12px;
  background:var(--bg-secondary);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:20px;
  color:var(--metallic);
  overflow:hidden;
  flex-shrink:0;
}
.why-icon svg{
  width:24px !important;
  height:24px !important;
  max-width:24px;
  max-height:24px;
  flex-shrink:0;
}
.why-card h3{
  font-size:20px;
  font-weight:800;
  letter-spacing:-.03em;
  margin:0 0 12px;
  color:var(--text-primary);
}
.why-card p{
  font-size:15px;
  line-height:1.7;
  color:var(--text-muted);
  margin:0 0 20px;
  flex:1;
}
.why-outcomes{
  display:flex;
  flex-direction:column;
  gap:8px;
  padding-top:16px;
  border-top:1px solid var(--border);
}
.why-outcomes span{
  font-size:13px;
  font-weight:700;
  color:#16a34a;
}
@media(max-width:900px){
  .why-grid{
    grid-template-columns:1fr;
  }
}

/* ===== RESOURCES PAGE ===== */
.resources-page .section{
  padding:50px 0;
}
.resources-page .resources-hero .hero-inner{
  min-height:auto;
  padding:60px 0;
  grid-template-columns:1.1fr .9fr;
}
.resource-panel{
  display:grid;
  gap:14px;
  align-content:center;
}
.resource-mini-card{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.15);
  border-radius:12px;
  padding:18px 22px;
  color:#fff;
}
.resource-mini-card span{
  display:block;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.06em;
  color:var(--metallic);
  margin-bottom:4px;
  font-weight:700;
}
.resource-mini-card strong{
  font-size:16px;
}
.section-head.split{
  display:flex;
  justify-content:space-between;
  align-items:end;
  margin-bottom:32px;
}
.text-link{
  color:var(--brand);
  font-weight:700;
  font-size:14px;
}
.featured-resource{
  background:var(--bg-panel);
  border:1px solid var(--border);
  border-radius:18px;
  padding:42px;
  box-shadow:0 12px 40px rgba(0,0,0,.25);
}
.feature-badge{
  display:inline-block;
  background:rgba(183,14,24,.12);
  color:var(--brand);
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.05em;
  padding:6px 12px;
  border-radius:6px;
  margin-bottom:16px;
}
.featured-resource h3{
  font-size:28px;
  letter-spacing:-.04em;
  margin:0 0 14px;
}
.featured-resource p{
  color:var(--text-muted);
  line-height:1.7;
  margin:0 0 20px;
  max-width:700px;
}
.resource-meta{
  display:flex;
  gap:16px;
  margin-bottom:20px;
  font-size:13px;
  color:#8e9aab;
  font-weight:600;
}
.section.muted{
  background:var(--bg-secondary);
}
.resource-filters{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:36px;
}
.filter{
  padding:10px 20px;
  border:1px solid var(--border);
  border-radius:8px;
  background:var(--bg-panel);
  font-size:14px;
  font-weight:700;
  color:var(--text-muted);
  cursor:pointer;
  transition:.2s;
}
.filter:hover{
  border-color:var(--brand);
  color:var(--brand);
}
.filter.active{
  background:var(--brand);
  border-color:var(--brand);
  color:#fff;
}
.resource-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.resource-card{
  background:var(--bg-panel);
  border:1px solid var(--border);
  border-radius:14px;
  padding:28px;
  display:flex;
  flex-direction:column;
  transition:transform .2s, box-shadow .2s;
}
.resource-card:hover{
  transform:translateY(-3px);
  box-shadow:0 16px 40px rgba(0,0,0,.25);
}
.resource-card .tag{
  display:inline-block;
  font-size:11px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.05em;
  color:var(--brand);
  background:rgba(183,14,24,.12);
  padding:4px 10px;
  border-radius:5px;
  margin-bottom:14px;
  align-self:flex-start;
}
.resource-card .tag.news{
  color:#f59e0b;
  background:rgba(245,158,11,.12);
}
.resource-card .tag.guide{
  color:#16a34a;
  background:rgba(22,163,106,.12);
}
.resource-card h3{
  font-size:18px;
  letter-spacing:-.03em;
  margin:0 0 10px;
  line-height:1.3;
}
.resource-card p{
  font-size:14px;
  color:var(--text-muted);
  line-height:1.6;
  margin:0 0 16px;
  flex:1;
}
.resource-card a{
  color:var(--brand);
  font-weight:700;
  font-size:13px;
  margin-top:auto;
}
.resource-cta{
  display:grid;
  grid-template-columns:1fr auto;
  align-items:center;
  gap:32px;
  background:#05070b;
  color:#fff;
  border-radius:14px;
  padding:42px 56px;
}
.resource-cta h2{
  margin:0 0 10px;
  font-size:clamp(24px,3vw,36px);
}
.resource-cta p{
  color:#aeb8c7;
  margin:0;
  max-width:560px;
  line-height:1.6;
}
@media(max-width:900px){
  .resources-page .resources-hero .hero-inner{
    grid-template-columns:1fr;
  }
  .resource-grid{
    grid-template-columns:1fr;
  }
  .resource-cta{
    grid-template-columns:1fr;
    text-align:center;
    padding:32px 24px;
  }
  .section-head.split{
    flex-direction:column;
    align-items:flex-start;
    gap:12px;
  }
}

.resources-page .hero{
  padding:0;
}
.resources-page .hero .hero-inner{
  min-height:auto !important;
  padding:20px 0 30px;
}

/* ===== INDUSTRY PAGES ===== */
.ind-hero{background:radial-gradient(circle at 60% 20%,rgba(183,14,24,.12),transparent 40%),linear-gradient(135deg,#050505,#101114);color:#fff;padding:100px 0 80px;}
.ind-hero-inner{max-width:700px;}
.ind-hero h1{font-size:clamp(38px,5vw,60px);line-height:1.05;letter-spacing:-.06em;margin:0 0 20px;}
.ind-hero p{font-size:18px;color:#c6d0df;line-height:1.65;margin:0 0 32px;max-width:580px;}
.ind-challenges{background:var(--bg-secondary);}
.challenge-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;}
.challenge-card{background:var(--bg-panel);border:1px solid var(--border);border-radius:14px;padding:28px 24px;transition:transform .2s,box-shadow .2s;}
.challenge-card:hover{transform:translateY(-3px);box-shadow:0 14px 36px rgba(0,0,0,.25);}
.challenge-icon{width:44px;height:44px;border-radius:11px;background:rgba(183,14,24,.08);display:flex;align-items:center;justify-content:center;margin-bottom:16px;color:var(--brand);}
.challenge-card h3{font-size:16px;margin:0 0 8px;letter-spacing:-.02em;}
.challenge-card p{font-size:14px;color:var(--text-muted);line-height:1.6;margin:0;}
.solutions-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:18px;}
.solution-item{display:flex;gap:14px;align-items:flex-start;background:var(--bg-panel);border:1px solid var(--border);border-radius:12px;padding:22px 24px;}
.sol-check{color:#16a34a;font-weight:700;font-size:18px;flex-shrink:0;margin-top:2px;}
.solution-item strong{display:block;font-size:15px;margin-bottom:4px;}
.solution-item p{font-size:14px;color:var(--text-muted);line-height:1.5;margin:0;}
.software-grid{display:flex;flex-wrap:wrap;gap:14px;justify-content:center;}
.software-card{background:var(--bg-panel);border:1px solid var(--border);border-radius:10px;padding:16px 28px;font-weight:700;font-size:14px;color:var(--text-primary);transition:transform .2s,box-shadow .2s;}
.software-card:hover{transform:translateY(-2px);box-shadow:0 8px 24px rgba(0,0,0,.25);}
.ind-why-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;}
.ind-why-card{background:var(--bg-panel);border:1px solid var(--border);border-radius:14px;padding:28px;transition:transform .2s,box-shadow .2s;}
.ind-why-card:hover{transform:translateY(-3px);box-shadow:0 14px 36px rgba(0,0,0,.25);}
.ind-why-card strong{display:block;font-size:16px;margin-bottom:8px;}
.ind-why-card p{font-size:14px;color:var(--text-muted);line-height:1.6;margin:0;}
.outcomes-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;}
.outcome-card{background:#05070b;color:#fff;border-radius:14px;padding:28px;text-align:center;border:1px solid rgba(255,255,255,.1);}
.outcome-card strong{display:block;font-size:18px;margin-bottom:8px;}
.outcome-card p{font-size:14px;color:#aeb8c7;margin:0;line-height:1.5;}
.process-timeline{display:grid;grid-template-columns:repeat(5,1fr);gap:16px;text-align:center;}
.timeline-step{background:var(--bg-panel);border:1px solid var(--border);border-radius:14px;padding:28px 18px;}
.step-num{font-size:28px;font-weight:900;color:var(--brand);margin-bottom:12px;}
.timeline-step strong{display:block;font-size:14px;margin-bottom:8px;}
.timeline-step p{font-size:13px;color:var(--text-muted);line-height:1.5;margin:0;}
.faq-list{max-width:800px;margin:0 auto;display:grid;gap:12px;}
.faq-item{background:var(--bg-panel);border:1px solid var(--border);border-radius:12px;padding:0;overflow:hidden;}
.faq-item summary{padding:20px 24px;font-weight:700;font-size:15px;cursor:pointer;list-style:none;display:flex;align-items:center;justify-content:space-between;}
.faq-item summary::-webkit-details-marker{display:none;}
.faq-item summary::after{content:"+";font-size:20px;color:var(--text-muted);font-weight:400;}
.faq-item[open] summary::after{content:"−";}
.faq-item p{padding:0 24px 20px;font-size:15px;color:var(--text-muted);line-height:1.7;margin:0;}
.ind-cta{background:#05070b;color:#fff;border-radius:14px;padding:60px;text-align:center;}
.ind-cta h2{font-size:clamp(28px,3.5vw,42px);margin:0 0 14px;}
.ind-cta p{color:#aeb8c7;font-size:17px;max-width:600px;margin:0 auto 28px;line-height:1.6;}
.ind-cta .actions{justify-content:center;}
.ind-software{background:var(--bg-secondary);}
@media(max-width:900px){
  .challenge-grid{grid-template-columns:1fr 1fr;}
  .solutions-grid{grid-template-columns:1fr;}
  .ind-why-grid,.outcomes-grid{grid-template-columns:1fr;}
  .process-timeline{grid-template-columns:1fr;}
}

/* ===== MOBILE MENU ===== */
.menu-toggle{
  display:none;
  background:none;
  border:none;
  color:#fff;
  cursor:pointer;
  padding:8px;
  z-index:60;
  -webkit-tap-highlight-color:transparent;
}
.menu-toggle svg{
  width:24px;
  height:24px;
}
.mobile-nav{
  position:fixed;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background:#05070b;
  z-index:55;
  padding:100px 32px 40px;
  display:flex;
  flex-direction:column;
  gap:0;
  transform:translateX(100%);
  transition:transform .3s ease;
  -webkit-overflow-scrolling:touch;
  overflow-y:auto;
}
.mobile-nav.open{
  transform:translateX(0);
}
.mobile-nav a{
  display:block;
  padding:18px 0;
  border-bottom:1px solid rgba(255,255,255,.1);
  color:#fff;
  font-size:16px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.03em;
}
.mobile-nav a:last-child{
  border-bottom:none;
}
.mobile-nav .mobile-cta{
  margin-top:28px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:52px;
  padding:0 28px;
  background:var(--brand);
  border-radius:9px;
  color:#fff;
  font-weight:800;
  font-size:14px;
  text-transform:uppercase;
}
@media(max-width:900px){
  .menu-toggle{display:block;}
  .nav-cta{display:none;}
}

/* ===== KEYBOARD FOCUS STATES ===== */
.links a:focus-visible{
  outline:2px solid var(--brand);
  outline-offset:2px;
  border-radius:var(--radius-sm);
}
.nav-cta:focus-visible{
  outline:2px solid var(--metallic);
  outline-offset:2px;
}
.menu-toggle:focus-visible{
  outline:2px solid var(--brand);
  outline-offset:2px;
  border-radius:var(--radius-sm);
}
.mobile-nav a:focus-visible{
  outline:2px solid var(--brand);
  outline-offset:2px;
}
.dropdown a:focus-visible{
  outline:2px solid var(--brand);
  outline-offset:2px;
  border-radius:var(--radius-sm);
}

/* =========================================================
   SERVICE DETAIL PAGE (.service-detail-page)
   Template for: Managed IT, Cloud, Ransomware, Strategic IT
========================================================= */
.service-detail-page .hero{
  background:radial-gradient(circle at 72% 16%,rgba(183,14,24,.12),transparent 40%),linear-gradient(135deg,#050505,#101114);
  color:#fff;
  position:relative;
  overflow:hidden;
}
.service-detail-page .hero-inner{
  min-height:auto;
  grid-template-columns:.9fr 1.1fr;
  padding:24px 0 40px;
}
.service-detail-page .hero h1{
  font-size:clamp(44px,5.6vw,68px);
}
.service-detail-page .hero-image{
  border:1px solid rgba(255,255,255,.15);
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 40px 120px rgba(0,0,0,.45);
}
.service-detail-page .hero-image img{
  width:100%;
  height:auto;
  display:block;
}

/* Service category sections */
.svc-category{
  margin-bottom:48px;
}
.svc-category-title{
  font-size:14px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:var(--brand);
  margin:0 0 20px;
  padding-bottom:12px;
  border-bottom:1px solid var(--border);
}
.svc-category-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}
.svc-category-grid.triple{
  grid-template-columns:repeat(3,1fr);
}
.svc-category-grid.quad{
  grid-template-columns:repeat(4,1fr);
}

.svc-card{
  background:var(--bg-panel);
  border:1px solid var(--border);
  border-radius:16px;
  padding:32px 28px;
  transition:transform .25s ease, box-shadow .25s ease;
}
.svc-card:hover{
  transform:translateY(-4px);
  box-shadow:0 20px 50px rgba(0,0,0,.25);
}
.svc-card-icon{
  width:48px;
  height:48px;
  border-radius:12px;
  background:rgba(183,14,24,.08);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:18px;
  color:var(--brand);
}
.svc-card-icon svg{
  width:24px;
  height:24px;
}
.svc-card-icon.red{
  background:rgba(239,68,68,.08);
  color:#ef4444;
}
.svc-card-icon.purple{
  background:rgba(124,58,237,.08);
  color:#7c3aed;
}
.svc-card-icon.green{
  background:rgba(22,163,106,.08);
  color:#16a34a;
}
.svc-card h4{
  font-size:18px;
  font-weight:800;
  letter-spacing:-.03em;
  margin:0 0 10px;
  color:var(--text-primary);
}
.svc-card p{
  font-size:14px;
  line-height:1.7;
  color:var(--text-muted);
  margin:0;
}

/* Vendor Feature Card */
.vendor-feature-card{
  margin-top:48px;
  background:linear-gradient(135deg,#05070b,#0d1525);
  border-radius:18px;
  padding:48px 56px;
  color:#fff;
}
.vendor-feature-card h3{
  font-size:clamp(24px,3vw,32px);
  letter-spacing:-.04em;
  margin:0 0 16px;
}
.vendor-feature-card p{
  color:#c6d0df;
  font-size:16px;
  line-height:1.7;
  margin:0 0 28px;
  max-width:700px;
}
.vendor-tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.vendor-tags span{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.15);
  border-radius:8px;
  padding:8px 16px;
  font-size:13px;
  font-weight:700;
  color:#dce5f3;
}

/* Timeline */
.timeline{
  display:flex;
  align-items:flex-start;
  justify-content:center;
  gap:0;
  margin-top:48px;
  flex-wrap:wrap;
}
.timeline-item{
  text-align:center;
  max-width:150px;
  opacity:0;
  transform:translateY(20px);
  transition:opacity .5s ease, transform .5s ease;
}
.timeline-item.in-view{
  opacity:1;
  transform:translateY(0);
}
.timeline-icon{
  width:56px;
  height:56px;
  border-radius:50%;
  border:1px solid var(--border);
  display:grid;
  place-items:center;
  margin:0 auto 12px;
  color:var(--brand);
  background:var(--bg-panel);
}
.timeline-icon svg{
  width:24px;
  height:24px;
}
.timeline-item b{
  display:block;
  font-size:14px;
  margin-bottom:6px;
  color:var(--text-primary);
}
.timeline-item p{
  font-size:13px;
  color:var(--text-muted);
  line-height:1.5;
  margin:0;
}
.timeline-arrow{
  font-size:22px;
  color:var(--text-muted);
  margin:18px 12px 0;
  font-style:normal;
  opacity:0;
  transition:opacity .5s ease .2s;
}
.timeline-arrow.in-view{
  opacity:1;
}

/* Benefit Cards */
.benefit-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.benefit-card{
  background:var(--bg-panel);
  border:1px solid var(--border);
  border-radius:16px;
  padding:36px 30px;
  transition:transform .25s ease, box-shadow .25s ease;
  opacity:0;
  transform:translateY(20px);
  transition:opacity .5s ease, transform .5s ease, box-shadow .25s ease;
}
.benefit-card.in-view{
  opacity:1;
  transform:translateY(0);
}
.benefit-card:hover{
  transform:translateY(-4px);
  box-shadow:0 20px 50px rgba(0,0,0,.25);
}
.benefit-icon{
  width:48px;
  height:48px;
  border-radius:12px;
  background:rgba(183,14,24,.08);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:20px;
  color:var(--brand);
}
.benefit-icon svg{
  width:24px;
  height:24px;
}
.benefit-icon.green{
  background:rgba(22,163,106,.08);
  color:#16a34a;
}
.benefit-icon.red{
  background:rgba(239,68,68,.08);
  color:#ef4444;
}
.benefit-icon.purple{
  background:rgba(124,58,237,.08);
  color:#7c3aed;
}
.benefit-card h3{
  font-size:20px;
  font-weight:800;
  letter-spacing:-.03em;
  margin:0 0 12px;
  color:var(--text-primary);
}
.benefit-card p{
  font-size:14px;
  line-height:1.7;
  color:var(--text-muted);
  margin:0;
}

/* Related Services Grid */
.related-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.related-card{
  background:var(--bg-panel);
  border:1px solid var(--border);
  border-radius:16px;
  padding:36px 30px;
  display:flex;
  flex-direction:column;
  transition:transform .25s ease, box-shadow .25s ease;
  text-decoration:none;
}
.related-card:hover{
  transform:translateY(-4px);
  box-shadow:0 20px 50px rgba(0,0,0,.25);
}
.related-icon{
  width:52px;
  height:52px;
  border-radius:14px;
  display:grid;
  place-items:center;
  margin-bottom:20px;
}
.related-icon.blue{
  background:rgba(183,14,24,.08);
  color:var(--brand);
}
.related-icon.red{
  background:rgba(239,68,68,.08);
  color:#ef4444;
}
.related-icon.purple{
  background:rgba(124,58,237,.08);
  color:#7c3aed;
}
.related-icon svg{
  width:26px;
  height:26px;
}
.related-card h3{
  font-size:20px;
  font-weight:800;
  letter-spacing:-.03em;
  margin:0 0 10px;
  color:var(--text-primary);
}
.related-card p{
  font-size:14px;
  line-height:1.7;
  color:var(--text-muted);
  margin:0 0 18px;
  flex:1;
}
.related-card .learn{
  color:var(--brand);
  font-weight:800;
  font-size:13px;
  text-transform:uppercase;
}

/* Responsive for service detail page */
@media(max-width:900px){
  .service-detail-page .hero-inner{
    grid-template-columns:1fr;
  }
  .svc-category-grid,
  .svc-category-grid.triple,
  .svc-category-grid.quad{
    grid-template-columns:1fr;
  }
  .vendor-feature-card{
    padding:32px 24px;
  }
  .timeline{
    flex-direction:column;
    align-items:center;
  }
  .timeline-arrow{
    transform:rotate(90deg);
    margin:8px 0;
  }
  .benefit-grid,
  .related-grid{
    grid-template-columns:1fr;
  }
}

/* Cloud page accent */
.cloud-page .hero{
  background:radial-gradient(circle at 68% 20%,rgba(22,163,106,.18),transparent 35%),linear-gradient(135deg,#050505 0%,#070e16 45%,#050505 100%);
}
.cloud-page .eyebrow{
  color:#16a34a;
}

/* Security page accent */
.security-page .hero{
  background:radial-gradient(circle at 70% 18%,rgba(239,68,68,.16),transparent 35%),linear-gradient(135deg,#050505 0%,#0a0810 45%,#050505 100%);
}
.security-page .eyebrow{
  color:#ef4444;
}

/* vCIO page accent */
.vcio-page .hero{
  background:radial-gradient(circle at 65% 20%,rgba(124,58,237,.16),transparent 35%),linear-gradient(135deg,#050505 0%,#0a0812 45%,#050505 100%);
}
.vcio-page .eyebrow{
  color:#7c3aed;
}

/* Service detail page spacing reduction */
.service-detail-page .section{
  padding:60px 0;
}
.service-detail-page .section.center{
  padding:50px 0;
}
.service-detail-page .section.muted{
  padding:60px 0;
}
.service-detail-page .hero-inner{
  min-height:auto;
}

/* ===== ANIMATION UTILITIES ===== */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Lift effect — subtle upward hover shift */
.lift {
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.lift:hover {
  transform: translateY(-4px);
}

/* Glow effect — box-shadow pulse on hover */
.glow {
  transition: box-shadow var(--transition-base);
}
.glow:hover {
  box-shadow: 0 0 20px rgba(183, 14, 24, 0.25);
}

/* Scale effect — subtle scale on hover */
.scale {
  transition: transform var(--transition-base);
}
.scale:hover {
  transform: scale(1.03);
}

/* Prefers reduced motion — disable animations for accessibility */
@media (prefers-reduced-motion: reduce) {
  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .lift,
  .glow,
  .scale {
    transition: none;
  }
}


/* ===== PROGRESSIVE ENHANCEMENT FALLBACKS ===== */

/* Backdrop-filter fallback: solid background when unsupported */
@supports not (backdrop-filter: blur(1px)) {
  .top,
  .nav-scrolled,
  .ops-dashboard {
    background: var(--bg-panel);
    backdrop-filter: none;
  }
}

/* Background-clip: text fallback: plain white text when gradient text is unsupported */
@supports not (-webkit-background-clip: text) {
  .hero h1,
  [style*="background-clip"] {
    background: none;
    -webkit-background-clip: border-box;
    background-clip: border-box;
    color: var(--white);
  }
}

/* No-JS fallback: ensure fade-in elements are visible when JavaScript is disabled.
   Uses the .no-js class on <html> which JS removes on load. */
.no-js .fade-in {
  opacity: 1;
  transform: none;
}


/* ===== HOMEPAGE — NAV CTA OUTLINE ===== */
/* nav-cta outline class no longer needed — base nav-cta is already outline style */

/* ===== HOMEPAGE — HERO OVERRIDES ===== */
.hero {
  min-height: auto;
  padding: 0;
}
.hero-inner {
  min-height: auto;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: start;
  padding: 20px 0 30px;
}
.hero h1 {
  font-size: clamp(42px, 5.2vw, 66px);
  font-weight: 900;
  font-style: normal;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin: 0 0 22px;
  text-transform: uppercase;
}
/* Only homepage hero gets nowrap (3 short lines with <br>) */
body:has(.trust-bar):has(.homepage-content) .hero h1 {
  white-space: normal;
  font-size: clamp(38px, 4.8vw, 58px);
}
.hero .eyebrow {
  margin-bottom: 14px;
  color: var(--brand);
}
.hero p {
  font-size: 15px;
  line-height: 1.65;
  color: #b0bcc9;
  max-width: 480px;
  margin: 0 0 24px;
}
.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.actions .btn.primary {
  border-radius: 999px;
  height: 48px;
  padding: 0 26px;
  font-size: 12px;
}
.actions .btn.secondary {
  border-radius: 999px;
  height: 48px;
  padding: 0 26px;
  font-size: 12px;
}

/* ===== HOMEPAGE — TRUST BAR (full-width section) ===== */
.trust-bar {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

/* ===== HOMEPAGE — TRUST INDICATORS (no card, just flex row) ===== */
.trust-strip {
  display: flex;
  align-items: center;
  gap: 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.trust-item:first-child {
  padding-left: 0;
}
.trust-item:last-child {
  border-right: none;
}
.trust-item svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  stroke: var(--brand);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: var(--brand);
}
.trust-item b {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  line-height: 1.2;
}
.trust-item small {
  display: block;
  font-size: 11px;
  color: #7b8a9d;
  margin-top: 2px;
  line-height: 1.2;
}

/* ===== HOMEPAGE — BELOW HERO TWO-COLUMN ===== */
.homepage-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: start;
  padding: 32px 0 36px;
}

/* ===== HOMEPAGE — SERVICES COL ===== */
.services-col {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
}
.services-col h2 {
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.1;
  letter-spacing: -.04em;
  margin: 0 0 4px;
}

/* ===== HOMEPAGE — SERVICES GRID 6-col ===== */
.services-grid-6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-top: 16px;
}

/* ===== HOMEPAGE — SMALL SERVICE CARD ===== */
.service-card-sm {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
  min-width: 0;
}
.service-card-sm:hover {
  transform: translateY(-2px);
  border-color: rgba(183, 14, 24, 0.35);
  box-shadow: 0 0 14px rgba(183, 14, 24, 0.1);
}
.service-card-sm .svc-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(183, 14, 24, 0.15);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  flex-shrink: 0;
}
.service-card-sm .svc-icon svg {
  width: 30px;
  height: 30px;
  stroke: #D91F2F;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card-sm h4 {
  font-size: 12px;
  font-weight: 800;
  margin: 0 0 5px;
  color: var(--text-primary);
  white-space: nowrap;
}
.service-card-sm p {
  font-size: 11px;
  line-height: 1.45;
  color: var(--text-muted);
  margin: 0 0 10px;
  flex: 1;
}
.service-card-sm .learn-sm {
  font-size: 10px;
  font-weight: 800;
  color: var(--brand);
  text-transform: uppercase;
  margin-top: auto;
  white-space: nowrap;
}
.service-card-sm .learn-sm:hover {
  color: var(--brand-hover);
}

/* ===== HOMEPAGE — VIEW ALL SERVICES BTN ===== */
.btn.outline-brand {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-primary);
  border-radius: 999px;
  height: 44px;
  padding: 0 22px;
  font-size: 12px;
}
.btn.outline-brand:hover {
  border-color: var(--brand);
  color: var(--brand);
}

/* ===== HOMEPAGE — RIGHT COLUMN ===== */
.right-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ===== HOMEPAGE — INDUSTRIES PANEL ===== */
.industries-panel {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 22px;
}
.industries-panel .eyebrow {
  margin-bottom: 10px;
}
.industries-panel h3 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.03em;
  margin: 0 0 18px;
  color: var(--text-primary);
}
.ind-icons-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  flex-wrap: nowrap;
  overflow-x: auto;
}
.ind-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  min-width: 56px;
}
.ind-icon-item svg,
.ind-icon-item img {
  width: 30px;
  height: 30px;
  filter: grayscale(1) brightness(1.8);
  opacity: 0.65;
  transition: var(--transition-base);
}
.ind-icon-item:hover svg,
.ind-icon-item:hover img {
  opacity: 1;
  filter: grayscale(0);
}
.ind-icon-item span {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.3;
}
.ind-icon-item:hover span {
  color: var(--brand);
}

/* ===== HOMEPAGE — STATS PANEL ===== */
.stats-panel {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 22px;
}
.stats-panel .eyebrow {
  margin-bottom: 10px;
}
.stats-panel h3 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.03em;
  margin: 0 0 18px;
  color: var(--text-primary);
}
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.stat-item {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 14px;
  text-align: center;
}
.stat-item .stat-icon {
  width: 28px;
  height: 28px;
  margin: 0 auto 8px;
  color: var(--brand);
}
.stat-item .stat-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.stat-item strong {
  display: block;
  font-size: 20px;
  letter-spacing: -.03em;
  color: var(--text-primary);
  margin-bottom: 3px;
}
.stat-item span {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.3;
}

/* ===== HOMEPAGE — CLIENT LOGOS ===== */
.client-logos {
  background: var(--bg-secondary);
  padding: 32px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}
.client-logos .eyebrow {
  margin-bottom: 22px;
}
.client-logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.client-logo {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  opacity: 0.65;
  transition: opacity var(--transition-base);
  white-space: nowrap;
}
.client-logo:hover {
  opacity: 1;
}
.client-logo.more {
  color: var(--brand);
  opacity: 1;
  font-style: italic;
}

/* ===== HOMEPAGE — RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 60px 0 40px;
  }
  .trust-strip {
    flex-wrap: wrap;
    gap: 12px;
  }
  .trust-item {
    border-right: none;
    padding: 0;
  }
  .homepage-content {
    grid-template-columns: 1fr;
    padding: 40px 0;
  }
  .services-grid-6 {
    grid-template-columns: 1fr 1fr;
  }
  .services-col {
    overflow: hidden;
    padding: 20px 16px;
  }
  .service-card-sm {
    padding: 14px 10px;
  }
  .service-card-sm .svc-icon {
    width: 48px;
    height: 48px;
  }
  .service-card-sm .svc-icon svg {
    width: 22px;
    height: 22px;
  }
  .stat-row {
    grid-template-columns: 1fr;
  }
  .ind-icons-row {
    justify-content: center;
  }
  .client-logos-row {
    flex-direction: column;
    gap: 14px;
  }
}

@media (max-width: 480px) {
  .services-grid-6 {
    grid-template-columns: 1fr;
  }
  .stat-row {
    grid-template-columns: 1fr 1fr;
  }
}

/* =========================================================
   INDUSTRIES PAGE
   Scope: .ind-page
========================================================= */

/* Hero layout override for industries — text only, no right column */
.ind-page .hero {
  background: radial-gradient(circle at 75% 30%, rgba(183,14,24,.14), transparent 45%),
              linear-gradient(135deg, #050505, #101114);
}
.ind-page .hero-inner.ind-hero-inner {
  grid-template-columns: 1fr;
  max-width: none;
  padding: 24px 0 40px;
  text-align: left;
}
.ind-page .hero h1 {
  white-space: normal;
  font-size: clamp(38px, 5vw, 62px);
}
.ind-page .hero p {
  max-width: 600px;
}
.text-brand {
  color: var(--brand);
}

/* Industries section */
.ind-section {
  background: var(--bg-secondary);
  padding: 80px 0 60px;
}
.ind-section-head {
  text-align: center;
  margin-bottom: 48px;
}
.ind-section-head .eyebrow {
  margin-bottom: 14px;
}
.ind-section-head h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.1;
  letter-spacing: -.04em;
  margin: 0;
  color: var(--text-primary);
}

/* Industry cards grid */
.ind-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 48px;
}

/* Individual industry card */
.ind-card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.ind-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,.3);
}

/* Card image area */
.ind-card-img {
  position: relative;
  height: 180px;
  overflow: hidden;
}
.ind-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px 14px 0 0;
}

/* Icon overlay centered at bottom edge of image */
.ind-card-icon {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--brand);
  display: grid;
  place-items: center;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(183,14,24,.4);
}
.ind-card-icon svg {
  width: 20px;
  height: 20px;
}

/* Card body */
.ind-card-body {
  padding: 30px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.ind-card-body h3 {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .03em;
  margin: 0 0 10px;
  color: var(--text-primary);
}
.ind-card-body p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0 0 16px;
}

/* Bullet list */
.ind-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  gap: 8px;
}
.ind-bullets li {
  position: relative;
  padding-left: 16px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}
.ind-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
}

/* Learn more link */
.ind-learn {
  color: var(--brand);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  margin-top: auto;
  letter-spacing: .02em;
  transition: color .2s;
}
.ind-learn:hover {
  color: var(--brand-hover);
}

/* CTA Panel */
.ind-cta {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 42px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.ind-cta-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.ind-cta-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  background: rgba(183,14,24,.1);
  display: grid;
  place-items: center;
  color: var(--brand);
}
.ind-cta-icon svg {
  width: 24px;
  height: 24px;
}
.ind-cta h3 {
  font-size: 20px;
  margin: 0 0 6px;
  color: var(--text-primary);
}
.ind-cta p {
  font-size: 15px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 1100px) {
  .ind-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  .ind-page .hero-inner.ind-hero-inner {
    padding: 60px 0 50px;
  }
  .ind-page .hero h1 {
    font-size: clamp(32px, 7vw, 44px);
  }
  .ind-cards-grid {
    grid-template-columns: 1fr;
  }
  .ind-cta {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }
  .ind-cta-left {
    flex-direction: column;
  }
}

/* =========================================================
   ABOUT PAGE
   Scope: .about-page
========================================================= */

/* Hero */
.about-page .about-hero {
  background: radial-gradient(circle at 75% 25%, rgba(183,14,24,.14), transparent 45%),
              linear-gradient(135deg, #050505, #101114);
  padding: 20px 0 40px;
}
.about-page .about-hero-inner {
  max-width: none;
  text-align: left;
}
.about-page .about-hero .eyebrow {
  color: var(--brand);
}
.about-page .about-hero h1 {
  font-size: clamp(42px, 5.2vw, 66px);
  font-weight: 900;
  font-style: normal;
  line-height: 1.0;
  letter-spacing: -0.05em;
  margin: 0 0 22px;
  text-transform: uppercase;
  background: linear-gradient(180deg, #ffffff 0%, #a8b0ba 40%, #c8cdd4 70%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.about-page .about-hero p {
  font-size: 18px;
  line-height: 1.65;
  color: #c6d0df;
  max-width: 600px;
  margin: 0;
}
.about-page .dot {
  color: var(--brand);
  -webkit-text-fill-color: var(--brand);
}

/* Active nav link */
.about-page .links a.active {
  color: var(--brand);
}

/* Foundation Section */
.about-page .about-foundation {
  padding: 48px 0;
  background: var(--bg-primary);
}
.about-page .about-foundation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.about-page .about-foundation-left h2 {
  font-size: clamp(30px, 3.8vw, 44px);
  font-weight: 900;
  font-style: normal;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin: 0 0 18px;
  color: var(--text-primary);
}
.about-page .about-foundation-text {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 0 40px;
}
.about-page .about-logo-mark {
  max-width: 220px;
  opacity: 0.35;
  margin-top: 24px;
}
.about-page .about-logo-mark img {
  width: 100%;
  height: auto;
}

/* Value Cards */
.about-page .about-foundation-right {
  display: grid;
  gap: 16px;
}
.about-page .about-value-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px 24px;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: border-color .25s ease;
}
.about-page .about-value-card:hover {
  border-color: rgba(183,14,24,0.35);
}
.about-page .about-value-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--brand);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.about-page .about-value-icon svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.about-page .about-value-content h3 {
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .03em;
  margin: 0 0 4px;
  color: var(--text-primary);
}
.about-page .about-value-content p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* Process Section */
.about-page .about-process {
  padding: 48px 0 60px;
  background: #05070b;
}
.about-page .about-process-header {
  text-align: left;
  margin-bottom: 36px;
}
.about-page .about-process-header h2 {
  font-size: clamp(32px, 4.2vw, 52px);
  font-weight: 900;
  font-style: normal;
  line-height: 1.05;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin: 0 0 16px;
  background: linear-gradient(180deg, #ffffff 0%, #a8b0ba 40%, #c8cdd4 70%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.about-page .about-process-header .lead {
  color: #b8c1cf;
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Process Grid */
.about-page .about-process-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}
.about-page .about-process-step {
  text-align: center;
  padding: 0 12px;
}
.about-page .about-process-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(183,14,24,.1);
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  color: var(--brand);
}
.about-page .about-process-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--brand);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.about-page .about-step-num {
  display: block;
  font-size: 13px;
  font-weight: 900;
  color: var(--brand);
  margin-bottom: 6px;
}
.about-page .about-process-step h3 {
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 0 8px;
  color: var(--text-primary);
}
.about-page .about-process-step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}
.about-page .about-process-arrow {
  font-size: 32px;
  color: var(--text-muted);
  display: grid;
  place-items: center;
  padding-top: 18px;
  opacity: 0.5;
}

/* Responsive */
@media (max-width: 900px) {
  .about-page .about-hero {
    padding: 50px 0 60px;
  }
  .about-page .about-hero h1 {
    font-size: 36px;
  }
  .about-page .about-foundation-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-page .about-process-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-page .about-process-arrow {
    display: none;
  }
}


/* =========================================================
   DISCOVERY PAGE (Contact Redesign v2)
   Scope: .discovery-* classes on contact.html
========================================================= */

/* ===== DISCOVERY HERO ===== */
.discovery-hero {
  background: radial-gradient(circle at 70% 20%, rgba(183,14,24,.12), transparent 40%), linear-gradient(135deg, #050505, #101114);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: var(--space-xl) 0 var(--space-lg);
}
.discovery-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(circle at 75% 20%, #000, transparent 60%);
  pointer-events: none;
}
.discovery-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.discovery-hero-left h1 {
  font-size: clamp(42px, 5.2vw, 66px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
  text-transform: uppercase;
  background: linear-gradient(180deg, #ffffff 0%, #a8b0ba 40%, #c8cdd4 70%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.discovery-hero-left > p {
  font-size: 18px;
  line-height: 1.65;
  color: #c6d0df;
  max-width: 560px;
  margin: 0 0 34px;
}
.discovery-badges {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.discovery-badges span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.discovery-badges span svg {
  width: 20px;
  height: 20px;
  stroke: var(--brand);
  fill: none;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ===== NETWORK MAP ===== */
.discovery-hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}
.discovery-map {
  width: 100%;
  max-width: 560px;
  height: auto;
}
.discovery-map .map-outline {
  fill: none;
  stroke: rgba(183,14,24,.25);
  stroke-width: 0.5;
}
.discovery-map .map-node {
  fill: var(--brand);
  opacity: 0.8;
  animation: discoveryPulse 3s ease-in-out infinite;
}
.discovery-map .map-node:nth-child(odd) {
  animation-delay: 1.5s;
}
.discovery-map .map-line {
  stroke: var(--brand);
  stroke-width: 0.8;
  opacity: 0.4;
  stroke-dasharray: 8 4;
  animation: discoveryDash 6s linear infinite;
}
@keyframes discoveryPulse {
  0%, 100% { opacity: 0.5; r: 3; }
  50% { opacity: 1; r: 5; }
}
@keyframes discoveryDash {
  to { stroke-dashoffset: -48; }
}

/* ===== DISCOVERY BOOKING SECTION ===== */
.discovery-booking {
  padding: var(--space-xl) 0;
  background: var(--bg-primary);
}
.discovery-booking-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 48px;
  align-items: start;
}
.discovery-booking-header {
  margin-bottom: var(--space-lg);
}
.discovery-booking-header h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -.058em;
  margin: 0;
}

/* Contact Cards */
.discovery-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.discovery-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}
.discovery-card:hover {
  transform: translateY(-4px);
  border-color: rgba(183,14,24,.4);
  box-shadow: 0 0 20px rgba(183,14,24,.15);
}
.discovery-card-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border: 1px solid var(--border);
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--bg-secondary);
  color: var(--metallic);
  transition: color var(--transition-base);
}
.discovery-card:hover .discovery-card-icon {
  color: var(--brand);
}
.discovery-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.discovery-card-content h3 {
  font-size: 16px;
  font-weight: 800;
  margin: 0 0 4px;
  color: var(--text-primary);
}
.discovery-card-content p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
}
.discovery-card-content a {
  color: var(--text-primary);
  font-weight: 700;
  transition: color var(--transition-fast);
}
.discovery-card-content a:hover {
  color: var(--brand);
}

/* Calendly Container */
.discovery-calendly {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.discovery-calendly-header {
  padding: 28px 28px 0;
}
.discovery-calendly-header h3 {
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 6px;
  color: var(--text-primary);
}
.discovery-calendly-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 18px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
}
.discovery-calendly-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.discovery-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 0 28px 24px;
}
.discovery-checklist span {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.discovery-checklist span::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(183,14,24,.12);
  color: var(--brand);
  font-size: 11px;
  font-weight: 900;
  flex-shrink: 0;
}
.discovery-calendly .calendly-inline-widget {
  min-height: 660px;
  border-top: 1px solid var(--border);
}
.discovery-calendly-fallback {
  display: none;
  padding: 32px 28px;
  text-align: center;
  color: var(--text-muted);
}
.discovery-calendly-fallback p {
  margin: 0 0 12px;
}

/* ===== WHAT WE'LL COVER ===== */
.discovery-cover {
  padding: var(--space-xl) 0;
  background: var(--bg-secondary);
}
.discovery-cover h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -.058em;
  margin: 0 0 16px;
  text-align: center;
}
.discovery-cover > .container > p {
  text-align: center;
  color: var(--text-muted);
  font-size: 17px;
  max-width: 620px;
  margin: 0 auto 42px;
  line-height: 1.7;
}
.discovery-cover-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.discovery-cover-card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}
.discovery-cover-card:hover {
  transform: translateY(-4px);
  border-color: rgba(183,14,24,.4);
  box-shadow: 0 0 20px rgba(183,14,24,.15);
}
.discovery-cover-card .icon {
  margin-bottom: 20px;
}
.discovery-cover-card h3 {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 10px;
  color: var(--text-primary);
}
.discovery-cover-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.65;
}

/* ===== WHY MEET WITH US ===== */
.discovery-why {
  padding: var(--space-xl) 0;
  background: var(--bg-primary);
}
.discovery-why h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -.058em;
  margin: 0 0 42px;
  text-align: center;
}
.discovery-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.discovery-why-item {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.discovery-why-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,.25);
}
.discovery-why-item .icon {
  margin-bottom: 18px;
}
.discovery-why-item h3 {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 8px;
  color: var(--text-primary);
}
.discovery-why-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.65;
}

/* ===== SUCCESS METRICS ===== */
.discovery-metrics {
  padding: var(--space-xl) 0;
  background: var(--bg-secondary);
}
.discovery-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.discovery-metric {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
}
.discovery-metric dt {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -.04em;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.discovery-metric dd {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
}

/* ===== CUSTOMER TESTIMONIAL ===== */
.discovery-testimonial {
  padding: var(--space-xl) 0;
  background: var(--bg-primary);
  text-align: center;
}
.discovery-testimonial blockquote {
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.5;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 auto 24px;
  max-width: 800px;
  quotes: none;
  font-style: italic;
}
.discovery-testimonial blockquote::before {
  content: open-quote;
  font-size: 48px;
  color: var(--brand);
  line-height: 0;
  vertical-align: -12px;
  margin-right: 4px;
}
.discovery-testimonial cite {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-style: normal;
  color: var(--text-muted);
  font-size: 16px;
  font-weight: 600;
}
.discovery-testimonial cite img {
  height: 32px;
  width: auto;
  opacity: .7;
}

/* ===== FINAL CTA ===== */
.discovery-final-cta {
  padding: var(--space-xl) 0;
  background: var(--bg-primary);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.discovery-final-cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(183,14,24,.15) 0%, transparent 60%);
  pointer-events: none;
}
.discovery-final-cta h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 900;
  letter-spacing: -.04em;
  margin: 0 0 28px;
  position: relative;
  z-index: 1;
}
.discovery-final-cta .btn {
  position: relative;
  z-index: 1;
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  .discovery-map .map-node,
  .discovery-map .map-line {
    animation: none;
  }
  .discovery-card,
  .discovery-cover-card,
  .discovery-why-item,
  .btn,
  .nav-cta {
    transition: none;
  }
}

/* ===== DISCOVERY RESPONSIVE ===== */
@media (max-width: 900px) {
  .discovery-hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .discovery-hero-right {
    order: 2;
  }
  .discovery-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .discovery-booking-inner {
    grid-template-columns: 1fr;
  }
  .discovery-cover-grid {
    grid-template-columns: 1fr 1fr;
  }
  .discovery-why-grid {
    grid-template-columns: 1fr 1fr;
  }
  .discovery-metrics-grid {
    grid-template-columns: 1fr 1fr;
  }
  .discovery-checklist {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .discovery-cover-grid {
    grid-template-columns: 1fr;
  }
  .discovery-why-grid {
    grid-template-columns: 1fr;
  }
  .discovery-metrics-grid {
    grid-template-columns: 1fr;
  }
}


/* =========================================================
   CUSTOM CALENDAR COMPONENT
   Built By Veterans — Discovery Call Booking
========================================================= */

#bvv-calendar {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  color: var(--text-primary);
}
.bvv-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.bvv-cal-header h3 {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin: 0;
  color: var(--text-muted);
}
.bvv-cal-nav {
  display: flex;
  align-items: center;
  gap: 14px;
}
.bvv-cal-month {
  font-size: 16px;
  font-weight: 800;
  min-width: 140px;
  text-align: center;
}
.bvv-cal-prev,
.bvv-cal-next {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--brand);
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: var(--transition-fast);
}
.bvv-cal-prev:hover,
.bvv-cal-next:hover {
  border-color: var(--brand);
  background: rgba(183,14,24,.1);
}
.bvv-cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 8px;
}
.bvv-cal-weekdays span {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 6px 0;
}
.bvv-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.bvv-cal-day {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: default;
  transition: var(--transition-fast);
}
.bvv-cal-day.empty {
  visibility: hidden;
}
.bvv-cal-day.past {
  color: rgba(255,255,255,.2);
}
.bvv-cal-day.today {
  border: 1px solid var(--brand);
  color: var(--brand);
  font-weight: 800;
}
.bvv-cal-day.available {
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}
.bvv-cal-day.available:hover {
  background: var(--brand-hover);
  transform: scale(1.1);
}
.bvv-cal-day.selected {
  background: #fff;
  color: var(--bg-primary);
  font-weight: 800;
  box-shadow: 0 0 12px rgba(255,255,255,.3);
}
.bvv-cal-timezone {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-muted);
}
.bvv-cal-timezone svg {
  color: var(--brand);
}
.bvv-cal-slots {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.bvv-cal-slots-title {
  font-size: 14px;
  font-weight: 800;
  margin: 0 0 12px;
  color: var(--text-primary);
}
.bvv-cal-slots-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.bvv-cal-slot {
  display: grid;
  place-items: center;
  padding: 10px 8px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  background: var(--bg-secondary);
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-fast);
}
.bvv-cal-slot:hover {
  border-color: var(--brand);
  background: rgba(183,14,24,.1);
  color: var(--brand);
}
@media (max-width: 900px) {
  .bvv-cal-slots-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  #bvv-calendar {
    padding: 20px 16px;
  }
  .bvv-cal-slots-list {
    grid-template-columns: 1fr 1fr;
  }
}


/* ===== CONTACT PAGE ICON CIRCLES ===== */
.contact-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  border: 1px solid rgba(183,14,24,.4);
  background: rgba(183,14,24,.08);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--brand);
  fill: none;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* ===== CALENDAR BOOKING FORM ===== */
.bvv-cal-booking {
  padding: 4px 0;
}
.bvv-cal-back {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  margin-bottom: 16px;
  transition: color var(--transition-fast);
}
.bvv-cal-back:hover {
  color: var(--brand);
}
.bvv-cal-booking h3 {
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 12px;
}
.bvv-cal-booking-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.bvv-cal-booking-details span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 600;
}
.bvv-cal-booking-details svg {
  color: var(--brand);
  flex-shrink: 0;
}
.bvv-cal-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.bvv-cal-field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-primary);
}
.bvv-cal-field input[type="text"],
.bvv-cal-field input[type="email"] {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-secondary);
  color: var(--text-primary);
  font-size: 14px;
  font-family: inherit;
  transition: border-color var(--transition-fast);
}
.bvv-cal-field input[type="text"]:focus,
.bvv-cal-field input[type="email"]:focus {
  outline: none;
  border-color: var(--brand);
}
.bvv-cal-radio-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}
.bvv-cal-radio-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
}
.bvv-cal-radio-group input[type="radio"] {
  accent-color: var(--brand);
  width: 16px;
  height: 16px;
}
.bvv-cal-submit {
  width: 100%;
  padding: 14px;
  background: var(--brand);
  border: none;
  border-radius: 9px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .02em;
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}
.bvv-cal-submit:hover {
  background: var(--brand-hover);
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(183,14,24,.4);
}
.bvv-cal-confirmation {
  text-align: center;
  padding: 40px 20px;
}
.bvv-cal-check {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(34,197,94,.12);
  border: 2px solid #22c55e;
  display: grid;
  place-items: center;
  font-size: 28px;
  color: #22c55e;
  margin: 0 auto 20px;
}
.bvv-cal-confirmation h3 {
  font-size: 22px;
  margin: 0 0 8px;
}
.bvv-cal-confirmation p {
  color: var(--text-muted);
  margin: 0 0 8px;
  font-size: 15px;
}
.bvv-cal-confirm-details {
  color: var(--text-primary) !important;
  font-weight: 700;
  margin-top: 12px !important;
}
