/* ================================================
   EBK Service LLC — Main Stylesheet v2.0
   Modern Industrial Design System
   ================================================ */

/* ---- TOKENS ---- */
:root {
  --navy:       #0f172a;
  --navy-lt:    #1e293b;
  --blue:       #1f6fb5;
  --blue-lt:    #2d84d4;
  --blue-dim:   #eef6ff;
  --orange:     #f97316;
  --orange-dk:  #ea6c0a;
  --orange-dim: #fff7ed;
  --ink:        #0c0f12;
  --body:       #1e293b;
  --muted:      #64748b;
  --line:       #e2e8f0;
  --bg:         #f8fafc;
  --card:       #ffffff;
  --card-2:     #f1f5f9;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.06);
  --shadow-lg:  0 10px 40px rgba(0,0,0,.14), 0 4px 12px rgba(0,0,0,.07);
  --shadow-xl:  0 20px 60px rgba(0,0,0,.18), 0 8px 20px rgba(0,0,0,.10);

  --radius-sm:   8px;
  --radius:      14px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --radius-pill: 999px;

  --font-display: 'Barlow Condensed', system-ui, sans-serif;
  --font-body:    Inter, system-ui, 'Segoe UI', Roboto, Arial, sans-serif;

  --transition: .2s ease;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; scroll-behavior: smooth; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { cursor: pointer; font-family: inherit; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  background: var(--bg);
  color: var(--body);
  -webkit-font-smoothing: antialiased;
}

/* ---- LAYOUT ---- */
.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 72px 0; }

/* ---- TYPOGRAPHY ---- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 42px;
  line-height: 1.05;
  color: var(--ink);
  margin: 0 0 12px;
}

.section-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 0 40px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 13px 22px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), box-shadow var(--transition),
              transform var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
  box-shadow: 0 4px 14px rgba(249,115,22,.35);
}
.btn-primary:hover {
  background: var(--orange-dk);
  border-color: var(--orange-dk);
  box-shadow: 0 6px 20px rgba(249,115,22,.45);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.1);
  border-color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-outline:hover {
  background: var(--bg);
  border-color: var(--blue);
  color: var(--blue);
}

.btn-blue {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.btn-blue:hover {
  background: var(--blue-lt);
  border-color: var(--blue-lt);
  box-shadow: 0 4px 14px rgba(31,111,181,.35);
}

.btn-sm {
  padding: 9px 16px;
  font-size: 13px;
}

/* ---- PILLS / BADGES ---- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue-dim);
  border: 1px solid #d7e8ff;
  color: #0b3a66;
  border-radius: var(--radius-pill);
  padding: 5px 12px;
  font-weight: 700;
  font-size: 12px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
}
.badge-orange { background: var(--orange-dim); color: #9a3412; border: 1px solid #fed7aa; }
.badge-blue   { background: var(--blue-dim);   color: #0b3a66; border: 1px solid #bfdbfe; }
.badge-green  { background: #f0fdf4; color: #14532d; border: 1px solid #bbf7d0; }

/* ================================================
   BRAND BAR (top header)
   ================================================ */
.brand-bar {
  background: var(--card);
  border-bottom: 1px solid var(--line);
}
.brand-bar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand img { height: 48px; width: auto; }

.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--ink);
  line-height: 1.1;
}
.brand-sub {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  margin-top: 3px;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* ================================================
   NAVBAR
   ================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: box-shadow .3s ease;
}
.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,.35);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 24px;
  height: 52px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: .02em;
}
.nav-logo img { height: 28px; }

.menu {
  display: flex;
  align-items: center;
  gap: 2px;
}

.menu a {
  color: #cbd5e1;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}
.menu a:hover {
  color: #fff;
  background: rgba(255,255,255,.08);
}

.menu a.nav-cta {
  background: var(--orange);
  color: #fff;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  margin-left: 8px;
}
.menu a.nav-cta:hover {
  background: var(--orange-dk);
}

.burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.2);
  color: #fff;
  padding: 0;
}
.burger:hover { background: rgba(255,255,255,.08); }

/* ================================================
   HERO
   ================================================ */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  background-color: var(--navy);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,18,38,.90) 0%,
    rgba(10,18,38,.72) 55%,
    rgba(10,18,38,.38) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 80px 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249,115,22,.15);
  border: 1px solid rgba(249,115,22,.35);
  color: #fdba74;
  border-radius: var(--radius-pill);
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(44px, 6vw, 74px);
  line-height: 1.0;
  color: #fff;
  margin: 0 0 20px;
  text-shadow: 0 2px 16px rgba(0,0,0,.3);
}

