:root{
  --bg:#f7f8fb;
  --panel:#ffffff;
  --text:#0d1220;
  --muted:rgba(13,18,32,.72);
  --border:rgba(13,18,32,.10);
  --shadow: 0 18px 55px rgba(13,18,32,.12);
  --accent:#ff3b3b;
  --radius:16px;
  --container: 1160px;
  --font-section: "Source Serif 4", Georgia, "Times New Roman", Times, serif;
  --font-desc: "Source Serif 4", Georgia, serif;
  --font-hero: Tinos, Georgia, "Times New Roman", Times, serif;
  --color-title: #0a1628;
  --color-desc: #333333;
  --surface: #ffffff;
  --surface-soft: #f4f7fb;
  --header-bg: #ffffff;
  --nav-link: rgba(13,18,32,.78);
  --nav-link-strong: #0a1628;
  --input-bg: #f8fafc;
  --theme-toggle-bg: rgba(13,18,32,.04);
  --theme-toggle-border: rgba(13,18,32,.14);
  --theme-toggle-icon: #0a1628;
  color-scheme: light;
}
html[data-theme="dark"]{
  --bg:#070d18;
  --panel:#121a29;
  --text:#e8edf5;
  --muted:rgba(232,237,245,.7);
  --border:rgba(255,255,255,.12);
  --shadow: 0 18px 55px rgba(0,0,0,.45);
  --color-title: #f3f6fb;
  --color-desc: #c8d0dc;
  --surface: #121a29;
  --surface-soft: #0c1422;
  --header-bg: #0a0d14;
  --nav-link: #a8b0bc;
  --nav-link-strong: #ffffff;
  --input-bg: #0c1422;
  --theme-toggle-bg: rgba(255,255,255,.06);
  --theme-toggle-border: rgba(255,255,255,.16);
  --theme-toggle-icon: #f3f6fb;
  color-scheme: dark;
}

*{ box-sizing:border-box; }
html{
  height:100%;
  scrollbar-gutter: auto;
}
body{
  margin:0;
  min-height:100%;
  overflow-x: clip;
  border: 0;
  outline: 0;
  padding-top: 82px; /* space for fixed header */
  font: 16px/1.55 Inter, system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(900px 500px at 15% 0%, rgba(255,59,59,.10), transparent 60%),
    radial-gradient(900px 500px at 85% 10%, rgba(13,18,32,.06), transparent 60%),
    var(--bg);
  transition: background-color 220ms ease, color 220ms ease;
}
html[data-theme="dark"] body{
  background:
    radial-gradient(900px 500px at 15% 0%, rgba(255,59,59,.14), transparent 60%),
    radial-gradient(900px 500px at 85% 10%, rgba(80,140,220,.08), transparent 60%),
    var(--bg);
}
a{ color:inherit; text-decoration:none; }
.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip: rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

.container{
  width:min(var(--container), calc(100% - 40px));
  margin-inline:auto;
}

.skip-link{
  position:absolute;
  left:-9999px;
  top:10px;
  padding:10px 12px;
  border-radius:12px;
  background: var(--accent);
  color:#140202;
  font-weight:900;
  z-index:999;
}
.skip-link:focus{ left:10px; }

/* Header */
.site-header{
  position:fixed;
  left:0;
  right:0;
  top:0;
  width:100%;
  z-index:60;
  background:var(--header-bg);
  border-top: 3px solid var(--accent);
  border-bottom:1px solid var(--border);
  box-shadow:0 8px 24px rgba(13,18,32,.06);
  transition: box-shadow 180ms ease, background 220ms ease, border-color 220ms ease;
  backdrop-filter: blur(10px);
}
.site-header.is-scrolled{
  background:var(--header-bg);
  box-shadow: 0 10px 28px rgba(13,18,32,.12);
}
.site-header .nav-link{
  color:var(--nav-link);
}
.site-header .nav-link:hover{
  color:var(--nav-link-strong);
}
.site-header .nav-link:hover::after{
  background:rgba(13,18,32,.25);
}
.site-header .nav-link.is-active{
  color:var(--nav-link-strong);
}
.site-header .nav-link.is-active::after{
  background:var(--accent);
}
.site-header .btn-header-cta{
  background:#0d1220;
  border:1px solid #0d1220;
  color:#fff;
}
.site-header .btn-header-cta:hover{
  background:#1a2235;
}
.site-header .menu-btn{
  border-color:var(--theme-toggle-border);
  background:var(--theme-toggle-bg);
}
.site-header .menu-btn span{
  background:var(--theme-toggle-icon);
}

.header-inner{
  display:grid;
  grid-template-columns: 240px 1fr 240px;
  align-items:center;
  gap: 20px;
  padding: 14px 0;
}
.header-actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap: 10px;
}
.theme-toggle{
  width: 42px;
  height: 42px;
  display:inline-grid;
  place-items:center;
  border-radius: 12px;
  border: 1px solid var(--theme-toggle-border);
  background: var(--theme-toggle-bg);
  color: var(--theme-toggle-icon);
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}
.theme-toggle:hover{
  transform: translateY(-1px);
  border-color: rgba(255, 59, 59, .35);
}
.theme-toggle:focus-visible{
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.theme-toggle__moon{ display: none; }
html[data-theme="dark"] .theme-toggle__sun{ display: none; }
html[data-theme="dark"] .theme-toggle__moon{ display: block; }
.brand{
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  width: fit-content;
  max-width: 100%;
  min-width: 0;
  line-height: 0;
  text-decoration: none;
}
.brand-logo{
  display: block;
  height: 48px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  flex-shrink: 0;
}
.brand-logo--dark{
  display: none;
}

.nav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 22px;
  flex-wrap: wrap;
}
.nav-link{
  color: rgba(13,18,32,.72);
  font-weight:600;
  letter-spacing:.35px;
  padding: 10px 0;
  font-size: 13px;
  text-transform: uppercase;
  position:relative;
  transition: color 160ms ease;
  white-space: nowrap;
}
.nav-link::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom: 4px;
  height: 2px;
  background: transparent;
  transition: background 160ms ease;
}
.nav-link:hover{
  color: rgba(13,18,32,.95);
}
.nav-link:hover::after{
  background: rgba(13,18,32,.25);
}
.nav-link.is-active{
  color: rgba(13,18,32,.98);
  font-weight:700;
}
.nav-link.is-active::after{
  background: var(--accent);
}

.nav-item{
  position: relative;
  display: flex;
  align-items: center;
}
.nav-item .nav-link{
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-caret{
  display: block;
  flex: 0 0 auto;
  transition: transform 160ms ease;
}
.nav-item.is-open .nav-caret,
.nav-item:hover .nav-caret,
.nav-item:focus-within .nav-caret{
  transform: rotate(180deg);
}
.nav-dropdown{
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 240px;
  padding: 8px;
  background: #ffffff;
  border: 1px solid rgba(13, 18, 32, .1);
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(10, 22, 40, .12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  z-index: 70;
}
.nav-dropdown::before{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  height: 14px;
}
.nav-item.is-open .nav-dropdown,
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-link{
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .2px;
  line-height: 1.3;
  color: rgba(13, 18, 32, .78);
  text-transform: none;
  white-space: nowrap;
  transition: background 140ms ease, color 140ms ease;
}
.nav-dropdown-link:hover,
.nav-dropdown-link:focus-visible{
  background: rgba(255, 59, 59, .06);
  color: #0a1628;
}
.nav-dropdown-link.is-active{
  background: rgba(255, 59, 59, .08);
  color: #ff3b3b;
}

.header-actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap: 10px;
}

.btn-header-cta{
  border-radius: 4px;
  background: #0d1220;
  border: 1px solid #0d1220;
  color: #fff;
  padding: 10px 18px;
  font-size: 13px;
  font-weight:700;
  letter-spacing:.2px;
  box-shadow: none;
  transition: background 160ms ease, transform 140ms ease;
}
.btn-header-cta:hover{
  background: #1a2235;
  filter: none;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 11px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-weight:800;
  letter-spacing:.15px;
  cursor:pointer;
  user-select:none;
  background: rgba(13,18,32,.04);
  transition: transform 140ms ease, background 140ms ease, box-shadow 140ms ease, border-color 140ms ease;
}
.btn:active{ transform: translateY(1px); }
.btn:hover{ background: rgba(13,18,32,.06); }
.btn-ghost{
  background: rgba(13,18,32,.03);
}
.btn-accent{
  background: linear-gradient(135deg, rgba(255,59,59,.98), rgba(255,59,59,.78));
  color:#160202;
  border-color: rgba(13,18,32,.06);
  box-shadow: 0 14px 30px rgba(255,59,59,.18);
}
.btn-accent:hover{ filter: brightness(1.02); }

.menu-btn{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(13,18,32,.03);
  display:none;
}
.menu-btn span{
  display:block;
  width: 18px;
  height: 2px;
  background: rgba(13,18,32,.92);
  margin: 4px auto;
  border-radius: 2px;
}

/* Mobile menu */
.mobile-panel{
  display: none;
  border-top: 1px solid rgba(13,18,32,.10);
  background: #ffffff;
}
.mobile-panel.is-open{
  display: block;
}
.mobile-inner{
  padding: 14px 0 18px;
}
.mobile-links{
  display: grid;
  gap: 8px;
}
.mobile-links a{
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(13,18,32,.10);
  background: #fff;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .3px;
  color: rgba(13,18,32,.88);
}
.mobile-links a:hover{
  background: rgba(13,18,32,.04);
  color: rgba(13,18,32,.96);
}
.mobile-links a.is-active{
  border-color: rgba(255, 59, 59, .28);
  color: #ff3b3b;
}
.mobile-cta{
  margin-top: 8px;
  width: 100%;
  justify-content: center;
  min-height: 48px;
  border-radius: 12px;
  background: #ff3b3b;
  border: 1px solid #ff3b3b;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: none;
}
.mobile-cta:hover{
  background: #e62f2f;
  color: #ffffff;
}
.mobile-details{
  border: 1px solid rgba(13,18,32,.10);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}
.mobile-details summary{
  list-style: none;
  cursor: pointer;
  padding: 12px 14px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .3px;
  color: rgba(13,18,32,.88);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.mobile-details summary::-webkit-details-marker{ display: none; }
.mobile-details summary::after{
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(13,18,32,.55);
  border-bottom: 2px solid rgba(13,18,32,.55);
  transform: rotate(45deg);
  transition: transform 160ms ease;
  flex: 0 0 auto;
}
.mobile-details[open] summary::after{
  transform: rotate(225deg);
  margin-top: 4px;
}
.mobile-sublinks{
  display: grid;
  gap: 6px;
  padding: 0 10px 10px;
}
.mobile-sublinks a{
  text-transform: none;
  letter-spacing: .15px;
  font-size: 13.5px;
  background: rgba(13,18,32,.02);
}

/* Page demo content */
.hero{
  padding: 0;
  border-bottom: 0;
  position: relative;
}

/* Hero slider */
.hero-slider{
  position:relative;
  border-radius: 0;
  overflow:hidden;
  border: 0;
  box-shadow: none;
  background: #000;
}
.hero-slides{
  position:relative;
  min-height: clamp(550px, 70vh, 650px);
}
.hero-slide{
  position:absolute;
  inset:0;
  opacity:0;
  transform: translateY(6px) scale(.995);
  transition: opacity 520ms ease, transform 520ms ease;
  background-color: #000;
  overflow: hidden;
}
.hero-slide-media{
  position:absolute;
  inset:0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  filter: saturate(1.05) contrast(1.02) brightness(1);
  pointer-events: none;
}
.hero-slide::before{
  display:none;
}
.hero-slide::after{
  content:"";
  position:absolute;
  inset:0;
  z-index: 1;
  /* Darken bright slide photos so white hero copy stays readable on every slide */
  background:
    linear-gradient(
      108deg,
      rgba(5, 13, 27, .82) 0%,
      rgba(5, 13, 27, .62) 36%,
      rgba(5, 13, 27, .48) 66%,
      rgba(5, 13, 27, .56) 100%
    ),
    linear-gradient(
      180deg,
      rgba(5, 13, 27, .42) 0%,
      rgba(5, 13, 27, .28) 45%,
      rgba(5, 13, 27, .68) 100%
    );
  pointer-events:none;
}
.hero-slide .hero-overlay{
  opacity: 0;
  transform: translateY(14px);
}
.hero-slide.is-active{
  opacity:1;
  transform: translateY(0) scale(1);
  z-index:1;
}
.hero-slide.is-active .hero-slide-media{
  animation: hero-kenburns 7.8s ease-in-out both;
}
.hero-slide.is-active .hero-overlay{
  animation: hero-fade-up 620ms cubic-bezier(.2,.8,.2,1) 80ms both;
}
.hero-slide.is-active .hero-badge{
  animation: hero-fade-up 620ms cubic-bezier(.2,.8,.2,1) 0ms both;
}
.hero-slide.is-active .hero-title{
  animation: hero-fade-up 700ms cubic-bezier(.2,.8,.2,1) 90ms both;
}
.hero-slide.is-active .hero-lead{
  animation: hero-fade-up 760ms cubic-bezier(.2,.8,.2,1) 160ms both;
}
.hero-slide.is-active .hero-cta{
  animation: hero-fade-up 820ms cubic-bezier(.2,.8,.2,1) 230ms both;
}

/* Decorative floating accents (subtle, brand-friendly) */
.hero-slider::before,
.hero-slider::after{
  content:"";
  position:absolute;
  width: 460px;
  height: 460px;
  border-radius: 999px;
  pointer-events:none;
  z-index:1;
  opacity:.40;
  filter: blur(2px);
  mix-blend-mode: multiply;
}
.hero-slider::before,
.hero-slider::after{
  display:none;
}
.hero-slider::before{
  left: -180px;
  top: -180px;
  background: radial-gradient(circle at 30% 30%, rgba(255,59,59,.28), rgba(255,59,59,0) 62%);
  animation: hero-float-1 9.5s ease-in-out infinite;
}
.hero-slider::after{
  right: -200px;
  bottom: -220px;
  background: radial-gradient(circle at 30% 30%, rgba(13,18,32,.12), rgba(13,18,32,0) 66%);
  animation: hero-float-2 12s ease-in-out infinite;
}
.hero-overlay{
  position:relative;
  z-index:2;
  min-height: clamp(560px, 72vh, 680px);
  padding: 96px 0 108px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
}
.hero-grid{
  display:grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items:center;
  justify-items:center;
  width: 100%;
}
.hero-left{
  max-width: min(1080px, 94vw);
  width: 100%;
  margin-inline: auto;
  padding-right: 56px;
  padding-left: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
}
.hero-badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  margin: 0 auto 20px;
  padding: 8px 14px 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1;
}
.hero-badge-label{
  color: rgba(255,255,255,.78);
}
.hero-badge-sep{
  width: 1px;
  height: 12px;
  background: rgba(255,255,255,.28);
}
.hero-badge-num{
  color: #ff3b3b;
  letter-spacing: .12em;
}
.hero-title{
  margin: 0 auto 16px;
  max-width: none;
  font-family: var(--font-hero);
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.08;
  letter-spacing: -.01em;
  font-weight: 900;
  font-style: normal;
  color: #ffffff;
  text-align: center;
  text-shadow:
    0 1px 2px rgba(0,0,0,.55),
    0 10px 28px rgba(0,0,0,.45);
  white-space: normal;
  overflow-wrap: break-word;
}
.hero-lead{
  margin: 0 auto 32px;
  max-width: 46ch;
  font-family: var(--font-desc);
  font-size: clamp(16px, 1.45vw, 18px);
  line-height: 1.6;
  font-weight: 300;
  letter-spacing: .01em;
  color: rgba(255, 255, 255, .94);
  text-align: center;
  text-shadow:
    0 1px 2px rgba(0,0,0,.5),
    0 8px 22px rgba(0,0,0,.4);
}
.hero-cta{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
}
.hero-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 8px;
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .01em;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease, gap 160ms ease;
}
.hero-btn--primary{
  background: #ff3b3b;
  border: 1px solid #ff3b3b;
  color: #ffffff;
}
.hero-btn--primary:hover{
  background: #e83333;
  transform: translateY(-1px);
  gap: 11px;
}
.hero-btn--ghost{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.42);
  color: #ffffff;
}
.hero-btn--ghost:hover{
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.7);
}
.hero-right{
  justify-self:end;
  width:min(440px, 100%);
  background: rgba(0,0,0,.42);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 16px;
  padding: 16px 16px;
  backdrop-filter: blur(10px);
}
.hero-panel-title{
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 1000;
  letter-spacing:.2px;
  color: rgba(255,255,255,.92);
}
.hero-list{
  margin:0;
  padding-left: 18px;
  color: rgba(255,255,255,.88);
  font-weight: 700;
}
.hero-list li{ margin: 8px 0; }

.hero-controls{
  display:none;
}
.hero-indicators{
  position:absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 8;
  pointer-events: none;
}
.hero-indicators--left{
  display: none;
}
.hero-indicators--right{
  right: 22px;
  display:flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}
.hero-arrow{
  position:absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index:4;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(0,0,0,.35);
  color: rgba(255,255,255,.92);
  font-size: 24px;
  font-weight: 1000;
  cursor:pointer;
  backdrop-filter: blur(10px);
}
.hero-arrow:hover{ background: rgba(0,0,0,.50); }
.hero-arrow-left{ display: none; }
.hero-arrow-right{ right: 52px; }
.hero-counter{
  position: relative;
  display:flex;
  align-items:stretch;
  justify-content:flex-end;
  padding-left: 0;
}
.hero-counter-steps{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap: 16px;
}
.hero-dot{
  position: relative;
  display:inline-flex;
  align-items:center;
  justify-content:flex-end;
  gap: 10px;
  min-width: 40px;
  min-height: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.5);
  font-family: Inter, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  cursor: pointer;
  transition: color 220ms ease;
}
.hero-dot::before{
  content: "";
  order: -1;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255,255,255,.35);
  transition: width 220ms ease, background 220ms ease;
}
.hero-dot:hover{
  color: rgba(255,255,255,.9);
}
.hero-dot:hover::before{
  background: rgba(255,255,255,.75);
}
.hero-dot[aria-selected="true"]{
  color: #ff3b3b;
}
.hero-dot[aria-selected="true"]::before{
  width: 28px;
  background: #ff3b3b;
}

/* Hero services ticker bar */
.hero-services-bar{
  position: relative;
  z-index: 5;
  width: 100%;
  background: #0a1628;
  border-top: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
  padding: 14px 0;
}
.hero-services-track{
  display:flex;
  align-items:center;
  width: max-content;
  gap: 0;
  animation: heroServicesMarquee 16s linear infinite;
  will-change: transform;
}
.hero-services-bar:hover .hero-services-track{
  animation-play-state: paused;
}
.hero-services-item{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  white-space: nowrap;
  padding: 0 6px 0 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .2px;
  color: rgba(255,255,255,.92);
}
.hero-services-dot{
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffffff;
  flex-shrink: 0;
}
.hero-services-sep{
  margin-left: 10px;
  color: rgba(255,255,255,.35);
  font-weight: 500;
}
@keyframes heroServicesMarquee{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce){
  .hero-services-track{
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    row-gap: 8px;
    padding: 0 16px;
  }
}

.kicker{
  width: fit-content;
  margin: 0 0 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.40);
  color: rgba(255,255,255,.90);
  font-weight: 900;
  letter-spacing:.25px;
}
.kicker-dark{
  border-color: rgba(255,255,255,.18);
  background: rgba(0,0,0,.42);
  color: rgba(255,255,255,.92);
}
.h1{
  margin:0 0 10px;
  font-size: clamp(32px, 4.2vw, 52px);
  line-height:1.06;
  letter-spacing:-.7px;
}
.h2{
  margin:0 0 8px;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing:-.4px;
}
.lead{
  margin: 0 0 16px;
  color: rgba(255,255,255,.86);
  max-width: 66ch;
  font-size: 18px;
}
.muted{ color: var(--muted); }
.cta-row{ display:flex; gap: 12px; flex-wrap:wrap; }

.btn-ghost-light{
  border-color: rgba(255,255,255,.26);
  background: rgba(255,255,255,.10);
  color: rgba(255,255,255,.92);
}
.btn-ghost-light:hover{
  background: rgba(255,255,255,.16);
}

.section{
  padding: 64px 0;
}
.section-alt{
  background: rgba(13,18,32,.02);
  border-top: 1px solid rgba(13,18,32,.07);
  border-bottom: 1px solid rgba(13,18,32,.07);
}

/* Home: About (section 2, modern) */
.home-about2{
  position: relative;
  overflow: visible;
  background: #ffffff;
  padding-bottom: 0;
}
.home-about2 .container{
  width: min(1320px, calc(100% - 48px));
}
.home-about2::before,
.home-about2::after{
  display: none;
}
.about2{ position: relative; z-index: 1; }

.about2-top{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items:start;
  margin-bottom: 0;
  padding-bottom: 24px;
}
.about2-copy{
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}
.about2-eyebrow{
  margin: 0 0 14px;
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
  font-size: 12px;
  color: #ff3b3b;
  display:flex;
  align-items:center;
  gap: 10px;
}
.about2-eyebrow::after{
  content:"";
  height: 2px;
  width: 48px;
  border-radius: 999px;
  background: rgb(255, 59, 59);
  margin-left: 4px;
}
.about2-title{
  margin: 0 0 16px;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.12;
  letter-spacing: -.6px;
  color: #0a1628;
  font-weight: 900;
}
.about2-accent-underline{
  color: #ff3b3b;
  position: relative;
  display: inline-block;
}
.about2-accent-underline::after{
  content:"";
  position:absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 10px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 12' preserveAspectRatio='none'%3E%3Cpath d='M0 8 Q50 2 100 6 T200 4' stroke='%23ff3b3b' stroke-width='3' fill='none' opacity='.55'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
  pointer-events:none;
}
.about2-lead{
  margin: 0 0 14px;
  color: rgba(13,18,32,.68);
  font-size: 15px;
  line-height: 1.8;
  max-width: 56ch;
}
.about2-copy-divider{
  width: 48px;
  height: 2px;
  background: rgb(255, 59, 59);
  border-radius: 999px;
  margin: 0 0 14px;
}
.about2-body{
  margin: 0 0 28px;
  color: rgba(13,18,32,.64);
  font-size: 14.5px;
  line-height: 1.8;
  max-width: 56ch;
}

.about2-mini-stats{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}
.about2-mini{
  text-align:center;
  padding: 0 4px;
  border-radius: 0;
  border: 0;
  background: transparent;
}
.about2-mini-ico{
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  margin: 0 auto 12px;
  background: rgba(24,96,255,.08);
  border: 1px solid rgba(24,96,255,.14);
  color: #1860ff;
  font-size: 20px;
}
.about2-mini-num{
  font-weight: 900;
  font-size: 26px;
  letter-spacing: -.4px;
  color: #ff3b3b;
  margin-bottom: 6px;
  line-height: 1;
}
.about2-mini-label{
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(7, 7, 8, 0.753);
  padding-bottom: 14px;
  position: relative;
  line-height: 1.4;
}
.about2-mini-label::after{
  content:"";
  position:absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: rgb(255, 59, 59);
}

.about2-media{
  position: relative;
  min-height: 520px;
  padding-bottom: 70px;
  align-self: start;
}
.about2-image{
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 0;
  background: rgba(13,18,32,.04);
  box-shadow: 0 24px 64px rgba(13,18,32,.14);
  height: 100%;
  min-height: 520px;
}
.about2-image::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,.35) 100%),
    linear-gradient(90deg, rgba(0,0,0,0) 60%, rgba(0,0,0,.12) 100%);
  pointer-events:none;
  z-index: 1;
}
.about2-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display:block;
}

.about2-panel{
  position:absolute;
  right: -10px;
  bottom: -8px;
  width: min(318px, 78%);
  border-radius: 18px;
  padding: 20px 20px;
  color: rgba(255,255,255,.95);
  background: #0b1f3f;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 28px 70px rgba(6,20,40,.42);
  z-index: 3;
}
.about2-panel-item{
  display:flex;
  gap: 14px;
  align-items:flex-start;
}
.about2-panel-ico{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  background: rgba(24,96,255,.22);
  border: 1px solid rgba(255,255,255,.18);
  flex: 0 0 auto;
  color: #fff;
}
.about2-panel-title{
  font-weight: 800;
  font-size: 13px;
  margin: 2px 0 5px;
  letter-spacing: -.1px;
  color: #fff;
  line-height: 1.3;
}
.about2-panel-text{
  font-size: 11.5px;
  line-height: 1.55;
  color: rgba(255,255,255,.62);
}
.about2-panel-divider{
  height: 1px;
  background: rgba(24,96,255,.28);
  margin: 16px 0;
}

.about2-stats{
  border-radius: 20px;
  padding: 18px 18px;
  border: 1px solid rgba(13,18,32,.10);
  background:
    radial-gradient(900px 500px at 10% 0%, rgba(255,59,59,.16), rgba(255,59,59,0) 52%),
    linear-gradient(180deg, rgba(10,16,30,.98), rgba(10,16,30,.92));
  box-shadow: 0 26px 70px rgba(13,18,32,.18);
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 22px 0 26px;
  color: rgba(255,255,255,.90);
}
.about2-stat{
  border-radius: 18px;
  padding: 14px 14px;
  border: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.03);
}
.about2-stat-top{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap: 10px;
  margin-bottom: 6px;
}
.about2-stat-icon{
  width: 34px;
  height: 34px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  font-size: 16px;
}
.about2-stat-num{
  font-weight: 1000;
  font-size: 22px;
  letter-spacing: -.3px;
}
.about2-stat-label{
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .22px;
  text-transform: uppercase;
  color: rgba(255,255,255,.86);
  margin-bottom: 4px;
}
.about2-stat-text{
  font-size: 12.5px;
  line-height: 1.55;
  color: rgba(255,255,255,.72);
}

