/* Comments stripped at deploy by scripts/strip-css.mjs — the authored, fully-commented source is public/css/main.css in the repo. */
 

:root {
   
  --bg:        #f6f1e8;    
  --bg-soft:   #f0eae0;    
  --bg-soft-top:#f3eee3;   
  --bg-mute:   #e6dfd1;    

  --navy:      #0e2748;    
  --navy-2:    #163a63;

   
  --ink:       #142942;    
  --text:      #46546c;    
  --text-2:    #586579;    
  --muted:     #616d7c;    

   
  --brand:     #1273d6;    
  --brand-dark:#0b63c4;    
  --brand-soft:#e3edfb;    
  --accent:    #0b63c4;    
  --accent-dark:#094f9e;
  --accent-light:#7cc0ff;  

   
  --electric:      #2fa6ff;
  --electric-dark: #1e90ff;
  --electric-soft: #deedfd;   
  --electric-rgb:  47, 166, 255;   

   
  --silver:      #c0c7d0;
  --silver-soft: #efe8da;

   
  --chrome-hi:   #e3e8ef;    
  --chrome-mid:  #d5dce5;
  --chrome-mid2: #bfc8d4;    
  --chrome-lo:   #a0abba;    
  --chrome-edge: #7c889a;    
  --chrome-ink:  #091a2f;    

  --card:      #fdfaf4;    

   
  --border:    #eae2d3;
  --border-2:  #928570;

   
  --shadow-sm: 0 2px 10px rgba(74,56,30,0.05);
  --shadow:    0 14px 34px -14px rgba(74,56,30,0.14);
  --shadow-lg: 0 30px 70px -24px rgba(74,56,30,0.20);

  --radius:    16px;
  --radius-sm: 10px;
   
  --container: 1240px;

  --font-head: 'Poppins', system-ui, -apple-system, Segoe UI, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.68;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4, h5 { font-family: var(--font-head); color: var(--ink); font-weight: 700; line-height: 1.18; letter-spacing: -0.01em; }

 
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

 
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head);
  font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
   
  color: var(--accent);
  padding: 7px 14px; border-radius: 999px;
  background: var(--brand-soft);
}
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: linear-gradient(135deg, var(--brand), var(--electric)); }
 
.section { padding: 90px 0; position: relative; background: var(--bg); }
 
.section-soft { background: linear-gradient(180deg, var(--bg-soft-top) 0%, var(--bg-soft) 55%, #e9e2d6 100%); }
.section-head { max-width: 660px; margin: 0 auto 54px; text-align: center; }
.section-head h2 { font-size: clamp(28px, 4vw, 42px); margin: 16px 0 14px; }
.section-head h2::after {
  content: ""; display: block; width: 64px; height: 4px; border-radius: 4px;
  margin: 16px auto 0;
  background: linear-gradient(90deg, var(--brand-dark), var(--brand) 45%, var(--electric));
}
.section-head p { color: var(--text-2); font-size: 18px; }
.center { text-align: center; }

 
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-head); font-weight: 600; font-size: 15.5px;
  padding: 13px 24px; border-radius: var(--radius-sm); border: 1.5px solid transparent;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s, color .2s, border-color .2s;
  white-space: nowrap;
   
  cursor: pointer;
}
.btn svg { width: 18px; height: 18px; }
 
.btn-accent {
  color: var(--chrome-ink); font-weight: 700;
  border-color: var(--chrome-edge);
   
  position: relative; overflow: hidden; isolation: isolate;
  background: linear-gradient(180deg,
    var(--chrome-hi)    0%,
    var(--chrome-mid)  46%,
    var(--chrome-mid2) 54%,
    var(--chrome-lo)  100%);
   
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.72),
    inset 0 -1px 0 rgba(255,255,255,0.22),
    inset 0 -2px 3px -2px rgba(13,38,74,0.18),
    0 6px 16px -8px rgba(13,38,74,0.42),
    0 10px 24px -14px rgba(var(--electric-rgb), 0.55);
}
 
.btn-accent::before {
  content: ""; position: absolute; z-index: -1; inset: -40% -60%;
  pointer-events: none; opacity: 0;
  background: linear-gradient(105deg,
    transparent 40%,
    rgba(255,255,255,0.85) 50%,
    rgba(var(--electric-rgb), 0.35) 57%,
    transparent 67%);
  transform: translate3d(-115%, 0, 0);
}
@keyframes btn-sheen {
  0%   { opacity: 0; transform: translate3d(-115%, 0, 0); }
  18%  { opacity: 1; }
  82%  { opacity: 1; }
  100% { opacity: 0; transform: translate3d(115%, 0, 0); }
}
 
.btn-accent:hover:not([disabled])::before,
.btn-accent:focus-visible:not([disabled])::before { animation: btn-sheen .9s var(--ease) 1; }
 
.btn-accent:hover:not([disabled]) {
  background: linear-gradient(180deg, #fbfdff 0%, #eff4fa 46%, #e0e8f2 54%, #c2cdda 100%);
  border-color: var(--electric-dark);
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    inset 0 1px 0 #ffffff,
    0 0 0 5px rgba(var(--electric-rgb), 0.28),
    0 16px 32px -10px rgba(var(--electric-rgb), 0.65),
    0 10px 22px -12px rgba(13,38,74,0.50);
}
 
.btn-accent:active:not([disabled]) {
  transform: translateY(0) scale(0.99);
  background: linear-gradient(180deg, var(--chrome-mid2) 0%, var(--chrome-lo) 100%);
  border-color: var(--chrome-edge);
  box-shadow:
    inset 0 2px 5px rgba(13,38,74,0.28),
    inset 0 -1px 0 rgba(255,255,255,0.18);
}
 
.btn-accent:focus-visible:not([disabled]) {
  outline: 3px solid var(--brand);
  outline-offset: 3px;
  border-color: var(--navy);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.72),
    0 0 0 3px rgba(255,255,255,0.92);
}
 
.btn.btn-accent[disabled] { opacity: .72; }
 
@media (prefers-reduced-motion: reduce) {
  .btn-accent::before { display: none; }
}
 
.mobile-menu a.btn-accent,
.mobile-menu a.btn-accent:hover { color: var(--chrome-ink); }
.btn-primary { color: #fff; background: var(--brand); box-shadow: 0 8px 20px -8px rgba(18,115,214,0.55); }
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-2px); }
.btn-ghost { color: var(--ink); border-color: var(--border-2); background: var(--card); }
.btn-ghost:hover { border-color: var(--brand); color: var(--accent); transform: translateY(-2px); }
 