.hero-sub {
  font-size: 18px;
  line-height: 1.65;
  color: #c7d3e6;
  margin: 0 0 32px;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  color: #e2e8f0;
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  backdrop-filter: blur(6px);
}

/* ================================================
   TRUST BAR
   ================================================ */
.trust-bar {
  background: var(--navy-lt);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.trust-bar .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 20px;
  border-right: 1px solid rgba(255,255,255,.07);
}
.trust-item:last-child { border-right: none; }

.trust-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: rgba(249,115,22,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
}

.trust-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  color: #fff;
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
}
.trust-num .trust-suffix {
  font-size: .6em;
  color: var(--orange);
  font-weight: 800;
}
/* Counter entrance animation */
.trust-num[data-target] {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .5s ease, transform .5s ease;
}
.trust-num[data-target].counted {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger each counter's entrance */
.trust-item:nth-child(1) .trust-num { transition-delay: 0ms; }
.trust-item:nth-child(2) .trust-num { transition-delay: 100ms; }
.trust-item:nth-child(3) .trust-num { transition-delay: 200ms; }
.trust-item:nth-child(4) .trust-num { transition-delay: 300ms; }
.trust-lbl {
  font-size: 12px;
  color: #94a3b8;
  font-weight: 600;
  margin-top: 2px;
}

/* ================================================
   SERVICES
   ================================================ */
.services-section {
  background: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--blue);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .25s ease;
  border-radius: 0;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: #d7e8ff;
}
.service-card:hover::before {
  transform: scaleY(1);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: var(--blue-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 16px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--ink);
  margin: 0 0 4px;
}

.service-card .card-sub {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 16px;
  line-height: 1.5;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--body);
  line-height: 1.5;
}
.service-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
  margin-top: 8px;
}

/* ================================================
   WHY EBK
   ================================================ */
.why-section {
  background: var(--card);
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.why-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.why-img-wrap img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}
.why-img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(15,23,42,.92);
  color: #fff;
  border-radius: var(--radius);
  padding: 14px 18px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.1);
}
.why-img-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 2px;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-icon.orange { background: var(--orange-dim); color: var(--orange); }
.why-icon.blue   { background: var(--blue-dim);   color: var(--blue);   }
.why-icon.green  { background: #f0fdf4; color: #16a34a; }
.why-icon.purple { background: #faf5ff; color: #7c3aed; }

.why-item h4 {
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  margin: 0 0 4px;
}
.why-item p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

/* ================================================
   PLANS
   ================================================ */
.plans-section {
  background: var(--bg);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.plan-card {
  background: var(--card);
  border: 2px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.plan-card.featured {
  border-color: var(--blue);
  box-shadow: 0 0 0 1px var(--blue), var(--shadow-md);
}

.plan-badge {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}

.plan-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  color: var(--ink);
  margin: 0 0 6px;
}
.plan-card .plan-sub {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 20px;
  line-height: 1.55;
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--body);
}
.plan-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #dcfce7;
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 11px;
  font-weight: 700;
}

/* ================================================
   AGREEMENTS ACCORDION
   ================================================ */
.agreements-section {
  background: var(--card);
}

.accord-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 820px;
}

.accord-item {
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--card);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.accord-item.open {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(31,111,181,.08);
}

.accord-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  background: none;
  border: none;
  padding: 18px 22px;
  text-align: left;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  transition: background var(--transition);
}
.accord-btn:hover { background: var(--bg); }
.accord-item.open .accord-btn { color: var(--blue); }

.accord-chevron {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--muted);
  transition: transform .25s ease, color .2s;
}
.accord-item.open .accord-chevron {
  transform: rotate(180deg);
  color: var(--blue);
}

.accord-body {
  display: none;
  padding: 0 22px 18px;
}
.accord-item.open .accord-body { display: block; }

.accord-body ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.accord-body li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--body);
  line-height: 1.55;
}
.accord-body li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
  margin-top: 7px;
}

/* ================================================
   CONTACT
   ================================================ */
.contact-section {
  background: var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 36px;
  align-items: start;
}

.contact-info {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  color: #fff;
}
.contact-info h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  margin: 0 0 6px;
}
.contact-info .contact-sub {
  color: #94a3b8;
  font-size: 14px;
  margin: 0 0 28px;
  line-height: 1.5;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: rgba(249,115,22,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}
.contact-detail strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #e2e8f0;
}
.contact-detail span {
  font-size: 13px;
  color: #64748b;
}