.about2-values-wrap{
  margin: 0;
  padding: 8px 0 56px;
  background: #ffffff;
}
.about2-values-wrap .container{
  width: min(1320px, calc(100% - 48px));
}
.about2-values-panel{
  border-radius: 18px;
  border: 1px solid rgba(13,18,32,.08);
  background: #eef2f7;
  padding: 34px 28px 38px;
}
.about2-values-panel .about2-subeyebrow{
  margin: 0 0 30px;
  font-weight: 800;
  letter-spacing: .55px;
  text-transform: uppercase;
  font-size: 12px;
  color: #0a2540;
}
.about2-subeyebrow--center{
  justify-content:center;
  display:flex;
  align-items:center;
  gap: 16px;
  text-align:center;
}
.about2-subeyebrow--center::before,
.about2-subeyebrow--center::after{
  content:"";
  height: 1px;
  flex: 1;
  max-width: 120px;
  background: rgba(24,96,255,.35);
  border-radius: 999px;
}
.about2-values-grid{
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  align-items: start;
}
.about2-value{
  position: relative;
  border-radius: 0;
  border: 0;
  background: transparent;
  padding: 4px 22px 8px;
  box-shadow: none;
  text-align:center;
}
.about2-value + .about2-value::before{
  content:"";
  position:absolute;
  left: 0;
  top: 8%;
  height: 84%;
  width: 1px;
  background: rgba(13,18,32,.12);
}
.about2-value-icon{
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  margin-bottom: 16px;
  background: rgba(24,96,255,.12);
  border: 1px solid rgba(24,96,255,.18);
  color: #1860ff;
  margin-left:auto;
  margin-right:auto;
}
.about2-value-title{
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 10px;
  color: #0a1628;
}
.about2-value-text{
  font-size: 12.5px;
  line-height: 1.7;
  color: rgba(13,18,32,.60);
  max-width: 22ch;
  margin: 0 auto;
}

.about2-who{
  border-radius: 18px;
  border: 1px solid rgba(13,18,32,.10);
  background: rgba(255,255,255,.92);
  padding: 18px;
}
.about2-who-title{
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 1000;
  letter-spacing: -.2px;
  color: rgba(13,18,32,.94);
}
.about2-who-text{
  margin: 0 0 14px;
  font-size: 13.5px;
  line-height: 1.75;
  color: rgba(13,18,32,.68);
}
.about2-sign{
  font-weight: 1000;
  letter-spacing: -.4px;
  font-size: 18px;
  color: rgba(13,18,32,.84);
  opacity: .95;
}

@media (max-width: 1100px){
  .about2-values-grid{ grid-template-columns: repeat(5, 1fr); }
}
@media (max-width: 980px){
  .about2-top{ grid-template-columns: 1fr; gap: 32px; }
  .about2-media{ min-height: auto; padding-bottom: 24px; }
  .about2-image{ min-height: 340px; }
  .about2-panel{
    right: 12px;
    bottom: -16px;
    width: min(300px, 92%);
  }
  .about2-mini-stats{ grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .about2-values-wrap{
    padding: 0 0 36px;
  }
  .about2-values-panel{
    padding: 22px 16px 24px;
  }
  .about2-values-grid{ grid-template-columns: 1fr; }
  .about2-value + .about2-value::before{ display: none; }
  .about2-value + .about2-value{
    border-top: 1px solid rgba(13,18,32,.10);
    padding-top: 22px;
    margin-top: 22px;
  }
  .about2-value{ padding: 0; }
}

@media (max-width: 820px){
  .about2-values-grid{ grid-template-columns: repeat(2, 1fr); }
  .about2-value + .about2-value::before{ display: none; }
  .about2-value:nth-child(2n)::before{
    display: block;
    left: 0;
    top: 12%;
    height: 76%;
  }
  .about2-value:nth-child(n+3){
    border-top: 1px solid rgba(13,18,32,.10);
    padding-top: 22px;
    margin-top: 22px;
  }
}

@media (max-width: 520px){
  .about2-values-grid{ grid-template-columns: 1fr; }
}

/* Home: Services */
.home-services{
  background: #f4f7fb;
  padding-top: 72px;
  padding-bottom: 88px;
}
.home-services .container{
  width: min(1320px, calc(100% - 48px));
}
.services2-layout{
  display:grid;
  grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
  gap: clamp(32px, 4vw, 56px);
  align-items:start;
}
.services2-intro{
  position: sticky;
  top: 100px;
}
.services2-eyebrow{
  margin: 0 0 14px;
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
  font-size: 12px;
  color: #ff3b3b;
  display:flex;
  align-items:center;
  gap: 10px;
}
.services2-eyebrow::after{
  content:"";
  height: 2px;
  width: 48px;
  border-radius: 999px;
  background: #ff3b3b;
}
.services2-title{
  margin: 0 0 16px;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.14;
  letter-spacing: -.55px;
  font-weight: 900;
  color: #0a1628;
}
.services2-accent-underline{
  color: #ff3b3b;
  position: relative;
  display: inline-block;
}
.services2-accent-underline::after{
  content:"";
  position:absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 10px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 12' preserveAspectRatio='none'%3E%3Cpath d='M0 8 Q50 2 100 6 T200 4' stroke='%23ff3b3b' stroke-width='3' fill='none' opacity='.55'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
  pointer-events:none;
}
.services2-lead{
  margin: 0 0 28px;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(13,18,32,.68);
  max-width: 42ch;
}
.services2-actions{
  display:flex;
  gap: 14px;
  flex-wrap:wrap;
}
.services2-btn{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .2px;
  text-decoration:none;
  cursor:pointer;
  overflow:hidden;
  border: 2px solid transparent;
  transition:
    color 280ms ease,
    background 280ms ease,
    border-color 280ms ease,
    box-shadow 280ms ease,
    transform 280ms cubic-bezier(.2,.8,.2,1);
}
.services2-btn:active{
  transform: translateY(1px) scale(.99);
}
.services2-btn--primary{
  color: #fff;
  background: #ff3b3b;
  border-color: #ff3b3b;
  box-shadow: 0 10px 28px rgba(255,59,59,.28);
}
.services2-btn--primary::before{
  content:"";
  position:absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.22) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 600ms ease;
}
.services2-btn--primary:hover{
  background: #e63232;
  border-color: #e63232;
  box-shadow: 0 14px 36px rgba(255,59,59,.38);
  transform: translateY(-2px);
}
.services2-btn--primary:hover::before{
  transform: translateX(120%);
}
.services2-btn-arrow{
  flex-shrink: 0;
  transition: transform 280ms cubic-bezier(.2,.8,.2,1);
}
.services2-btn--primary:hover .services2-btn-arrow{
  transform: translateX(4px);
}
.services2-btn--outline{
  color: #0a1628;
  background: #ffffff;
  border-color: rgba(13,18,32,.14);
  box-shadow: 0 6px 20px rgba(13,18,32,.06);
}
.services2-btn--outline:hover{
  color: #ff3b3b;
  background: #fff;
  border-color: rgba(255,59,59,.45);
  box-shadow: 0 10px 28px rgba(255,59,59,.12);
  transform: translateY(-2px);
}
.services2-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.services2-card{
  position:relative;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  text-decoration:none;
  background: #ffffff;
  border: 1px solid rgba(13,18,32,.08);
  border-radius: 14px;
  padding: 26px 24px 24px;
  min-height: 196px;
  transition: border-color 220ms ease, box-shadow 220ms ease;
}
.services2-card::after{
  content:"";
  position:absolute;
  bottom: 22px;
  right: 22px;
  width: 18px;
  height: 18px;
  opacity: 0;
  transform: translate(-4px, 4px);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7 17L17 7M17 7H9M17 7v8' stroke='%23ff3b3b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: opacity 220ms ease, transform 220ms ease;
}
.services2-card:hover{
  border-color: rgba(255,59,59,.28);
  box-shadow: 0 12px 36px rgba(13,18,32,.08);
}
.services2-card:hover::after{
  opacity: 1;
  transform: translate(0, 0);
}
.services2-card-num{
  position:absolute;
  top: 20px;
  right: 22px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  color: rgba(13,18,32,.18);
  line-height: 1;
  transition: color 220ms ease;
}
.services2-card:hover .services2-card-num{
  color: rgba(255,59,59,.35);
}
.services2-card-icon{
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display:grid;
  place-items:center;
  margin-bottom: 18px;
  background: #fff;
  border: 1px solid rgba(255,59,59,.22);
  color: #ff3b3b;
  box-shadow: 0 0 0 6px rgba(255,59,59,.06);
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}
.services2-card:hover .services2-card-icon{
  background: #ff3b3b;
  border-color: #ff3b3b;
  color: #fff;
  box-shadow: 0 0 0 6px rgba(255,59,59,.12);
}
.services2-card-title{
  margin: 0 0 10px;
  padding-right: 28px;
  font-size: 15.5px;
  font-weight: 800;
  line-height: 1.35;
  color: #0a1628;
  letter-spacing: -.2px;
}
.services2-card-text{
  margin: 0;
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(13,18,32,.58);
}

