/* ─────────────────────────────────────────────────────────
   DESIGN TOKENS
───────────────────────────────────────────────────────── */
:root {
  --ink:      #07101F;
  --ink-mid:  #0E1E35;
  --ink-soft: #16304F;
  --orange:   #F15A22;
  --orange2:  #FF7A42;
  --amber:    #FFAA44;
  --cream:    #FBF8F3;
  --white:    #FFFFFF;
  --muted:    #7A94B0;
  --line:     rgba(255,255,255,0.08);
  --green:    #22C55E;
  --font-d:   'Bricolage Grotesque', sans-serif;
  --font-b:   'Plus Jakarta Sans', sans-serif;
  --ease:     cubic-bezier(.4,0,.2,1);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-b); background: var(--white); color: var(--ink); overflow-x: hidden; }

/* ── GRAIN OVERLAY ── */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 9999;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: .35;
}
/*.overlay{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.overlay.active{
    display: flex;
}*/
/* ─── ANNOUNCE BAR ─── */
.announce {
  background: var(--orange);
  padding: 9px 20px;
  overflow: hidden;
  position: relative;
}
.announce-track {
  display: flex;
  gap: 0;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.announce-track span {
  color: white;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .4px;
  padding: 0 36px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.announce-track span i { font-size: 11px; opacity: .85; }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ─── STICKY NAV ─── */
nav {
  position: sticky; top: 0; z-index: 900;
  background: rgba(7,16,31,.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  padding: 0 clamp(16px, 4vw, 48px);
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  height: 68px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.nav-logo-mark {
  width: 40px; height: 40px;
  background: var(--orange);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 18px;
  flex-shrink: 0;
}
.nav-logo-text { font-family: var(--font-d); font-weight: 800; font-size: 17px; color: white; line-height: 1.1; }
.nav-logo-text span { color: var(--orange); }
.nav-logo-sub { font-size: 10px; color: var(--muted); font-weight: 500; letter-spacing: .5px; text-transform: uppercase; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { color: var(--muted); font-size: 13px; font-weight: 600; text-decoration: none; transition: color .2s; letter-spacing: .2px; }
.nav-links a:hover { color: white; }
.nav-ctas { display: flex; gap: 10px; align-items: center; }
.btn-ghost {
  color: white; border: 1.5px solid rgba(255,255,255,.2);
  background: transparent; border-radius: 8px;
  padding: 9px 18px; font-family: var(--font-b); font-weight: 600; font-size: 13px;
  cursor: pointer; text-decoration: none; transition: all .2s; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 7px;
}
.btn-ghost:hover { border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.06); }
.btn-primary {
  background: var(--orange); color: white; border: none; border-radius: 8px;
  padding: 9px 22px; font-family: var(--font-b); font-weight: 700; font-size: 13px;
  cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  transition: all .2s; white-space: nowrap;
  box-shadow: 0 4px 16px rgba(241,90,34,.35);
}
.btn-primary:hover { background: #D94E1A; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(241,90,34,.4); }
@media(max-width:900px){ .nav-links{display:none} }
@media(max-width:500px){ .btn-ghost{display:none} nav{padding:0 16px} }

/* ─── HERO ─── */
.hero {
  background: var(--ink);
  position: relative; overflow: hidden;
  padding: clamp(60px,8vw,100px) clamp(16px,5vw,80px) 0;
  min-height: 100vh;
  display: flex; flex-direction: column;
}
/* Grid lines */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(241,90,34,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(241,90,34,.06) 1px, transparent 1px);
  background-size: 60px 60px;
}
/* Glow blob */
.hero-glow {
  position: absolute; top: -200px; right: -100px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(241,90,34,.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-glow2 {
  position: absolute; bottom: -100px; left: -200px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(22,48,79,.6) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(32px,5vw,72px);
  align-items: flex-start;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(241,90,34,.4);
  background: rgba(241,90,34,.08);
  color: var(--orange2); padding: 6px 14px; border-radius: 100px;
  font-size: 12px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase;
  margin-bottom: 22px;
}
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: blink 1.5s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

.hero h1 {
  font-family: var(--font-d); font-weight: 800;
  font-size: clamp(42px, 5.5vw, 76px); line-height: .96;
  color: white; letter-spacing: -1.5px; margin-bottom: 24px;
}
.hero h1 em { color: var(--orange); font-style: normal; }
.hero h1 .outline {
  -webkit-text-stroke: 1.5px rgba(255,255,255,.35);
  color: transparent;
}
.hero-desc { color: #8FAAC4; font-size: 16px; line-height: 1.7; max-width: 500px; margin-bottom: 36px; }
.hero-desc strong { color: white; }

.hero-stats-row { display: flex; gap: 0; margin-bottom: 40px; }
.h-stat {
  padding: 18px 28px 18px 0; border-right: 1px solid rgba(255,255,255,.1);
  margin-right: 28px;
}
.h-stat:last-child { border-right: none; margin-right: 0; }
.h-stat-n { font-family: var(--font-d); font-size: 34px; font-weight: 800; color: white; line-height: 1; }
.h-stat-n span { color: var(--orange); }
.h-stat-l { font-size: 12px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .6px; margin-top: 4px; }

.hero-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  color: #A8BFCE; padding: 7px 14px; border-radius: 100px;
  font-size: 12px; font-weight: 600; transition: all .2s;
}
.pill i { color: var(--green); font-size: 10px; }
.pill:hover { border-color: rgba(241,90,34,.4); color: white; }

/* HERO FORM */
.hero-form-wrap {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  overflow: hidden;
  position: sticky; top: 88px;
  padding-bottom: 20px !important;
}
.hf-header {
  background: linear-gradient(135deg, var(--orange) 0%, #C94910 100%);
  padding: 22px 28px 20px;
  position: relative; overflow: hidden;
}
.hf-header::after {
  content: '';
  position: absolute; right: -30px; top: -30px;
  width: 120px; height: 120px; border-radius: 50%;
  background: rgba(255,255,255,.08);
}
.hf-header h2 { font-family: var(--font-d); font-weight: 800; font-size: 20px; color: white; position: relative; }
.hf-header p { color: rgba(255,255,255,.8); font-size: 13px; margin-top: 5px; position: relative; display: flex; align-items: center; gap: 6px; }
.hf-header p i { font-size: 11px; }
.hf-body { padding: 24px 28px 28px; }

.f-row { margin-bottom: 12px; }
.f-row label { display: block; font-size: 11px; font-weight: 700; color: #8FAAC4; margin-bottom: 5px; text-transform: uppercase; letter-spacing: .6px; }
.f-row input, .f-row select, .f-row textarea {
  width: 100%; border: 1.5px solid rgba(255,255,255,.1); border-radius: 10px;
  padding: 11px 14px; font-family: var(--font-b); font-size: 13.5px;
  background: rgba(255,255,255,.06); color: white; outline: none;
  transition: border-color .2s, background .2s; appearance: none;
}
.f-row input::placeholder, .f-row textarea::placeholder { color: rgba(255,255,255,.25); }
.f-row select option { background: var(--ink-mid); color: white; }
.f-row input:focus, .f-row select:focus, .f-row textarea:focus {
  border-color: var(--orange); background: rgba(241,90,34,.07);
}
.f-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.btn-submit {
  width: 100%; background: var(--orange); color: white; border: none;
  border-radius: 10px; padding: 14px; font-family: var(--font-d); font-weight: 800;
  font-size: 17px; letter-spacing: .3px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: all .2s; margin-top: 6px;
  box-shadow: 0 6px 24px rgba(241,90,34,.4);
}
.btn-submit:hover { background: #D94E1A; transform: translateY(-2px); box-shadow: 0 10px 32px rgba(241,90,34,.5); }
.f-note { text-align: center; font-size: 11px; color: var(--muted); margin-top: 10px; display: flex; align-items: center; justify-content: center; gap: 5px; }
.f-or { text-align: center; margin-top: 16px; }
.f-or a { color: var(--orange2); font-weight: 700; font-size: 14px; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }

/* SUCCESS */
.form-ok { display: none; padding: 32px 20px; text-align: center; }
.form-ok .ok-icon { width: 64px; height: 64px; background: rgba(34,197,94,.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.form-ok .ok-icon i { color: var(--green); font-size: 28px; }
.form-ok h3 { font-family: var(--font-d); font-size: 22px; font-weight: 800; color: white; }
.form-ok p { color: var(--muted); font-size: 13px; margin-top: 8px; line-height: 1.5; }
.form-ok a { color: var(--orange2); font-weight: 700; }

/* ── HERO BOTTOM STRIP ── */
.hero-bottom {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 50px auto 0; width: 100%;
  display: grid; grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--line); border-radius: 16px;
  overflow: hidden; background: rgba(255,255,255,.03);
}
.hb-item {
  padding: 22px 24px; border-right: 1px solid var(--line);
  display: flex; align-items: center; gap: 14px;
  transition: background .2s;
}
.hb-item:last-child { border-right: none; }
.hb-item:hover { background: rgba(241,90,34,.06); }
.hb-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(241,90,34,.12); display: flex; align-items: center; justify-content: center;
  color: var(--orange); font-size: 16px; flex-shrink: 0;
}
.hb-text { font-size: 12px; font-weight: 600; color: white; line-height: 1.4; }
.hb-sub { font-size: 11px; color: var(--muted); margin-top: 2px; font-weight: 400; }

/* ── SECTIONS ── */
section { padding: clamp(60px,8vw,100px) clamp(16px,5vw,80px); }
.s-dark { background: var(--ink); }
.s-cream { background: var(--cream); }
.s-ink2 { background: var(--ink-mid); }
.wrap { max-width: 1200px; margin: 0 auto; }
.s-eyebrow {
  font-family: var(--font-b); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px; color: var(--orange);
  margin-bottom: 10px; display: flex; align-items: center; gap: 8px;
}
.s-eyebrow::before, .s-eyebrow::after {
  content: ''; flex: 1; max-width: 32px; height: 1.5px; background: var(--orange); display: block;
}
.s-eyebrow.left::before { display: none; }
.s-eyebrow.left::after { display: none; }
.s-title {
  font-family: var(--font-d); font-weight: 800;
  font-size: clamp(28px,4vw,52px); line-height: 1.0;
  letter-spacing: -1px; margin-bottom: 16px;
}
.s-dark .s-title, .s-ink2 .s-title { color: white; }
.s-dark .s-eyebrow, .s-ink2 .s-eyebrow { color: var(--orange2); }
.s-desc { font-size: 16px; line-height: 1.7; color: #667A90; max-width: 560px; }
.s-dark .s-desc, .s-ink2 .s-desc { color: var(--muted); }
.tc { text-align: center; }
.tc .s-desc { margin: 0 auto; }
.tc .s-eyebrow { justify-content: center; }
.tc .s-eyebrow::before, .tc .s-eyebrow::after { flex: 0; max-width: 24px; }

/* ─── MARQUEE (TRUST) ─── */
.trust-marquee { background: var(--orange); overflow: hidden; padding: 14px 0; }
.tm-track {
  display: flex; gap: 0; animation: marquee2 22s linear infinite; width: max-content;
}
.tm-item {
  display: inline-flex; align-items: center; gap: 10px; padding: 0 40px;
  border-right: 1px solid rgba(255,255,255,.25);
  color: white; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px;
  white-space: nowrap;
}
.tm-item i { font-size: 14px; opacity: .85; }
@keyframes marquee2 { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ─── BENTO SERVICES ─── */
.bento { display: grid; grid-template-columns: repeat(12, 1fr); grid-template-rows: auto; gap: 16px; margin-top: 52px; }
.b-card {
  background: white; border-radius: 16px; padding: 28px 26px;
  border: 1px solid #E8ECF2;
  position: relative; overflow: hidden; transition: all .3s var(--ease);
  display: flex; flex-direction: column;
}
.b-card:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(241,90,34,.12); }
.b-card.span6 { grid-column: span 6; }
.b-card.span4 { grid-column: span 4; }
.b-card.span3 { grid-column: span 3; }
.b-card.span8 { grid-column: span 8; }
.b-card.dark { background: var(--ink); border-color: transparent; }
.b-card.dark:hover { border-color: var(--orange); }
.b-card.accent { background: var(--orange); border-color: transparent; }
.b-card.accent:hover { background: #D94E1A; transform: translateY(-4px); border-color: transparent; }
.b-icon-wrap {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(241,90,34,.1); display: flex; align-items: center; justify-content: center;
  color: var(--orange); font-size: 20px; margin-bottom: 18px; flex-shrink: 0;
}
.b-card.dark .b-icon-wrap { background: rgba(241,90,34,.15); }
.b-card.accent .b-icon-wrap { background: rgba(255,255,255,.2); color: white; }
.b-name {
  font-family: var(--font-d); font-weight: 800; font-size: 19px; margin-bottom: 8px; line-height: 1.1;
}
.b-card.dark .b-name { color: white; }
.b-card.accent .b-name { color: white; }
.b-desc { font-size: 13.5px; line-height: 1.65; color: #5A7090; flex: 1; }
.b-card.dark .b-desc { color: #7A9AB5; }
.b-card.accent .b-desc { color: rgba(255,255,255,.82); }
.b-tag {
  display: inline-block; margin-top: 16px; padding: 4px 12px;
  border-radius: 100px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px;
  background: rgba(241,90,34,.08); color: var(--orange); border: 1px solid rgba(241,90,34,.2);
}
.b-card.dark .b-tag { background: rgba(241,90,34,.15); border-color: rgba(241,90,34,.3); }
.b-card.accent .b-tag { background: rgba(255,255,255,.2); color: white; border-color: rgba(255,255,255,.3); }
.b-cta {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 14px;
  color: var(--orange); font-weight: 700; font-size: 13px; text-decoration: none;
  transition: gap .2s;
}
.b-cta:hover { gap: 10px; }
.b-card.accent .b-cta { color: white; }
.b-card.dark .b-cta { color: var(--orange2); }
/* Large featured card */
.b-card.span8.featured-card { flex-direction: row; align-items: center; gap: 32px; }
.b-card.span8.featured-card .b-content { flex: 1; }
.b-feat-visual {
  width: 160px; height: 160px; border-radius: 16px;
  background: linear-gradient(135deg, rgba(241,90,34,.2) 0%, rgba(241,90,34,.05) 100%);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; border: 1px dashed rgba(241,90,34,.3);
}
.b-feat-visual i { font-size: 64px; color: var(--orange); opacity: .7; }
/* Decoration */
.b-card::after {
  content: '';
  position: absolute; top: -1px; right: -1px;
  border-left: 32px solid transparent; border-right: 0 solid transparent; border-top: 32px solid transparent;
  opacity: 0; transition: opacity .3s;
}
.b-card:hover::after { opacity: 1; border-top-color: var(--orange); }
.b-card.accent::after, .b-card.dark::after { display: none; }

/* ── STATS ── */
.stats-belt { background: var(--ink); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats-grid { margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 48px 40px; text-align: center;
  border-right: 1px solid var(--line);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-n { font-family: var(--font-d); font-size: 58px; font-weight: 800; color: white; line-height: 1; }
.stat-n span { color: var(--orange); }
.stat-l { font-size: 13px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .8px; margin-top: 8px; }

/* ── HOW IT WORKS ── */
.timeline { margin-top: 60px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.timeline::before {
  content: '';
  position: absolute; top: 34px; left: calc(12.5% + 20px); right: calc(12.5% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--orange2), var(--amber));
  z-index: 0;
}
.tl-step { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.tl-num {
  width: 68px; height: 68px; border-radius: 50%;
  background: var(--orange); color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-d); font-size: 26px; font-weight: 800;
  margin: 0 auto 24px;
  box-shadow: 0 0 0 8px rgba(241,90,34,.12), 0 8px 24px rgba(241,90,34,.35);
}
.tl-icon { font-size: 28px; color: white; }
.tl-step h4 { font-family: var(--font-d); font-weight: 800; font-size: 17px; color: white; margin-bottom: 8px; text-transform: uppercase; letter-spacing: .3px; }
.tl-step p { font-size: 13px; color: var(--muted); line-height: 1.65; max-width: 200px; margin: 0 auto; }

/* ── WHY US ── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 52px; }
.why-left { display: flex; flex-direction: column; gap: 16px; }
.why-feat {
  background: var(--ink); border-radius: 16px; padding: 36px;
  border: 1px solid var(--line); position: relative; overflow: hidden;
}
.why-feat::before {
  content: '';
  position: absolute; bottom: -40px; right: -40px;
  width: 180px; height: 180px; border-radius: 50%;
  background: radial-gradient(circle, rgba(241,90,34,.15) 0%, transparent 70%);
}
.why-feat h3 { font-family: var(--font-d); font-weight: 800; font-size: 30px; color: white; line-height: 1.1; margin-bottom: 12px; }
.why-feat h3 em { color: var(--orange); font-style: normal; }
.why-feat p { color: var(--muted); font-size: 14px; line-height: 1.7; }
.why-items { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.wi {
  background: white; border: 1px solid #E8ECF2; border-radius: 14px;
  padding: 22px 20px; transition: all .25s;
}
.wi:hover { border-color: var(--orange); box-shadow: 0 8px 30px rgba(241,90,34,.1); transform: translateY(-3px); }
.wi-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(241,90,34,.08); display: flex; align-items: center; justify-content: center;
  color: var(--orange); font-size: 18px; margin-bottom: 14px;
}
.wi h4 { font-family: var(--font-d); font-weight: 800; font-size: 15px; margin-bottom: 6px; color: var(--ink); }
.wi p { font-size: 13px; color: #667A90; line-height: 1.6; }

/* ── INDUSTRIES ── */
.ind-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 14px; margin-top: 48px; }
.ind-card {
  background: white; border: 1.5px solid #E8ECF2; border-radius: 14px;
  padding: 24px 20px; text-align: center; transition: all .25s; cursor: pointer;
}
.ind-card:hover { border-color: var(--orange); background: rgba(241,90,34,.03); transform: translateY(-3px); box-shadow: 0 10px 32px rgba(241,90,34,.12); }
.ind-icon-wrap {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(241,90,34,.08); display: flex; align-items: center; justify-content: center;
  color: var(--orange); font-size: 22px; margin: 0 auto 14px;
}
.ind-name { font-family: var(--font-d); font-weight: 800; font-size: 14px; text-transform: uppercase; letter-spacing: .3px; margin-bottom: 6px; }
.ind-desc { font-size: 12px; color: #7A9AB0; line-height: 1.5; }

/* ── SERVICE AREAS ── */
.areas-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; margin-top: 52px; }
.areas-info { }
.areas-feat-list { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.area-feat {
  display: flex; align-items: flex-start; gap: 14px;
  background: rgba(255,255,255,.04); border: 1px solid var(--line);
  border-radius: 12px; padding: 18px 20px;
}
.af-icon { width: 38px; height: 38px; border-radius: 9px; background: rgba(241,90,34,.15); display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 15px; flex-shrink: 0; }
.af-text h5 { font-family: var(--font-d); font-weight: 800; font-size: 15px; color: white; margin-bottom: 4px; }
.af-text p { font-size: 12.5px; color: var(--muted); line-height: 1.5; }
.cities-mosaic { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.cm-city {
  background: rgba(255,255,255,.04); border: 1px solid var(--line);
  border-radius: 10px; padding: 14px 16px; display: flex; align-items: center; gap: 10px;
  transition: all .2s; cursor: default;
}
.cm-city:hover { border-color: rgba(241,90,34,.4); background: rgba(241,90,34,.07); }
.cm-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }
.cm-name { font-family: var(--font-d); font-weight: 700; font-size: 13px; color: white; text-transform: uppercase; }
.cm-sub { font-size: 10px; color: var(--muted); margin-top: 1px; }
.cm-city.add {
  border-style: dashed; border-color: rgba(241,90,34,.3);
  cursor: pointer; justify-content: center;
}
.cm-city.add span { color: var(--orange); font-size: 13px; font-weight: 700; }

/* ── FLEET ── */
.fleet-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 52px; }
.fl-card {
  background: var(--ink-mid); border: 1px solid var(--line); border-radius: 16px;
  padding: 32px 24px; text-align: center; transition: all .3s; position: relative; overflow: hidden;
}
.fl-card:hover { border-color: var(--orange); background: rgba(241,90,34,.07); transform: translateY(-4px); }
.fl-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.fl-card:hover::before { transform: scaleX(1); }
.fl-icon { font-size: 48px; color: var(--orange); margin-bottom: 18px; }
.fl-name { font-family: var(--font-d); font-weight: 800; font-size: 18px; color: white; text-transform: uppercase; margin-bottom: 8px; }
.fl-cap { font-size: 12.5px; color: var(--muted); line-height: 1.5; margin-bottom: 16px; }
.fl-spec {
  display: inline-block; background: rgba(241,90,34,.12); color: var(--orange2);
  font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 100px;
  text-transform: uppercase; letter-spacing: .4px;
}

/* ── TESTIMONIALS ── */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 52px; }
.rv-card {
  background: white; border: 1.5px solid #E8ECF2; border-radius: 16px;
  padding: 28px 26px; transition: all .25s; position: relative; overflow: hidden;
}
.rv-card:hover { border-color: var(--orange); box-shadow: 0 12px 40px rgba(241,90,34,.1); transform: translateY(-4px); }
.rv-tag {
  position: absolute; top: 22px; right: 22px;
  background: rgba(241,90,34,.08); color: var(--orange); border: 1px solid rgba(241,90,34,.2);
  font-size: 10px; font-weight: 700; padding: 3px 10px; border-radius: 100px;
  text-transform: uppercase; letter-spacing: .5px;
}
.rv-stars { display: flex; gap: 3px; color: #F5A623; font-size: 13px; margin-bottom: 16px; }
.rv-text { font-size: 14px; color: #4A6080; line-height: 1.75; margin-bottom: 22px; font-style: italic; }
.rv-divider { height: 1px; background: #E8ECF2; margin-bottom: 18px; }
.rv-author { display: flex; align-items: center; gap: 12px; }
.rv-av {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: var(--orange); display: flex; align-items: center; justify-content: center;
  color: white; font-family: var(--font-d); font-weight: 800; font-size: 16px;
}
.rv-name { font-family: var(--font-d); font-weight: 700; font-size: 14px; color: var(--ink); }
.rv-role { font-size: 11.5px; color: var(--muted); margin-top: 1px; }

/* ── URGENCY BAND ── */
.urgency { background: linear-gradient(135deg, #0E1E35 0%, #16304F 100%); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.urg-inner { max-width: 1200px; margin: 0 auto; padding: 40px clamp(16px,5vw,80px); display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 32px; }
.urg-left h3 { font-family: var(--font-d); font-weight: 800; font-size: 28px; color: white; line-height: 1.1; margin-bottom: 8px; }
.urg-left p { color: var(--muted); font-size: 14px; }
.urg-left h3 em { color: var(--orange); font-style: normal; }
.urg-right { display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
.btn-lg {
  background: var(--orange); color: white; border: none; border-radius: 10px;
  padding: 15px 34px; font-family: var(--font-d); font-weight: 800; font-size: 18px;
  cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 10px;
  transition: all .2s; box-shadow: 0 6px 24px rgba(241,90,34,.4); white-space: nowrap;
}
.btn-lg:hover { background: #D94E1A; transform: translateY(-2px); }
.btn-lg-ghost {
  background: transparent; color: white; border: 1.5px solid rgba(255,255,255,.2);
  border-radius: 10px; padding: 13px 28px; font-family: var(--font-d); font-weight: 700; font-size: 16px;
  cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  transition: all .2s; white-space: nowrap;
}
.btn-lg-ghost:hover { border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.06); }

/* ── PRICING TRANSPARENCY ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 52px; }
.pr-card {
  border-radius: 16px; padding: 32px 28px; border: 1.5px solid #E8ECF2; background: white;
  position: relative; transition: all .25s;
}
.pr-card:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(241,90,34,.12); }
.pr-card.popular {
  background: var(--ink); border-color: var(--orange);
  box-shadow: 0 8px 40px rgba(241,90,34,.2);
}
.pr-pop-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: white; font-size: 11px; font-weight: 700;
  padding: 4px 16px; border-radius: 100px; text-transform: uppercase; letter-spacing: .5px;
  white-space: nowrap;
}
.pr-type { font-family: var(--font-d); font-weight: 800; font-size: 22px; margin-bottom: 6px; }
.pr-card.popular .pr-type { color: white; }
.pr-tagline { font-size: 13px; color: #7A90A8; margin-bottom: 24px; }
.pr-card.popular .pr-tagline { color: var(--muted); }
.pr-price { font-family: var(--font-d); font-size: 15px; font-weight: 700; color: var(--orange); margin-bottom: 24px; }
.pr-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pr-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13.5px; color: #4A6080; line-height: 1.5;
}
.pr-card.popular .pr-features li { color: #8FAAC4; }
.pr-features li i { color: var(--green); font-size: 12px; margin-top: 3px; flex-shrink: 0; }
.pr-cta {
  display: block; text-align: center; padding: 13px;
  border-radius: 10px; font-family: var(--font-d); font-weight: 800; font-size: 16px;
  text-decoration: none; transition: all .2s; border: 1.5px solid var(--orange); color: var(--orange);
}
.pr-cta:hover { background: rgba(241,90,34,.06); }
.pr-card.popular .pr-cta { background: var(--orange); color: white; border-color: transparent; box-shadow: 0 6px 20px rgba(241,90,34,.4); }
.pr-card.popular .pr-cta:hover { background: #D94E1A; }

/* ── FAQ ── */
.faq-wrap { max-width: 760px; margin: 48px auto 0; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: white; border: 1.5px solid #E8ECF2; border-radius: 12px; overflow: hidden; transition: border-color .2s; }
.faq-item:hover { border-color: rgba(241,90,34,.3); }
.faq-q {
  padding: 18px 22px; font-family: var(--font-d); font-weight: 700; font-size: 16px;
  color: var(--ink); cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  gap: 16px; transition: background .2s;
}
.faq-q:hover { background: rgba(241,90,34,.03); }
.faq-q.open { color: var(--orange); }
.faq-q .faq-icon { width: 28px; height: 28px; border-radius: 7px; background: rgba(241,90,34,.08); display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 12px; flex-shrink: 0; transition: transform .3s, background .2s; }
.faq-q.open .faq-icon { transform: rotate(45deg); background: var(--orange); color: white; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease), padding .3s; font-size: 14px; color: #4A6080; line-height: 1.75; }
.faq-a.open { max-height: 300px; padding: 0 22px 18px; }

/* ── CTA FINAL ── */
.cta-final {
  background: var(--orange);
  position: relative; overflow: hidden;
  text-align: center;
}
.cta-final::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -55deg,
    transparent, transparent 10px,
    rgba(0,0,0,.04) 10px, rgba(0,0,0,.04) 20px
  );
}
.cta-final .cf-num {
  font-family: var(--font-d); font-size: clamp(40px,15vw,220px);
  font-weight: 800; color: rgba(0,0,0,.07); line-height: 1; position: absolute;
  bottom: -20px; left: 50%; transform: translateX(-50%);
  letter-spacing: -4px; pointer-events: none; white-space: nowrap;
}
.cta-final .wrap { position: relative; z-index: 2; }
.cta-final h2 { font-family: var(--font-d); font-weight: 800; font-size: clamp(34px,5vw,66px); color: white; line-height: .98; letter-spacing: -1px; margin-bottom: 18px; }
.cta-final p { color: rgba(255,255,255,.82); font-size: 17px; margin-bottom: 38px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-phone-pair { display: flex; flex-direction: column; gap: 8px; margin-top: 24px; align-items: center; }
.cta-phone-pair a { color: rgba(255,255,255,.8); font-size: 14px; text-decoration: none; display: flex; align-items: center; gap: 7px; transition: color .2s; }
.cta-phone-pair a:hover { color: white; }
.cta-phone-pair a i { font-size: 12px; }

/* ── FOOTER ── */
footer { background: var(--ink); border-top: 1px solid var(--line); padding: 60px clamp(16px,5vw,80px) 30px; }
.footer-top { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 44px; padding-bottom: 48px; border-bottom: 1px solid var(--line); }
.ft-brand p { color: var(--muted); font-size: 13px; line-height: 1.7; margin-top: 14px; max-width: 260px; }
.ft-col h5 { font-family: var(--font-d); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: white; margin-bottom: 18px; }
.ft-col a { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 13px; text-decoration: none; margin-bottom: 10px; transition: color .2s; }
.ft-col a:hover { color: var(--orange2); }
.ft-col a i { font-size: 11px; color: var(--orange); width: 14px; }
.ft-contact-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; }
.ft-ci-icon { color: var(--orange); font-size: 15px; margin-top: 1px; flex-shrink: 0; width: 16px; }
.ft-ci-text { font-size: 13px; color: var(--muted); line-height: 1.6; }
.ft-ci-text a { color: var(--orange2); text-decoration: none; }
.ft-ci-text a:hover { color: white; }
.footer-bottom { max-width: 1200px; margin: 28px auto 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
.fb-copy { font-size: 12px; color: #3A5070; }
.fb-pay { display: flex; gap: 8px; align-items: center; }
.pay-chip {
  background: rgba(255,255,255,.05); border: 1px solid var(--line);
  color: var(--muted); font-size: 11px; font-weight: 600; padding: 5px 12px; border-radius: 6px;
  display: flex; align-items: center; gap: 5px;
}
.pay-chip i { color: var(--orange); font-size: 12px; }

/* ── FLOATING BUTTONS ── */
.floaters { position: fixed; bottom: 28px; right: 22px; z-index: 800; display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
.fl-call {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--orange); color: white; text-decoration: none;
  padding: 13px 22px; border-radius: 100px; font-family: var(--font-d); font-weight: 800; font-size: 15px;
  box-shadow: 0 8px 28px rgba(241,90,34,.5); animation: floatUp 3s ease-in-out infinite; position: relative;
}
.fl-call .ring {
  position: absolute; inset: -8px; border-radius: 100px;
  border: 2px solid var(--orange); animation: ringOut 2s ease-out infinite;
}
@keyframes ringOut { 0%{transform:scale(1);opacity:.7} 100%{transform:scale(1.25);opacity:0} }
@keyframes floatUp { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-5px)} }
.fl-sms { display: inline-flex; align-items: center; gap: 8px; background: #16304F; color: white; text-decoration: none; padding: 11px 18px; border-radius: 100px; font-family: var(--font-d); font-weight: 700; font-size: 14px; border: 1px solid rgba(241,90,34,.3); transition: all .2s; box-shadow: 0 4px 16px rgba(0,0,0,.3); }
.fl-sms:hover { background: rgba(241,90,34,.15); border-color: var(--orange); }

/* ── POPUP ── */
.overlay {
  display: none; position: fixed; inset: 0; z-index: 1000;
  background: rgba(7,16,31,.9); backdrop-filter: blur(8px);
  align-items: center; justify-content: center; padding: 16px;
}
.overlay.show { display: flex; }
.pop-card { background: var(--ink-mid); border: 1px solid var(--line); border-radius: 20px; width: 100%; max-width: 460px; overflow: hidden; animation: popIn .45s cubic-bezier(.34,1.56,.64,1); }
@keyframes popIn { from{opacity:0;transform:scale(.82) translateY(20px)} to{opacity:1;transform:scale(1) translateY(0)} }
.pop-header { background: linear-gradient(135deg, var(--orange) 0%, #C94910 100%); padding: 28px 28px 22px; position: relative; }
.pop-close { position: absolute; top: 14px; right: 14px; background: rgba(255,255,255,.15); border: none; color: white; width: 30px; height: 30px; border-radius: 50%; cursor: pointer; font-size: 14px; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.pop-close:hover { background: rgba(255,255,255,.25); }
.pop-badge { display: inline-block; background: rgba(255,255,255,.2); color: white; font-size: 10px; font-weight: 700; padding: 3px 12px; border-radius: 100px; text-transform: uppercase; letter-spacing: .8px; margin-bottom: 12px; }
.pop-header h3 { font-family: var(--font-d); font-weight: 800; font-size: 26px; color: white; line-height: 1.05; }
.pop-header p { color: rgba(255,255,255,.75); font-size: 13px; margin-top: 6px; }
.pop-body { padding: 24px 28px 28px; }
.pop-ok { display: none; padding: 36px 20px; text-align: center; }
.pop-ok .ok-wrap { width: 64px; height: 64px; background: rgba(34,197,94,.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.pop-ok .ok-wrap i { color: var(--green); font-size: 28px; }
.pop-ok h4 { font-family: var(--font-d); font-size: 24px; font-weight: 800; color: white; }
.pop-ok p { color: var(--muted); font-size: 13px; margin-top: 8px; }
.pop-ok a { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; background: var(--orange); color: white; text-decoration: none; padding: 12px 28px; border-radius: 10px; font-family: var(--font-d); font-weight: 800; font-size: 17px; }

/* ── RESPONSIVE ── */
@media(max-width:1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-form-wrap { position: static; }
  .hero-bottom { grid-template-columns: repeat(3,1fr); }
  .stats-grid { grid-template-columns: 2fr 2fr; }
  .stats-grid .stat-item:nth-child(2){ border-right: none; }
  .why-grid { grid-template-columns: 1fr; }
  .b-card.span8.featured-card { flex-direction: column; }
  .b-feat-visual { width: 100%; height: 100px; }
  .fleet-grid { grid-template-columns: repeat(2,1fr); }
  .reviews-grid { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .areas-layout { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: repeat(2,1fr); gap: 40px; }
  .timeline::before { display: none; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width:768px) {

	.btn-primary{font-size:12px;}
  .b-card.span6,.b-card.span4,.b-card.span3,.b-card.span8 { grid-column: span 12; }
  .bento { grid-template-columns: 1fr; gap: 12px; }
  .hero-desc{margin-bottom:24px;}
  .hero-bottom { grid-template-columns: repeat(2,1fr); }
  .hero-stats-row {display: grid;
        grid-auto-flow: column;
        justify-content: center;
        align-items: center;
        align-content: center;}
  .h-stat { padding: 12px 5px 12px 0; }
  .h-stat-n{font-size:24px;}
  .h-stat-l{font-size:8px;}
  .stat-item{padding: 28px 20px;}
  .stat-n{font-size:32px;}
  .stat-l{font-size:9px;}
  .cities-mosaic { grid-template-columns: repeat(2,1fr); }
  .reviews-grid,.pricing-grid { grid-template-columns: 1fr; }
  .urg-inner { grid-template-columns: 1fr; }
  .urg-right { align-items: flex-start; }
  .footer-top { grid-template-columns: 1fr; }
  .f-grid2 { grid-template-columns: 1fr; }
}
@media(max-width:480px) {
  .hero-bottom { grid-template-columns: 2fr 2fr; border: none; }
  .hb-item { border-right: none; border-bottom: 1px solid var(--line); }
  .timeline { grid-template-columns: 1fr; }
  .why-items { grid-template-columns: 1fr; }
  .fleet-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/*7-4-2026*/

.hero-form-top .f-row {
    margin-bottom: 0px;
    margin-top: 20px;
    padding: 0px 10px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}
.nav-logo-img {
    height: 44px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
}