hr.divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,.08);
  margin: 24px 0;
}

.contact-form-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
}
.contact-form-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  color: var(--ink);
  margin: 0 0 6px;
}
.contact-form-card .form-sub {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 24px;
}

/* ================================================
   FORMS
   ================================================ */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-full { grid-column: 1 / -1; }

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

label {
  font-size: 13px;
  font-weight: 600;
  color: #334155;
}

input, textarea, select {
  width: 100%;
  padding: 11px 14px;
  border-radius: var(--radius);
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 14px;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(31,111,181,.12);
}
textarea { resize: vertical; min-height: 100px; }

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.ok {
  border: 1.5px solid #bbf7d0;
  background: #f0fdf4;
  color: #14532d;
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
}

.alert {
  border: 1.5px solid #fecaca;
  background: #fff7f7;
  color: #7f1d1d;
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
}

.hidden { display: none !important; }

/* ================================================
   BRAND MARQUEE
   ================================================ */
.brands-section {
  background: var(--card);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 36px 0;
  overflow: hidden;
}

.brands-label {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}

.marquee-wrap {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 12px;
  padding: 4px 0 8px;
  animation: marquee-scroll 30s linear infinite;
  will-change: transform;
}
.marquee-track.reverse {
  animation-name: marquee-scroll-rev;
  margin-top: 10px;
}
/* Pause on hover */
.marquee-wrap:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes marquee-scroll-rev {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

.brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--line);
  background: var(--card);
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
  flex-shrink: 0;
}
.brand-pill:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-dim);
}
.brand-pill .brand-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

/* Logo image cards in marquee */
.brand-logo-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  flex-shrink: 0;
}
.brand-logo-card img {
  height: 36px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  display: block;
}

/* ================================================
   STATS SECTION
   ================================================ */
.stats-section {
  background: var(--navy);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(31,111,181,.18) 0%, transparent 70%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 20px;
  border-right: 1px solid rgba(255,255,255,.08);
  position: relative;
}
.stat-item:last-child { border-right: none; }

.stat-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: rgba(249,115,22,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 16px;
  transition: transform .3s ease, background .3s;
}
.stat-item:hover .stat-icon {
  transform: scale(1.08) translateY(-2px);
  background: rgba(249,115,22,.25);
}

.stat-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(42px, 5vw, 62px);
  line-height: 1;
  color: #fff;
  letter-spacing: -.01em;
  display: flex;
  align-items: baseline;
  gap: 2px;
  transition: color .3s;
}
.stat-number .stat-suffix {
  font-size: .55em;
  color: var(--orange);
  font-weight: 800;
}

.stat-label {
  font-size: 14px;
  font-weight: 600;
  color: #94a3b8;
  margin-top: 8px;
  line-height: 1.4;
  max-width: 140px;
}

/* Counter animation — numbers start at 0 via JS */
.stat-number[data-target] { opacity: 0; transform: translateY(12px); transition: opacity .5s ease, transform .5s ease; }
.stat-number.counted       { opacity: 1; transform: translateY(0); }

/* ================================================
   FAB
   ================================================ */
.fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 200;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  border: none;
  box-shadow: 0 4px 20px rgba(249,115,22,.45);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.fab:hover {
  background: var(--orange-dk);
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 8px 28px rgba(249,115,22,.55);
}

/* ================================================
   FOOTER
   ================================================ */
.site-footer {
  background: var(--navy);
  color: #cbd5e1;
  padding: 52px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer-brand .brand-name {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  margin-bottom: 4px;
}
.footer-brand .brand-sub { color: #64748b; font-size: 13px; font-weight: 600; }

.footer-tagline {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin: 12px 0 22px;
  max-width: 260px;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #94a3b8;
  margin: 0 0 14px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  font-size: 14px;
  color: #64748b;
  transition: color var(--transition);
}
.footer-links a:hover { color: #e2e8f0; }

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contact-items a {
  font-size: 14px;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition);
}
.footer-contact-items a:hover { color: #e2e8f0; }
.footer-contact-items svg { flex-shrink: 0; }

.footer-bottom {
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,.05);
}
.footer-bottom p {
  font-size: 13px;
  color: #475569;
  margin: 0;
}

/* ================================================
   REQUEST SERVICE PAGE
   ================================================ */
.request-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 40px;
  align-items: start;
  padding: 64px 0;
}

.request-side {
  position: sticky;
  top: 74px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.request-side img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}
.request-side-overlay {
  background: var(--navy);
  padding: 22px 24px;
}
.request-side-overlay .badge {
  margin-bottom: 10px;
}
.request-side-overlay h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: #fff;
  margin: 0 0 6px;
}
.request-side-overlay p {
  font-size: 14px;
  color: #94a3b8;
  margin: 0;
  line-height: 1.5;
}