.btn-outline-light { color: #fff; border-color: rgba(255,255,255,0.4); }
.btn-outline-light:hover { background: rgba(255,255,255,0.12); border-color: #fff; transform: translateY(-2px); }
.btn-lg { padding: 16px 30px; font-size: 16.5px; }
.btn-signin { padding: 10px 18px; font-size: 14.5px; gap: 8px; }
.btn-signin svg { width: 16px; height: 16px; }

 
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible { border-radius: var(--radius-sm); }
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible { outline: none; }

 
.topbar { background: #0a0a0a; color: #ffffff; font-size: 13px; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; height: 36px; }
.topbar a, .topbar span { display: inline-flex; align-items: center; gap: 7px; color: #ffffff; transition: color .2s; }
.topbar a:hover { color: var(--accent-light); }
.topbar svg { width: 14px; height: 14px; color: #ffffff; }
.topbar-review { font-weight: 600; color: #ffffff; }
.topbar-review svg { color: #ffc53d; }
.topbar-left { display: flex; gap: 22px; }
.topbar-right { display: flex; gap: 22px; }

 
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 8px 26px rgba(0,0,0,0.38); }
 
.nav { display: flex; align-items: center; justify-content: space-between; height: 92px; gap: 10px; }
.brand { display: inline-flex; align-items: center; flex: none; }
.brand-logo { height: 68px; width: auto; }
.footer .brand-logo { height: 58px; }

.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a {
  color: #cdd8e8; font-weight: 500; font-size: 15.5px; font-family: var(--font-head);
  padding: 9px 16px; border-radius: 8px; transition: color .2s, background .2s;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.08); }
.nav-links a.active { color: var(--accent-light); }
.nav-cta { display: flex; align-items: center; gap: 14px; }

.hamburger { display: none; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,0.2); border-radius: 10px; background: rgba(255,255,255,0.04); position: relative; }
.hamburger span { position: absolute; left: 12px; right: 12px; height: 2px; background: #e8edf6; border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.hamburger span:nth-child(1) { top: 16px; }
.hamburger span:nth-child(2) { top: 22px; }
.hamburger span:nth-child(3) { top: 28px; }
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu { display: none; flex-direction: column; gap: 2px; padding: 10px 24px 22px; border-bottom: 1px solid rgba(255,255,255,0.08); background: var(--navy); }
.mobile-menu.open { display: flex; }
.mobile-menu a { color: #cdd8e8; font-weight: 500; font-family: var(--font-head); padding: 13px 12px; border-radius: 8px; }
.mobile-menu a:hover, .mobile-menu a.active { color: #fff; background: rgba(255,255,255,0.08); }
.mobile-menu .btn { margin-top: 10px; }

 
.hero {
  position: relative; overflow: hidden; display: flex; align-items: center; padding: 110px 0;
  min-height: 100vh;
  min-height: 100svh;    
}
.hero-bg {
  position: fixed; top: 0; left: 0; z-index: -1;
  width: 100vw;
   
  --hero-overscan: 16vh;
  height: calc(100vh + var(--hero-overscan));
  height: calc(100lvh + var(--hero-overscan));   
  background: url('/assets/server-rack-v2.jpg') 85% top / cover no-repeat;
   
  background-image: image-set(
    url('/assets/server-rack-v2.avif')    type('image/avif'),
    url('/assets/server-rack-v2.webp')    type('image/webp'),
    url('/assets/server-rack-v2.jpg') type('image/jpeg')
  );
   
  filter: brightness(1.06) saturate(1.0);
}
 
@media (prefers-reduced-motion: reduce) {
  .hero-bg { position: absolute; inset: 0; width: auto; height: auto; }
}
 
@media (hover: none) and (pointer: coarse) {
  .hero-bg { --hero-overscan: 2vh; }
}
 
@media (max-width: 820px) {
  .hero-bg {
    background-image: url('/assets/server-rack-v2-m.jpg');
    background-image: image-set(
      url('/assets/server-rack-v2-m.avif')  type('image/avif'),
      url('/assets/server-rack-v2-m.webp')  type('image/webp'),
      url('/assets/server-rack-v2-m.jpg')   type('image/jpeg')
    );
  }
}
 
.hero-overlay { position: absolute; inset: 0; z-index: 1; background: rgba(10,22,40,0.16); }
 
.hero-content {
  position: relative; z-index: 2;
  max-width: 768px;
  padding: 40px 44px;
  background: rgba(9,20,35,0.82);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
}
 
.hero h1 { font-size: clamp(38px, 6vw, 64px); margin: 22px 0 20px; color: #fff; }
.hero h1 .hl {
  background: linear-gradient(95deg, #7cc0ff 0%, #2fa6ff 100%);
  -webkit-background-clip: text; background-clip: text;
  color: #7cc0ff; -webkit-text-fill-color: transparent;
}
.hero p.lead { font-size: 19px; color: #d7e0ee; max-width: 560px; margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero-list { display: flex; flex-wrap: wrap; gap: 14px 26px; }
.hero-list span { display: inline-flex; align-items: center; gap: 9px; font-size: 15px; color: #eef3fa; font-weight: 500; }
.hero-list svg { width: 20px; height: 20px; color: var(--accent-light); flex: none; }

 
.hero-stats-box {
  position: relative; z-index: 2;    
  max-width: 768px;
  margin-top: 18px;
  padding: 24px 44px;
  overflow: hidden;                  
  background: linear-gradient(180deg, rgba(9,20,35,0.86), rgba(9,20,35,0.90));
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
   
  box-shadow: 0 24px 48px -28px rgba(0,0,0,0.75);
}
.hero-stats-box::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: linear-gradient(90deg, var(--brand-dark), var(--brand) 45%, var(--electric));
  pointer-events: none;
}
 
.hero-stats {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px;
}
.hero-stat .n {
  display: block;
  font-family: var(--font-head); font-weight: 700; line-height: 1.1;
  font-size: clamp(26px, 3vw, 32px);
  background: linear-gradient(95deg, #7cc0ff 0%, #2fa6ff 100%);
  -webkit-background-clip: text; background-clip: text;
  color: #7cc0ff; -webkit-text-fill-color: transparent;
}
.hero-stat .l { display: block; margin-top: 5px; font-size: 13px; line-height: 1.35; color: #b9c7dc; }

 

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

.card {
  position: relative; background: var(--card);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--border-2); }

.icon-chip { width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center; background: var(--brand-soft); margin-bottom: 20px; }
.icon-chip svg { width: 27px; height: 27px; color: var(--brand); }
 
.grid-3 .card:nth-child(3n+2) .icon-chip, .grid-4 .card:nth-child(4n+2) .icon-chip { background: var(--silver-soft); }
.grid-3 .card:nth-child(3n+2) .icon-chip svg, .grid-4 .card:nth-child(4n+2) .icon-chip svg { color: var(--navy-2); }
.grid-3 .card:nth-child(3n) .icon-chip, .grid-4 .card:nth-child(4n+3) .icon-chip { background: var(--electric-soft); }
.grid-3 .card:nth-child(3n) .icon-chip svg, .grid-4 .card:nth-child(4n+3) .icon-chip svg { color: var(--accent); }
.card h3 { font-size: 20px; margin-bottom: 10px; }
.card > p { color: var(--text-2); font-size: 15.5px; margin-bottom: 18px; }
.card-list { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 20px; }
.card-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--text); }
.card-list li svg { width: 19px; height: 19px; color: var(--brand); flex: none; margin-top: 2px; }

.feature { padding: 28px; }
.feature .icon-chip { width: 50px; height: 50px; border-radius: 13px; margin-bottom: 16px; }
.feature .icon-chip svg { width: 24px; height: 24px; }
.feature h3 { font-size: 18px; }
.feature p { color: var(--text-2); font-size: 15px; margin-top: 8px; }

 
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.step { padding: 28px; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.step .num { font-family: var(--font-head); font-weight: 700; font-size: 16px; width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; color: #fff; background: linear-gradient(135deg, var(--brand), var(--brand-dark)); margin-bottom: 18px; box-shadow: 0 6px 16px -6px rgba(18,115,214,0.5); }
.step:nth-child(2) .num { background: linear-gradient(135deg, var(--brand-dark), var(--accent-dark)); box-shadow: 0 6px 16px -6px rgba(11,99,196,0.5); }
.step:nth-child(3) .num { background: linear-gradient(135deg, var(--accent-dark), var(--navy-2)); box-shadow: 0 6px 16px -6px rgba(9,79,158,0.5); }
.step:nth-child(4) .num { background: linear-gradient(135deg, var(--navy-2), var(--navy)); box-shadow: 0 6px 16px -6px rgba(14,39,72,0.5); }
.step h3 { font-size: 18px; margin-bottom: 8px; }
.step p { color: var(--text-2); font-size: 15px; }

 

 
.quote { max-width: 820px; margin: 0 auto; text-align: center; }
.quote p { font-size: clamp(20px, 2.6vw, 26px); color: var(--ink); font-family: var(--font-head); font-weight: 500; line-height: 1.45; margin: 18px 0 22px; }
.quote .who { color: var(--text-2); font-size: 15px; }

 
.section:has(.quote) {
  --dv-fill: #eae4d9;
  background: linear-gradient(180deg, #eae4d9 0%, #e6e1d8 55%, #e0dacf 100%);
}
.section:has(.quote) .quote .who { color: var(--text); }
.section:has(.quote)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent-dark), var(--brand-dark) 45%, var(--brand));
  pointer-events: none;
}

 
 
.cta-band { position: relative; overflow: hidden; border-radius: 22px; background: var(--navy); padding: 56px; text-align: center; }
.cta-band::before { content:""; position:absolute; top:-60%; right:-10%; width:420px; height:420px; border-radius:50%; background: radial-gradient(circle, rgba(47,166,255,0.30), transparent 65%); pointer-events: none; }
.cta-band::after { content:""; position:absolute; bottom:-60%; left:-8%; width:360px; height:360px; border-radius:50%; background: radial-gradient(circle, rgba(11,99,196,0.30), transparent 65%); pointer-events: none; }
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; font-size: clamp(26px,4vw,40px); margin-bottom: 14px; }
.cta-band p { color: #c6d2e4; font-size: 18px; max-width: 560px; margin: 0 auto 26px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

 
.contact-wrap { display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; align-items: start; }
.info-panel { display: flex; flex-direction: column; gap: 16px; }
.info-item { display: flex; gap: 16px; align-items: flex-start; padding: 20px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--card); box-shadow: var(--shadow-sm); }
.info-item .ic { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: var(--brand-soft); flex: none; }
.info-item .ic svg { width: 22px; height: 22px; color: var(--brand); }
.info-item h4 { font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); font-family: var(--font-body); font-weight: 700; margin-bottom: 4px; }
.info-item a, .info-item p { color: var(--ink); font-size: 16px; font-weight: 500; }
.info-item a { transition: color .2s; }
.info-item a:hover { color: var(--accent); }

.form-card { border: 1px solid var(--border); border-radius: var(--radius); background: var(--card); padding: 32px; box-shadow: var(--shadow-sm); }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13.5px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.field input, .field select, .field textarea {
   
  width: 100%; padding: 13px 15px; font-family: inherit; font-size: 16px;
   
  color: var(--ink); background: var(--card);
  border: 1.5px solid var(--border-2); border-radius: var(--radius-sm);
  transition: border-color .2s, box-shadow .2s; outline: none;
}
.field textarea { resize: vertical; min-height: 130px; }
 
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(var(--electric-rgb), 0.22); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; padding-right: 42px; }
.form-note { font-size: 13px; color: var(--muted); margin-top: 4px; }
.form-status { margin-top: 16px; padding: 14px 16px; border-radius: var(--radius-sm); font-size: 14.5px; display: none; }
.form-status.show { display: block; }
.form-status.ok { background: #e7f7ee; border: 1px solid #b7e6cb; color: #157347; }
.form-status.err { background: #fdecec; border: 1px solid #f5c2c2; color: #b02a2a; }
 
.form-status.warn { background: #fff6e5; border: 1px solid #f3d9a4; color: #8a5a00; }
.btn[disabled] { opacity: .6; cursor: not-allowed; transform: none; }

 
.page-hero { padding: 60px 0 8px; text-align: center; background: var(--bg-soft); border-bottom: 1px solid var(--border); }
.page-hero .container { padding-bottom: 52px; }
.page-hero h1 { font-size: clamp(32px, 5vw, 50px); margin: 16px 0 14px; }
.page-hero p { color: var(--text-2); font-size: 18px; max-width: 620px; margin: 0 auto; }

 
body[data-page="industries"] .page-hero {
  position: relative;
   
  z-index: 0;
  overflow: hidden;
  display: flex; align-items: center;

   
  min-height: 320px;
  padding: 48px 0 68px;

   
  background: var(--navy);
   
  border-bottom: 0;
}

 
body[data-page="industries"] .page-hero-bg {
  --band-overscan: 50%;
  position: absolute;
  left: 0; right: 0;
  top: calc(-1 * var(--band-overscan));
  height: calc(100% + var(--band-overscan));
  z-index: 0;
  pointer-events: none;

   
  background: url('/assets/oklahoma-aerial-v3.jpg') center top / cover no-repeat;
   
  background-image: image-set(
    url('/assets/oklahoma-aerial-v3.avif')    type('image/avif'),
    url('/assets/oklahoma-aerial-v3.webp')    type('image/webp'),
    url('/assets/oklahoma-aerial-v3.jpg')     type('image/jpeg')
  );
   
  filter: brightness(0.62) saturate(1.08);
}

 
@media (max-width: 1183px) {
  body[data-page="industries"] .page-hero-bg { --band-overscan: 20%; }
}

 
body[data-page="industries"] .page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: rgba(9, 20, 35, 0.40);
}

 
body[data-page="industries"] .page-hero .container { position: relative; z-index: 2; padding-bottom: 0; }
body[data-page="industries"] .page-hero h1 { color: #ffffff; }
body[data-page="industries"] .page-hero p  { color: #e6edf7; }
 
body[data-page="industries"] .page-hero .eyebrow {
  color: var(--accent-light);
  background: #091423;
}

 
body[data-page="industries"] .page-hero::after {
  content: ""; position: absolute; left: -1px; right: -1px; bottom: 0; z-index: 3;
  height: 40px; pointer-events: none;
  background: var(--bg-soft);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 40' preserveAspectRatio='none'%3E%3Cpath d='M0,22 C300,32 560,12 840,19 C1080,25 1260,22 1440,20 L1440,40 L0,40 Z' fill='%23000'/%3E%3C/svg%3E") no-repeat center bottom / 100% 100%;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 40' preserveAspectRatio='none'%3E%3Cpath d='M0,22 C300,32 560,12 840,19 C1080,25 1260,22 1440,20 L1440,40 L0,40 Z' fill='%23000'/%3E%3C/svg%3E") no-repeat center bottom / 100% 100%;
}

 
@media (max-width: 820px) {
  body[data-page="industries"] .page-hero { padding: 36px 0 56px; min-height: 260px; }
  body[data-page="industries"] .page-hero::after { height: 28px; }
}

 
.prose { max-width: 760px; margin: 0 auto; }
.prose p { color: var(--text); font-size: 17px; margin-bottom: 20px; }
.prose h2 { font-size: 27px; margin: 38px 0 14px; }

 
.footer { background: var(--navy); color: #b7c4d8; padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.3fr; gap: 40px; }
.footer .brand { margin-bottom: 18px; }
.footer-about p { color: #a7b6cc; font-size: 15px; max-width: 300px; }
.footer h5 { color: #fff; font-size: 14px; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 18px; }
.footer ul { list-style: none; padding-left: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.footer ul a { color: #a7b6cc; font-size: 15px; transition: color .2s; }
.footer ul a:hover { color: var(--accent-light); }
.footer-contact { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-contact li { display: flex; align-items: center; gap: 10px; color: #a7b6cc; font-size: 15px; }
.footer-contact a { color: #a7b6cc; transition: color .2s; }
.footer-contact a:hover { color: var(--accent-light); }
.footer-contact svg { width: 17px; height: 17px; color: var(--accent-light); flex: none; }
 
.footer-follow { margin-top: 26px; }
.footer-follow h5 { margin-bottom: 14px; }
.socials { display: flex; gap: 10px; }
.socials a { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; background: rgba(255,255,255,0.06); color: #a7b6cc; transition: color .25s, background-color .25s, transform .25s; }
.socials a:hover { color: var(--accent-light); background: rgba(255,255,255,0.12); transform: translateY(-2px); }
.socials a:focus-visible { color: var(--accent-light); outline: 2px solid var(--accent-light); outline-offset: 3px; }
.socials svg { width: 22px; height: 22px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; margin-top: 46px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom p { color: #8496b0; font-size: 14px; }
.footer-bottom .staff { color: #8496b0; font-size: 13px; transition: color .2s; }
.footer-bottom .staff:hover { color: var(--accent-light); }

 
 
.reveal { opacity: 1; }
.js .reveal { transition: opacity .55s var(--ease), transform .8s var(--ease); will-change: opacity, transform; }

 
.js .card, .js .step { transition: opacity .55s var(--ease), transform .3s var(--ease), box-shadow .3s, border-color .3s; }

.js .reveal:not(.in) { opacity: 0; transform: translateY(34px) scale(0.985); }

 
.js .reveal.reveal-left:not(.in)  { transform: translate3d(calc(-1 * var(--reveal-x, 48px)), 0, 0); }
.js .reveal.reveal-right:not(.in) { transform: translate3d(var(--reveal-x, 48px), 0, 0); }
.js .reveal.reveal-fade:not(.in)  { transform: none; }
.js .reveal.reveal-left.reveal-far:not(.in)  { transform: translate3d(calc(-1 * var(--reveal-x, 72px)), 0, 0); }
.js .reveal.reveal-right.reveal-far:not(.in) { transform: translate3d(var(--reveal-x, 72px), 0, 0); }

 

 
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 200;
  background: linear-gradient(90deg, var(--brand-dark), var(--brand) 55%, var(--electric));
  box-shadow: 0 0 12px rgba(30,144,255,0.6);
  transition: width .08s linear; pointer-events: none;
}

 

 
@keyframes float-in-down {
  from { opacity: 0; transform: translate3d(0, -16px, 0); }
  to   { opacity: 1; transform: none; }
}
.topbar       { animation: float-in-down .60s var(--ease) backwards; }
.site-header  { animation: float-in-down .62s var(--ease) .08s backwards; }
.hero-content { animation: float-in-down .68s var(--ease) .16s backwards; }
 
.hero-stats-box { animation: float-in-down .70s var(--ease) .26s backwards; }

 
@keyframes scrub-side-in {
  from { opacity: 0; translate: var(--scrub-x, -70px) 0; }
  to   { opacity: 1; translate: 0 0; }
}

 
.scrub-side { --card-fly-x: clamp(180px, 34vw, 460px); }
 
.scrub-side { --reveal-x: var(--card-fly-x); }
.section:has(.scrub-side) { overflow-x: clip; }

@supports (animation-timeline: view()) {
   
  .scrub-side {
    animation-name: scrub-side-in;
    animation-timing-function: linear;    
    animation-fill-mode: both;
    animation-timeline: view();
     
    animation-range: entry 0% cover 50%;
  }
   
  .scrub-side { --scrub-x: calc(-1 * var(--card-fly-x)); }
   
  .js .scrub-side.reveal.reveal-left:not(.in),
  .js .scrub-side.reveal.reveal-right:not(.in) { transform: none; }
}

 
@media (prefers-reduced-motion: reduce) {
  .topbar, .site-header, .hero-content, .hero-stats-box { animation: none; }
  .scrub-side { animation: none; opacity: 1; translate: none; }
}
 

 
@media (max-width: 960px) {
  .grid-4, .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 820px) {
  .nav-links { display: none; }
   
  .topbar-right span { display: none; }
  .topbar-inner { justify-content: center; gap: 18px; }
  .topbar-left { gap: 18px; }
  .hamburger { display: block; }
   
   
  .mobile-menu.open {
    max-height: calc(100vh - 146px);
    max-height: calc(100dvh - 146px);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }
  .nav-cta .btn:not(.hamburger) { display: none; }
  .grid-3, .grid-2, .contact-wrap { grid-template-columns: 1fr; }
  .section { padding: 66px 0; }
  .cta-band { padding: 40px 24px; }
   
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 18px 22px; }
}
@media (max-width: 520px) {
  body { font-size: 16px; }
  .grid-4, .steps, .footer-grid { grid-template-columns: 1fr; }
  .container { padding: 0 18px; }
   
  .topbar-left { flex-direction: column; gap: 0; height: auto; }
  .topbar-left a { padding: 6px 0; min-height: 34px; justify-content: center; }
  .topbar { padding: 3px 0; }
  .topbar-inner { height: auto; flex-direction: column; gap: 0; }
  .topbar-right a { padding: 6px 0; min-height: 34px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero { min-height: 600px; padding: 76px 0; }
   
   
  .hero-content { padding: 24px 20px; border-radius: 14px; }
   
  .hero-stats-box { padding: 18px 20px; border-radius: 14px; margin-top: 14px; }
   
  .cta-band { padding: 34px 18px; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { width: 100%; }
  .btn { white-space: normal; }
   
  .nav { height: 68px; }
  .brand-logo { height: 46px; }
  .section { padding: 48px 0; }
  .section-head { margin-bottom: 34px; }
  .hero p.lead { font-size: 16.5px; }
   
  .footer ul { gap: 2px; }
  .footer ul a { display: inline-block; padding: 8px 0; }
  .footer-contact li { padding: 3px 0; }
   
  .mobile-menu.open {
    max-height: calc(100vh - 184px);
    max-height: calc(100dvh - 184px);
  }
}

 

 

 
.card::after {
  content: ""; position: absolute; top: -1px; left: -1px; right: -1px;
  height: calc(var(--radius) + 1px);
  border-radius: var(--radius) var(--radius) 0 0;
  background:
    linear-gradient(90deg, var(--brand-dark), var(--brand) 55%, var(--electric))
    left top / 100% 3px no-repeat;
  opacity: 0; transform: scaleX(0.55); transform-origin: center;
  transition: opacity .3s var(--ease), transform .35s var(--ease);
  pointer-events: none;
}
.card:hover::after { opacity: 1; transform: scaleX(1); }

 
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; z-index: 3;
  height: 40px; pointer-events: none;
  background: var(--bg-soft-top);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 40' preserveAspectRatio='none'%3E%3Cpath d='M0,22 C300,32 560,12 840,19 C1080,25 1260,22 1440,20 L1440,40 L0,40 Z' fill='%23000'/%3E%3C/svg%3E") no-repeat center bottom / 100% 100%;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 40' preserveAspectRatio='none'%3E%3Cpath d='M0,22 C300,32 560,12 840,19 C1080,25 1260,22 1440,20 L1440,40 L0,40 Z' fill='%23000'/%3E%3C/svg%3E") no-repeat center bottom / 100% 100%;
}
.footer { position: relative; }
.footer::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; transform: translateY(-99%);
  height: 40px; pointer-events: none;
  background: var(--navy);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 40' preserveAspectRatio='none'%3E%3Cpath d='M0,20 C300,10 560,28 840,22 C1080,17 1260,19 1440,21 L1440,40 L0,40 Z' fill='%23000'/%3E%3C/svg%3E") no-repeat center bottom / 100% 100%;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 40' preserveAspectRatio='none'%3E%3Cpath d='M0,20 C300,10 560,28 840,22 C1080,17 1260,19 1440,21 L1440,40 L0,40 Z' fill='%23000'/%3E%3C/svg%3E") no-repeat center bottom / 100% 100%;
}

 
.review-band {
  position: relative; overflow: hidden; border-radius: 22px;
  background: linear-gradient(135deg, var(--navy-2), var(--navy));
  border: 1px solid rgba(255,255,255,0.08);
  padding: 50px; text-align: center;
}
.review-band::before {
  content: ""; position: absolute; top: -55%; left: -8%; width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(47,166,255,0.28), transparent 65%);
}
 
.review-band::after {
  content: ""; position: absolute; bottom: -58%; right: -8%; width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(11,99,196,0.30), transparent 65%);
  z-index: 0; pointer-events: none;
}
.review-band > * { position: relative; z-index: 1; }
.review-band .stars { display: inline-flex; gap: 5px; margin-bottom: 16px; }
.review-band .stars svg { width: 26px; height: 26px; color: #ffc53d; }
.review-band h2 { color: #fff; font-size: clamp(24px, 3.4vw, 34px); margin-bottom: 12px; }
.review-band p { color: #c6d2e4; font-size: 17px; max-width: 540px; margin: 0 auto 26px; }
.btn-google { background: #fff; color: var(--navy); box-shadow: var(--shadow); }
.btn-google:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-google svg { width: 20px; height: 20px; }

@media (max-width: 820px) {
  .review-band { padding: 40px 24px; }
  .hero::after, .footer::before { height: 38px; }
}

 

 
.step { position: relative; }
.step::before {
  content: ""; position: absolute; top: -1px; left: -1px; right: -1px;
  height: calc(var(--radius) + 1px);
  border-radius: var(--radius) var(--radius) 0 0;
  background:
    linear-gradient(90deg, var(--brand-dark) 0%, var(--brand) 60%, var(--electric) 145%)
    0% 0% / 400% 3px no-repeat;
  pointer-events: none;
}
.step:nth-child(2)::before { background-position-x: 33.333%; }
.step:nth-child(3)::before { background-position-x: 66.667%; }
.step:nth-child(4)::before { background-position-x: 100%; }
 

 
@media (hover: hover) and (pointer: fine) {
  .step { transition: transform .3s var(--ease), box-shadow .3s, border-color .3s; }
  .step .num { transition: transform .3s var(--ease); }
  .step::after {
    content: ""; position: absolute; inset: 0; border-radius: var(--radius);
    background: radial-gradient(circle 260px at 49px 49px,
      rgba(18,115,214,0.10),
      rgba(18,115,214,0.05) 38%,
      rgba(18,115,214,0) 76%);
    opacity: 0; transition: opacity .35s var(--ease);
    pointer-events: none;
  }
   
  .step > * { position: relative; z-index: 1; }
  .step:hover,
  .step:focus-within {
    transform: translateY(-5px);
    box-shadow: var(--shadow), 0 18px 40px -18px rgba(18,115,214,0.50);
    border-color: var(--border-2);
  }
  .step:hover::after,
  .step:focus-within::after { opacity: 1; }
   
  .step:hover .num,
  .step:focus-within .num { transform: translateY(-2px); }
}

 
@media (prefers-reduced-motion: reduce) {
  .step:hover, .step:focus-within { transform: none; }
  .step:hover .num, .step:focus-within .num { transform: none; }
}

 
.footer {
  background:
    linear-gradient(180deg, var(--navy) 0%, rgba(14,39,72,0) 40px),
    radial-gradient(58% 62% at 16% 14%, rgba(18,115,214,0.13), transparent 62%),
    radial-gradient(46% 52% at 86% 6%, rgba(124,192,255,0.07), transparent 60%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy) 26%, #0b2039 72%, #08182c 100%);
}

 
.footer::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px;
  background: linear-gradient(90deg, var(--brand-dark), var(--brand) 45%, var(--electric));
  pointer-events: none;
}

 
.footer-bottom {
  border-top-color: transparent;
  background: linear-gradient(90deg, var(--brand) 0%, var(--brand) 8%, rgba(255,255,255,0.10) 48%)
              top / 100% 1px no-repeat;
}

 

 
.section-dark {
  position: relative;
  background:
    linear-gradient(180deg, var(--navy) 0%, rgba(14,39,72,0) 40px),
    radial-gradient(65% 90% at 12% -10%, rgba(18,115,214,0.14), transparent 60%),
    radial-gradient(50% 70% at 82% -8%, rgba(124,192,255,0.08), transparent 60%),
    radial-gradient(60% 85% at 92% 110%, rgba(47,166,255,0.08), transparent 60%),
    var(--navy);
  color: #c3d0e2;
}
.section-dark .section-head h2 { color: #ffffff; }
.section-dark .section-head p  { color: #c6d2e4; }
.section-dark .eyebrow { color: var(--accent-light); background: rgba(124,192,255,0.14); }
 
.section-dark .svc h2 { color: #ffffff; }
.section-dark .svc > div > p { color: #c6d2e4; }
.section-dark .card-list li { color: #c3d0e2; }
.section-dark .svc + .svc { border-top-color: rgba(255,255,255,0.10); }
.section-dark .svc .visual { border-color: rgba(255,255,255,0.10); }

 
.section       { --dv-fill: var(--bg); }
.section-soft  { --dv-fill: var(--bg-soft-top); }
.section-dark  { --dv-fill: var(--navy); }

 
.dv-wave   { --dv-shape: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 40' preserveAspectRatio='none'%3E%3Cpath d='M0,22 C300,32 560,12 840,19 C1080,25 1260,22 1440,20 L1440,40 L0,40 Z' fill='%23000'/%3E%3C/svg%3E"); }
.dv-slant  { --dv-shape: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 40' preserveAspectRatio='none'%3E%3Cpath d='M0,30 L1440,12 L1440,40 L0,40 Z' fill='%23000'/%3E%3C/svg%3E"); }
.dv-slantr { --dv-shape: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 40' preserveAspectRatio='none'%3E%3Cpath d='M0,12 L1440,30 L1440,40 L0,40 Z' fill='%23000'/%3E%3C/svg%3E"); }
.dv-curve  { --dv-shape: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 40' preserveAspectRatio='none'%3E%3Cpath d='M0,22 Q720,8 1440,22 L1440,40 L0,40 Z' fill='%23000'/%3E%3C/svg%3E"); }
.dv-zig    { --dv-shape: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 40' preserveAspectRatio='none'%3E%3Cpath d='M0,40 L0,30 L60,20 L120,30 L180,20 L240,30 L300,20 L360,30 L420,20 L480,30 L540,20 L600,30 L660,20 L720,30 L780,20 L840,30 L900,20 L960,30 L1020,20 L1080,30 L1140,20 L1200,30 L1260,20 L1320,30 L1380,20 L1440,30 L1440,40 Z' fill='%23000'/%3E%3C/svg%3E"); }

.dv-wave::before, .dv-slant::before, .dv-slantr::before, .dv-curve::before, .dv-zig::before {
  content: ""; position: absolute; left: -1px; right: -1px; top: 0; height: 40px;
  transform: translateY(-99%);
  background: var(--dv-fill);
  -webkit-mask: var(--dv-shape) center bottom / 100% 100% no-repeat;
          mask: var(--dv-shape) center bottom / 100% 100% no-repeat;
  pointer-events: none; z-index: 1;
}

@media (max-width: 820px) {
  .dv-wave::before, .dv-slant::before, .dv-slantr::before, .dv-curve::before, .dv-zig::before { height: 28px; }
}

 
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm); overflow: hidden;
}
.faq-item summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 22px; font-family: var(--font-head); font-weight: 600; font-size: 16.5px; color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; flex: none; width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--brand-soft); color: var(--accent); font-weight: 600; font-size: 17px;
  transition: transform .25s var(--ease);
}
.faq-item[open] summary::after { content: "–"; transform: rotate(180deg); }
.faq-item p { padding: 0 22px 20px; color: var(--text); font-size: 15.5px; }
 
.faq-item summary:hover { color: var(--accent); }

 
.t-card blockquote { font-size: 16.5px; color: var(--text); line-height: 1.7; margin-bottom: 18px; }
.t-card blockquote::before { content: "\201C"; display: block; font-family: var(--font-head); font-size: 44px; line-height: 1; color: var(--brand); margin-bottom: 6px; }
.t-card .t-who { font-family: var(--font-head); font-weight: 600; color: var(--ink); font-size: 14.5px; }
.t-card .t-role { color: var(--muted); font-size: 13px; margin-top: 2px; }
.t-card .t-stars { color: #f2b01e; letter-spacing: 2px; font-size: 14px; margin-bottom: 10px; }

 
.serve {
  padding: 90px 0; position: relative;
  background: var(--bg-soft);
  --dv-fill: var(--bg-soft);  
}

 
.serve-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
}
.serve-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.serve-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--border-2); }
.serve-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: grid; place-items: center;
  background: var(--brand-soft);
  margin-bottom: 20px;
}
.serve-icon svg { width: 27px; height: 27px; color: var(--brand); }
 
.serve-grid .serve-card:nth-child(even) .serve-icon { background: var(--electric-soft); }
.serve-grid .serve-card:nth-child(even) .serve-icon svg { color: var(--accent); }
.serve-card h3 { font-size: 19px; margin-bottom: 9px; }
.serve-card p { color: var(--text-2); font-size: 15px; }

 
.serve-partner {
  position: relative; overflow: hidden;
  margin-top: 36px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--navy-2), var(--navy));
  border: 1px solid rgba(255,255,255,0.08);
  padding: 46px 48px;
  color: #c6d2e4;
}
.serve-partner::before {
  content: ""; position: absolute; top: -60%; right: -6%;
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(47,166,255,0.24), transparent 65%);
  pointer-events: none;
}
.serve-partner::after {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: linear-gradient(180deg, var(--electric), var(--brand-dark));
}
.serve-partner > * { position: relative; z-index: 1; }
.serve-partner h3 { color: #fff; font-size: clamp(21px, 3vw, 27px); margin-bottom: 10px; }
.serve-partner p { color: #c6d2e4; font-size: 16.5px; max-width: 640px; margin-bottom: 24px; }
.serve-partner a.btn { margin-bottom: 0; }

@media (max-width: 820px) {
  .serve { padding: 66px 0; }
  .serve-partner { padding: 36px 28px; }
}
@media (max-width: 520px) {
  .serve-grid { grid-template-columns: 1fr; }
  .serve-partner { padding: 30px 22px; border-radius: var(--radius); }
  .serve-partner a.btn { width: 100%; }
}

 

 
.nav-links .has-dropdown { position: relative; }
 
.nav-links .has-dropdown > a { display: inline-flex; align-items: center; gap: 6px; }
.nav-links .nav-caret {
  width: 11px; height: 11px; flex: none;
  transition: transform .2s var(--ease);
}
.nav-links .has-dropdown:hover > a .nav-caret,
.nav-links .has-dropdown:focus-within > a .nav-caret { transform: rotate(180deg); }

 
.nav-links .dropdown {
  position: absolute; top: calc(100% + 10px); left: 0; z-index: 120;
  min-width: 272px; margin: 0; padding: 8px; list-style: none;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
   
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s;
}
 
.nav-links .dropdown::before {
  content: ""; position: absolute; left: 0; right: 0; top: -12px; height: 12px;
}
.nav-links .has-dropdown:hover > .dropdown,
.nav-links .has-dropdown:focus-within > .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
 
.nav-links .has-dropdown.dd-closed > .dropdown {
  opacity: 0; visibility: hidden; transform: translateY(-6px);
}
 
.nav-links .has-dropdown.dd-closed > a .nav-caret { transform: rotate(0deg); }

 
.nav-links .dropdown li { display: block; }
.nav-links .dropdown a {
  display: block; width: 100%;
  padding: 10px 14px; border-radius: 8px;
  font-family: var(--font-head); font-size: 14.5px; font-weight: 500;
  line-height: 1.35; white-space: nowrap;
  color: var(--ink); background: transparent;
}
.nav-links .dropdown a:hover,
.nav-links .dropdown a:focus-visible {
   
  color: var(--accent); background: var(--brand-soft);
}
 
.nav-links .dropdown a[aria-current="page"] {
  color: var(--accent); background: var(--brand-soft); font-weight: 600;
}
 
.nav-links .dropdown li:first-child a { font-weight: 600; }
.nav-links .dropdown li:first-child { margin-bottom: 4px; padding-bottom: 4px; border-bottom: 1px solid var(--border); }

 
.mobile-menu a.mobile-sub {
  position: relative;
  padding: 10px 12px 10px 32px;
  font-size: 14.5px; font-weight: 400; color: #9fb0c8;
}
.mobile-menu a.mobile-sub::before {
  content: ""; position: absolute; left: 16px; top: 50%;
  width: 7px; height: 1px; background: rgba(255,255,255,0.3);
}
.mobile-menu a.mobile-sub:hover,
.mobile-menu a.mobile-sub[aria-current="page"] {
  color: #fff; background: rgba(255,255,255,0.08);
}

 

 
.dv-wave, .dv-slant, .dv-slantr, .dv-curve, .dv-zig { overflow-x: clip; }

 

 
.svc-bands { background: #000; }
 
.svc-band {
  position: relative; display: block; overflow: hidden;
  padding: clamp(14px, 2vw, 24px);
  min-height: clamp(92px, 11vh, 118px);
  border-bottom: 1px solid rgba(255,255,255,0.35);
  background: #000;
}
.svc-band:first-child { border-top: 1px solid rgba(255,255,255,0.35); }

 
.svc-band { border-bottom-color: transparent; }
.svc-band::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  z-index: 2; pointer-events: none;
  background: linear-gradient(90deg,
    var(--band-accent, var(--brand)) 0%,
    var(--band-accent, var(--brand)) 12%,
    rgba(255,255,255,0.35) 55%);
}

.svc-band__media {
  position: absolute; inset: 0; z-index: 0; opacity: 0;
  background: #000;
  transition: opacity .4s ease-in-out;
}
.svc-band__media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: blur(32px); opacity: .8; transform: scale(1.08);
}
 
.svc-band::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, #000 10%, rgba(0,0,0,0.35) 90%);
  opacity: 1; transition: opacity .3s ease-in-out;
}

.svc-band__inner {
  position: relative; z-index: 2;
  max-width: var(--container); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: clamp(20px, 1vw, 30px);
  min-height: inherit;
}
.svc-band__text { flex: 1 1 auto; max-width: 900px; position: relative; }
 
.svc-band__title {
  display: block;
  margin: 0; color: #fff; line-height: 1.1;
   
  font-size: clamp(21px, 1vw + 14px, 30px);
  border-left: 5px solid var(--band-accent, var(--brand));
  padding-inline-start: 20px;
  transition: opacity .4s ease-in-out, transform .4s ease-in-out, border-color .3s ease;
}
.svc-band__desc {
  display: block;
  margin: 0; color: #dbe4f0; line-height: 1.4;
  font-size: clamp(16px, .57vw + 12px, 20px);
  border-left: 5px solid var(--brand);
  padding-inline-start: 20px;
  opacity: 0; transform: translateY(20px);
  transition: opacity .4s ease-in-out, transform .4s ease-in-out;
}
 
.svc-band__more {
  flex: 0 0 auto; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  transform: rotate(-90deg); opacity: .7;
  transition: opacity .3s ease;
}
.svc-band__label {
  color: #fff; text-transform: uppercase; letter-spacing: 2px;
  font-family: var(--font-head); font-size: 11px; font-weight: 600;
  margin-bottom: 5px; white-space: nowrap;
}
.svc-band__more svg {
  width: 20px; height: 20px;
  fill: none; stroke: #fff; stroke-width: 2;
  transition: transform .3s ease;
}

 
@media (hover: hover) and (pointer: fine) {
  .svc-band__title {
    position: absolute; top: 50%; left: 0; width: 100%; z-index: 1;
    transform: translate(0, -50%);
  }
  .svc-band:hover .svc-band__media,
  .svc-band:focus-visible .svc-band__media { opacity: 1; }
  .svc-band:hover::before,
  .svc-band:focus-visible::before { opacity: .2; }
  .svc-band:hover .svc-band__title,
  .svc-band:focus-visible .svc-band__title { opacity: 0; transform: translate(0, calc(-50% - 20px)); border-color: var(--brand); }
  .svc-band:hover .svc-band__desc,
  .svc-band:focus-visible .svc-band__desc { opacity: 1; transform: translateY(0); }
  .svc-band:hover .svc-band__more,
  .svc-band:focus-visible .svc-band__more { opacity: 1; }
  .svc-band:hover .svc-band__more svg,
  .svc-band:focus-visible .svc-band__more svg { transform: translateY(10px); }
}

 
@media (hover: none), (pointer: coarse) {
  .svc-band__title { position: static; transform: none; margin-bottom: 12px; }
  .svc-band__desc { opacity: 1; transform: none; }
  .svc-band__media { opacity: .45; }
  .svc-band__more { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .svc-band__title { position: static; transform: none; opacity: 1; margin-bottom: 12px; }
  .svc-band__desc { opacity: 1; transform: none; }
  .svc-band__media { opacity: 0; }
  .svc-band:hover .svc-band__title { opacity: 1; transform: none; }
}

.svc-band:focus-visible { outline: 3px solid var(--brand); outline-offset: -3px; }

 

 
 
@media (min-width: 820.01px) and (max-width: 1210px) {
  .site-header .nav { height: 88px; gap: 18px; }
  .site-header .brand-logo { height: 56px; }
   
  .site-header .nav-links { gap: 0; }
  .site-header .nav-links > li > a { padding: 9px 12px; font-size: 15.5px; }
  .site-header .nav-cta { gap: 13px; }
  .site-header .btn-signin { padding: 10px 16px; font-size: 14.5px; gap: 8px; }
  .site-header .nav-cta .btn-accent { padding: 13px 21px; font-size: 15.5px; }
}

 
@media (min-width: 820.01px) and (max-width: 1150px) {
  .site-header .nav { height: 84px; gap: 16px; }
  .site-header .brand-logo { height: 52px; }
  .site-header .nav-links > li > a { padding: 9px 9px; font-size: 14.5px; }
  .site-header .nav-cta { gap: 12px; }
  .site-header .btn-signin { padding: 10px 13px; font-size: 14px; gap: 7px; }
  .site-header .nav-cta .btn-accent { padding: 12px 17px; font-size: 15px; }
}

 
@media (min-width: 820.01px) and (max-width: 1060px) {
  .site-header .nav { height: 80px; gap: 14px; }
  .site-header .brand-logo { height: 46px; }
  .site-header .nav-links > li > a { padding: 8px 8px; font-size: 14px; }
  .site-header .nav-cta { gap: 10px; }
  .site-header .btn-signin { padding: 9px 10px; font-size: 13px; gap: 6px; }
  .site-header .nav-cta .btn-accent { padding: 11px 14px; font-size: 14px; }
}

 
@media (min-width: 820.01px) and (max-width: 980px) {
  .site-header .nav { height: 76px; gap: 12px; }
  .site-header .brand-logo { height: 42px; }
  .site-header .nav-links > li > a { padding: 8px 5px; font-size: 13.5px; }
  .site-header .nav-cta { gap: 8px; }
  .site-header .btn-signin { padding: 9px 9px; font-size: 12.5px; gap: 5px; }
  .site-header .nav-cta .btn-accent { padding: 10px 12px; font-size: 13.5px; }
}

 
@media (min-width: 820.01px) and (max-width: 900px) {
  .site-header .nav { height: 72px; gap: 10px; }
  .site-header .brand-logo { height: 38px; }
  .site-header .nav-links > li > a { padding: 8px 3px; font-size: 12.5px; }
  .site-header .nav-cta { gap: 6px; }
  .site-header .btn-signin { padding: 8px 8px; font-size: 12px; gap: 4px; }
  .site-header .nav-cta .btn-accent { padding: 9px 11px; font-size: 12.5px; }
}