@media (max-width: 1024px){
  .services2-layout{
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .services2-intro{
    position: static;
    max-width: 640px;
  }
}
@media (max-width: 640px){
  .home-services{
    padding-top: 56px;
    padding-bottom: 64px;
  }
  .services2-grid{
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .services2-card{
    min-height: 0;
    padding: 22px 20px 20px;
  }
  .services2-actions{
    flex-direction: column;
  }
  .services2-btn{
    width: 100%;
  }
}

/* Home: Technologies */
.home-tech{
  background: #ffffff;
  padding-top: 80px;
  padding-bottom: 96px;
}
.home-tech .container{
  width: min(1320px, calc(100% - 48px));
}
.tech2-head{
  text-align:center;
  max-width: 760px;
  margin: 0 auto 52px;
}
.tech2-eyebrow{
  margin: 0 0 14px;
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
  font-size: 12px;
  color: #ff3b3b;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
}
.tech2-eyebrow::before,
.tech2-eyebrow::after{
  content:"";
  height: 2px;
  width: 40px;
  border-radius: 999px;
  background: #ff3b3b;
}
.tech2-title{
  margin: 0;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap: 6px;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.1;
  letter-spacing: -.6px;
  font-weight: 900;
  color: #0a1628;
}
.tech2-title-line{
  display:block;
}
.tech2-accent-underline{
  color: #ff3b3b;
  position: relative;
  display: inline-block;
}
.tech2-accent-underline::after{
  content:"";
  position:absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 10px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 12' preserveAspectRatio='none'%3E%3Cpath d='M0 8 Q50 2 100 6 T200 4' stroke='%23ff3b3b' stroke-width='3' fill='none' opacity='.55'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
  pointer-events:none;
}
.tech2-scroll-area{
  display:flex;
  flex-direction:column;
  gap: 28px;
  margin-top: 8px;
}
.tech2-scroll-row{
  display:flex;
  flex-direction:column;
  gap: 14px;
}
.tech2-row-label{
  margin: 0;
  padding: 0 min(24px, 4vw);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .45px;
  text-transform: uppercase;
  color: rgba(13,18,32,.45);
}
.tech2-marquee{
  position:relative;
  overflow:hidden;
  width: 100%;
  padding: 6px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.tech2-marquee-track{
  display:flex;
  width: max-content;
  will-change: transform;
}
.tech2-marquee--ltr .tech2-marquee-track{
  animation: tech2-scroll-ltr 16s linear infinite;
}
.tech2-marquee--rtl .tech2-marquee-track{
  animation: tech2-scroll-rtl 14s linear infinite;
}
.tech2-marquee:hover .tech2-marquee-track{
  animation-play-state: paused;
}
.tech2-marquee-group{
  display:flex;
  align-items:center;
  gap: 18px;
  padding-right: 18px;
}
.tech2-marquee-item{
  flex: 0 0 auto;
  display:flex;
  align-items:center;
  gap: 12px;
  padding: 10px 16px;
  background: #ffffff;
  border: 1px solid rgba(13,18,32,.08);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(13,18,32,.06);
  transition: border-color 240ms ease, box-shadow 240ms ease, transform 240ms ease;
}
.tech2-marquee-item:hover{
  border-color: rgba(255,59,59,.28);
  box-shadow: 0 12px 28px rgba(255,59,59,.12);
  transform: translateY(-2px);
}
.tech2-logo{
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  display:flex;
  align-items:center;
  justify-content:center;
  background: #ffffff;
  border: 1px solid rgba(13,18,32,.08);
  overflow:hidden;
}
.tech2-logo img{
  max-width: 28px;
  max-height: 28px;
  width: auto;
  height: auto;
  object-fit: contain;
  display:block;
}
.tech2-name{
  margin: 0;
  padding-right: 4px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  color: #0a1628;
  letter-spacing: -.1px;
  white-space: nowrap;
}
@keyframes tech2-scroll-ltr{
  from{ transform: translateX(0); }
  to{ transform: translateX(calc(-100% / 3)); }
}
@keyframes tech2-scroll-rtl{
  from{ transform: translateX(calc(-100% / 3)); }
  to{ transform: translateX(0); }
}

@media (max-width: 820px){
  .home-tech{
    padding-top: 60px;
    padding-bottom: 72px;
  }
  .tech2-head{
    margin-bottom: 36px;
  }
  .tech2-scroll-area{
    gap: 22px;
  }
  .tech2-marquee-group{
    gap: 12px;
    padding-right: 12px;
  }
  .tech2-marquee-item{
    padding: 8px 14px;
    gap: 10px;
  }
  .tech2-logo{
    width: 40px;
    height: 40px;
  }
  .tech2-logo img{
    max-width: 24px;
    max-height: 24px;
  }
  .tech2-name{
    font-size: 12px;
  }
}

/* Home: Blogs */
.home-blogs{
  background: #f4f7fb;
  padding-top: 72px;
  padding-bottom: 88px;
}
/* Home: FAQ */
.home-faqs{
  position: relative;
  background:
    radial-gradient(ellipse 70% 55% at 8% 20%, rgba(255,59,59,.07), transparent 60%),
    linear-gradient(180deg, #f6f8fc 0%, #ffffff 48%, #f6f8fc 100%);
  padding-top: 88px;
  padding-bottom: 96px;
  overflow: hidden;
}
.home-faqs .container{
  width: min(1180px, calc(100% - 48px));
}
.faqs3-layout{
  display: grid;
  grid-template-columns: minmax(240px, 0.92fr) minmax(0, 1.35fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}
.faqs3-intro{
  position: sticky;
  top: 112px;
  padding: 28px 26px;
  border-radius: 22px;
  background: linear-gradient(165deg, #0a1628 0%, #132744 100%);
  color: #ffffff;
  box-shadow: 0 24px 50px rgba(10,22,40,.18);
}
.faqs3-eyebrow{
  margin: 0 0 16px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 11px;
  color: #ff6b6b;
}
.faqs3-title{
  margin: 0 0 16px;
  font-family: var(--font-section);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.15;
  letter-spacing: -.55px;
  font-weight: 900;
  color: #ffffff;
}
.faqs3-accent{
  color: #ff3b3b;
}
.faqs3-lead{
  margin: 0 0 26px;
  font-family: var(--font-desc);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,.72);
  max-width: 34ch;
}
.faqs3-cta{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #ff3b3b;
  color: #ffffff;
  font-family: var(--font-section);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}
.faqs3-cta:hover{
  background: #e62e2e;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(255,59,59,.35);
  color: #ffffff;
}
.faqs3-cta svg{
  flex-shrink: 0;
  transition: transform 200ms ease;
}
.faqs3-cta:hover svg{
  transform: translateX(3px);
}
.faqs3-list{
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(13,18,32,.1);
}
.faqs3-item{
  margin: 0;
  border-bottom: 1px solid rgba(13,18,32,.1);
}
.faqs3-summary{
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px 22px 0;
  font-family: var(--font-section);
  transition: color 180ms ease;
}
.faqs3-summary::-webkit-details-marker{
  display: none;
}
.faqs3-q{
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -.25px;
  color: #0a1628;
  transition: color 180ms ease;
}
.faqs3-item:hover .faqs3-q,
.faqs3-item[open] .faqs3-q{
  color: #ff3b3b;
}
.faqs3-toggle{
  width: 34px;
  height: 34px;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  background: rgba(13,18,32,.04);
  transition: background 200ms ease, transform 220ms ease;
}
.faqs3-toggle::before,
.faqs3-toggle::after{
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: #0a1628;
  transition: transform 220ms ease, background 200ms ease, opacity 200ms ease;
}
.faqs3-toggle::before{
  width: 12px;
  height: 2px;
  transform: translate(-50%, -50%);
}
.faqs3-toggle::after{
  width: 2px;
  height: 12px;
  transform: translate(-50%, -50%);
}
.faqs3-item[open] .faqs3-toggle{
  background: #ff3b3b;
  transform: rotate(90deg);
}
.faqs3-item[open] .faqs3-toggle::before,
.faqs3-item[open] .faqs3-toggle::after{
  background: #ffffff;
}
.faqs3-item[open] .faqs3-toggle::after{
  opacity: 0;
  transform: translate(-50%, -50%) scaleY(0);
}
.faqs3-answer{
  padding: 0 48px 24px 0;
  max-width: 58ch;
}
.faqs3-answer p{
  margin: 0;
  font-family: var(--font-desc);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(13,18,32,.68);
}
html[data-theme="dark"] .home-faqs{
  background:
    radial-gradient(ellipse 70% 55% at 8% 20%, rgba(255,59,59,.1), transparent 60%),
    var(--bg);
}
html[data-theme="dark"] .faqs3-intro{
  background: linear-gradient(165deg, #101826 0%, #172338 100%);
  box-shadow: 0 24px 50px rgba(0,0,0,.35);
}
html[data-theme="dark"] .faqs3-list,
html[data-theme="dark"] .faqs3-item{
  border-color: var(--border);
}
html[data-theme="dark"] .faqs3-q{
  color: var(--color-title);
}
html[data-theme="dark"] .faqs3-item:hover .faqs3-q,
html[data-theme="dark"] .faqs3-item[open] .faqs3-q{
  color: #ff6b6b;
}
html[data-theme="dark"] .faqs3-toggle{
  background: rgba(255,255,255,.06);
}
html[data-theme="dark"] .faqs3-toggle::before,
html[data-theme="dark"] .faqs3-toggle::after{
  background: var(--color-title);
}
html[data-theme="dark"] .faqs3-item[open] .faqs3-toggle{
  background: #ff3b3b;
}
html[data-theme="dark"] .faqs3-item[open] .faqs3-toggle::before,
html[data-theme="dark"] .faqs3-item[open] .faqs3-toggle::after{
  background: #ffffff;
}
html[data-theme="dark"] .faqs3-answer p{
  color: var(--color-desc);
}

@media (max-width: 900px){
  .faqs3-layout{
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .faqs3-intro{
    position: static;
    padding: 24px 22px;
  }
  .faqs3-lead{
    max-width: none;
  }
}
@media (max-width: 640px){
  .home-faqs{
    padding-top: 68px;
    padding-bottom: 72px;
  }
  .home-faqs .container{
    width: min(100%, calc(100% - 24px));
  }
  .faqs3-summary{
    gap: 14px;
    padding: 18px 0;
  }
  .faqs3-q{
    font-size: 15.5px;
  }
  .faqs3-answer{
    padding: 0 0 18px;
  }
  .faqs3-toggle{
    width: 30px;
    height: 30px;
  }
}
.home-blogs .container{
  width: min(1320px, calc(100% - 48px));
}
.blogs2-head{
  text-align:center;
  max-width: 720px;
  margin: 0 auto 40px;
}
.blogs2-eyebrow{
  margin: 0 0 14px;
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
  font-size: 12px;
  color: #ff3b3b;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
}
.blogs2-eyebrow::before,
.blogs2-eyebrow::after{
  content:"";
  height: 2px;
  width: 40px;
  border-radius: 999px;
  background: #ff3b3b;
}
.blogs2-title{
  margin: 0 0 14px;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.14;
  letter-spacing: -.55px;
  font-weight: 900;
  color: #0a1628;
}
.blogs2-accent-underline{
  color: #ff3b3b;
  position: relative;
  display: inline-block;
}
.blogs2-accent-underline::after{
  content:"";
  position:absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 10px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 12' preserveAspectRatio='none'%3E%3Cpath d='M0 8 Q50 2 100 6 T200 4' stroke='%23ff3b3b' stroke-width='3' fill='none' opacity='.55'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
  pointer-events:none;
}
.blogs2-lead{
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(13,18,32,.68);
  max-width: 52ch;
}
.blogs2-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.blogs2-card{
  display:flex;
  flex-direction:column;
  background: #ffffff;
  border: 1px solid rgba(13,18,32,.08);
  border-radius: 16px;
  overflow:hidden;
  box-shadow: 0 12px 36px rgba(13,18,32,.06);
  transition:
    transform 260ms cubic-bezier(.2,.8,.2,1),
    box-shadow 260ms ease,
    border-color 260ms ease;
}
.blogs2-card:hover{
  transform: translateY(-4px);
  border-color: rgba(255,59,59,.2);
  box-shadow: 0 18px 48px rgba(13,18,32,.1);
}
.blogs2-media{
  display:block;
  position:relative;
  aspect-ratio: 16 / 10;
  overflow:hidden;
  background: rgba(13,18,32,.06);
}
.blogs2-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
  transition: transform 420ms cubic-bezier(.2,.8,.2,1);
}
.blogs2-card:hover .blogs2-media img{
  transform: scale(1.05);
}
.blogs2-body{
  display:flex;
  flex-direction:column;
  gap: 10px;
  padding: 20px 20px 22px;
  flex: 1;
}
.blogs2-meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
}
.blogs2-category{
  display:inline-flex;
  align-items:center;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255,59,59,.08);
  border: 1px solid rgba(255,59,59,.16);
  color: #ff3b3b;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .3px;
  text-transform: uppercase;
}
.blogs2-date{
  font-size: 12px;
  font-weight: 600;
  color: rgba(13,18,32,.5);
}
.blogs2-card-title{
  margin: 0;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -.25px;
  color: #0a1628;
}
.blogs2-card-title a{
  color: inherit;
  transition: color 220ms ease;
}
.blogs2-card:hover .blogs2-card-title a{
  color: #ff3b3b;
}
.blogs2-excerpt{
  margin: 0;
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(13,18,32,.62);
  flex: 1;
}
.blogs2-more{
  display:inline-flex;
  align-items:center;
  gap: 6px;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 700;
  color: #ff3b3b;
  transition: gap 220ms ease;
}
.blogs2-card:hover .blogs2-more{
  gap: 10px;
}
.blogs2-actions{
  display:flex;
  justify-content:center;
  margin-top: 36px;
}

@media (max-width: 980px){
  .blogs2-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (max-width: 640px){
  .home-blogs{
    padding-top: 56px;
    padding-bottom: 64px;
  }
  .blogs2-grid{
    grid-template-columns: 1fr;
  }
  .blogs2-head{
    margin-bottom: 28px;
  }
}

/* Blog listing extras + detail page */
.blog-page{
  padding-bottom: 40px;
}
.blog-filters{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: -8px auto 36px;
  max-width: 820px;
}
.blog-filters-label{
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(13,18,32,.45);
  margin-right: 4px;
}
.blog-filter-chip{
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(13,18,32,.10);
  background: #ffffff;
  color: #0a1628;
  font-size: 12.5px;
  font-weight: 700;
}
/* Blog post layout */
.bp{
  background: #ffffff;
}
.bp-banner{
  background:
    radial-gradient(ellipse 50% 60% at 100% 0%, rgba(255,59,59,.06), transparent 55%),
    linear-gradient(180deg, #eef2f7 0%, #f7f9fc 55%, #ffffff 100%);
  padding: clamp(28px, 4vh, 40px) 0 clamp(40px, 5vh, 56px);
  overflow: hidden;
  border-bottom: 1px solid rgba(13,18,32,.06);
}
.bp-banner-shell{
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr);
  gap: clamp(28px, 4.5vw, 56px);
  align-items: center;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}
.bp-banner-copy{
  color: #0a1628;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.bp-banner-crumb{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(13,18,32,.45);
}
.bp-banner-crumb a{
  color: rgba(13,18,32,.58);
  text-decoration: none;
  transition: color .2s ease;
}
.bp-banner-crumb a:hover{ color: #ff3b3b; }
.bp-banner-kicker{
  margin: 0 0 12px;
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #ff3b3b;
}
.bp-banner-title{
  margin: 0 0 14px;
  font-family: var(--font-hero);
  font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.015em;
  color: #0a1628;
  text-wrap: balance;
}
.bp-banner-excerpt{
  margin: 0 0 24px;
  max-width: 46ch;
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-size: 15.5px;
  line-height: 1.7;
  font-weight: 400;
  color: rgba(13,18,32,.68);
}
.bp-banner-meta{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 540px;
  padding-top: 0;
  border-top: 0;
}
.bp-banner-meta div{
  display: grid;
  gap: 5px;
  padding: 12px 14px;
  background: #ffffff;
  border: 1px solid rgba(13,18,32,.08);
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(10,22,40,.04);
}
.bp-banner-meta span{
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(13,18,32,.42);
}
.bp-banner-meta strong{
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  color: #0a1628;
}
.bp-banner-media{
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #dfe6ef;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(13,18,32,.06);
  box-shadow: 0 24px 48px rgba(10,22,40,.12);
}
.bp-banner-media img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.bp-body{
  background: #ffffff;
  padding-top: 56px;
  padding-bottom: 72px;
}
.bp-layout{
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(260px, .62fr);
  gap: clamp(32px, 4vw, 56px);
  align-items: start;
  width: min(1140px, calc(100% - 48px));
}
.bp-lead{
  margin: 0 0 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(13,18,32,.08);
  font-family: var(--font-desc);
  font-size: clamp(18px, 1.4vw, 21px);
  line-height: 1.7;
  font-weight: 300;
  color: var(--color-title);
}
.bp-block{
  margin: 0 0 30px;
}
.bp-block h2{
  margin: 0 0 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(255,59,59,.85);
  display: inline-block;
  font-family: var(--font-section);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 800;
  line-height: 1.25;
  color: var(--color-title);
}
.bp-block p{
  margin: 0 0 14px;
  font-family: var(--font-desc);
  font-size: 16.5px;
  line-height: 1.8;
  font-weight: 300;
  color: var(--color-desc);
}
.bp-block p:last-child{ margin-bottom: 0; }
.bp-faqs{
  margin-top: 36px;
}
.bp-faq-item{
  margin: 0 0 18px;
  padding: 16px 18px;
  background: #f4f7fb;
  border: 1px solid rgba(13, 18, 32, .06);
  border-radius: 12px;
}
.bp-faq-item h3{
  margin: 0 0 8px;
  font-family: var(--font-section);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-title);
}
.bp-faq-item p{
  margin: 0;
  font-family: var(--font-desc);
  font-size: 15.5px;
  line-height: 1.7;
  font-weight: 300;
  color: var(--color-desc);
}
html[data-theme="dark"] .bp-faq-item{
  background: var(--panel);
  border-color: var(--border);
}
.bp-points{
  margin: 36px 0 28px;
  padding: 26px 28px;
  background: #f4f7fb;
  border-left: 3px solid #ff3b3b;
}
.bp-points h2{
  margin: 0 0 16px;
  font-family: var(--font-section);
  font-size: 20px;
  font-weight: 800;
  color: var(--color-title);
}
.bp-points ol{
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: bp-point;
  display: grid;
  gap: 12px;
}
.bp-points li{
  counter-increment: bp-point;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  font-family: var(--font-desc);
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--color-desc);
}
.bp-points li::before{
  content: counter(bp-point, decimal-leading-zero);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  color: #ff3b3b;
  line-height: 1.6;
}
.bp-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
.bp-rail{
  position: sticky;
  top: 100px;
  display: grid;
  gap: 16px;
}
.bp-rail-box{
  padding: 22px 20px;
  background: #f4f7fb;
  border: 1px solid rgba(13,18,32,.06);
}
.bp-rail-box--dark{
  background: linear-gradient(180deg, #0a1628 0%, #122a48 100%);
  border: 0;
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(10,22,40,.16);
}
.bp-rail-label{
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #ff3b3b;
}
.bp-rail-box--dark h3{
  margin: 0 0 10px;
  font-family: var(--font-section);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.3;
  color: #ffffff;
}
.bp-rail-box--dark p{
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,.74);
}
.bp-rail-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.bp-rail-list a{
  display: grid;
  gap: 4px;
  text-decoration: none;
}
.bp-rail-list em{
  font-style: normal;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(13,18,32,.42);
}
.bp-rail-list strong{
  font-family: var(--font-section);
  font-size: 14.5px;
  line-height: 1.4;
  color: var(--color-title);
}
.bp-rail-list a:hover strong{ color: #ff3b3b; }
.blog-related-section{ padding-top: 24px; }
@media (max-width: 980px){
  .bp-banner-shell,
  .bp-layout{
    grid-template-columns: 1fr;
  }
  .bp-banner{
    padding: 24px 0 36px;
  }
  .bp-banner-copy{
    order: 1;
  }
  .bp-banner-media{
    order: 0;
    border-radius: 22px;
    aspect-ratio: 16 / 10;
  }
  .bp-banner-excerpt{
    max-width: none;
  }
  .bp-rail{ position: static; }
}
@media (max-width: 640px){
  .bp-banner{
    padding: 16px 0 28px;
  }
  .bp-banner-shell,
  .bp-layout{
    width: min(1140px, calc(100% - 32px));
    gap: 20px;
  }
  .bp-banner-media{
    border-radius: 18px;
    aspect-ratio: 16 / 11;
  }
  .bp-banner-title{
    font-size: clamp(26px, 7vw, 34px);
  }
  .bp-banner-meta{
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: none;
  }
  .bp-banner-meta div{
    padding: 12px 14px;
    border-bottom: 0;
  }
  .bp-banner-meta div:last-child{
    padding-bottom: 12px;
    border-bottom: 0;
  }
  .bp-actions{
    flex-direction: column;
  }
  .bp-actions .services2-btn{
    justify-content: center;
  }
  .bp-body{
    padding-top: 40px;
    padding-bottom: 56px;
  }
}

/* Contact page */
.contact-page{
  background: #ffffff;
  padding-top: 72px;
  padding-bottom: 40px;
}
.contact-layout{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 1.05fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}
.contact-copy .about-title{
  max-width: 16ch;
}
.contact-lead{
  margin: 0 0 28px;
  max-width: 42ch;
  font-family: var(--font-desc);
  font-weight: 300;
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.7;
  letter-spacing: .01em;
  color: var(--color-desc);
}
.contact-channels{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.contact-channels li{
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(13, 18, 32, .08);
  border-radius: 16px;
  background: #f4f7fb;
}
.contact-channel-icon{
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 59, 59, .1);
  color: #ff3b3b;
}
.contact-channels strong{
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(13, 18, 32, .45);
}
.contact-channels a,
.contact-channels span{
  color: var(--color-title);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
  text-decoration: none;
}
.contact-channels a:hover{ color: #ff3b3b; }

.contact-form-card{
  padding: clamp(24px, 3vw, 32px);
  background: #ffffff;
  border: 1px solid rgba(13, 18, 32, .08);
  border-radius: 20px;
  box-shadow: 0 18px 44px rgba(10, 22, 40, .08);
}
.contact-form-success{
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(24, 160, 88, .1);
  border: 1px solid rgba(24, 160, 88, .22);
}
.contact-form-success strong{
  display: block;
  margin-bottom: 4px;
  color: #0f7a45;
  font-size: 15px;
}
.contact-form-success p{
  margin: 0;
  color: rgba(13, 18, 32, .65);
  font-size: 14px;
  line-height: 1.5;
}
.contact-form{
  display: grid;
  gap: 16px;
}
.contact-form-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-field{
  display: grid;
  gap: 8px;
}
.contact-field span{
  font-size: 13px;
  font-weight: 700;
  color: var(--color-title);
}
.contact-field span small{
  font-weight: 500;
  color: rgba(13, 18, 32, .45);
}
.contact-field input,
.contact-field select,
.contact-field textarea{
  width: 100%;
  box-sizing: border-box;
  padding: 13px 14px;
  border: 1px solid rgba(13, 18, 32, .12);
  border-radius: 12px;
  background: #f8fafc;
  color: var(--color-title);
  font: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.contact-field textarea{
  resize: vertical;
  min-height: 132px;
}
.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus{
  border-color: rgba(255, 59, 59, .45);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(255, 59, 59, .1);
}
.contact-field-error{
  font-style: normal;
  font-size: 12.5px;
  color: #d92d20;
}
.contact-submit{
  width: auto;
  justify-self: start;
  margin-top: 4px;
}

.contact-strip{
  background: #f4f7fb;
  padding-top: 28px;
  padding-bottom: 72px;
}
.contact-strip-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.contact-strip-item{
  padding: 22px 20px;
  background: #ffffff;
  border: 1px solid rgba(13, 18, 32, .07);
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(10, 22, 40, .04);
}
.contact-strip-item strong{
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-section);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-title);
}
.contact-strip-item p{
  margin: 0;
  font-family: var(--font-desc);
  font-weight: 300;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--color-desc);
}
.contact-strip-item a{
  color: #ff3b3b;
  font-weight: 700;
  text-decoration: none;
}

.contact-map{
  background: #ffffff;
  padding-top: 24px;
  padding-bottom: 0;
}
.contact-map-head{
  text-align: center;
  max-width: 640px;
  margin: 0 auto 28px;
}
.contact-map-lead{
  margin: 14px auto 0;
  max-width: 42ch;
  font-family: var(--font-desc);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-desc);
}
.contact-map-link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #ff3b3b;
  text-decoration: none;
}
.contact-map-link:hover{
  color: #e63535;
}
.contact-map-link svg{
  transition: transform 180ms ease;
}
.contact-map-link:hover svg{
  transform: translateX(3px);
}
.contact-map-frame{
  width: 100%;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: #e8eef3;
  min-height: 460px;
}
.contact-map-frame iframe{
  display: block;
  width: 100%;
  height: 460px;
  border: 0;
}

@media (max-width: 960px){
  .contact-layout{ grid-template-columns: 1fr; gap: 28px; }
  .contact-form-card{ order: -1; }
}
@media (max-width: 640px){
  .contact-page{ padding-top: 56px; }
  .contact-form-grid{ grid-template-columns: 1fr; }
  .contact-strip{ padding-bottom: 56px; }
  .contact-strip-grid{ grid-template-columns: 1fr; }
  .contact-map-head{
    margin-bottom: 20px;
  }
  .contact-map-frame,
  .contact-map-frame iframe{
    min-height: 300px;
    height: 300px;
  }
}

/* Team page â€” framed gallery (reference look + refinements) */
.team-page,
.team-best,
.team-band-intro,
.team-bands,
.team-shell,
.team-directory,
.team-roster,
.team-mosaic,
.team-gallery,
.team-pro,
.team-cta{ display: none; }

.team-frame{
  position: relative;
  overflow: hidden;
  background: #ffffff;
  padding-top: 80px;
  padding-bottom: 88px;
}
.team-frame-bg{
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: #eef1f5;
  clip-path: polygon(0 0, 58% 0, 36% 100%, 0 100%);
}
.team-frame > .container{
  position: relative;
  z-index: 1;
}
.team-frame-head{
  text-align: center;
  max-width: 680px;
  margin: 0 auto 52px;
}
.team-frame .about-title{
  margin-left: auto;
  margin-right: auto;
}
.team-frame-lead{
  display: block;
  margin: 18px auto 0;
  max-width: 48ch;
  font-family: var(--font-desc);
  font-weight: 300;
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.7;
  letter-spacing: .01em;
  color: var(--color-desc);
}
.team-frame-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}
.team-frame-item{
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 14px 14px 20px;
  background: #ffffff;
  border: 1px solid rgba(13, 18, 32, .08);
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(10, 22, 40, .06);
  transition: transform 260ms cubic-bezier(.2, .8, .2, 1), box-shadow 260ms ease, border-color 260ms ease;
}
.team-frame-item:hover{
  transform: translateY(-5px);
  border-color: rgba(255, 59, 59, .18);
  box-shadow: 0 20px 44px rgba(10, 22, 40, .12);
}
.team-frame-media{
  position: relative;
  margin: 0 0 16px;
  overflow: hidden;
  border-radius: 0 36px 0 0;
}
.team-frame-photo{
  margin: 0;
  overflow: hidden;
  background: #e8eef3;
  border: 0;
  border-radius: 0 36px 0 0;
  aspect-ratio: 4 / 5;
  box-shadow: none;
}
.team-frame-photo img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 520ms cubic-bezier(.2, .8, .2, 1);
}
.team-frame-item:hover .team-frame-photo img,
.team-frame-item:focus-within .team-frame-photo img{
  transform: scale(1.06);
}
.team-frame-media::after{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(10,22,40,.08) 0%, rgba(10,22,40,.55) 100%);
  opacity: 0;
  transition: opacity 280ms ease;
  pointer-events: none;
}
.team-frame-item:hover .team-frame-media::after,
.team-frame-item:focus-within .team-frame-media::after{
  opacity: 1;
}
.team-frame-social{
  position: absolute;
  right: 12px;
  bottom: 12px;
  top: auto;
  left: auto;
  z-index: 3;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  transform: translateY(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease, transform 280ms cubic-bezier(.2, .8, .2, 1);
}
.team-frame-item:hover .team-frame-social,
.team-frame-item:focus-within .team-frame-social{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.team-frame-social-link{
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  color: #0a1628;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(8, 14, 28, .22);
  transform: translateY(8px) scale(.92);
  opacity: 0;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 280ms cubic-bezier(.2, .8, .2, 1),
    opacity 220ms ease,
    box-shadow 180ms ease;
}
.team-frame-item:hover .team-frame-social-link,
.team-frame-item:focus-within .team-frame-social-link{
  opacity: 1;
  transform: translateY(0) scale(1);
}
.team-frame-item:hover .team-frame-social-link:nth-child(1),
.team-frame-item:focus-within .team-frame-social-link:nth-child(1){ transition-delay: 40ms; }
.team-frame-item:hover .team-frame-social-link:nth-child(2),
.team-frame-item:focus-within .team-frame-social-link:nth-child(2){ transition-delay: 90ms; }
.team-frame-item:hover .team-frame-social-link:nth-child(3),
.team-frame-item:focus-within .team-frame-social-link:nth-child(3){ transition-delay: 140ms; }
.team-frame-social-link:hover,
.team-frame-social-link:focus-visible{
  background: #ff3b3b;
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(255, 59, 59, .35);
  outline: none;
}
.team-frame-num{
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  min-width: 36px;
  padding: 7px 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1;
  text-align: center;
  color: #ffffff;
  background: #ff3b3b;
  box-shadow: 0 8px 16px rgba(255, 59, 59, .24);
  transition: opacity 200ms ease;
}
.team-frame-item:hover .team-frame-num,
.team-frame-item:focus-within .team-frame-num{
  opacity: .35;
}
.team-frame-copy{
  padding: 0 4px;
  text-align: center;
}
.team-frame-name{
  margin: 0 0 6px;
  font-family: var(--font-section);
  font-size: clamp(17px, 1.4vw, 20px);
  font-weight: 700;
  letter-spacing: -.2px;
  line-height: 1.25;
  color: var(--color-title);
}
.team-frame-role{
  margin: 0;
  font-family: var(--font-section);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #ff3b3b;
}
.team-frame-bio{ display: none; }
.team-frame-item::after{ display: none; }

@media (max-width: 1100px){
  .team-frame-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
  .team-frame-media,
  .team-frame-photo{ border-radius: 0 32px 0 0; }
}
@media (max-width: 640px){
  .team-frame{
    padding-top: 64px;
    padding-bottom: 72px;
  }
  .team-frame-bg{
    clip-path: none;
    background: linear-gradient(180deg, #eef1f5 0%, #ffffff 40%);
  }
  .team-frame-head{ margin-bottom: 36px; }
  .team-frame-grid{
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
    gap: 16px;
  }
  .team-frame-media,
  .team-frame-photo{ border-radius: 0 28px 0 0; }
  .team-frame-media::after{
    opacity: 1;
    background: linear-gradient(180deg, transparent 45%, rgba(10,22,40,.62) 100%);
  }
  .team-frame-social{
    top: auto;
    bottom: 12px;
    right: 12px;
    left: auto;
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
  .team-frame-social-link{
    opacity: 1;
    transform: none;
    width: 34px;
    height: 34px;
  }
  .team-frame-num{
    opacity: .9;
    bottom: 12px;
    top: auto;
  }
}
@media (prefers-reduced-motion: reduce){
  .team-frame-item,
  .team-frame-photo img,
  .team-frame-media::after,
  .team-frame-social,
  .team-frame-social-link{ transition: none; }
  .team-frame-item:hover{ transform: none; }
}
html[data-theme="dark"] .team-frame-social-link{
  background: #101826;
  color: #ffffff;
}
html[data-theme="dark"] .team-frame-social-link:hover,
html[data-theme="dark"] .team-frame-social-link:focus-visible{
  background: #ff3b3b;
  color: #ffffff;
}
/* Scroll reveal animation — site-wide */
[data-reveal]{
  --reveal-y: 36px;
  --reveal-x: 0px;
  --reveal-scale: .985;
  --reveal-duration: 820ms;
  --reveal-ease: cubic-bezier(.16, 1, .3, 1);
}
[data-reveal] [data-reveal-item],
[data-reveal][data-reveal-self]{
  opacity: 0;
  transform: translate3d(var(--reveal-x), var(--reveal-y), 0) scale(var(--reveal-scale));
  transition:
    opacity var(--reveal-duration) var(--reveal-ease),
    transform var(--reveal-duration) var(--reveal-ease);
  will-change: opacity, transform;
}
[data-reveal] [data-reveal-from="left"],
[data-reveal] [data-reveal-from="left"] [data-reveal-item]{
  --reveal-x: -42px;
  --reveal-y: 18px;
}
[data-reveal] [data-reveal-from="right"],
[data-reveal] [data-reveal-from="right"] [data-reveal-item]{
  --reveal-x: 42px;
  --reveal-y: 18px;
}
[data-reveal] [data-reveal-from="up"],
[data-reveal] [data-reveal-from="up"] [data-reveal-item]{
  --reveal-x: 0px;
  --reveal-y: 48px;
}
[data-reveal].is-inview [data-reveal-item],
[data-reveal][data-reveal-self].is-inview{
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}
[data-reveal-stagger] [data-reveal-item]{ transition-delay: 0ms; }
[data-reveal].is-inview [data-reveal-stagger] [data-reveal-item]:nth-child(1){ transition-delay: 0ms; }
[data-reveal].is-inview [data-reveal-stagger] [data-reveal-item]:nth-child(2){ transition-delay: 80ms; }
[data-reveal].is-inview [data-reveal-stagger] [data-reveal-item]:nth-child(3){ transition-delay: 160ms; }
[data-reveal].is-inview [data-reveal-stagger] [data-reveal-item]:nth-child(4){ transition-delay: 240ms; }
[data-reveal].is-inview [data-reveal-stagger] [data-reveal-item]:nth-child(5){ transition-delay: 320ms; }
[data-reveal].is-inview [data-reveal-stagger] [data-reveal-item]:nth-child(6){ transition-delay: 400ms; }
[data-reveal].is-inview [data-reveal-stagger] [data-reveal-item]:nth-child(7){ transition-delay: 480ms; }
[data-reveal].is-inview [data-reveal-stagger] [data-reveal-item]:nth-child(8){ transition-delay: 560ms; }
[data-reveal].is-inview [data-reveal-stagger] [data-reveal-item]:nth-child(9){ transition-delay: 640ms; }
[data-reveal].is-inview [data-reveal-stagger] [data-reveal-item]:nth-child(10){ transition-delay: 720ms; }
[data-reveal].is-inview [data-reveal-stagger] [data-reveal-item]:nth-child(11){ transition-delay: 800ms; }
[data-reveal].is-inview [data-reveal-stagger] [data-reveal-item]:nth-child(12){ transition-delay: 880ms; }

.about-hero[data-reveal] .about-hero-bg{
  transform: scale(1.08);
  transition: transform 1400ms cubic-bezier(.16, 1, .3, 1);
}
.about-hero[data-reveal].is-inview .about-hero-bg{
  transform: scale(1);
}
.about-hero[data-reveal] .about-hero-title,
.about-hero[data-reveal] .about-hero-lead,
.about-hero[data-reveal] .about-hero-actions,
.about-hero[data-reveal] .about-hero-inner{
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition:
    opacity 900ms cubic-bezier(.16, 1, .3, 1),
    transform 900ms cubic-bezier(.16, 1, .3, 1);
}
.about-hero[data-reveal].is-inview .about-hero-title,
.about-hero[data-reveal].is-inview .about-hero-lead,
.about-hero[data-reveal].is-inview .about-hero-actions,
.about-hero[data-reveal].is-inview .about-hero-inner{
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.site-footer[data-reveal] .footer-grid > *,
.site-footer[data-reveal] .footer-bottom-inner{
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 780ms cubic-bezier(.16, 1, .3, 1),
    transform 780ms cubic-bezier(.16, 1, .3, 1);
}
.site-footer[data-reveal].is-inview .footer-grid > *:nth-child(1){ transition-delay: 0ms; }
.site-footer[data-reveal].is-inview .footer-grid > *:nth-child(2){ transition-delay: 90ms; }
.site-footer[data-reveal].is-inview .footer-grid > *:nth-child(3){ transition-delay: 180ms; }
.site-footer[data-reveal].is-inview .footer-grid > *:nth-child(4){ transition-delay: 270ms; }
.site-footer[data-reveal].is-inview .footer-bottom-inner{ transition-delay: 320ms; }
.site-footer[data-reveal].is-inview .footer-grid > *,
.site-footer[data-reveal].is-inview .footer-bottom-inner{
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce){
  [data-reveal] [data-reveal-item],
  [data-reveal][data-reveal-self],
  .about-hero[data-reveal] .about-hero-bg,
  .about-hero[data-reveal] .about-hero-title,
  .about-hero[data-reveal] .about-hero-lead,
  .about-hero[data-reveal] .about-hero-inner,
  .site-footer[data-reveal] .footer-grid > *,
  .site-footer[data-reveal] .footer-bottom-inner{
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .services2-btn,
  .services2-btn::before,
  .services2-btn-arrow{
    transition: none !important;
    transform: none !important;
  }
  .tech2-marquee--ltr .tech2-marquee-track,
  .tech2-marquee--rtl .tech2-marquee-track,
  .sv-techs-marquee--ltr .sv-techs-marquee-track{
    animation: none !important;
  }
  .tech2-marquee-item:hover{
    transform: none !important;
  }
  .blogs2-card:hover,
  .blogs2-card:hover .blogs2-media img{
    transform: none !important;
  }
  .about-pro-photo,
  .about-pro-photo img{
    transition: none !important;
  }
}

/* About page */
.about-hero{
  position: relative;
  width: 100%;
  min-height: 0;
  height: auto;
  aspect-ratio: 1024 / 229;
  max-height: 260px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: #050d1b;
  overflow:hidden;
}
.about-hero--wide{
  /* same height as all banners */
  min-height: 0;
  aspect-ratio: 1024 / 229;
  max-height: 260px;
}
.about-hero-bg{
  position:absolute;
  inset: 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.about-hero-overlay{
  position:absolute;
  inset: 0;
  background: rgba(5, 13, 27, .55);
}
.about-hero--wide .about-hero-overlay{
  background: rgba(5, 13, 27, .55);
}
.about-hero-inner{
  position: relative;
  z-index: 1;
  text-align:center;
  padding: clamp(28px, 3.5vw, 40px) 0;
}
.about-hero--wide .about-hero-inner{
  padding: clamp(28px, 3.5vw, 40px) 0;
}
.about-hero--wide .sv-breadcrumb{
  justify-content: center;
}
.about-hero-title{
  margin: 0;
  font-family: var(--font-section);
  font-size: clamp(28px, 3.6vw, 36px);
  line-height: 1.15;
  letter-spacing: -.2px;
  font-weight: 700;
  color: #ffffff;
}
.about-hero-lead{
  margin: 10px auto 0;
  max-width: 640px;
  font-family: var(--font-desc);
  font-weight: 300;
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.55;
  letter-spacing: .01em;
  color: rgba(255,255,255,.88);
  text-align: center;
  text-shadow: 0 8px 24px rgba(0,0,0,.35);
}
.about-hero-actions{
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.about-hero-actions .about-hero-btn-ghost,
.about-hero .services2-btn--outline{
  color: #ffffff;
  border-color: rgba(255,255,255,.55);
  background: transparent;
}
.about-hero-actions .about-hero-btn-ghost:hover,
.about-hero .services2-btn--outline:hover{
  color: #ffffff;
  border-color: #ffffff;
  background: rgba(255,255,255,.1);
}
.about-hero .about-hero-lead{
  color: rgba(255,255,255,.88);
  text-align: center;
}
.about-eyebrow{
  margin: 0 0 14px;
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
  font-size: 12px;
  color: #ff3b3b;
  display:flex;
  align-items:center;
  gap: 10px;
}
.about-eyebrow::after{
  content:"";
  height: 2px;
  width: 48px;
  border-radius: 999px;
  background: #ff3b3b;
}
.about-eyebrow--center{
  justify-content:center;
}
.about-eyebrow--center::before{
  content:"";
  height: 2px;
  width: 48px;
  border-radius: 999px;
  background: #ff3b3b;
}
.about-title{
  margin: 0 0 16px;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.14;
  letter-spacing: -.55px;
  font-weight: 900;
  color: #0a1628;
}
.about-title--center{
  text-align:center;
}
.about-accent-underline{
  color: #ff3b3b;
  position: relative;
  display: inline-block;
}
.about-accent-underline::after{
  content:"";
  position:absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 10px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 12' preserveAspectRatio='none'%3E%3Cpath d='M0 8 Q50 2 100 6 T200 4' stroke='%23ff3b3b' stroke-width='3' fill='none' opacity='.55'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
  pointer-events:none;
}
.about-lead{
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(13,18,32,.68);
  max-width: 54ch;
}
.about-lead--center{
  margin-inline: auto;
  text-align:center;
}
.about-section-head{
  max-width: 680px;
  margin: 0 auto 44px;
}
.about-story{
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff 0%, #f3f6fa 100%);
  padding-top: 88px;
  padding-bottom: 96px;
}
.about-story-glow{
  position: absolute;
  inset: auto auto -20% -10%;
  width: min(520px, 55vw);
  height: min(520px, 55vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,59,59,.12), transparent 68%);
  pointer-events: none;
}
.about-story .container,
.about-mission .container,
.about-values .container,
.about-stats .container,
.about-cta .container{
  width: min(1200px, calc(100% - 48px));
}
.about-story-grid{
  position: relative;
  z-index: 1;
  display:grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(40px, 6vw, 72px);
  align-items:center;
}
.about-story-media{
  position: relative;
  width: 100%;
  max-width: 500px;
}
.about-story-visual{
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
}
.about-story-accent{
  position: absolute;
  left: -10px;
  top: 12%;
  bottom: 18%;
  width: 6px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff3b3b 0%, rgba(255,59,59,.15) 100%);
  z-index: 2;
}
.about-story-main{
  margin: 0;
  position: absolute;
  inset: 0 8% 8% 0;
  overflow: hidden;
  border-radius: 28px 28px 28px 8px;
  background: #0a1628;
  box-shadow: 0 28px 60px rgba(10,22,40,.22);
}
.about-story-main img,
.about-story-inset img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 700ms cubic-bezier(.2,.8,.2,1);
}
.about-story-visual:hover .about-story-main img{
  transform: scale(1.05);
}
.about-story-inset{
  margin: 0;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 46%;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  border-radius: 18px;
  border: 5px solid #ffffff;
  background: #d9e2ec;
  box-shadow: 0 18px 40px rgba(10,22,40,.18);
  z-index: 3;
  animation: aboutInsetFloat 5.5s ease-in-out infinite;
}
.about-story-visual:hover .about-story-inset img{
  transform: scale(1.06);
}
.about-story-badge{
  position: absolute;
  left: 0;
  bottom: 10%;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: #0a1628;
  color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(10,22,40,.28);
  animation: aboutBadgeRise 700ms cubic-bezier(.2,.8,.2,1) both;
}
.about-story-badge strong{
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -.5px;
  color: #ff3b3b;
  line-height: 1;
}
.about-story-badge span{
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .4px;
  text-transform: uppercase;
  line-height: 1.35;
  color: rgba(255,255,255,.78);
}
.about-story-copy .about-lead{
  margin-bottom: 12px;
}
.about-text{
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(13,18,32,.62);
  max-width: 48ch;
}
.about-story-points{
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 12px;
}
.about-story-points li{
  position: relative;
  padding-left: 30px;
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.45;
  color: #0a1628;
}
.about-story-points li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='m6 12 4 4 8-8' stroke='%23ffffff' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 12px 12px no-repeat,
    #ff3b3b;
}
.about-story-metrics{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0 0 30px;
  padding: 18px 0;
  border-top: 1px solid rgba(13,18,32,.1);
  border-bottom: 1px solid rgba(13,18,32,.1);
}
.about-story-metric{
  padding: 0 16px;
  border-right: 1px solid rgba(13,18,32,.1);
}
.about-story-metric:first-child{
  padding-left: 0;
}
.about-story-metric:last-child{
  border-right: 0;
  padding-right: 0;
}
.about-story-metric strong{
  display: block;
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 900;
  letter-spacing: -.4px;
  color: #ff3b3b;
  line-height: 1.1;
  margin-bottom: 4px;
}
.about-story-metric span{
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .25px;
  text-transform: uppercase;
  color: rgba(13,18,32,.52);
}
.about-story-actions{
  display:flex;
  align-items:center;
  gap: 12px;
  flex-wrap:wrap;
}
@keyframes aboutInsetFloat{
  0%, 100%{ transform: translateY(0); }
  50%{ transform: translateY(-8px); }
}
@keyframes aboutBadgeRise{
  from{ opacity: 0; transform: translateY(14px); }
  to{ opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce){
  .about-story-inset,
  .about-story-badge{
    animation: none;
  }
  .about-story-main img,
  .about-story-inset img{
    transition: none;
  }
}
.about-mission{
  background: #ffffff;
  padding-top: 72px;
  padding-bottom: 96px;
}
.about-section-head--mv{
  max-width: 640px;
  margin-bottom: 40px;
}
.about-mv-tabs{
  max-width: 1100px;
  margin-inline: auto;
}
.about-mv-tablist{
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(28px, 5vw, 56px);
  border-bottom: 1px solid rgba(13,18,32,.12);
  margin-bottom: clamp(36px, 5vw, 52px);
}
.about-mv-tab{
  position: relative;
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0 4px 16px;
  margin: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 600;
  letter-spacing: -.2px;
  color: rgba(10,22,40,.45);
  transition: color 220ms ease;
}
.about-mv-tab::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: #ff3b3b;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 240ms ease;
}
.about-mv-tab:hover{
  color: #0a1628;
}
.about-mv-tab.is-active{
  font-weight: 800;
  color: #0a1628;
}
.about-mv-tab.is-active::after{
  transform: scaleX(1);
}
.about-mv-panel[hidden]{
  display: none;
}
.about-mv-panel.is-active{
  animation: aboutMvFade 380ms ease;
}
.about-mv-panel-grid{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}
.about-mv-media{
  position: relative;
  padding: 18px 18px 0 0;
}
.about-mv-deco--square{
  position: absolute;
  left: 0;
  top: 0;
  width: 42%;
  height: 48%;
  border-radius: 18px;
  background: rgba(10,22,40,.06);
  z-index: 0;
}
.about-mv-deco--dots{
  position: absolute;
  right: 0;
  top: 8px;
  width: 72px;
  height: 56px;
  z-index: 0;
  background-image: radial-gradient(#ff3b3b 1.6px, transparent 1.7px);
  background-size: 12px 12px;
  background-position: 0 0;
  opacity: .9;
}
.about-mv-photo{
  position: relative;
  z-index: 1;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  aspect-ratio: 5 / 4;
  background: #0a1628;
  box-shadow: 0 22px 50px rgba(10,22,40,.16);
}
.about-mv-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 700ms cubic-bezier(.2,.8,.2,1);
}
.about-mv-panel:hover .about-mv-photo img{
  transform: scale(1.04);
}
.about-mv-copy{
  max-width: 460px;
}
.about-mv-heading{
  margin: 0 0 16px;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -.45px;
  line-height: 1.2;
  color: #0a1628;
}
.about-mv-text{
  margin: 0 0 26px;
  font-size: 15.5px;
  line-height: 1.8;
  color: rgba(13,18,32,.62);
}
.about-mv-cta{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  background: #ff3b3b;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .2px;
  box-shadow: 0 12px 28px rgba(255,59,59,.28);
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}
.about-mv-cta:hover{
  background: #e62e2e;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(255,59,59,.34);
}
.about-mv-cta svg{
  flex-shrink: 0;
}
@keyframes aboutMvFade{
  from{ opacity: 0; transform: translateY(10px); }
  to{ opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce){
  .about-mv-panel.is-active{
    animation: none;
  }
  .about-mv-photo img,
  .about-mv-cta{
    transition: none;
  }
}
.about-values{
  background: #f7f9fc;
  padding-top: 80px;
  padding-bottom: 88px;
}
.about-values-strip{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  background: #ffffff;
  border: 1px solid rgba(13,18,32,.08);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(10,22,40,.05);
}
.about-value-item{
  position: relative;
  padding: 28px 22px 30px;
  text-align: left;
  transition: background 240ms ease;
}
.about-value-item + .about-value-item{
  border-left: 1px solid rgba(13,18,32,.08);
}
.about-value-item::before{
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 0;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: #ff3b3b;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 280ms ease;
}
.about-value-item:hover{
  background: #fafbfc;
}
.about-value-item:hover::before{
  transform: scaleX(1);
}
.about-value-icon{
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255,59,59,.1);
  color: #ff3b3b;
  margin-bottom: 18px;
  transition: background 240ms ease, color 240ms ease;
}
.about-value-item:hover .about-value-icon{
  background: #ff3b3b;
  color: #ffffff;
}
.about-value-title{
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -.15px;
  color: #0a1628;
}
.about-value-text{
  margin: 0;
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(13,18,32,.6);
}
.about-stats{
  background: #0a1628;
  padding-top: 48px;
  padding-bottom: 48px;
}
.about-stats-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  text-align:center;
}
.about-stat-num{
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 900;
  letter-spacing: -.4px;
  color: #ff3b3b;
  line-height: 1.1;
  margin-bottom: 8px;
}
.about-stat-label{
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255,255,255,.68);
}
.about-cta{
  background: #f4f7fb;
  padding-top: 64px;
  padding-bottom: 72px;
}
.about-cta-inner{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 28px;
  background: #ffffff;
  border: 1px solid rgba(13,18,32,.08);
  border-radius: 20px;
  padding: 36px 40px;
  box-shadow: 0 14px 36px rgba(13,18,32,.06);
}
.about-cta-copy .about-lead{
  margin-top: 4px;
}
.about-cta-actions{
  display:flex;
  align-items:center;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap:wrap;
}

@media (max-width: 960px){
  .about-story-grid{
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-story-media{
    order: -1;
    max-width: 440px;
    margin-inline: auto;
  }
  .about-mv-panel-grid{
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .about-mv-copy{
    max-width: none;
  }
  .about-mv-media{
    padding: 14px 14px 0 0;
    max-width: 560px;
    margin-inline: auto;
  }
  .about-mv-tablist{
    gap: 24px;
  }
  .about-values-strip{
    grid-template-columns: 1fr 1fr;
  }
  .about-value-item + .about-value-item{
    border-left: 0;
  }
  .about-value-item:nth-child(odd){
    border-right: 1px solid rgba(13,18,32,.08);
  }
  .about-value-item:nth-child(-n+2){
    border-bottom: 1px solid rgba(13,18,32,.08);
  }
  .about-value-item:nth-child(5){
    grid-column: 1 / -1;
    border-right: 0;
  }
  .about-stats-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .about-cta-inner{
    flex-direction:column;
    align-items:flex-start;
    padding: 28px 24px;
  }
}
@media (max-width: 640px){
  .about-hero,
  .about-hero--wide{
    aspect-ratio: auto;
    min-height: 200px;
    max-height: none;
    height: 200px;
  }
  .about-hero-inner,
  .about-hero--wide .about-hero-inner{
    padding: 36px 0;
  }
  .about-story{
    padding-top: 56px;
    padding-bottom: 64px;
  }
  .about-story-media{
    max-width: 100%;
  }
  .about-story-visual{
    aspect-ratio: 5 / 6;
  }
  .about-story-main{
    border-radius: 22px 22px 22px 8px;
  }
  .about-story-badge{
    padding: 12px 14px;
  }
  .about-story-badge strong{
    font-size: 24px;
  }
  .about-story-metrics{
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px 0;
  }
  .about-story-metric{
    padding: 0;
    border-right: 0;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(13,18,32,.08);
  }
  .about-story-metric:last-child{
    padding-bottom: 0;
    border-bottom: 0;
  }
  .about-values-strip{
    grid-template-columns: 1fr;
  }
  .about-value-item:nth-child(odd),
  .about-value-item:nth-child(5){
    border-right: 0;
  }
  .about-value-item{
    border-bottom: 1px solid rgba(13,18,32,.08);
  }
  .about-value-item:last-child{
    border-bottom: 0;
  }
  .about-value-item:nth-child(-n+2){
    border-bottom: 1px solid rgba(13,18,32,.08);
  }
  .about-cta-actions{
    width: 100%;
  }
  .about-cta-actions .services2-btn{
    flex: 1;
    justify-content:center;
  }
}

/* Footer */
.site-footer{
  background: #ffffff;
  color: rgba(13,18,32,.72);
  margin-top: 0;
  border-top: 3px solid var(--accent);
  box-shadow: 0 -8px 28px rgba(13,18,32,.04);
}
.footer-top{
  padding: 64px 0 48px;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.35fr .85fr .95fr 1.15fr;
  gap: clamp(28px, 4vw, 48px);
  align-items:start;
}
.footer-logo{
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  width: fit-content;
  max-width: 100%;
  line-height: 0;
  margin-bottom: 18px;
}
.footer-logo-img{
  display: block;
  height: 46px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  flex-shrink: 0;
}
.footer-logo-img--light{
  display: block;
}
.footer-logo-img--dark{
  display: none;
}
.footer-about{
  margin: 0 0 22px;
  font-family: Inter, system-ui, sans-serif;
  font-weight: 400;
  font-size: 14.5px;
  line-height: 1.7;
  letter-spacing: 0;
  color: rgba(13,18,32,.62);
  max-width: 34ch;
}
.footer-social{
  display:flex;
  align-items:center;
  gap: 10px;
}
.footer-social-link{
  width: 40px;
  height: 40px;
  display:inline-grid;
  place-items:center;
  border-radius: 12px;
  border: 1px solid rgba(13,18,32,.12);
  background: #f4f7fb;
  color: rgba(13,18,32,.78);
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease, transform 220ms ease;
}
.footer-social-link svg{
  display: block;
  flex-shrink: 0;
}
.footer-social-link:hover{
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
  transform: translateY(-2px);
}
.footer-mobile-actions{
  display: none;
}
.footer-mobile-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .2px;
  text-decoration: none;
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}
.footer-mobile-btn--call{
  background: var(--accent);
  border: 2px solid var(--accent);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(255,59,59,.28);
}
.footer-mobile-btn--call:hover{
  background: #e62f2f;
  border-color: #e62f2f;
  transform: translateY(-1px);
}
.footer-mobile-btn--email{
  background: #ffffff;
  border: 2px solid rgba(13,18,32,.14);
  color: #0a1628;
}
.footer-mobile-btn--email:hover{
  border-color: rgba(13,18,32,.28);
  background: #f8fafc;
}
.footer-heading{
  margin: 0 0 18px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .4px;
  text-transform: uppercase;
  color: #0a1628;
  position: relative;
  padding-bottom: 12px;
}
.footer-heading::after{
  content:"";
  position:absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
}
.footer-links,
.footer-contact{
  list-style:none;
  margin: 0;
  padding: 0;
  display:flex;
  flex-direction:column;
  gap: 12px;
}
.footer-links a{
  font-size: 14px;
  color: rgba(13,18,32,.62);
  transition: color 200ms ease, padding-left 200ms ease;
}
.footer-links a:hover{
  color: var(--accent);
  padding-left: 4px;
}
.footer-contact li{
  display:flex;
  align-items:flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(13,18,32,.62);
}
.footer-contact a{
  color: rgba(13,18,32,.78);
  transition: color 200ms ease;
}
.footer-contact a:hover{
  color: var(--accent);
}
.footer-contact-icon{
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  display:inline-grid;
  place-items:center;
  border-radius: 10px;
  background: rgba(255,59,59,.1);
  color: #ff3b3b;
}
.footer-cta{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  margin-top: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  background: var(--accent);
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: .2px;
  transition: background 220ms ease, transform 220ms ease, gap 220ms ease;
}
.footer-cta:hover{
  background: #e62f2f;
  transform: translateY(-2px);
  gap: 12px;
}
.footer-bottom{
  border-top: 1px solid rgba(13,18,32,.08);
  background: #f4f7fb;
}
.footer-bottom-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  padding: 18px 0;
  flex-wrap:wrap;
}
.footer-copy{
  margin: 0;
  font-size: 13px;
  color: rgba(13,18,32,.48);
}
.footer-legal{
  display:flex;
  align-items:center;
  gap: 18px;
  flex-wrap:wrap;
}
.footer-legal a{
  font-size: 13px;
  color: rgba(13,18,32,.55);
  transition: color 200ms ease;
}
.footer-legal a:hover{
  color: var(--accent);
}

@media (max-width: 980px){
  .footer-grid{
    grid-template-columns: 1fr 1fr;
    gap: 32px 28px;
  }
  .footer-brand{
    grid-column: 1 / -1;
  }
  .footer-about{
    max-width: 52ch;
  }
}
@media (max-width: 640px){
  .footer-top{
    padding: 44px 0 32px;
  }
  .footer-grid{
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 24px 16px;
    align-items: start;
  }
  .footer-brand{
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }
  .footer-logo{
    justify-content: center;
    margin-bottom: 14px;
  }
  .footer-about{
    align-self: stretch;
    width: 100%;
    max-width: none;
    margin: 0 0 20px;
    padding: 0 clamp(18px, 6vw, 32px);
    box-sizing: border-box;
    font-family: Inter, system-ui, sans-serif;
    font-weight: 400;
    font-size: 14.5px;
    line-height: 1.72;
    letter-spacing: -.008em;
    text-align: center;
    text-wrap: pretty;
    color: rgba(13, 18, 32, .65);
  }
  .footer-social{
    justify-content: center;
    gap: 12px;
    margin-bottom: 18px;
  }
  .footer-social-link{
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #ffffff;
  }
  .footer-mobile-actions{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    width: 100%;
  }
  .footer-mobile-btn{
    min-height: 46px;
    padding: 11px 12px;
    font-size: 13.5px;
  }
  .footer-col{
    min-width: 0;
  }
  .footer-col:not(.footer-col--contact){
    grid-column: auto;
  }
  .footer-col--contact{
    grid-column: 1 / -1 !important;
    width: 100%;
    margin-top: 4px;
    border: 1px solid rgba(13,18,32,.1);
    border-radius: 18px;
    padding: 20px 18px;
    background: #ffffff;
    box-shadow: 0 8px 28px rgba(13,18,32,.06);
  }
  .footer-heading{
    margin-bottom: 14px;
    font-size: 13px;
    padding-bottom: 10px;
  }
  .footer-links,
  .footer-contact{
    gap: 10px;
  }
  .footer-links a{
    font-size: 13px;
    line-height: 1.45;
    display: inline-block;
  }
  .footer-links a:hover{
    padding-left: 0;
  }
  .footer-contact li{
    gap: 14px;
    font-size: 13.5px;
    line-height: 1.5;
  }
  .footer-contact-icon{
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(255,59,59,.12);
  }
  .footer-cta{
    display: inline-flex;
    width: 100%;
    justify-content: center;
    margin-top: 18px;
  }
  .footer-bottom-inner{
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

@media (max-width: 980px){
  body{ padding-top: 76px; }
  .btn-desktop{ display:none; }
  .menu-btn{ display:inline-grid; place-items:center; }
  .nav{ display:none; }
  .header-inner{
    display:flex;
    justify-content:space-between;
  }
  .brand{
    flex: 0 0 auto;
    width: fit-content;
    max-width: calc(100% - 96px);
    min-width: auto;
  }
  .brand-logo{
    height: 42px;
    width: auto;
    max-width: 100%;
  }
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-overlay{
    justify-content: center;
    align-items: center;
    padding: 80px 0 92px;
  }
  .hero-left{
    max-width: 100%;
    padding-right: 0;
    padding-left: 0;
    text-align: center;
    align-items: center;
  }
  .hero-title{
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    white-space: normal;
    font-size: clamp(28px, 7.2vw, 40px);
  }
  .hero-lead{
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-cta{
    justify-content: center;
    width: 100%;
  }
  .hero-right{
    justify-self:center;
    width: min(560px, 100%);
  }
  .hero-arrow-right{ right: 40px; }
  .hero-indicators--right{ right: 14px; }
}

@media (prefers-reduced-motion: reduce){
  *{ scroll-behavior:auto !important; }
  .hero-slide{ transition:none; }
  .hero-slide.is-active .hero-slide-media,
  .hero-slide.is-active .hero-overlay,
  .hero-slider::before,
  .hero-slider::after{
    animation:none !important;
  }
}

@keyframes hero-kenburns{
  0%{ transform: scale(1.02) translate3d(0,0,0); }
  60%{ transform: scale(1.08) translate3d(-10px, -6px, 0); }
  100%{ transform: scale(1.10) translate3d(-16px, -10px, 0); }
}
@keyframes hero-fade-up{
  from{ opacity:0; transform: translateY(14px); }
  to{ opacity:1; transform: translateY(0); }
}
@keyframes hero-float-1{
  0%,100%{ transform: translate3d(0,0,0); }
  50%{ transform: translate3d(22px, 16px, 0); }
}
@keyframes hero-float-2{
  0%,100%{ transform: translate3d(0,0,0); }
  50%{ transform: translate3d(-18px, -14px, 0); }
}

/* Services hub + detail pages */
.sv-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 13px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease, transform 200ms ease;
}
.sv-btn--light{
  background: #ffffff;
  color: #0a1628;
}
.sv-btn--light:hover{
  background: #ff3b3b;
  color: #ffffff;
  transform: translateY(-1px);
}
.sv-btn--ghost{
  margin-top: 10px;
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,.28);
}
.sv-btn--ghost:hover{
  border-color: #ffffff;
  background: rgba(255,255,255,.08);
}
.sv-hub,
.sv-list,
.sv-why,
.sv-detail-intro,
.sv-detail-overview,
.sv-detail-feature,
.sv-detail-caps,
.sv-detail-visual,
.sv-detail-process,
.sv-detail-keys,
.sv-detail-techs,
.sv-detail-faqs,
.sv-detail-related{
  padding-top: 72px;
  padding-bottom: 72px;
}
.sv-hub .container,
.sv-list .container,
.sv-why .container,
.sv-detail-intro .container,
.sv-detail-caps .container,
.sv-detail-visual .container,
.sv-detail-process .container,
.sv-detail-keys .container,
.sv-detail-techs .container,
.sv-detail-faqs .container,
.sv-detail-related .container{
  width: min(1140px, calc(100% - 48px));
}
.sv-detail-related .container{
  width: min(1200px, calc(100% - 48px));
}
.sv-detail-overview .container,
.sv-detail-feature .container{
  width: min(1180px, calc(100% - 48px));
}
.sv-hub{ background: #ffffff; }
.sv-hub-intro{
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, .75fr);
  gap: clamp(24px, 4vw, 40px);
  align-items: start;
  margin-bottom: 40px;
}
.sv-hub-cta{
  padding: 26px 22px;
  border-radius: 4px 22px 4px 4px;
  background: #0a1628;
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(10,22,40,.16);
}
.sv-hub-cta h3{
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.3;
  color: #ffffff;
}
.sv-hub-cta p{
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,.72);
}
.sv-hub-trust{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 22px;
  border-radius: 16px;
  background: #f4f7fb;
  border: 1px solid rgba(13,18,32,.06);
}
.sv-hub-trust-item{ text-align: center; padding: 8px 6px; }
.sv-hub-trust-item strong{
  display: block;
  margin-bottom: 4px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -.4px;
  color: #0a1628;
}
.sv-hub-trust-item span{
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(13,18,32,.55);
}
.sv-list{ background: #f4f7fb; }

/* Services listing — alternating bands (match reference layout) */
.svc-band{
  position: relative;
  overflow: hidden;
  background: #ffffff;
  padding-top: 96px;
  padding-bottom: 96px;
}
.svc-band-bg{
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: #eceff2;
  clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 90%);
}
.svc-band-grid{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
  width: min(1140px, calc(100% - 48px));
}
.svc-band--alt{
  background: #ffffff;
}
.svc-band--alt .svc-band-grid{
  grid-template-columns: minmax(300px, .9fr) minmax(0, 1.1fr);
}
.svc-band--alt .svc-band-media{ order: 1; }
.svc-band--alt .svc-band-copy{ order: 2; }
.svc-band--alt .svc-band-media{
  justify-content: flex-start;
}
.svc-band-title{
  margin: 0 0 22px;
  font-family: var(--font-section);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 800;
  letter-spacing: -.4px;
  line-height: 1.15;
  color: var(--color-title);
}
.svc-band-text{
  margin: 0 0 16px;
  max-width: 48ch;
  font-family: var(--font-desc);
  font-size: 15.5px;
  line-height: 1.85;
  font-weight: 300;
  color: var(--color-desc);
}
.svc-band-text:last-of-type{
  margin-bottom: 28px;
}
.svc-band-media{
  display: flex;
  justify-content: flex-end;
}
.svc-band-frame{
  margin: 0;
  width: 100%;
  max-width: 540px;
  padding: 12px;
  background: #ffffff;
  border-radius: 8px 72px 8px 8px;
  box-shadow: 0 20px 44px rgba(15, 30, 50, .13);
}
.svc-band-frame img{
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 4px 52px 4px 4px;
}
.svc-band--alt .svc-band-frame{
  border-radius: 72px 8px 8px 8px;
}
.svc-band--alt .svc-band-frame img{
  border-radius: 52px 4px 4px 4px;
}
@media (max-width: 980px){
  .svc-band,
  .svc-band--alt{
    padding-top: 72px;
    padding-bottom: 72px;
  }
  .svc-band-grid,
  .svc-band--alt .svc-band-grid{
    grid-template-columns: 1fr;
  }
  .svc-band--alt .svc-band-media,
  .svc-band--alt .svc-band-copy{
    order: initial;
  }
  .svc-band-media,
  .svc-band--alt .svc-band-media{
    justify-content: center;
  }
  .svc-band-frame,
  .svc-band--alt .svc-band-frame{
    max-width: 560px;
  }
  .svc-band-grid{
    width: min(1140px, calc(100% - 32px));
  }
  .svc-band-bg{
    clip-path: polygon(0 0, 100% 6%, 100% 100%, 0 94%);
  }
}
.sv-list-head{
  max-width: 640px;
  margin: 0 auto 36px;
  text-align: center;
}
.sv-list-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.sv-list-card{
  display: flex;
  flex-direction: column;
  padding: 28px 24px 24px;
  background: #ffffff;
  border: 1px solid rgba(13,18,32,.07);
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(10,22,40,.04);
  scroll-margin-top: 100px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.sv-list-card:hover{
  transform: translateY(-3px);
  border-color: rgba(255,59,59,.18);
  box-shadow: 0 18px 40px rgba(10,22,40,.1);
}
.sv-list-card-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.sv-list-icon{
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255,59,59,.1);
  color: #ff3b3b;
}
.sv-list-num{
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  color: rgba(13,18,32,.28);
}
.sv-list-title{
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -.2px;
  line-height: 1.35;
  color: #0a1628;
}
.sv-list-text{
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(13,18,32,.58);
  flex: 1;
}
.sv-list-points{
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: grid;
  gap: 8px;
}
.sv-list-points li{
  position: relative;
  padding-left: 14px;
  font-size: 13px;
  font-weight: 700;
  color: #0a1628;
}
.sv-list-points li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ff3b3b;
}
.sv-list-link{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  font-size: 14px;
  font-weight: 800;
  color: #ff3b3b;
  text-decoration: none;
}
.sv-list-link:hover{ gap: 11px; }
.sv-why{ background: #ffffff; }
.sv-why-grid{
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}
.sv-why-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.sv-why-list li{
  padding: 20px 20px 20px 22px;
  border-radius: 14px;
  background: #f4f7fb;
  border-left: 3px solid #ff3b3b;
}
.sv-why-list strong{
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: 800;
  color: #0a1628;
}
.sv-why-list span{
  font-size: 14px;
  line-height: 1.65;
  color: rgba(13,18,32,.58);
}
.sv-breadcrumb{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.7);
}
.sv-breadcrumb a{
  color: rgba(255,255,255,.85);
  text-decoration: none;
}
.sv-breadcrumb a:hover{ color: #ffffff; }
.sv-breadcrumb span:last-child{ color: #ffffff; }
.sv-detail-intro{ background: #ffffff; }
.sv-detail-overview{
  position: relative;
  overflow: hidden;
  background: #ffffff;
  padding-top: 110px;
  padding-bottom: 110px;
}
.sv-detail-overview-bg{
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  pointer-events: none;
  background: #eceff2;
  clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
}
.sv-detail-overview-bg::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 0%,
    transparent 46%,
    rgba(255,255,255,.55) 46.15%,
    rgba(255,255,255,.55) 68%,
    transparent 68.15%
  );
}
.sv-detail-overview-grid{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, .9fr);
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
}
.sv-detail-overview-title{
  margin: 0 0 24px;
  font-size: clamp(30px, 3.6vw, 42px);
  font-weight: 800;
  letter-spacing: -.45px;
  line-height: 1.12;
  color: var(--color-title);
}
.sv-detail-overview-text{
  margin: 0 0 18px;
  max-width: 56ch;
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--color-desc);
}
.sv-detail-overview-text:last-child{ margin-bottom: 0; }
.sv-detail-overview-media{
  display: flex;
  justify-content: flex-end;
}
.sv-detail-overview-frame,
.sv-detail-feature-frame{
  margin: 0;
  position: relative;
  width: min(100%, 400px);
  max-width: 400px;
  aspect-ratio: 1 / 1;
  padding: 14px;
  background: #ffffff;
  border: 0;
  box-shadow: 0 18px 42px rgba(15, 30, 50, .14);
  overflow: hidden;
  box-sizing: border-box;
}
.sv-detail-overview-frame{
  border-radius: 14px 72px 14px 72px;
}
.sv-detail-feature-frame{
  border-radius: 72px 14px 72px 14px;
}
.sv-detail-overview-frame::before,
.sv-detail-feature-frame::before{
  display: none;
  content: none;
}
.sv-detail-overview-frame img,
.sv-detail-feature-frame img{
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
}
.sv-detail-overview-frame img{
  border-radius: 8px 58px 8px 58px;
}
.sv-detail-feature-frame img{
  border-radius: 58px 8px 58px 8px;
}
.sv-detail-feature{
  position: relative;
  overflow: hidden;
  background: #ffffff;
  padding-top: 88px;
  padding-bottom: 88px;
}
.sv-detail-feature-bg{
  display: none;
}
.sv-detail-feature-grid{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(0, 1.2fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.sv-detail-feature-title{
  margin: 0 0 22px;
  font-size: clamp(28px, 3.4vw, 38px);
  font-weight: 800;
  letter-spacing: -.4px;
  line-height: 1.15;
  color: var(--color-title);
}
.sv-detail-feature-text{
  margin: 0 0 18px;
  max-width: 54ch;
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--color-desc);
}
.sv-detail-feature-text:last-child{ margin-bottom: 0; }
.sv-detail-feature-media{
  display: flex;
  justify-content: flex-start;
}
.sv-detail-intro-grid{
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, .8fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}
.sv-detail-title{
  margin: 0 0 16px;
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 800;
  letter-spacing: -.4px;
  line-height: 1.2;
  color: #0a1628;
}
.sv-detail-text{
  margin: 0 0 14px;
  max-width: 58ch;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(13,18,32,.6);
}
.sv-detail-aside{
  display: grid;
  gap: 14px;
  position: sticky;
  top: 100px;
}
.sv-detail-cta{
  padding: 26px 22px;
  border-radius: 4px 22px 4px 4px;
  background: linear-gradient(180deg, #0a1628 0%, #122a48 100%);
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(10,22,40,.18);
}
.sv-detail-cta-label{
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #ff3b3b;
}
.sv-detail-cta h3{
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.3;
  color: #ffffff;
}
.sv-detail-cta p{
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,.72);
}
.sv-detail-meta{
  padding: 18px;
  border-radius: 14px;
  background: #f4f7fb;
  border: 1px solid rgba(13,18,32,.06);
  display: grid;
  gap: 14px;
}
.sv-detail-meta-label{
  display: block;
  margin-bottom: 3px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(13,18,32,.45);
}
.sv-detail-meta strong{
  font-size: 14px;
  font-weight: 800;
  color: #0a1628;
}
.sv-detail-caps{ background: #ffffff; }
.sv-section-head{
  max-width: 640px;
  margin: 0 auto 40px;
  text-align: center;
}
.sv-caps-wrap{
  display: grid;
  grid-template-columns: minmax(240px, .8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 48px);
  align-items: start;
}
.sv-caps-side{
  position: sticky;
  top: 110px;
}
.sv-caps-side .sv-detail-title{
  margin-bottom: 12px;
}
.sv-caps-tiles{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.sv-caps-tile{
  padding: 24px 20px 22px;
  border-radius: 16px;
  background: #f4f7fb;
  border: 1px solid rgba(13,18,32,.06);
  border-top: 3px solid #ff3b3b;
  transition: background 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}
.sv-caps-tile:hover{
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(10,22,40,.08);
  transform: translateY(-2px);
}
.sv-caps-tile-num{
  display: inline-block;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  color: #ff3b3b;
}
.sv-caps-tile h3{
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -.15px;
  line-height: 1.35;
  color: #0a1628;
}
.sv-caps-tile p{
  margin: 0;
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(13,18,32,.58);
}
.sv-detail-visual{ background: #ffffff; }
.sv-detail-visual-grid{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}
.sv-check-list{
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.sv-check-list li{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(13,18,32,.62);
}
.sv-check-list svg{
  flex-shrink: 0;
  margin-top: 2px;
  color: #ff3b3b;
}
.sv-check-list strong{ color: #0a1628; }
.sv-detail-visual-media{
  display: flex;
  justify-content: flex-end;
}
.sv-detail-photo{
  margin: 0;
  width: 100%;
  max-width: 500px;
  overflow: hidden;
  border-radius: 6px 36px 6px 6px;
  background: #0a1628;
  box-shadow: 0 22px 48px rgba(10,22,40,.14);
}
.sv-detail-photo img{
  display: block;
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}
.sv-detail-process{
  position: relative;
  overflow: hidden;
  background: #ffffff;
  padding-top: 100px;
  padding-bottom: 110px;
}
.sv-detail-process-bg{
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  pointer-events: none;
  background: #eceff2;
  clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
}
.sv-detail-process-bg::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    108deg,
    transparent 0%,
    transparent 42%,
    rgba(255,255,255,.65) 42.15%,
    rgba(255,255,255,.65) 64%,
    transparent 64.15%
  );
}
.sv-detail-process-bg::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    108deg,
    transparent 0%,
    transparent 78%,
    rgba(255,255,255,.5) 78.15%,
    rgba(255,255,255,.5) 100%
  );
}
.sv-detail-process .container{
  position: relative;
  z-index: 1;
}
.sv-process-shell{ display: block; }
.sv-process-head{
  display: grid;
  justify-items: center;
  text-align: center;
  max-width: 920px;
  width: 100%;
  margin: 0 auto 56px;
  position: static;
}
.sv-process-eyebrow{
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 12px;
  color: #ff3b3b;
  line-height: 1;
  text-align: center;
}
.sv-process-eyebrow::before,
.sv-process-eyebrow::after{
  content: "";
  width: 42px;
  height: 2px;
  border-radius: 999px;
  background: #ff3b3b;
}
.sv-process-title{
  margin: 0;
  width: 100%;
  font-family: var(--font-section);
  font-size: clamp(30px, 3.6vw, 42px);
  line-height: 1.2;
  letter-spacing: -.55px;
  font-weight: 900;
  color: #0a1628;
  text-align: center;
}
.sv-process-title .about-accent-underline{
  color: #ff3b3b;
}
.sv-process-title-line{
  display: block;
  text-align: center;
}
.sv-process-lead{
  display: block;
  width: 100%;
  max-width: 36em;
  margin: 18px 0 0;
  font-family: var(--font-desc);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(13, 18, 32, .62);
  text-align: center;
}
.sv-process-lead-line{
  display: block;
  text-align: center;
}
.sv-process-layout,
.sv-process-intro,
.sv-process-wrap,
.sv-process-heading,
.sv-process-top,
.sv-process-card,
.sv-process-arrow,
.sv-process-rail,
.sv-process-dot,
.sv-process-marker,
.sv-process-label,
.sv-process-content,
.sv-process-index,
.sv-process-body,
.sv-process-board,
.sv-process-tag{ display: none; }
.sv-process{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  max-width: none;
  margin-inline: 0;
  position: relative;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}
.sv-process::before{
  content: "";
  display: block;
  position: absolute;
  top: 23px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 59, 59, .12), rgba(255, 59, 59, .45), rgba(255, 59, 59, .12));
  z-index: 0;
  pointer-events: none;
}
.sv-process-step{
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  min-height: 0;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  transition: transform 200ms ease;
}
.sv-process-step:last-child{
  border-right: 0;
  padding-right: 0;
  padding-bottom: 0;
}
.sv-process-step:nth-child(2n),
.sv-process-step:nth-child(n+3){
  border-bottom: 0;
}
.sv-process-step:hover{
  transform: translateY(-4px);
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}
.sv-process-step::before,
.sv-process-step::after{ display: none; }
.sv-process-num{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  width: 48px;
  height: 48px;
  margin: 0 0 28px;
  padding: 0;
  border: 2px solid #ff3b3b;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 0 8px #eceff2;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .06em;
  line-height: 1;
  color: #ff3b3b;
  -webkit-text-stroke: 0;
  pointer-events: none;
  transition: background 200ms ease, color 200ms ease, box-shadow 200ms ease;
}
.sv-process-step:hover .sv-process-num{
  background: #ff3b3b;
  color: #ffffff;
  box-shadow: 0 0 0 8px #eceff2, 0 10px 24px rgba(255, 59, 59, .28);
}
.sv-process-copy{
  display: block;
  position: relative;
  z-index: 1;
  max-width: none;
  margin-top: 0;
  padding: 0;
  background: transparent;
  border-radius: 0;
}
.sv-process-step h3{
  margin: 0 0 10px;
  padding: 0;
  border: 0;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -.3px;
  line-height: 1.25;
  color: #0a1628;
}
.sv-process-step p{
  margin: 0;
  max-width: 28ch;
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(13, 18, 32, .55);
}