.request-form-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
}
.request-form-card h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 34px;
  color: var(--ink);
  margin: 0 0 6px;
}
.request-form-card .form-sub {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 28px;
  line-height: 1.5;
}

/* Step indicator */
.step-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
}
.step-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  border: 2px solid var(--line);
  color: var(--muted);
  background: var(--card);
  transition: background .3s, border-color .3s, color .3s;
}
.step-dot.active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.step-dot.done {
  background: #dcfce7;
  border-color: #16a34a;
  color: #16a34a;
  font-size: 12px;
}
.step-line {
  flex: 1;
  height: 2px;
  background: var(--line);
  border-radius: 2px;
  transition: background .3s;
}
.step-line.active { background: var(--blue); }
.step-hint {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
}

/* Step 2 reveal animation */
.service-step {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height .55s ease, opacity .4s ease;
}
.service-step.hidden {
  display: block !important; /* override .hidden so transition works */
  visibility: hidden;
  pointer-events: none;
}
.service-step.visible {
  max-height: 1200px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Separator between steps */
.step-divider {
  border: none;
  border-top: 1px solid var(--line);
  margin: 24px 0;
}

/* Contract verified banner */
.contract-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #f0fdf4;
  border: 1.5px solid #bbf7d0;
  border-radius: var(--radius);
  padding: 12px 16px;
  flex-wrap: wrap;
}
.contract-banner-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #16a34a;
}
.contract-banner-inner strong { color: var(--ink); font-size: 15px; display: block; line-height: 1.2; }
.contract-banner-inner span  { font-size: 13px; color: var(--muted); }

/* Check button loading state */
.btn-loading { opacity: .7; pointer-events: none; }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
  .trust-bar .wrap { grid-template-columns: repeat(2, 1fr); }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); }
  .trust-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.07); }
  .trust-item:nth-last-child(-n+2) { border-bottom: none; }

  .why-inner { grid-template-columns: 1fr; gap: 36px; }
  .why-img-wrap img { height: 320px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.08); }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }

  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .request-layout { grid-template-columns: 1fr; }
  .request-side { position: relative; top: auto; }

  .brand-bar .wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

@media (max-width: 768px) {
  section { padding: 52px 0; }
  .section-title { font-size: 32px; }
  .hero h1 { font-size: 40px; }
  .hero-content { padding: 60px 0; }

  .menu { display: none; flex-direction: column; }
  .menu.open {
    display: flex;
    position: absolute;
    top: 52px;
    left: 0;
    right: 0;
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,.07);
    padding: 8px 16px 14px;
    box-shadow: var(--shadow-lg);
    z-index: 99;
  }
  .menu.open a { display: block; padding: 10px 12px; }
  .burger { display: flex; }
  .navbar { position: sticky; }

  .form-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .wrap { padding: 0 16px; }
  .hero h1 { font-size: 34px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { justify-content: center; }
  .cta-row { display: none; }
  .trust-bar .wrap { grid-template-columns: 1fr; }
  .trust-item { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,.07); }
  .trust-item:last-child { border-bottom: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,.08); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.08) !important; }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }
  .stat-number { font-size: 38px; }
}

/* ================================================
   ACCESSIBILITY (WCAG 2.1 AA)
   ================================================ */

/* Skip-to-content link — visually hidden until focused */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  z-index: 10000;
  text-decoration: none;
  white-space: nowrap;
  transition: top .15s ease;
}
.skip-link:focus {
  top: 0;
  outline: 3px solid #fff;
  outline-offset: 2px;
}

/* Global focus-visible ring — keyboard only, not mouse */
:focus { outline: none; }
:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Ensure links inside dark backgrounds get white focus ring */
.navbar :focus-visible,
.site-footer :focus-visible,
.trust-bar :focus-visible,
.hero :focus-visible {
  outline-color: #fff;
}

/* Accordion button aria-expanded indicator */
.accord-btn[aria-expanded="true"] .accord-chevron {
  transform: rotate(180deg);
}

/* Reduce motion — honour OS preference */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  /* Show counters immediately at final value */
  .trust-num[data-target] { opacity: 1 !important; transform: none !important; transition: none !important; }
  /* Suppress decorative transitions */
  .btn, .service-card, .plan-card { transition: none; }
}