/* Key features — clean horizontal icon strip */
.sv-detail-keys{
  background: #ffffff;
  padding-top: 72px;
  padding-bottom: 72px;
}
.sv-keys-inner{
  max-width: 1180px;
}
.sv-keys-head{
  display: grid;
  justify-items: center;
  text-align: center;
  margin: 0 auto 44px;
  max-width: 760px;
}
.sv-keys-title{
  margin: 16px 0 0;
  width: 100%;
  font-family: var(--font-section);
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 800;
  letter-spacing: -.35px;
  line-height: 1.2;
  color: var(--color-title);
  text-align: center;
}
.sv-keys-lead{
  margin: 14px auto 0;
  max-width: 46em;
  width: 100%;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--color-desc);
  text-align: center;
}
.sv-keys-lead-line{
  display: block;
  text-align: center;
}
.sv-keys-label{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0;
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #ff4d4d;
  line-height: 1;
}
.sv-keys-label-text{
  white-space: nowrap;
}
.sv-keys-label-line{
  display: block;
  width: 42px;
  height: 1.5px;
  background: #ff4d4d;
  flex: 0 0 auto;
  opacity: .9;
}
.sv-keys-strip{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: stretch;
  gap: 0;
}
.sv-keys-cell{
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  text-align: center;
  padding: 8px 18px 4px;
}
.sv-keys-cell:not(:last-child)::after{
  content: "";
  position: absolute;
  top: 8px;
  right: 0;
  bottom: 8px;
  width: 1px;
  background: rgba(10, 22, 40, .12);
}
.sv-keys-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: #ff4d4d;
}
.sv-keys-icon svg{
  width: 40px;
  height: 40px;
  display: block;
}
.sv-keys-name{
  display: block;
  max-width: 12ch;
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -.15px;
  color: #0a1628;
}
.sv-keys-text{
  display: block;
  margin-top: 8px;
  max-width: 22ch;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(13,18,32,.58);
  font-weight: 400;
}
.sv-keys-strip--detailed .sv-keys-name{
  max-width: 18ch;
}
.sv-keys-strip--detailed .sv-keys-cell{
  padding: 8px 14px 8px;
}

/* Technologies we support */
.sv-detail-techs{
  background: #f4f7fb;
}
.sv-techs-head{
  display: grid;
  justify-items: center;
  text-align: center;
  max-width: 820px;
  margin: 0 auto 40px;
}
.sv-detail-techs .about-eyebrow{ color: #ff3b3b; }
.sv-detail-techs .about-title{
  color: #0a1628;
  max-width: 22em;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.sv-techs-title-line{
  display: block;
  text-align: center;
}
.sv-detail-techs .about-accent-underline::after{ background: #ff3b3b; }
.sv-techs-lead{
  display: block;
  margin: 14px auto 0;
  max-width: 48em;
  width: 100%;
  font-size: 15.5px;
  line-height: 1.7;
  color: rgba(13, 18, 32, .55);
  text-align: center;
}
.sv-techs-lead-line{
  display: block;
  text-align: center;
}
.sv-techs-marquee{
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 8px 0 4px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.sv-techs-marquee-track{
  display: flex;
  width: max-content;
  will-change: transform;
}
.sv-techs-marquee--ltr .sv-techs-marquee-track{
  animation: sv-techs-scroll-ltr 28s linear infinite;
}
.sv-techs-marquee:hover .sv-techs-marquee-track{
  animation-play-state: paused;
}
.sv-techs-marquee-group{
  display: flex;
  align-items: stretch;
  gap: 14px;
  padding-right: 14px;
}
.sv-techs-item{
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 156px;
  min-height: 132px;
  padding: 22px 14px;
  background: #ffffff;
  border: 1px solid rgba(13, 18, 32, .06);
  border-radius: 16px;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.sv-techs-item:hover{
  transform: translateY(-4px);
  border-color: rgba(255, 59, 59, .2);
  box-shadow: 0 16px 34px rgba(10, 22, 40, .08);
}
.sv-techs-item--detailed{
  width: 180px;
  min-height: 188px;
  gap: 10px;
  padding: 20px 14px 22px;
  justify-content: flex-start;
}
.sv-techs-text{
  display: block;
  margin-top: 2px;
  max-width: 18ch;
  font-size: 12.5px;
  line-height: 1.5;
  color: rgba(13,18,32,.55);
  text-align: center;
}
.sv-techs-logo{
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
}
.sv-techs-logo img{
  display: block;
  max-width: 48px;
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.sv-techs-item--logo{
  width: 168px;
  min-height: 112px;
  padding: 24px 16px;
}
.sv-techs-item--logo .sv-techs-logo{
  width: 100%;
  max-width: 140px;
  height: 56px;
}
.sv-techs-item--logo .sv-techs-logo img{
  max-width: 128px;
  max-height: 48px;
}
.sv-techs-name{
  font-size: 13px;
  font-weight: 700;
  color: #0a1628;
  text-align: center;
  white-space: nowrap;
}
@keyframes sv-techs-scroll-ltr{
  from{ transform: translateX(0); }
  to{ transform: translateX(calc(-100% / 3)); }
}

/* FAQs â€” navy intro panel + clean list (all service pages) */
.sv-detail-faqs{
  background: #ffffff;
  padding-top: 80px;
  padding-bottom: 88px;
}
.sv-faqs-shell{
  display: grid;
  grid-template-columns: minmax(240px, .85fr) minmax(0, 1.4fr);
  gap: clamp(24px, 4vw, 40px);
  align-items: stretch;
  width: min(1140px, calc(100% - 48px));
  min-height: 520px;
}
.sv-faqs-panel{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(28px, 3vw, 40px);
  border-radius: 8px 28px 8px 8px;
  background: linear-gradient(165deg, #0a1628 0%, #122a48 100%);
  color: #ffffff;
  box-shadow: 0 22px 48px rgba(10, 22, 40, .18);
  min-height: 100%;
}
.sv-faqs-kicker{
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #ff5a5a;
}
.sv-faqs-title{
  margin: 0;
  max-width: 10ch;
  font-family: var(--font-section);
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.4px;
  color: #ffffff;
}
.sv-faqs-title span{
  color: #ff5a5a;
}
.sv-faqs-lead{
  display: block;
  margin: 16px 0 0;
  max-width: 28ch;
  font-family: var(--font-desc);
  font-weight: 300;
  font-size: 15.5px;
  line-height: 1.65;
  letter-spacing: .01em;
  color: rgba(255, 255, 255, .76);
  text-align: left;
}
.sv-faqs-cta{
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  border-bottom: 2px solid rgba(255, 59, 59, .7);
  padding-bottom: 4px;
  width: fit-content;
  transition: color 160ms ease, border-color 160ms ease;
}
.sv-faqs-cta:hover{
  color: #ff6d6d;
  border-color: #ff3b3b;
}
.sv-faqs-list{
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(13, 18, 32, .12);
  align-self: stretch;
  min-height: 100%;
}
.sv-faq-item{
  border: 0;
  border-bottom: 1px solid rgba(13, 18, 32, .12);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}
.sv-faq-item[open]{
  border-color: rgba(13, 18, 32, .12);
  box-shadow: none;
  background: rgba(255, 59, 59, .03);
}
.sv-faq-item summary{
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 8px 20px 4px;
  font-family: var(--font-section);
  font-size: 16.5px;
  font-weight: 700;
  letter-spacing: -.15px;
  line-height: 1.35;
  color: #0a1628;
}
.sv-faq-item summary::-webkit-details-marker{ display: none; }
.sv-faq-q{
  min-width: 0;
  flex: 1;
}
.sv-faq-index{ display: none; }
.sv-faq-icon{
  position: relative;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(13, 18, 32, .16);
  background: #ffffff;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}
.sv-faq-icon::before,
.sv-faq-icon::after{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #0a1628;
  transform: translate(-50%, -50%);
}
.sv-faq-icon::before{
  width: 12px;
  height: 2px;
}
.sv-faq-icon::after{
  width: 2px;
  height: 12px;
  transition: transform 180ms ease, opacity 180ms ease;
}
.sv-faq-item[open] .sv-faq-icon{
  background: #ff3b3b;
  border-color: #ff3b3b;
  transform: none;
}
.sv-faq-item[open] .sv-faq-icon::before,
.sv-faq-item[open] .sv-faq-icon::after{
  background: #ffffff;
}
.sv-faq-item[open] .sv-faq-icon::after{
  opacity: 0;
  transform: translate(-50%, -50%) scaleY(0);
}
.sv-faq-answer{
  padding: 0 42px 20px 4px;
}
.sv-faq-answer p{
  margin: 0;
  max-width: 54ch;
  font-family: var(--font-desc);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: .01em;
  color: var(--color-desc);
  text-align: left;
}

.sv-detail-related{
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #0a1628 0%, #123049 48%, #1a4660 100%);
  padding-top: 88px;
  padding-bottom: 96px;
}
.sv-related-head{
  display: grid;
  justify-items: center;
  text-align: center;
  margin: 0 auto 40px;
  max-width: 720px;
}
.sv-related-copy,
.sv-related-all,
.sv-related-icon,
.sv-related-go{ display: none; }
.sv-related-label{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: #ff3b3b;
}
.sv-related-lead{
  display: block;
  margin: 14px auto 0;
  max-width: 56ch;
  width: 100%;
  font-size: 15.5px;
  line-height: 1.7;
  color: rgba(255,255,255,.72);
  text-align: center;
}
.sv-related-head h2{
  margin: 0 auto;
  max-width: 16ch;
  width: 100%;
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 800;
  letter-spacing: -.4px;
  line-height: 1.2;
  color: #ffffff;
  text-align: center;
}
.sv-related-title-line{
  display: block;
  text-align: center;
  white-space: nowrap;
}
.sv-related-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  border-top: 0;
}
.sv-related-card{
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: stretch;
  min-height: 100%;
  padding: 12px 12px 22px;
  border-radius: 0 42px 0 0;
  background: #ffffff;
  border: 0;
  border-bottom: 0;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .18);
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.sv-related-card:hover{
  transform: translateY(-10px) scale(1.02);
  background: #ffffff;
  border-color: transparent;
  box-shadow: 0 28px 50px rgba(0, 0, 0, .26);
  padding-left: 12px;
  padding-right: 12px;
}
.sv-related-media{
  margin: 0 0 16px;
  overflow: hidden;
  border-radius: 0 32px 0 0;
  background: #e8eef3;
}
.sv-related-media img{
  display: block;
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  transition: transform 280ms ease;
}
.sv-related-card:hover .sv-related-media img{
  transform: scale(1.04);
}
.sv-related-text{
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  padding: 0 6px;
}
.sv-related-card h3{
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -.2px;
  line-height: 1.3;
  color: #0a1628;
}
.sv-related-card p{
  margin: 0 0 16px;
  max-width: none;
  flex: 1;
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(13, 18, 32, .62);
}
.sv-related-more{
  display: inline-block;
  margin-top: auto;
  font-size: 14px;
  font-weight: 800;
  color: #ff3b3b;
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (max-width: 980px){
  .sv-hub-intro,
  .sv-why-grid,
  .sv-detail-intro-grid,
  .sv-detail-overview-grid,
  .sv-detail-feature-grid,
  .sv-detail-visual-grid,
  .sv-caps-wrap{
    grid-template-columns: 1fr;
  }
  .sv-caps-side{ position: static; }
  .sv-caps-tiles{ grid-template-columns: 1fr 1fr; }
  .sv-hub-trust{ grid-template-columns: 1fr 1fr; }
  .sv-list-grid{ grid-template-columns: 1fr 1fr; }
  .sv-process{
    grid-template-columns: 1fr 1fr;
    gap: 32px 28px;
    padding: 0;
  }
  .sv-process::before{ display: none; }
  .sv-process-num{ box-shadow: 0 0 0 8px #eceff2; }
  .sv-keys-strip{ grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; }
  .sv-keys-cell{
    padding: 20px 14px;
  }
  .sv-keys-cell:not(:last-child)::after{ display: none; }
  .sv-keys-cell:nth-child(3n)::after{ display: none; }
  .sv-keys-cell:not(:nth-child(3n))::after{
    display: block;
    top: 18px;
    bottom: 18px;
  }
  .sv-keys-cell:nth-child(-n+3){
    border-bottom: 1px solid rgba(10, 22, 40, .1);
  }
  .sv-keys-cell:nth-child(n+4){ border-bottom: 0; }
  .sv-keys-name{ max-width: 14ch; }
  .sv-faqs-shell{ grid-template-columns: 1fr; gap: 24px; }
  .sv-faqs-panel{ min-height: 0; border-radius: 8px 24px 8px 8px; }
  .sv-faqs-title{ max-width: 14ch; }
  .sv-faqs-lead{ max-width: 42ch; }
  .sv-related-grid{ grid-template-columns: 1fr 1fr; gap: 16px; }
  .sv-related-head h2{ max-width: none; }
  .sv-related-title-line{ white-space: normal; }
  .sv-detail-aside{ position: static; }
  .sv-detail-overview-media,
  .sv-detail-feature-media,
  .sv-detail-visual-media{ justify-content: center; }
  .sv-detail-overview-frame,
  .sv-detail-feature-frame,
  .sv-detail-photo{
    max-width: 400px;
  }
  .sv-detail-overview,
  .sv-detail-feature{
    padding-top: 72px;
    padding-bottom: 72px;
  }
  .sv-detail-overview-bg,
  .sv-detail-process-bg{
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
  }
  .sv-detail-overview-frame,
  .sv-detail-feature-frame{
    width: min(100%, 320px);
    max-width: 320px;
    aspect-ratio: 1 / 1;
    padding: 12px;
  }
  .sv-detail-overview-frame{
    border-radius: 12px 56px 12px 56px;
  }
  .sv-detail-feature-frame{
    border-radius: 56px 12px 56px 12px;
  }
  .sv-detail-overview-frame::before,
  .sv-detail-feature-frame::before{
    display: none;
  }
  .sv-detail-overview-frame img,
  .sv-detail-feature-frame img{
    aspect-ratio: 1 / 1;
    height: 100%;
  }
  .sv-detail-overview-frame img{
    border-radius: 8px 44px 8px 44px;
  }
  .sv-detail-feature-frame img{
    border-radius: 44px 8px 44px 8px;
  }
}
@media (min-width: 641px) and (max-width: 980px){
  .sv-techs-marquee--ltr .sv-techs-marquee-track{
    animation-duration: 24s;
  }
  .sv-techs-item{
    width: 142px;
    min-height: 120px;
    padding: 18px 12px;
  }
  .sv-techs-item--detailed{
    width: 164px;
    min-height: 172px;
  }
  .sv-techs-item--logo{
    width: 150px;
  }
}
@media (max-width: 640px){
  .sv-hub,
  .sv-list,
  .sv-why,
  .sv-detail-intro,
  .sv-detail-overview,
  .sv-detail-feature,
  .sv-detail-caps,
  .sv-detail-visual,
  .sv-detail-process,
  .sv-detail-keys,
  .sv-detail-techs,
  .sv-detail-faqs,
  .sv-detail-related{
    padding-top: 52px;
    padding-bottom: 52px;
  }
  .sv-hub-trust,
  .sv-list-grid,
  .sv-caps-tiles{ grid-template-columns: 1fr; }
  .sv-keys-head{ margin-bottom: 28px; }
  .sv-keys-strip{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sv-keys-cell{
    padding: 18px 12px;
    border-bottom: 1px solid rgba(10, 22, 40, .1) !important;
  }
  .sv-keys-cell:nth-child(n+4){
    border-bottom: 1px solid rgba(10, 22, 40, .1) !important;
  }
  .sv-keys-cell:not(:last-child)::after{ display: none; }
  .sv-keys-cell:nth-child(odd)::after{
    display: block;
    top: 16px;
    bottom: 16px;
  }
  .sv-keys-cell:nth-last-child(-n+2){ border-bottom: 0 !important; }
  .sv-techs-marquee{
    padding: 4px 0;
  }
  .sv-techs-marquee--ltr .sv-techs-marquee-track{
    animation-duration: 20s;
  }
  .sv-techs-marquee-group{
    gap: 10px;
    padding-right: 10px;
  }
  .sv-techs-item{
    width: 128px;
    min-width: 128px;
    min-height: 110px;
    padding: 16px 10px;
  }
  .sv-techs-item--detailed{
    width: 148px;
    min-width: 148px;
    min-height: 160px;
  }
  .sv-techs-item--logo{
    width: 136px;
    min-width: 136px;
    min-height: 96px;
  }
  .sv-techs-logo{
    width: 50px;
    height: 50px;
  }
  .sv-techs-logo img{
    max-width: 42px;
    max-height: 42px;
  }
  .sv-techs-name{
    font-size: 13px;
    line-height: 1.35;
  }
  .sv-faq-item summary{ font-size: 15.5px; padding: 18px 4px; }
  .sv-faq-answer{ padding: 0 8px 18px 4px; }
  .sv-process{
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    max-width: none;
    margin: 0;
    padding: 0;
  }
  .sv-process::before{
    display: none !important;
  }
  .sv-process-step{
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    width: 100%;
    min-width: 0;
    padding: 0;
    margin: 0;
    background: #ffffff;
    border: 1px solid rgba(13, 18, 32, .08);
    border-top: 3px solid #ff3b3b;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(13, 18, 32, .06);
    position: relative;
  }
  .sv-process-step:last-child{
    padding-bottom: 0;
  }
  .sv-process-step::after{
    display: none !important;
  }
  .sv-process-step:hover{
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(13, 18, 32, .1);
    border-top-color: #e63232;
  }
  .sv-process-num{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    width: 34px;
    height: 34px;
    margin: 14px 14px 0;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 59, 59, .1);
    color: #ff3b3b;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .04em;
    box-shadow: none;
  }
  .sv-process-num::before{
    content: none;
  }
  .sv-process-step:hover .sv-process-num{
    background: #ff3b3b;
    color: #ffffff;
    box-shadow: 0 6px 16px rgba(255, 59, 59, .28);
  }
  .sv-process-copy{
    width: 100%;
    max-width: none;
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 10px 14px 16px;
    box-shadow: none;
  }
  .sv-process-step h3{
    font-size: 14px;
    margin: 0 0 6px;
    line-height: 1.35;
    color: #0a1628;
    position: static;
    padding-bottom: 0;
  }
  .sv-process-step h3::after{
    display: none;
  }
  .sv-process-step p{
    max-width: none;
    margin: 0;
    font-size: 12.5px;
    line-height: 1.55;
    color: rgba(13, 18, 32, .6);
  }
  .sv-detail-process{
    padding-top: 52px;
    padding-bottom: 56px;
    background: #f4f7fb;
  }
  .sv-detail-process-bg{
    display: none;
  }
  .sv-process-head{
    margin-bottom: 28px;
  }
  .sv-detail-process .about-title,
  .sv-process-title{
    max-width: none;
    font-size: clamp(26px, 7vw, 34px);
  }
  .sv-process-eyebrow{
    font-size: 11px;
    gap: 10px;
  }
  .sv-process-eyebrow::before,
  .sv-process-eyebrow::after{
    width: 32px;
  }
  .sv-process-lead{
    font-size: 14.5px;
    line-height: 1.65;
    max-width: none;
  }
  .sv-process-lead-line{
    white-space: normal;
  }
  .sv-related-grid{ grid-template-columns: 1fr; }
  .sv-related-card{
    border-radius: 0 36px 0 0;
    padding: 12px 12px 20px;
  }
  .sv-related-card:hover{
    transform: translateY(-6px);
    padding-left: 12px;
    padding-right: 12px;
  }
  .sv-related-card h3{ font-size: 18px; }
}
/* Global section titles: Corporate A Std Demi SC */
.h1,
.h2,
.about2-eyebrow,
.about2-title,
.about2-panel-title,
.about2-value-title,
.about2-who-title,
.services2-eyebrow,
.services2-title,
.services2-card-title,
.tech2-eyebrow,
.tech2-title,
.blogs2-eyebrow,
.blogs2-title,
.blogs2-card-title,
.blogs2-card-title a,
.about-eyebrow,
.about-title,
.about-hero-title,
.about-mv-heading,
.about-value-title,
.about-stat-label,
.team-pro-name,
.team-pro-role,
.team-frame-name,
.team-frame-role,
.contact-strip-item strong,
.sv-faqs-title,
.team-cta-label,
.team-cta-title,
.team-best-title,
.team-best-name,
.team-best-role,
.team-featured-name,
.team-featured-role,
.sv-list-title,
.sv-detail-title,
.sv-detail-overview-title,
.sv-detail-feature-title,
.sv-keys-title,
.sv-keys-card-title,
.sv-pro-name,
.footer-heading,
.sv-detail-process .about-title,
.sv-process-title,
.sv-detail-techs .about-title,
.sv-detail-faqs .about-title,
.sv-detail-keys .about-title,
.sv-related-head h2,
.sv-related-card h3,
.sv-faq-item summary,
.sv-process-step h3,
.sv-caps-tile h3,
.sv-detail-cta h2,
.team-band-heading,
.team-band-name,
.team-band-role,
.team-band-kicker{
  font-family: var(--font-section);
}

/* Global section descriptions: Cooper Old Style Std Light */
.lead,
.about2-lead,
.about2-body,
.services2-lead,
.services2-card-text,
.blogs2-lead,
.blogs2-excerpt,
.about-lead,
.about-mv-text,
.about-text,
.about-value-text,
.about2-value-text,
.about2-who-text,
.team-pro-lead,
.team-pro-bio,
.team-frame-lead,
.team-frame-bio,
.contact-lead,
.contact-strip-item p,
.team-best-lead,
.team-best-bio,
.team-featured-bio,
.sv-list-text,
.sv-detail-text,
.sv-detail-overview-text,
.sv-detail-feature-text,
.sv-process-lead,
.sv-techs-lead,
.sv-faqs-lead,
.sv-keys-lead,
.sv-keys-card-text,
.sv-pro-bio,
.sv-related-card p,
.sv-faq-answer,
.sv-process-step p,
.sv-caps-tile p,
.sv-detail-cta p,
.team-band-bio{
  font-family: var(--font-desc);
  font-weight: 300;
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.6;
  letter-spacing: .01em;
  color: var(--color-desc);
  text-align: left;
}

/* Light text on dark/hero surfaces */
.hero-lead{
  font-family: var(--font-desc);
  font-weight: 300;
  font-size: clamp(16px, 1.45vw, 18px);
  line-height: 1.6;
  letter-spacing: .01em;
  color: rgba(255, 255, 255, .94);
  text-align: center;
  text-shadow:
    0 1px 2px rgba(0,0,0,.5),
    0 8px 22px rgba(0,0,0,.4);
}
.about-hero .about-hero-lead{
  color: rgba(255, 255, 255, .88);
  text-align: center;
}
.hero-title,
.hero-badge,
.hero-cta{
  text-align: center;
}
.team-cta .team-cta-copy p,
.sv-detail-cta p,
.team-band--dark .team-band-bio{
  color: rgba(255, 255, 255, .88);
}

/* Home about right panel (dark card) â€” keep light contrast */
.about2-panel-title{
  font-family: var(--font-section);
  color: #fff;
}
.about2-panel-text{
  font-family: var(--font-desc);
  font-weight: 300;
  font-size: 12px;
  line-height: 1.55;
  letter-spacing: .01em;
  color: rgba(255, 255, 255, .78);
  text-align: left;
}

/* Services pages â€” main title / description colors */
.sv-list-title,
.sv-detail-title,
.sv-detail-overview-title,
.sv-detail-feature-title,
.sv-process-step h3,
.sv-caps-tile h3,
.sv-keys-name,
.sv-faq-item summary,
.sv-related-card h3,
.sv-list .about-title,
.sv-detail-process .about-title,
.sv-process-title,
.sv-detail-techs .about-title,
.sv-detail-faqs .about-title,
.sv-detail-keys .about-title,
.about-cta .about-title{
  color: var(--color-title);
}
.sv-list-text,
.sv-detail-text,
.sv-detail-overview-text,
.sv-detail-feature-text,
.sv-process-lead,
.sv-process-step p,
.sv-caps-tile p,
.sv-techs-lead,
.sv-faqs-lead,
.sv-keys-lead,
.sv-related-card p,
.sv-faq-answer,
.sv-faq-answer p,
.about-cta .about-lead{
  color: var(--color-desc);
}
.sv-detail-cta h3,
.sv-related-head h2{
  color: #ffffff;
}
.sv-detail-cta p{
  color: rgba(255, 255, 255, .88);
}
.team-frame-name{
  color: var(--color-title);
}
.team-frame-lead,
.team-frame-bio{
  color: var(--color-desc);
}
.team-frame-bio{
  font-size: 14.5px;
  line-height: 1.65;
}
.sv-faqs-title{
  color: #ffffff;
  font-family: var(--font-section);
}
.sv-faqs-lead{
  color: rgba(255, 255, 255, .76);
  font-size: 15.5px;
  text-align: left;
}
.sv-faq-answer p{
  color: var(--color-desc);
  font-size: 15px;
  line-height: 1.7;
}
.sv-faq-item summary,
.sv-faq-q{
  color: var(--color-title);
  font-size: 16.5px;
}

/* ========== Dark mode surface overrides ========== */
html[data-theme="dark"] .site-header{
  background: var(--header-bg);
  border-bottom-color: rgba(255,255,255,.08);
  box-shadow: 0 8px 28px rgba(0,0,0,.45);
  backdrop-filter: none;
}
html[data-theme="dark"] .site-header.is-scrolled{
  background: var(--header-bg);
  box-shadow: 0 10px 32px rgba(0,0,0,.55);
}
html[data-theme="dark"] .site-header .nav{
  gap: 28px;
}
html[data-theme="dark"] .site-header .nav-link{
  color: var(--nav-link);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .6px;
  text-transform: uppercase;
}
html[data-theme="dark"] .site-header .nav-link:hover{
  color: var(--nav-link-strong);
}
html[data-theme="dark"] .site-header .nav-link:hover::after{
  background: var(--accent);
}
html[data-theme="dark"] .site-header .nav-link.is-active{
  color: var(--nav-link-strong);
  font-weight: 700;
}
html[data-theme="dark"] .site-header .nav-link.is-active::after{
  background: var(--accent);
  height: 2.5px;
}
html[data-theme="dark"] .site-header .nav-caret{
  color: var(--nav-link);
  opacity: .9;
}
html[data-theme="dark"] .site-header .nav-item:hover .nav-caret,
html[data-theme="dark"] .site-header .nav-item.is-open .nav-caret,
html[data-theme="dark"] .site-header .nav-link.is-active .nav-caret{
  color: var(--nav-link-strong);
}
html[data-theme="dark"] .site-header .btn-header-cta{
  background: #ff3b3b;
  border-color: #ff3b3b;
  color: #fff;
}
html[data-theme="dark"] .site-header .btn-header-cta:hover{
  background: #e63232;
  border-color: #e63232;
}
html[data-theme="dark"] .brand-logo--light{
  display: none;
}
html[data-theme="dark"] .brand-logo--dark{
  display: block;
  filter: none;
}
html[data-theme="dark"] .nav-dropdown,
html[data-theme="dark"] .mobile-panel,
html[data-theme="dark"] .mobile-inner,
html[data-theme="dark"] .site-footer,
html[data-theme="dark"] .about-cta-inner,
html[data-theme="dark"] .contact-form-card,
html[data-theme="dark"] .contact-map-frame,
html[data-theme="dark"] .contact-strip-item,
html[data-theme="dark"] .sv-list-card,
html[data-theme="dark"] .sv-faq-item,
html[data-theme="dark"] .sv-techs-item,
html[data-theme="dark"] .blogs2-card,
html[data-theme="dark"] .services2-card,
html[data-theme="dark"] .team-frame-item,
html[data-theme="dark"] .sv-caps-tile{
  background: var(--panel);
  border-color: var(--border);
  color: var(--text);
}
html[data-theme="dark"] .home-about,
html[data-theme="dark"] .home-blogs,
html[data-theme="dark"] .sv-list,
html[data-theme="dark"] .svc-band,
html[data-theme="dark"] .sv-detail-techs,
html[data-theme="dark"] .sv-detail-faqs,
html[data-theme="dark"] .contact-strip,
html[data-theme="dark"] .contact-map,
html[data-theme="dark"] .about-cta,
html[data-theme="dark"] .team-frame,
html[data-theme="dark"] .contact-page,
html[data-theme="dark"] .sv-detail-intro,
html[data-theme="dark"] .sv-detail-overview,
html[data-theme="dark"] .sv-detail-feature,
html[data-theme="dark"] .sv-detail-caps,
html[data-theme="dark"] .sv-detail-process,
html[data-theme="dark"] .sv-detail-keys,
html[data-theme="dark"] .about-story,
html[data-theme="dark"] .about-mission,
html[data-theme="dark"] .about-values,
html[data-theme="dark"] .section{
  background: var(--bg);
}
html[data-theme="dark"] .sv-detail-overview-bg,
html[data-theme="dark"] .svc-band-bg,
html[data-theme="dark"] .sv-detail-process-bg,
html[data-theme="dark"] .team-frame-bg,
html[data-theme="dark"] .contact-channels li,
html[data-theme="dark"] .sv-hub-trust,
html[data-theme="dark"] .sv-detail-meta{
  background: var(--surface-soft);
}
html[data-theme="dark"] .about-title,
html[data-theme="dark"] .about2-title,
html[data-theme="dark"] .services2-title,
html[data-theme="dark"] .blogs2-title,
html[data-theme="dark"] .sv-detail-title,
html[data-theme="dark"] .sv-detail-overview-title,
html[data-theme="dark"] .sv-detail-feature-title,
html[data-theme="dark"] .sv-list-title,
html[data-theme="dark"] .sv-list-points li,
html[data-theme="dark"] .svc-band-title,
html[data-theme="dark"] .sv-process-step h3,
html[data-theme="dark"] .sv-process-title,
html[data-theme="dark"] .sv-keys-name,
html[data-theme="dark"] .sv-techs-name,
html[data-theme="dark"] .sv-related-card h3,
html[data-theme="dark"] .blogs2-card-title,
html[data-theme="dark"] .blogs2-card-title a,
html[data-theme="dark"] .services2-card-title,
html[data-theme="dark"] .team-frame-name,
html[data-theme="dark"] .contact-channels a,
html[data-theme="dark"] .contact-channels span,
html[data-theme="dark"] .contact-field span,
html[data-theme="dark"] .footer-heading,
html[data-theme="dark"] .h1,
html[data-theme="dark"] .h2{
  color: var(--color-title);
}
html[data-theme="dark"] .about-lead,
html[data-theme="dark"] .about-text,
html[data-theme="dark"] .about2-lead,
html[data-theme="dark"] .about2-body,
html[data-theme="dark"] .services2-lead,
html[data-theme="dark"] .services2-card-text,
html[data-theme="dark"] .blogs2-lead,
html[data-theme="dark"] .blogs2-excerpt,
html[data-theme="dark"] .sv-list-text,
html[data-theme="dark"] .svc-band-text,
html[data-theme="dark"] .sv-detail-text,
html[data-theme="dark"] .sv-detail-overview-text,
html[data-theme="dark"] .sv-detail-feature-text,
html[data-theme="dark"] .sv-process-lead,
html[data-theme="dark"] .sv-process-step p,
html[data-theme="dark"] .sv-techs-lead,
html[data-theme="dark"] .sv-faqs-lead,
html[data-theme="dark"] .sv-faq-answer p,
html[data-theme="dark"] .sv-related-card p,
html[data-theme="dark"] .team-frame-lead,
html[data-theme="dark"] .contact-lead,
html[data-theme="dark"] .footer-about,
html[data-theme="dark"] .muted,
html[data-theme="dark"] .lead{
  color: var(--color-desc);
}
html[data-theme="dark"] .sv-faq-item summary,
html[data-theme="dark"] .sv-faq-q{
  color: var(--color-title);
}
html[data-theme="dark"] .sv-faqs-list,
html[data-theme="dark"] .sv-faq-item,
html[data-theme="dark"] .sv-faq-item[open]{
  border-color: var(--border);
  background: transparent;
}
html[data-theme="dark"] .sv-faq-item[open]{
  background: rgba(255, 59, 59, .06);
}
html[data-theme="dark"] .sv-faq-icon{
  border-color: var(--border);
  background: var(--panel);
}
html[data-theme="dark"] .sv-faq-icon::before,
html[data-theme="dark"] .sv-faq-icon::after{
  background: var(--color-title);
}
html[data-theme="dark"] .contact-field input,
html[data-theme="dark"] .contact-field select,
html[data-theme="dark"] .contact-field textarea{
  background: var(--input-bg);
  border-color: var(--border);
  color: var(--color-title);
}
html[data-theme="dark"] .nav-dropdown-link{
  color: var(--nav-link);
}
html[data-theme="dark"] .nav-dropdown-link:hover,
html[data-theme="dark"] .nav-dropdown-link:focus-visible{
  background: rgba(255,255,255,.06);
  color: #fff;
}
html[data-theme="dark"] .mobile-panel{
  background: var(--bg);
}
html[data-theme="dark"] .mobile-links a,
html[data-theme="dark"] .mobile-details summary{
  color: var(--color-title);
}
html[data-theme="dark"] .services2-btn--outline{
  color: #0a1628;
  background: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 10px 28px rgba(0,0,0,.25);
}
html[data-theme="dark"] .services2-btn--outline:hover{
  background: #f3f6fb;
  border-color: #f3f6fb;
  color: #0a1628;
}
html[data-theme="dark"] .home-services{
  background:
    radial-gradient(520px 280px at 12% 78%, rgba(255,59,59,.16), transparent 62%),
    #090b11;
  color: #f3f6fb;
}
html[data-theme="dark"] .home-tech,
html[data-theme="dark"] .tech2,
html[data-theme="dark"] .services2{
  background: transparent;
}
html[data-theme="dark"] .services2-eyebrow{
  color: #ff4c4c;
}
html[data-theme="dark"] .services2-eyebrow::after{
  background: #ff4c4c;
}
html[data-theme="dark"] .services2-title{
  color: #ffffff;
  font-family: var(--font-section);
  font-weight: 700;
  letter-spacing: -.02em;
}
html[data-theme="dark"] .services2-accent-underline{
  color: #ff4c4c;
}
html[data-theme="dark"] .services2-accent-underline::after{
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 12' preserveAspectRatio='none'%3E%3Cpath d='M0 8 Q50 2 100 6 T200 4' stroke='%23ff4c4c' stroke-width='3' fill='none' opacity='.75'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
}
html[data-theme="dark"] .services2-lead{
  color: rgba(232,237,245,.78);
  font-family: var(--font-desc);
}
html[data-theme="dark"] .services2-btn--primary{
  background: #ff4c4c;
  border-color: #ff4c4c;
  box-shadow: 0 14px 36px rgba(255,59,59,.42);
}
html[data-theme="dark"] .services2-btn--primary:hover{
  background: #ff3b3b;
  border-color: #ff3b3b;
  box-shadow: 0 18px 44px rgba(255,59,59,.5);
}
html[data-theme="dark"] .services2-card{
  background: rgba(18,26,41,.92);
  border-color: rgba(255,255,255,.1);
}
html[data-theme="dark"] .services2-card:hover{
  border-color: rgba(255,76,76,.45);
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
}
html[data-theme="dark"] .services2-card-title{
  color: #f3f6fb;
}
html[data-theme="dark"] .services2-card-text{
  color: rgba(232,237,245,.7);
}
html[data-theme="dark"] .services2-card-num{
  color: rgba(255,255,255,.28);
}
html[data-theme="dark"] .services2-card-icon{
  color: #ff4c4c;
  background: rgba(255,76,76,.12);
}
html[data-theme="dark"] .footer-links a,
html[data-theme="dark"] .footer-contact,
html[data-theme="dark"] .footer-copy,
html[data-theme="dark"] .footer-legal a{
  color: var(--color-desc);
}
html[data-theme="dark"] .footer-links a:hover,
html[data-theme="dark"] .footer-legal a:hover{
  color: #ff6d6d;
}
html[data-theme="dark"] .about-cta-inner,
html[data-theme="dark"] .sv-list-card,
html[data-theme="dark"] .blogs2-card,
html[data-theme="dark"] .team-frame-item,
html[data-theme="dark"] .contact-form-card{
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
}
html[data-theme="dark"] .sv-detail-overview-frame,
html[data-theme="dark"] .sv-detail-feature-frame,
html[data-theme="dark"] .team-frame-photo{
  background: #1a2436;
}

html[data-theme="dark"] .sv-faqs-panel .sv-faqs-title,
html[data-theme="dark"] .sv-faqs-title{
  color: #ffffff;
}
html[data-theme="dark"] .sv-faqs-panel .sv-faqs-lead,
html[data-theme="dark"] .sv-faqs-lead{
  color: rgba(255, 255, 255, .76);
}
html[data-theme="dark"] .about2-panel-title,
html[data-theme="dark"] .sv-detail-cta h3,
html[data-theme="dark"] .sv-related-head h2,
html[data-theme="dark"] .about-hero-title,
html[data-theme="dark"] .about-hero-lead{
  color: rgba(255, 255, 255, .88);
}
html[data-theme="dark"] .about2-panel-text,
html[data-theme="dark"] .sv-detail-cta p,
html[data-theme="dark"] .hero-lead{
  color: rgba(255, 255, 255, .82);
}

/* ========== Dark mode: about / services / service pages ========== */
html[data-theme="dark"] .about-stats{
  background: #0a1628;
}
html[data-theme="dark"] .about-stat-num{
  color: #ff3b3b;
}
html[data-theme="dark"] .about-stat-label{
  color: rgba(255, 255, 255, .74);
}
html[data-theme="dark"] .about-story{
  background: var(--bg);
}
html[data-theme="dark"] .about-story-points li{
  color: var(--color-title);
}
html[data-theme="dark"] .about-story-metric span{
  color: var(--color-desc);
}
html[data-theme="dark"] .about-story-metric{
  border-color: var(--border);
}
html[data-theme="dark"] .about-story-inset{
  border-color: var(--panel);
  background: #1a2436;
}
html[data-theme="dark"] .about-mv-tablist{
  border-color: var(--border);
}
html[data-theme="dark"] .about-mv-tab{
  color: rgba(232, 237, 245, .45);
}
html[data-theme="dark"] .about-mv-tab:hover,
html[data-theme="dark"] .about-mv-tab.is-active{
  color: var(--color-title);
}
html[data-theme="dark"] .about-mv-heading{
  color: var(--color-title);
}
html[data-theme="dark"] .about-mv-text{
  color: var(--color-desc);
}
html[data-theme="dark"] .about-mv-deco--square{
  background: rgba(255, 255, 255, .06);
}
html[data-theme="dark"] .about-values-strip{
  background: var(--panel);
  border-color: var(--border);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .35);
}
html[data-theme="dark"] .about-value-item + .about-value-item,
html[data-theme="dark"] .about-value-item{
  border-color: var(--border);
}
html[data-theme="dark"] .about-value-item:hover{
  background: rgba(255, 255, 255, .03);
}
html[data-theme="dark"] .about-value-title{
  color: var(--color-title);
}
html[data-theme="dark"] .about-value-text{
  color: var(--color-desc);
}
html[data-theme="dark"] .sv-list-num{
  color: rgba(232, 237, 245, .38);
}
html[data-theme="dark"] .sv-list-card:hover{
  border-color: rgba(255, 59, 59, .35);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .4);
}
html[data-theme="dark"] .sv-detail-meta{
  background: var(--surface-soft);
  border-color: var(--border);
}
html[data-theme="dark"] .sv-detail-meta-label{
  color: rgba(232, 237, 245, .5);
}
html[data-theme="dark"] .sv-detail-meta strong{
  color: var(--color-title);
}
html[data-theme="dark"] .sv-detail-cta h3,
html[data-theme="dark"] .sv-detail-cta p,
html[data-theme="dark"] .sv-btn--ghost{
  color: #ffffff;
}
html[data-theme="dark"] .sv-detail-cta p{
  color: rgba(255, 255, 255, .78);
}
html[data-theme="dark"] .sv-btn--light{
  background: #ffffff;
  color: #0a1628;
}
html[data-theme="dark"] .sv-process-num{
  background: var(--panel);
  color: #ff5c5c;
  border-color: #ff3b3b;
  box-shadow: 0 0 0 8px rgba(255, 255, 255, .06);
}
html[data-theme="dark"] .sv-process-step:hover .sv-process-num{
  background: #ff3b3b;
  color: #ffffff;
  box-shadow: 0 0 0 8px rgba(255, 59, 59, .14), 0 10px 24px rgba(255, 59, 59, .28);
}
html[data-theme="dark"] .sv-detail-process-bg{
  background: #121a29;
}
html[data-theme="dark"] .sv-detail-process-bg::before{
  background: linear-gradient(
    108deg,
    transparent 0%,
    transparent 42%,
    rgba(255, 255, 255, .04) 42.15%,
    rgba(255, 255, 255, .04) 64%,
    transparent 64.15%
  );
}
html[data-theme="dark"] .sv-detail-process-bg::after{
  background: linear-gradient(
    108deg,
    transparent 0%,
    transparent 78%,
    rgba(255, 255, 255, .03) 78.15%,
    rgba(255, 255, 255, .03) 100%
  );
}
html[data-theme="dark"] .sv-keys-cell:not(:last-child)::after{
  background: rgba(255, 255, 255, .12);
}
html[data-theme="dark"] .sv-keys-cell{
  border-color: var(--border);
}
html[data-theme="dark"] .sv-keys-icon{
  color: #ff5c5c;
}
html[data-theme="dark"] .sv-keys-label{
  color: #ff5c5c;
}
html[data-theme="dark"] .sv-keys-label-line{
  background: #ff5c5c;
}
html[data-theme="dark"] .sv-techs-item{
  background: var(--panel);
  border-color: var(--border);
}
html[data-theme="dark"] .sv-techs-logo{
  background: rgba(255, 255, 255, .06);
}
html[data-theme="dark"] .sv-detail-related{
  background: linear-gradient(180deg, #0a1628 0%, #123049 48%, #1a4660 100%);
}
html[data-theme="dark"] .sv-related-head h2{
  color: #ffffff;
}
html[data-theme="dark"] .sv-related-card{
  background: #ffffff;
  color: #0a1628;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .35);
}
html[data-theme="dark"] .sv-related-card:hover{
  background: #ffffff;
}
html[data-theme="dark"] .sv-related-card h3{
  color: #0a1628;
}
html[data-theme="dark"] .sv-related-card p{
  color: rgba(13, 18, 32, .58);
}
html[data-theme="dark"] .sv-related-more{
  color: #ff3b3b;
}
html[data-theme="dark"] .sv-faqs-panel{
  background: linear-gradient(180deg, #0a1628 0%, #122a48 100%);
}
html[data-theme="dark"] .sv-faqs-kicker,
html[data-theme="dark"] .sv-faqs-panel .sv-faqs-title,
html[data-theme="dark"] .sv-faqs-panel .sv-faqs-title span{
  color: #ffffff;
}
html[data-theme="dark"] .sv-faqs-panel .sv-faqs-lead{
  color: rgba(255, 255, 255, .76);
}
html[data-theme="dark"] .sv-faqs-cta{
  color: #ffffff;
  border-color: rgba(255, 255, 255, .28);
}
html[data-theme="dark"] .sv-detail-overview-bg{
  background: var(--surface-soft);
}
html[data-theme="dark"] .svc-band-bg{
  background: var(--surface-soft);
}
html[data-theme="dark"] .svc-band-frame{
  background: var(--panel);
}
html[data-theme="dark"] .site-footer{
  background: var(--panel);
  color: var(--color-desc);
  box-shadow: 0 -8px 28px rgba(0, 0, 0, .35);
}
html[data-theme="dark"] .footer-top{
  background: transparent;
}
html[data-theme="dark"] .footer-logo-img--light{
  display: none;
}
html[data-theme="dark"] .footer-logo-img--dark{
  display: block;
  filter: none;
}
html[data-theme="dark"] .footer-about{
  color: var(--color-desc);
}
html[data-theme="dark"] .footer-heading{
  color: var(--color-title);
}
html[data-theme="dark"] .footer-links a,
html[data-theme="dark"] .footer-contact li,
html[data-theme="dark"] .footer-contact a,
html[data-theme="dark"] .footer-contact span,
html[data-theme="dark"] .footer-copy,
html[data-theme="dark"] .footer-legal a{
  color: var(--color-desc);
}
html[data-theme="dark"] .footer-links a:hover,
html[data-theme="dark"] .footer-contact a:hover,
html[data-theme="dark"] .footer-legal a:hover{
  color: #ff6d6d;
}
html[data-theme="dark"] .footer-social-link{
  background: rgba(255, 255, 255, .06);
  border-color: var(--border);
  color: var(--color-title);
  filter: none;
}
html[data-theme="dark"] .footer-social-link:hover{
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
}
html[data-theme="dark"] .footer-contact-icon{
  background: rgba(255, 59, 59, .16);
  color: #ff5c5c;
}
html[data-theme="dark"] .footer-cta{
  color: #ffffff;
}
@media (max-width: 640px){
  html[data-theme="dark"] .footer-social-link{
    background: rgba(255,255,255,.06);
    border-color: rgba(255,255,255,.14);
  }
  html[data-theme="dark"] .footer-mobile-btn--email{
    background: rgba(255,255,255,.06);
    border-color: rgba(255,255,255,.18);
    color: #f3f6fb;
  }
  html[data-theme="dark"] .footer-mobile-btn--email:hover{
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.28);
  }
  html[data-theme="dark"] .footer-col--contact{
    background: var(--panel);
    border-color: rgba(255,255,255,.12);
    box-shadow: 0 12px 32px rgba(0,0,0,.28);
  }
}
html[data-theme="dark"] .footer-bottom{
  background: var(--surface-soft);
  border-top-color: var(--border);
}
html[data-theme="dark"] .about-cta-inner .about-title,
html[data-theme="dark"] .about-cta-inner .about-lead,
html[data-theme="dark"] .about-cta-inner .about-eyebrow{
  color: inherit;
}
html[data-theme="dark"] .about-cta-inner .about-title{
  color: var(--color-title);
}
html[data-theme="dark"] .about-cta-inner .about-lead{
  color: var(--color-desc);
}
html[data-theme="dark"] .about-cta-inner .about-eyebrow{
  color: #ff3b3b;
}

html[data-theme="dark"] .bp,
html[data-theme="dark"] .bp-body{
  background: var(--bg);
}
html[data-theme="dark"] .bp-banner{
  background:
    radial-gradient(ellipse 50% 60% at 100% 0%, rgba(255,59,59,.1), transparent 55%),
    linear-gradient(180deg, #0b1018 0%, #101722 100%);
  border-bottom-color: var(--border);
}
html[data-theme="dark"] .bp-banner-copy,
html[data-theme="dark"] .bp-banner-title,
html[data-theme="dark"] .bp-banner-meta strong{
  color: #ffffff;
}
html[data-theme="dark"] .bp-banner-crumb{
  color: rgba(255,255,255,.45);
}
html[data-theme="dark"] .bp-banner-crumb a{
  color: rgba(255,255,255,.62);
}
html[data-theme="dark"] .bp-banner-crumb a:hover{ color: #ffffff; }
html[data-theme="dark"] .bp-banner-excerpt,
html[data-theme="dark"] .bp-banner-meta span{
  color: rgba(255,255,255,.62);
}
html[data-theme="dark"] .bp-banner-meta div{
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.1);
  box-shadow: none;
}
html[data-theme="dark"] .bp-banner-media{
  background: #151b26;
  border-color: rgba(255,255,255,.08);
  box-shadow: 0 24px 48px rgba(0,0,0,.35);
}
html[data-theme="dark"] .blog-filter-chip,
html[data-theme="dark"] .bp-points,
html[data-theme="dark"] .bp-rail-box:not(.bp-rail-box--dark){
  background: var(--panel);
  border-color: var(--border);
  color: var(--text);
}
html[data-theme="dark"] .blog-filters-label,
html[data-theme="dark"] .bp-block p,
html[data-theme="dark"] .bp-points li,
html[data-theme="dark"] .bp-rail-list em{
  color: var(--color-desc);
}
html[data-theme="dark"] .bp-lead,
html[data-theme="dark"] .bp-block h2,
html[data-theme="dark"] .bp-points h2,
html[data-theme="dark"] .bp-rail-list strong{
  color: var(--color-title);
}
html[data-theme="dark"] .bp-lead{
  border-color: var(--border);
}

/* ---------- Creative page loader (light theme first) ---------- */
html.is-loading,
html.is-loading body{
  overflow: hidden;
}

.page-loader{
  --loader-bg: #f4f6f8;
  --loader-card: #ffffff;
  --loader-border: rgba(13,18,32,.06);
  --loader-title: #0a1628;
  --loader-track: rgba(13,18,32,.08);
  --loader-accent: #ff3b3b;
  --loader-arc-outer: #9eb6d4;
  --loader-shadow: 0 28px 70px rgba(13,18,32,.12);

  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  overflow: hidden;
  background: var(--loader-bg);
  color: var(--loader-title);
  transition: opacity .45s ease, visibility .45s ease;
}

.page-loader.is-done{
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader.is-done .page-loader__card{
  transform: translateY(-10px) scale(.97);
  opacity: 0;
  transition: transform .4s ease, opacity .3s ease;
}

.page-loader__card{
  position: relative;
  z-index: 2;
  width: min(360px, 92vw);
  padding: 2.6rem 2rem 1.85rem;
  border-radius: 40px;
  text-align: center;
  background: var(--loader-card);
  border: 1px solid var(--loader-border);
  box-shadow: var(--loader-shadow);
  animation: loaderCardIn .65s cubic-bezier(.22,1,.36,1) both;
}

.page-loader__mark{
  position: relative;
  width: 168px;
  height: 168px;
  margin: 0 auto 1.85rem;
}

.page-loader__arc{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.page-loader__arc--outer{
  color: var(--loader-arc-outer);
  animation: loaderSpin 1.85s linear infinite;
}

.page-loader__arc--inner{
  color: var(--loader-accent);
  animation: loaderSpin 1.2s cubic-bezier(.45,.05,.55,.95) infinite reverse;
}

.page-loader__logo-wrap{
  position: absolute;
  inset: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 10px 28px rgba(13,18,32,.08),
    inset 0 1px 0 rgba(255,255,255,.9);
}

.page-loader__logo{
  width: min(108px, 72%);
  height: auto;
  max-height: 46px;
  object-fit: contain;
  display: block;
}

.page-loader__logo--dark{
  display: none;
}

.page-loader__progress{
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: .7rem;
  padding: 0 .15rem;
}

.page-loader__track{
  height: 4px;
  border-radius: 999px;
  background: var(--loader-track);
  overflow: hidden;
}

.page-loader__bar{
  display: block;
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, #1a0505 0%, #8b1010 35%, #ff3b3b 100%);
  transition: width .18s linear;
}

.page-loader__pct{
  min-width: 2.75rem;
  font-family: Inter, "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--loader-title);
  font-variant-numeric: tabular-nums;
  text-align: right;
}

/* Dark theme loader */
html[data-theme="dark"] .page-loader{
  --loader-bg: #070d18;
  --loader-card: #121a29;
  --loader-border: rgba(255,255,255,.1);
  --loader-title: #f3f6fb;
  --loader-track: rgba(255,255,255,.12);
  --loader-arc-outer: #6ea8ff;
  --loader-shadow: 0 28px 70px rgba(0,0,0,.45);
}

html[data-theme="dark"] .page-loader__logo-wrap{
  background: #0c1422;
  box-shadow: 0 10px 28px rgba(0,0,0,.35);
}

html[data-theme="dark"] .page-loader__logo--light{
  display: none;
}

html[data-theme="dark"] .page-loader__logo--dark{
  display: block;
}

html[data-theme="dark"] .page-loader__bar{
  background: linear-gradient(90deg, #2a0606 0%, #c01f1f 40%, #ff3b3b 100%);
}

@keyframes loaderSpin{
  to{ transform: rotate(360deg); }
}
@keyframes loaderCardIn{
  from{
    opacity: 0;
    transform: translateY(16px) scale(.97);
  }
  to{
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce){
  .page-loader,
  .page-loader__arc,
  .page-loader__card{
    animation: none !important;
    transition: opacity .25s ease, visibility .25s ease !important;
    transform: none !important;
  }
}

/* ========== Site-wide responsive polish ========== */
img,
video,
iframe,
svg{
  max-width: 100%;
}
.hero-slide-media{
  width: 100%;
  height: 100%;
  max-width: none;
}
h1, h2, h3, h4, p, li, a, span, label, button{
  overflow-wrap: break-word;
}
.container{
  width: min(var(--container), calc(100% - 40px));
}

@media (max-width: 1200px){
  .header-inner{
    grid-template-columns: minmax(160px, 200px) minmax(0, 1fr) auto;
    gap: 12px;
  }
  .nav{
    gap: 14px;
  }
  .nav-link{
    font-size: 12px;
    letter-spacing: .2px;
  }
}

@media (max-width: 1100px){
  body{ padding-top: 76px; }
  .menu-btn{ display: inline-grid; place-items: center; }
  .nav{ display: none; }
  .header-inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }
  .brand{
    flex: 0 0 auto;
    width: fit-content;
    max-width: calc(100% - 96px);
    min-width: 0;
  }
  .brand-logo{
    height: 42px;
    width: auto;
    max-width: 100%;
  }
}

@media (max-width: 980px){
  .container,
  .home-about2 .container,
  .home-services .container,
  .home-tech .container,
  .home-blogs .container,
  .about-cta .container,
  .team-frame > .container,
  .sv-detail-related .container,
  .sv-detail-feature .container,
  .sv-detail-process .container{
    width: min(var(--container), calc(100% - 32px));
  }
  .hero-slides,
  .hero-overlay{
    min-height: min(560px, 78vh);
  }
  .hero-overlay{
    padding: 80px 12px 96px;
  }
  .hero-left{
    max-width: 100%;
    padding-inline: 8px;
  }
  .hero-title{
    white-space: normal;
    font-size: clamp(28px, 7vw, 42px);
    line-height: 1.12;
  }
  .hero-lead{
    font-size: 16px;
    max-width: 42ch;
  }
  .hero-cta{
    justify-content: center;
    width: 100%;
  }
  .hero-indicators--right{
    right: 12px;
    display: flex;
  }
  .hero-dot{
    min-width: 34px;
    font-size: 11px;
    gap: 8px;
  }
  .hero-counter-steps{
    gap: 12px;
  }
  .hero-services-item{
    font-size: 12px;
  }
  .about2-title,
  .services2-title,
  .tech2-title,
  .blogs2-title,
  .about-title,
  .about-hero-title,
  .svc-band-title,
  .sv-detail-title,
  .sv-detail-overview-title,
  .sv-detail-feature-title,
  .bp-banner-title{
    font-size: clamp(26px, 6.4vw, 36px);
    line-height: 1.2;
  }
  .about2-panel{
    position: static;
    width: 100%;
    max-width: none;
    margin-top: 16px;
  }
  .services2-layout,
  .about2-top,
  .contact-layout,
  .about-story-grid,
  .about-mv-panel-grid,
  .bp-banner-shell,
  .bp-layout,
  .svc-band-grid,
  .sv-detail-intro-grid,
  .sv-detail-overview-grid,
  .sv-detail-feature-grid,
  .sv-faqs-shell{
    grid-template-columns: 1fr;
  }
  .services2-intro{
    position: static;
  }
  .hero-cta .hero-btn,
  .services2-actions .services2-btn{
    min-height: 46px;
  }
}

@media (max-width: 640px){
  body{ padding-top: 70px; }
  .container,
  .home-about2 .container,
  .home-services .container,
  .home-tech .container,
  .home-blogs .container,
  .about-cta .container,
  .team-frame > .container,
  .sv-detail-related .container,
  .sv-detail-feature .container,
  .sv-detail-process .container,
  .bp-banner-shell,
  .bp-layout,
  .svc-band-grid{
    width: min(var(--container), calc(100% - 24px));
  }
  .header-inner{
    padding: 10px 0;
  }
  .brand-logo{ height: 36px; }
  .theme-toggle,
  .menu-btn{
    width: 40px;
    height: 40px;
  }
  .hero-slides,
  .hero-overlay{
    min-height: min(480px, 76vh);
  }
  .hero-overlay{
    padding: 52px 0 100px;
  }
  .hero-cta{
    flex-direction: column;
    align-items: stretch;
  }
  .hero-btn{
    width: 100%;
  }
  .hero-indicators--right{
    top: auto;
    bottom: 96px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    display: flex !important;
  }
  .hero-counter-steps{
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  .hero-dot{
    min-width: 36px;
    min-height: 44px;
    padding: 0 2px;
    justify-content: center;
  }
  .hero-dot::before{
    width: 18px;
    height: 3px;
  }
  .hero-dot[aria-selected="true"]::before{
    width: 26px;
  }
  .hero-left{
    padding-right: 8px;
    padding-left: 8px;
    text-align: center;
    align-items: center;
  }
  .hero-services-bar{
    padding: 12px 0;
  }
  .section,
  .home-about2,
  .home-services,
  .home-tech,
  .home-blogs,
  .contact-page,
  .contact-strip,
  .team-frame,
  .about-story,
  .about-mission,
  .about-values,
  .about-stats{
    padding-top: 48px;
    padding-bottom: 52px;
  }
  .about2-image{ min-height: 240px; }
  .about2-mini-stats{
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .services2-actions,
  .about-story-actions,
  .about-cta-actions,
  .bp-actions,
  .hero-cta{
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .services2-btn,
  .about-cta-actions .services2-btn,
  .bp-actions .services2-btn{
    width: 100%;
    justify-content: center;
  }
  .blogs2-grid,
  .sv-related-grid,
  .sv-list-grid,
  .about-stats-grid,
  .about-values-strip,
  .contact-form-grid,
  .contact-strip-grid,
  .team-frame-grid{
    grid-template-columns: 1fr;
  }
  .team-frame-grid{
    max-width: 100%;
  }
  .footer-bottom-inner{
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .page-loader{
    padding: 1rem;
  }
  .page-loader__card{
    width: min(320px, 100%);
    padding: 1.9rem 1.25rem 1.4rem;
    border-radius: 32px;
  }
  .page-loader__mark{
    width: 140px;
    height: 140px;
    margin-bottom: 1.4rem;
  }
  .page-loader__progress{
    grid-template-columns: 1fr auto;
    gap: .5rem;
  }
  .mobile-links a,
  .mobile-details summary{
    min-height: 44px;
  }
}

@media (max-width: 480px){
  .container{
    width: calc(100% - 20px);
  }
  .hero-title{
    font-size: clamp(24px, 8vw, 32px);
  }
  .hero-lead{
    font-size: 15px;
  }
  .about2-mini-stats{
    grid-template-columns: 1fr 1fr !important;
    gap: 16px 12px;
  }
  .about-hero,
  .about-hero--wide{
    aspect-ratio: auto;
    min-height: 180px;
    max-height: none;
    height: 180px;
  }
  .about-hero-inner,
  .about-hero--wide .about-hero-inner{
    padding: 32px 0;
  }
  .page-loader__mark{
    width: 128px;
    height: 128px;
    margin-bottom: 1.2rem;
  }
}

input,
select,
textarea{
  max-width: 100%;
}
@media (max-width: 640px){
  input,
  select,
  textarea,
  button{
    font-size: 16px;
  }
}

@media (max-width: 420px){
  .hero-left{
    padding-right: 8px;
    padding-left: 8px;
  }
}

/* ========== Mobile header only ========== */
@media (max-width: 1100px){
  .site-header{
    z-index: 120;
    overflow: visible;
  }
  .header-inner{
    min-height: 58px;
    padding: 8px 0;
    gap: 10px;
  }
  .brand{
    flex: 0 0 auto;
    width: fit-content;
    max-width: calc(100% - 96px);
    min-width: 0;
  }
  .brand-logo{
    height: 38px;
    width: auto;
    max-width: 100%;
  }
  .header-actions{
    gap: 8px;
    flex: 0 0 auto;
  }
  .theme-toggle,
  .site-header .menu-btn{
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }
  .site-header .menu-btn{
    position: relative;
    z-index: 121;
    background: #0a1628;
    border-color: #0a1628;
  }
  .site-header .menu-btn span{
    position: absolute;
    left: 50%;
    width: 16px;
    height: 2px;
    margin: 0;
    background: #ffffff;
    transition: transform 200ms ease, opacity 160ms ease, top 200ms ease;
    transform: translateX(-50%);
  }
  .site-header .menu-btn span:nth-child(1){ top: 14px; }
  .site-header .menu-btn span:nth-child(2){ top: 20px; }
  .site-header .menu-btn span:nth-child(3){ top: 26px; }
  .site-header .menu-btn.is-open span:nth-child(1){
    top: 20px;
    transform: translateX(-50%) rotate(45deg);
  }
  .site-header .menu-btn.is-open span:nth-child(2){ opacity: 0; }
  .site-header .menu-btn.is-open span:nth-child(3){
    top: 20px;
    transform: translateX(-50%) rotate(-45deg);
  }

  .mobile-panel[hidden]{
    display: none !important;
  }
  .mobile-panel.is-open{
    display: block !important;
    position: fixed;
    left: 0;
    right: 0;
    top: 70px;
    bottom: 0;
    z-index: 110;
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(13,18,32,.08);
    background: #ffffff;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    max-height: none;
  }
  .mobile-inner{
    padding: 16px 0 calc(24px + env(safe-area-inset-bottom, 0px));
  }
  .mobile-links{
    gap: 6px;
  }
  .mobile-links a{
    border: 0;
    border-radius: 12px;
    background: transparent;
    padding: 14px 12px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .02em;
    text-transform: none;
    color: #0a1628;
    min-height: 48px;
    display: flex;
    align-items: center;
  }
  .mobile-links a:hover{
    background: rgba(13,18,32,.04);
  }
  .mobile-links a.is-active{
    background: rgba(255,59,59,.08);
    color: #ff3b3b;
    box-shadow: inset 3px 0 0 #ff3b3b;
    border-color: transparent;
  }
  .mobile-details{
    border: 0;
    border-radius: 12px;
    background: transparent;
  }
  .mobile-details summary{
    padding: 14px 12px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .02em;
    text-transform: none;
    min-height: 48px;
  }
  .mobile-details[open]{
    background: rgba(13,18,32,.03);
  }
  .mobile-sublinks{
    padding: 0 8px 10px;
    gap: 2px;
  }
  .mobile-sublinks a{
    padding: 12px 12px 12px 18px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(13,18,32,.72);
    min-height: 48px;
    background: transparent;
  }
  .mobile-cta{
    display: flex;
    margin-top: 10px;
  }

  html.is-menu-open .back-to-top{
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  html[data-theme="dark"] .site-header .menu-btn{
    background: #ff3b3b;
    border-color: #ff3b3b;
  }
  html[data-theme="dark"] .site-header .menu-btn span{
    background: #ffffff;
  }
  html[data-theme="dark"] .mobile-panel.is-open{
    background: #070d18;
    border-top-color: rgba(255,255,255,.1);
  }
  html[data-theme="dark"] .mobile-links a,
  html[data-theme="dark"] .mobile-details summary{
    color: #f3f6fb;
  }
  html[data-theme="dark"] .mobile-links a:hover,
  html[data-theme="dark"] .mobile-details[open]{
    background: rgba(255,255,255,.05);
  }
  html[data-theme="dark"] .mobile-links a.is-active{
    background: rgba(255,59,59,.14);
    color: #ff6d6d;
  }
  html[data-theme="dark"] .mobile-sublinks a{
    color: rgba(232,237,245,.72);
  }
}

@media (max-width: 640px){
  body{ padding-top: 64px; }
  .site-header .header-inner{
    min-height: 52px;
    padding: 6px 0;
  }
  .brand-logo{
    height: 38px;
    width: auto;
    max-width: 100%;
  }
  .theme-toggle,
  .site-header .menu-btn{
    width: 40px;
    height: 40px;
  }
  .site-header .menu-btn span:nth-child(1){ top: 13px; }
  .site-header .menu-btn span:nth-child(2){ top: 19px; }
  .site-header .menu-btn span:nth-child(3){ top: 25px; }
  .site-header .menu-btn.is-open span:nth-child(1),
  .site-header .menu-btn.is-open span:nth-child(3){
    top: 19px;
  }
  .mobile-panel.is-open{
    top: 64px;
  }
}
/* Back to top button + scroll progress */
.back-to-top{
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(22px, env(safe-area-inset-bottom));
  z-index: 90;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  color: #ff3b3b;
  box-shadow: 0 12px 28px rgba(13, 18, 32, .14);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 220ms ease, visibility 220ms ease, transform 220ms ease, background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}
.back-to-top.is-visible{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover{
  background: #ff3b3b;
  color: #ffffff;
  box-shadow: 0 14px 32px rgba(255, 59, 59, .3);
  transform: translateY(-2px);
}
.back-to-top:focus-visible{
  outline: 2px solid #0a1628;
  outline-offset: 3px;
}
.back-to-top__progress{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  pointer-events: none;
}
.back-to-top__track,
.back-to-top__bar{
  fill: none;
  stroke-width: 3;
}
.back-to-top__track{
  stroke: rgba(13, 18, 32, .12);
}
.back-to-top__bar{
  stroke: #ff3b3b;
  stroke-linecap: round;
  stroke-dasharray: 125.6;
  stroke-dashoffset: 125.6;
  transition: stroke-dashoffset 80ms linear;
}
.back-to-top__icon{
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: transparent;
}
.back-to-top__icon svg{
  display: block;
}
.back-to-top:hover .back-to-top__bar{
  stroke: #ffffff;
}
.back-to-top:hover .back-to-top__track{
  stroke: rgba(255, 255, 255, .35);
}
html[data-theme="dark"] .back-to-top{
  background: #121a29;
  color: #ff5c5c;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .35);
}
html[data-theme="dark"] .back-to-top__track{
  stroke: rgba(255, 255, 255, .16);
}
html[data-theme="dark"] .back-to-top:hover{
  background: #ff3b3b;
  color: #ffffff;
}
html[data-theme="dark"] .back-to-top:focus-visible{
  outline-color: #ffffff;
}
@media (max-width: 640px){
  .back-to-top{
    right: 14px;
    bottom: max(84px, calc(env(safe-area-inset-bottom) + 68px));
    width: 48px;
    height: 48px;
  }
  .back-to-top__icon{
    width: 30px;
    height: 30px;
  }
}
@media (prefers-reduced-motion: reduce){
  .back-to-top{
    transition: opacity 160ms ease, visibility 160ms ease;
    transform: none;
  }
  .back-to-top:hover{
    transform: none;
  }
  .back-to-top__bar{
    transition: none;
  }
}

/* ========== Final responsive + overflow fixes ========== */
html, body{
  max-width: 100%;
}
img, video, iframe, svg, table{
  max-width: 100%;
  height: auto;
}
.site-header,
.mobile-panel,
.hero,
.hero-slider,
.hero-slides,
.section,
.site-footer,
.container,
.about-hero,
.svc-band,
.sv-detail-intro,
.sv-detail-overview,
.sv-detail-feature,
.contact-page,
.bp{
  max-width: 100%;
}

@media (max-width: 1100px){
  .nav{ display: none !important; }
  .menu-btn{ display: inline-grid !important; place-items: center; }
  .header-inner{
    display: flex !important;
    justify-content: space-between;
    align-items: center;
  }
}

@media (max-width: 980px){
  .hero-grid,
  .about2-top,
  .svc-band-grid,
  .svc-band--alt .svc-band-grid,
  .sv-detail-intro-grid,
  .sv-detail-overview-grid,
  .sv-detail-feature-grid,
  .sv-faqs-shell,
  .bp-banner-shell,
  .bp-layout,
  .contact-layout,
  .home-services .services2-grid{
    grid-template-columns: 1fr !important;
  }
  .svc-band--alt .svc-band-media,
  .svc-band--alt .svc-band-copy{
    order: unset;
  }
  .hero-cta,
  .services2-actions,
  .about-cta-actions,
  .about-story-actions,
  .bp-actions{
    justify-content: center;
  }
  .hero-btn,
  .services2-btn,
  .about-cta-actions .services2-btn{
    max-width: 100%;
  }
}

@media (max-width: 640px){
  body{
    padding-top: 64px;
  }
  .container{
    width: min(var(--container), calc(100% - 24px)) !important;
  }
  .footer-grid{
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: 24px 16px;
  }
  .footer-brand,
  .footer-col--contact{
    grid-column: 1 / -1 !important;
    width: 100%;
  }
  .footer-col:not(.footer-col--contact){
    grid-column: auto;
    width: 100%;
    min-width: 0;
  }
  .footer-bottom-inner{
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }
  .footer-legal{
    flex-wrap: wrap;
    justify-content: center;
  }
  .contact-form-grid,
  .contact-strip-grid,
  .blogs2-grid,
  .sv-related-grid,
  .team-frame-grid,
  .about-stats-grid,
  .about2-mini-stats{
    grid-template-columns: 1fr !important;
  }
  .about2-mini-stats{
    grid-template-columns: 1fr 1fr !important;
  }
  .hero-title{
    font-size: clamp(26px, 7.5vw, 36px);
    line-height: 1.15;
  }
  .hero-lead,
  .about2-lead,
  .svc-band-text,
  .sv-detail-text,
  .about-lead{
    font-size: 15px;
    line-height: 1.55;
  }
  .mobile-panel.is-open{
    top: 64px;
    height: calc(100dvh - 64px);
    -webkit-overflow-scrolling: touch;
  }
  .page-loader__card{
    width: min(300px, calc(100vw - 32px));
  }
}

@media (max-width: 420px){
  .container{
    width: calc(100% - 20px) !important;
  }
  .about2-mini-stats{
    grid-template-columns: 1fr 1fr !important;
    gap: 14px 10px;
  }
  .brand-logo{
    height: 36px;
    width: auto;
    max-width: 100%;
  }
  .hero-cta .hero-btn,
  .services2-btn{
    width: 100%;
    justify-content: center;
  }
}

/* ========== Mobile polish ========== */
@media (max-width: 640px){
  body{
    padding-top: 68px !important;
  }
  .site-header .header-inner{
    min-height: 54px;
  }
  .brand{
    flex: 0 0 auto !important;
    width: fit-content !important;
    max-width: calc(100% - 96px) !important;
    min-width: 0 !important;
  }
  .brand-logo{
    height: 38px !important;
    width: auto !important;
    max-width: 100% !important;
    object-fit: contain !important;
  }
  .brand-logo--light{
    display: block !important;
  }
  .brand-logo--dark{
    display: none !important;
  }
  html[data-theme="dark"] .brand-logo--light{
    display: none !important;
  }
  html[data-theme="dark"] .brand-logo--dark{
    display: block !important;
  }
  .footer-logo{
    flex: 0 0 auto !important;
    width: fit-content !important;
    max-width: 100% !important;
  }
  .footer-logo-img{
    height: 40px !important;
    width: auto !important;
    max-width: min(180px, 70vw) !important;
    object-fit: contain !important;
  }
  .footer-logo-img--light{
    display: block !important;
  }
  .footer-logo-img--dark{
    display: none !important;
  }
  html[data-theme="dark"] .footer-logo-img--light{
    display: none !important;
  }
  html[data-theme="dark"] .footer-logo-img--dark{
    display: block !important;
  }
  .footer-brand{
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
  }
  .footer-about{
    align-self: stretch !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 0 20px !important;
    padding: 0 clamp(18px, 6vw, 32px) !important;
    box-sizing: border-box !important;
    font-family: Inter, system-ui, sans-serif !important;
    font-weight: 400 !important;
    font-size: 14.5px !important;
    line-height: 1.72 !important;
    letter-spacing: -.008em !important;
    text-align: center !important;
    text-wrap: pretty;
    color: rgba(13, 18, 32, .65) !important;
  }
  html[data-theme="dark"] .footer-about{
    color: rgba(232, 237, 245, .74) !important;
  }
  .mobile-panel.is-open{
    top: 68px;
    height: calc(100dvh - 68px);
  }
  .about2-panel-text{
    font-size: 13px;
    line-height: 1.55;
  }
  .about2-image{
    min-height: 240px;
  }
  .about2-media{
    padding-bottom: 0;
  }
  .contact-copy .about-title{
    max-width: none;
  }
  .contact-lead{
    max-width: none;
  }
  .footer-bottom-inner{
    align-items: center;
    text-align: center;
  }
  .footer-legal{
    justify-content: center;
  }
  .tech2-head{
    margin-bottom: 36px;
  }
  .blogs2-head{
    margin-bottom: 28px;
  }
  .sv-keys-strip{
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0;
  }
  .sv-keys-cell{
    padding: 16px 10px;
    border-bottom: 1px solid rgba(10, 22, 40, .1) !important;
  }
  .sv-keys-cell:nth-child(n+4){
    border-bottom: 1px solid rgba(10, 22, 40, .1) !important;
  }
  .sv-keys-cell:not(:last-child)::after{
    display: none;
  }
  .sv-keys-cell:nth-child(odd)::after{
    display: block;
    top: 14px;
    bottom: 14px;
  }
  .sv-keys-cell:nth-last-child(-n+2){
    border-bottom: 0 !important;
  }
  .sv-keys-name{
    max-width: none;
    font-size: 13.5px;
    line-height: 1.35;
  }
  .sv-keys-icon{
    width: 42px;
    height: 42px;
  }
  .sv-keys-icon svg{
    width: 34px;
    height: 34px;
  }
  .sv-techs-marquee{
    padding: 4px 0 !important;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent) !important;
    mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent) !important;
  }
  .sv-techs-marquee--ltr .sv-techs-marquee-track{
    animation: sv-techs-scroll-ltr 20s linear infinite !important;
  }
  .sv-techs-marquee:hover .sv-techs-marquee-track{
    animation-play-state: paused !important;
  }
  .sv-techs-marquee-group{
    gap: 10px !important;
    padding-right: 10px !important;
  }
  .sv-techs-item{
    flex: 0 0 auto !important;
    width: 128px !important;
    min-width: 128px !important;
    min-height: 110px !important;
    padding: 16px 10px !important;
  }
  .sv-techs-item--detailed{
    width: 148px !important;
    min-width: 148px !important;
    min-height: 160px !important;
  }
  .sv-techs-item--logo{
    width: 136px !important;
    min-width: 136px !important;
    min-height: 96px !important;
  }
  .sv-techs-logo{
    width: 50px;
    height: 50px;
  }
  .sv-techs-logo img{
    max-width: 42px;
    max-height: 42px;
  }
  .sv-techs-name{
    font-size: 13px;
    line-height: 1.35;
  }
  html[data-theme="dark"] .sv-keys-cell,
  html[data-theme="dark"] .sv-keys-cell:nth-child(n+4){
    border-bottom-color: rgba(255, 255, 255, .12) !important;
  }
  html[data-theme="dark"] .sv-keys-cell:nth-last-child(-n+2){
    border-bottom: 0 !important;
  }
  .sv-detail-process{
    padding-top: 52px !important;
    padding-bottom: 56px !important;
    background: #f4f7fb !important;
  }
  .sv-detail-process-bg{
    display: none !important;
  }
  .sv-process-head{
    margin-bottom: 28px;
    padding: 0 2px;
  }
  .sv-detail-process .about-title,
  .sv-process-title{
    max-width: none;
    font-size: clamp(26px, 7vw, 34px);
  }
  .sv-process-eyebrow{
    font-size: 11px;
    gap: 10px;
  }
  .sv-process-eyebrow::before,
  .sv-process-eyebrow::after{
    width: 32px;
  }
  .sv-process-lead{
    font-size: 14.5px;
    max-width: none;
  }
  .sv-process-lead-line{
    white-space: normal;
  }
  .sv-process{
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .sv-process::before{
    display: none !important;
  }
  .sv-process-step{
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    text-align: left !important;
    width: 100% !important;
    min-width: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    background: #ffffff !important;
    border: 1px solid rgba(13, 18, 32, .08) !important;
    border-top: 3px solid #ff3b3b !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 8px 22px rgba(13, 18, 32, .06) !important;
    position: relative;
  }
  .sv-process-step:last-child{
    padding-bottom: 0 !important;
  }
  .sv-process-step::after{
    display: none !important;
  }
  .sv-process-step:not(:last-child)::after{
    display: none !important;
  }
  .sv-process-step:hover{
    transform: translateY(-3px) !important;
    box-shadow: 0 14px 28px rgba(13, 18, 32, .1) !important;
    border-top-color: #e63232 !important;
  }
  .sv-process-num{
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    width: 34px !important;
    height: 34px !important;
    margin: 14px 14px 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 50% !important;
    background: rgba(255, 59, 59, .1) !important;
    color: #ff3b3b !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    letter-spacing: .04em !important;
    box-shadow: none !important;
  }
  .sv-process-num::before{
    content: none;
  }
  .sv-process-step:hover .sv-process-num{
    background: #ff3b3b !important;
    color: #ffffff !important;
    box-shadow: 0 6px 16px rgba(255, 59, 59, .28) !important;
  }
  .sv-process-copy{
    width: 100%;
    max-width: none;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    padding: 10px 14px 16px !important;
    box-shadow: none !important;
  }
  .sv-process-step h3{
    font-size: 14px;
    margin: 0 0 6px;
    line-height: 1.35;
    color: #0a1628;
    position: static;
    padding-bottom: 0;
  }
  .sv-process-step h3::after{
    display: none;
  }
  .sv-process-step p{
    font-size: 12.5px;
    line-height: 1.55;
    max-width: none;
    margin: 0;
    color: rgba(13, 18, 32, .6);
  }
  html[data-theme="dark"] .sv-detail-process{
    background: var(--bg) !important;
  }
  html[data-theme="dark"] .sv-process-step{
    background: var(--panel) !important;
    border-color: rgba(255, 255, 255, .1) !important;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .22) !important;
  }
  html[data-theme="dark"] .sv-process-step:hover{
    box-shadow: 0 14px 28px rgba(0, 0, 0, .28) !important;
  }
  html[data-theme="dark"] .sv-process-num{
    background: rgba(255, 59, 59, .16) !important;
    color: #ff5c5c !important;
    box-shadow: none !important;
  }
  html[data-theme="dark"] .sv-process-step:hover .sv-process-num{
    background: #ff3b3b !important;
    color: #ffffff !important;
    box-shadow: 0 6px 16px rgba(255, 59, 59, .28) !important;
  }
  html[data-theme="dark"] .sv-process-step h3{
    color: var(--color-title);
  }
  html[data-theme="dark"] .sv-process-step p{
    color: rgba(232, 237, 245, .72);
  }
}
@media (max-width: 480px){
  .hero-overlay{
    padding: 44px 0 108px;
  }
  .hero-indicators--right{
    bottom: 88px;
  }
}

/* Consultation request modal */
html.consult-modal-open{
  overflow: hidden;
}
.consult-modal{
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 24px 16px;
}
.consult-modal[hidden]{
  display: none !important;
}
.consult-modal__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(8, 14, 28, .55);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 200ms ease;
}
.consult-modal__panel{
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  max-height: min(92vh, 860px);
  overflow: auto;
  padding: 28px 28px 26px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(13, 18, 32, .06);
  box-shadow: 0 24px 64px rgba(8, 14, 28, .22);
  transform: translateY(14px) scale(.98);
  opacity: 0;
  transition: transform 220ms ease, opacity 220ms ease;
}
.consult-modal.is-open .consult-modal__backdrop{
  opacity: 1;
}
.consult-modal.is-open .consult-modal__panel{
  transform: translateY(0) scale(1);
  opacity: 1;
}
.consult-modal__close{
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eef1f5;
  color: #0a1628;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}
.consult-modal__close:hover{
  background: rgba(255, 59, 59, .12);
  color: #ff3b3b;
}
.consult-modal__head{
  margin-bottom: 22px;
  padding-right: 40px;
}
.consult-modal__eyebrow{
  margin: 0 0 10px;
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #ff3b3b;
}
.consult-modal__title{
  margin: 0 0 8px;
  font-family: var(--font-section);
  font-size: clamp(26px, 3.2vw, 32px);
  line-height: 1.18;
  letter-spacing: -.45px;
  font-weight: 800;
  color: #0a1628;
}
.consult-modal__lead{
  margin: 0;
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-weight: 400;
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(13, 18, 32, .58);
}
.consult-modal__success{
  margin-bottom: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(24, 160, 88, .1);
  border: 1px solid rgba(24, 160, 88, .22);
}
.consult-modal__success strong{
  display: block;
  margin-bottom: 4px;
  color: #0f7a45;
  font-size: 15px;
}
.consult-modal__success p{
  margin: 0;
  color: rgba(13, 18, 32, .65);
  font-size: 14px;
  line-height: 1.5;
}
.consult-modal__form{
  display: grid;
  gap: 14px;
}
.consult-modal__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.consult-field{
  display: grid;
  gap: 7px;
}
.consult-field > span:first-child{
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  color: #0a1628;
  line-height: 1.3;
}
.consult-field > span:first-child em{
  font-style: normal;
  font-weight: 500;
  color: rgba(13, 18, 32, .45);
}
.consult-field input,
.consult-field textarea,
.consult-field__locked{
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  border: 1px solid rgba(13, 18, 32, .14);
  border-radius: 10px;
  background: #ffffff;
  color: #0a1628;
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-size: 14.5px;
  line-height: 1.4;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.consult-field input::placeholder,
.consult-field textarea::placeholder{
  color: rgba(13, 18, 32, .38);
}
.consult-field textarea{
  resize: vertical;
  min-height: 110px;
}
.consult-field__locked{
  position: relative;
  display: flex;
  align-items: center;
  min-height: 46px;
  padding-right: 36px;
  background: #f7f8fa;
  color: #0a1628;
  font-weight: 600;
  cursor: default;
  user-select: none;
}
.consult-field__locked::after{
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 1.8px solid rgba(13, 18, 32, .4);
  border-bottom: 1.8px solid rgba(13, 18, 32, .4);
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
  opacity: .55;
}
.consult-field input:focus,
.consult-field textarea:focus{
  border-color: rgba(255, 59, 59, .5);
  box-shadow: 0 0 0 3px rgba(255, 59, 59, .12);
}
.consult-modal__submit{
  margin-top: 4px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  border: 0;
  border-radius: 10px;
  background: #ff3b3b;
  color: #ffffff;
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}
.consult-modal__submit:hover{
  background: #e63535;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(255, 59, 59, .28);
}
.consult-modal__submit svg{
  flex-shrink: 0;
}
html[data-theme="dark"] .consult-modal__panel{
  background: var(--panel);
  border-color: var(--border);
}
html[data-theme="dark"] .consult-modal__title,
html[data-theme="dark"] .consult-field > span:first-child{
  color: var(--color-title);
}
html[data-theme="dark"] .consult-modal__lead,
html[data-theme="dark"] .consult-field > span:first-child em{
  color: var(--color-desc);
}
html[data-theme="dark"] .consult-modal__close{
  background: rgba(255,255,255,.08);
  color: var(--color-title);
}
html[data-theme="dark"] .consult-field input,
html[data-theme="dark"] .consult-field textarea,
html[data-theme="dark"] .consult-field__locked{
  background: rgba(255,255,255,.03);
  border-color: var(--border);
  color: var(--color-title);
}
html[data-theme="dark"] .consult-field__locked{
  background: rgba(255,255,255,.05);
}
html[data-theme="dark"] .consult-field__locked::after{
  border-color: var(--color-title);
}
html[data-theme="dark"] .consult-modal__success{
  background: rgba(24, 160, 88, .14);
  border-color: rgba(24, 160, 88, .28);
}
html[data-theme="dark"] .consult-modal__success strong{
  color: #5ddea0;
}
html[data-theme="dark"] .consult-modal__success p{
  color: var(--color-desc);
}

@media (max-width: 560px){
  .consult-modal__panel{
    padding: 22px 18px 20px;
    border-radius: 16px;
  }
  .consult-modal__grid{
    grid-template-columns: 1fr;
  }
  .consult-modal__title{
    font-size: 24px;
  }
}

/* ========== Careers  Coming Soon ========== */
.career-soon{
  position: relative;
  overflow: hidden;
  padding: 72px 0 96px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255,59,59,.08), transparent 42%),
    radial-gradient(circle at 88% 78%, rgba(10,22,40,.08), transparent 46%),
    linear-gradient(180deg, #f7f9fc 0%, #eef3f8 100%);
}
.career-soon__glow{
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  pointer-events: none;
  opacity: .55;
}
.career-soon__glow--a{
  width: 320px;
  height: 320px;
  left: -90px;
  top: 40px;
  background: radial-gradient(circle, rgba(255,59,59,.18), transparent 68%);
  animation: career-float 9s ease-in-out infinite;
}
.career-soon__glow--b{
  width: 380px;
  height: 380px;
  right: -120px;
  bottom: 20px;
  background: radial-gradient(circle, rgba(10,22,40,.14), transparent 68%);
  animation: career-float 11s ease-in-out infinite reverse;
}
.career-soon__inner{
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}
.career-soon__card{
  position: relative;
  width: min(760px, 100%);
  padding: 48px 44px 40px;
  border-radius: 24px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(13,18,32,.08);
  box-shadow: 0 24px 60px rgba(10,22,40,.10);
  backdrop-filter: blur(10px);
  text-align: center;
  overflow: hidden;
}
.career-soon__orbit{
  position: absolute;
  width: 220px;
  height: 220px;
  right: -36px;
  top: -48px;
  pointer-events: none;
  opacity: .9;
}
.career-soon__ring{
  position: absolute;
  inset: 18px;
  border-radius: 999px;
  border: 1px dashed rgba(10,22,40,.14);
  animation: career-spin 18s linear infinite;
}
.career-soon__node{
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(255,59,59,.12);
}
.career-soon__node--1{ top: 24px; left: 50%; }
.career-soon__node--2{ bottom: 42px; left: 28px; background: #0a1628; box-shadow: 0 0 0 6px rgba(10,22,40,.1); }
.career-soon__node--3{ bottom: 34px; right: 36px; }
.career-soon__badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 auto 18px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,59,59,.22);
  background: rgba(255,59,59,.08);
  color: #c62828;
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.career-soon__pulse{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(255,59,59,.45);
  animation: career-pulse 1.8s ease-out infinite;
}
.career-soon__title{
  margin: 0 auto 14px;
  max-width: 16ch;
  font-family: var(--font-section);
  font-size: clamp(30px, 4.2vw, 46px);
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--color-title);
}
.career-soon__accent{
  color: var(--accent);
  font-style: italic;
}
.career-soon__lead{
  margin: 0 auto 28px;
  max-width: 46ch;
  font-family: var(--font-desc);
  font-size: 17px;
  line-height: 1.65;
  color: var(--color-desc);
}
.career-soon__points{
  list-style: none;
  margin: 0 auto 30px;
  padding: 0;
  display: grid;
  gap: 12px;
  max-width: 420px;
  text-align: left;
}
.career-soon__points li{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(10,22,40,.035);
  border: 1px solid rgba(13,18,32,.06);
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 650;
  color: var(--color-title);
}
.career-soon__ico{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #0a1628;
  color: #fff;
  flex: 0 0 auto;
}
.career-soon__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 18px;
}
.career-soon__note{
  margin: 0;
  font-size: 14px;
  color: var(--color-desc);
}
.career-soon__note a{
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}
.career-soon__note a:hover{
  text-decoration: underline;
}

@keyframes career-pulse{
  0%{ box-shadow: 0 0 0 0 rgba(255,59,59,.45); }
  70%{ box-shadow: 0 0 0 12px rgba(255,59,59,0); }
  100%{ box-shadow: 0 0 0 0 rgba(255,59,59,0); }
}
@keyframes career-spin{
  to{ transform: rotate(360deg); }
}
@keyframes career-float{
  0%, 100%{ transform: translateY(0); }
  50%{ transform: translateY(14px); }
}

html[data-theme="dark"] .career-soon{
  background:
    radial-gradient(circle at 12% 18%, rgba(255,59,59,.12), transparent 42%),
    radial-gradient(circle at 88% 78%, rgba(90,140,220,.08), transparent 46%),
    linear-gradient(180deg, #0b1220 0%, #101826 100%);
}
html[data-theme="dark"] .career-soon__card{
  background: rgba(18,26,40,.88);
  border-color: rgba(255,255,255,.08);
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
}
html[data-theme="dark"] .career-soon__points li{
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.06);
}
html[data-theme="dark"] .career-soon__ring{
  border-color: rgba(255,255,255,.16);
}
html[data-theme="dark"] .career-soon__badge{
  color: #ff8a80;
}

@media (max-width: 640px){
  .career-soon{
    padding: 48px 0 64px;
  }
  .career-soon__card{
    padding: 34px 20px 28px;
    border-radius: 18px;
  }
  .career-soon__orbit{
    opacity: .45;
    transform: scale(.85);
  }
  .career-soon__actions{
    flex-direction: column;
  }
  .career-soon__actions .services2-btn{
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce){
  .career-soon__pulse,
  .career-soon__ring,
  .career-soon__glow{
    animation: none !important;
  }
}

/* ========== Legal pages (Privacy / Terms) ========== */
.legal-page{
  padding-top: 56px;
  padding-bottom: 80px;
}
.legal-wrap{
  max-width: 820px;
  margin-inline: auto;
}
.legal-updated{
  margin: 0 0 22px;
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent);
}
.legal-content{
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 36px 40px;
  box-shadow: 0 16px 40px rgba(13,18,32,.06);
}
.legal-content h2{
  margin: 28px 0 12px;
  font-family: var(--font-section);
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.25;
  color: var(--color-title);
}
.legal-content h2:first-child{
  margin-top: 0;
}
.legal-content h3{
  margin: 18px 0 8px;
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-size: 16px;
  font-weight: 760;
  color: var(--color-title);
}
.legal-content p,
.legal-content li{
  font-family: var(--font-desc);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-desc);
}
.legal-content p{
  margin: 0 0 14px;
}
.legal-content ul{
  margin: 0 0 16px;
  padding-left: 1.2em;
}
.legal-content li{
  margin: 6px 0;
}
.legal-content a{
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}
.legal-content a:hover{
  text-decoration: underline;
}
.legal-contact{
  margin-top: 28px;
  padding: 18px 20px;
  border-radius: 14px;
  background: rgba(10,22,40,.035);
  border: 1px solid rgba(13,18,32,.06);
}
.legal-contact p{
  margin: 0 0 6px;
}
.legal-contact p:last-child{
  margin-bottom: 0;
}
.legal-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

html[data-theme="dark"] .legal-content{
  background: rgba(18,26,40,.88);
  border-color: rgba(255,255,255,.08);
}
html[data-theme="dark"] .legal-contact{
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.06);
}

@media (max-width: 640px){
  .legal-content{
    padding: 24px 18px;
    border-radius: 14px;
  }
  .legal-actions{
    flex-direction: column;
  }
  .legal-actions .services2-btn{
    width: 100%;
  }
}
