/* ==========================================================================
   Bell Techlogix — DWS Landing Page
   ========================================================================== */

:root {
  /* Brand colors */
  --color-primary-navy: #004b8d;
  --color-accent-teal:  #00bdbe;
  --color-navy-dark:    #002d54;
  --color-teal-light:   #e5f9f9;

  /* Neutrals */
  --color-ink:        #0f1b2a;
  --color-body-text:  #3b4a5a;
  --color-bg-light:   #f6f9fb;
  --color-white:      #ffffff;
  --color-border:     #e2e8ef;

  /* Fonts */
  --font-heading: 'Lato', 'Segoe UI', sans-serif;
  --font-body:    'Open Sans', 'Segoe UI', sans-serif;

  --shadow-sm: 0 2px 8px rgba(15, 27, 42, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 27, 42, 0.10);
  --shadow-lg: 0 16px 48px rgba(0, 45, 84, 0.18);
  --radius-md: 8px;
  --radius-pill: 999px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-body-text);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-ink);
  line-height: 1.15;
  margin: 0;
}
p { margin: 0; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--font-body); cursor: pointer; border: none; background: none; }
ul { margin: 0; padding: 0; list-style: none; }

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

section { position: relative; }

/* ---------- Eyebrow / headline ---------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--color-accent-teal);
  margin-bottom: 14px;
}
.eyebrow--light { color: #7fe6e6; }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.section-head h2 {
  font-weight: 700;
  font-size: 34px;
}
@media (max-width: 600px) {
  .section-head h2 { font-size: 26px; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  padding: 15px 32px;
  border-radius: var(--radius-pill);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-accent-teal);
  color: var(--color-white);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  background: #00a3a4;
  box-shadow: 0 12px 32px rgba(0, 189, 190, 0.35);
}
.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.6);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--color-white);
  transform: translateY(-2px);
}
.btn-block { width: 100%; }

/* ---------- Header / Logo + in-page nav ---------- */
.hero-topbar {
  position: absolute;
  top: 24px;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  max-width: 1180px;
  margin: 0 auto;
}
.hero-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.hero-nav a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: #cfe3f5;
  transition: color 0.2s ease;
}
.hero-nav a:hover { color: var(--color-white); }
.hero-nav-cta {
  background: var(--color-accent-teal);
  color: var(--color-white) !important;
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  font-weight: 700 !important;
  transition: background 0.2s ease, transform 0.2s ease;
}
.hero-nav-cta:hover { background: #00a3a4; transform: translateY(-1px); }

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 20px;
  color: var(--color-white);
}

@media (max-width: 900px) {
  .hero-nav a:not(.hero-nav-cta) { display: none; }
  .hero-topbar { top: 20px; }
}
.site-logo .logo-img {
  height: 50px;
  width: auto;
  background: var(--color-white);
  padding: 8px 16px;
  border-radius: 8px;
  transition: transform 0.2s ease;
}
.site-logo:hover .logo-img { transform: scale(1.04); }

/* ==========================================================================
   Section 1 — Hero
   ========================================================================== */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--color-primary-navy) 0%, #003a70 55%, var(--color-navy-dark) 100%);
  overflow: hidden;
  padding: 140px 0 100px;
}
.hero-glow {
  position: absolute;
  top: -180px;
  right: -160px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 189, 190, 0.28), transparent 70%);
  pointer-events: none;
  z-index: 1;
}
.hero-glow--bottom {
  top: auto;
  right: auto;
  bottom: -220px;
  left: -180px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(0, 75, 141, 0.5), transparent 70%);
}
.hero-dots {
  position: absolute;
  top: 60px;
  right: 60px;
  width: 140px;
  height: 140px;
  background-image: radial-gradient(rgba(255,255,255,0.18) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  pointer-events: none;
  z-index: 1;
}
.hero-dots--mid {
  top: auto;
  bottom: 220px;
  right: 34%;
  width: 90px;
  height: 90px;
  opacity: 0.6;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: var(--color-white);
  margin-bottom: 22px;
  text-transform: uppercase;
}
.hero-badge .badge-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-accent-teal);
  color: var(--color-navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-badge .badge-icon svg { width: 13px; height: 13px; }
.hero h1 {
  font-weight: 800;
  font-size: 52px;
  color: var(--color-white);
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}
.hero h1 .accent { color: var(--color-accent-teal); }
.hero-subhead {
  font-size: 17px;
  color: #b7c9dc;
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-bottom: 0;
}
.hero-cta-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #9fb8d1;
}
.hero-cta-note svg { color: var(--color-accent-teal); flex-shrink: 0; }
.btn-white {
  background: var(--color-white);
  color: var(--color-primary-navy);
  box-shadow: var(--shadow-sm);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  background: #f0f4f8;
}
.hero-image-wrap {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
  transition: transform 0.6s ease;
}
.hero-image-wrap:hover img { transform: scale(1.05); }

/* ---------- Hero load-in animation (runs on page load, not scroll) ---------- */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-content > * {
  opacity: 0;
  animation: heroFadeUp 0.7s ease forwards;
}
.hero-content > *:nth-child(1) { animation-delay: 0.05s; }
.hero-content > *:nth-child(2) { animation-delay: 0.15s; }
.hero-content > *:nth-child(3) { animation-delay: 0.25s; }
.hero-content > *:nth-child(4) { animation-delay: 0.35s; }
.hero-image-wrap {
  opacity: 0;
  animation: heroFadeUp 0.8s ease forwards;
  animation-delay: 0.3s;
}
@media (prefers-reduced-motion: reduce) {
  .hero-content > *, .hero-image-wrap { animation: none; opacity: 1; }
}

@media (max-width: 900px) {
  .hero { padding: 120px 0 60px; }
  .hero .container { grid-template-columns: 1fr; }
  .hero h1 { font-size: 34px; }
  .hero-image-wrap { order: 2; margin-top: 8px; }
  .hero-content { order: 1; }
  .hero-dots { display: none; }
}

/* ==========================================================================
   Section 2 — Real Challenge
   ========================================================================== */
.challenge { background: var(--color-bg-light); padding: 96px 0; }

.challenge-head {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 56px;
  text-align: left;
  max-width: none;
}
.challenge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-primary-navy);
  color: var(--color-white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 8px 16px;
  border-radius: 6px;
  margin-bottom: 22px;
}
.challenge-tag::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--color-white);
  flex-shrink: 0;
}
.challenge-head h2 {
  font-weight: 800;
  font-size: 38px;
}
.challenge-head-right { padding-top: 8px; }
.challenge-head-right .lead-line {
  font-size: 17px;
  color: var(--color-ink);
  margin-bottom: 10px;
}
.challenge-head-right .lead-line strong { color: var(--color-primary-navy); }
.challenge-head-right .lead-sub {
  font-size: 15px;
  color: var(--color-body-text);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.pain-card {
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pain-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pain-card::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 16px;
  width: 14px;
  height: 14px;
  border-top: 2px solid var(--color-primary-navy);
  border-right: 2px solid var(--color-primary-navy);
  opacity: 0.6;
}
.pain-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 14px;
}
.pain-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--color-teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-navy);
  flex-shrink: 0;
}
.pain-card h3 { font-size: 17px; font-weight: 700; }
.pain-card p { font-size: 15px; color: var(--color-body-text); }

.challenge-closing-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.challenge-closing-row p {
  font-size: 16px;
  color: var(--color-ink);
  max-width: 640px;
  text-align: right;
}
.challenge-link {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-primary-navy);
  text-decoration: underline;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .challenge-head { grid-template-columns: 1fr; }
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .pain-grid { grid-template-columns: 1fr; }
  .challenge-closing-row { flex-direction: column; text-align: center; }
  .challenge-closing-row p { text-align: center; }
}

/* ==========================================================================
   Section 3 — Services accordion
   ========================================================================== */
.services { background: var(--color-white); padding: 96px 0; }

/* ---- shared split header (also used by challenge section pattern) ---- */
.split-head {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 56px;
  text-align: left;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-primary-navy);
  color: var(--color-white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 8px 16px;
  border-radius: 6px;
  margin-bottom: 22px;
}
.section-tag::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--color-white);
  flex-shrink: 0;
}
.split-head h2 { font-weight: 800; font-size: 38px; }
.split-head-right { padding-top: 8px; }
.split-head-right .lead-line { font-size: 17px; color: var(--color-ink); margin-bottom: 10px; }
.split-head-right .lead-line strong { color: var(--color-primary-navy); }
.split-head-right .lead-sub { font-size: 15px; color: var(--color-body-text); }

@media (max-width: 900px) {
  .split-head { grid-template-columns: 1fr; }
}

/* ---- services showcase ---- */
.services-showcase {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 56px;
}
.services-list {
  border-left: 2px solid var(--color-border);
}
.services-list-item {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 18px 0 18px 24px;
  margin-left: -2px;
  border-left: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.25s ease;
}
.services-list-item::before {
  content: "";
  position: absolute;
  left: -2px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-primary-navy);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease;
}
.services-list-item.active::before { transform: scaleY(1); }
.services-list-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 15px;
  color: var(--color-border);
  transition: color 0.25s ease;
}
.services-list-item.active .services-list-num,
.services-list-item:hover .services-list-num { color: var(--color-primary-navy); }
.services-list-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-body-text);
  transition: color 0.25s ease;
}
.services-list-item.active .services-list-name,
.services-list-item:hover .services-list-name { color: var(--color-ink); }

.services-panel-media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--color-bg-light);
}
.services-panel-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  position: absolute;
  inset: 0;
  transition: opacity 0.4s ease;
}
.services-panel-media img.active { opacity: 1; position: relative; }
.services-progress {
  height: 3px;
  background: var(--color-border);
  border-radius: 2px;
  margin-top: 20px;
  overflow: hidden;
}
.services-progress-bar {
  height: 100%;
  background: var(--color-primary-navy);
  width: 16.66%;
  transition: width 0.4s ease;
}
.services-panel h3 {
  font-size: 22px;
  font-weight: 700;
  margin-top: 24px;
  margin-bottom: 12px;
}
.services-panel-desc-wrap { position: relative; min-height: 78px; }
.services-panel p {
  font-size: 15px;
  color: var(--color-body-text);
  max-width: 480px;
  opacity: 0;
  position: absolute;
  inset: 0;
  transition: opacity 0.35s ease;
}
.services-panel p.active { opacity: 1; position: relative; }
.services-arrow-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary-navy);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.services-arrow-btn:hover { background: var(--color-accent-teal); transform: translateY(-2px); }

@media (max-width: 900px) {
  .services-showcase { grid-template-columns: 1fr; gap: 32px; }
  .services-list { display: flex; flex-wrap: wrap; border-left: none; gap: 4px 18px; }
  .services-list-item { border-left: none; padding: 8px 0; margin-left: 0; }
  .services-list-item::before { display: none; }
}

/* ==========================================================================
   Section 4 — Who Trusts Us
   ========================================================================== */
.trust {
  background: var(--color-white);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.trust .split-head h2 { color: var(--color-ink); }
.trust .split-head-right .lead-line { color: var(--color-ink); }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
}
.trust-card {
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  min-height: 380px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.trust-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

/* Intro card */
.trust-card--intro {
  background: var(--color-navy-dark);
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 26px 26px;
  justify-content: flex-end;
}
.trust-card--intro h3 {
  color: var(--color-white);
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 14px;
}
.trust-card--intro p { color: #b7c9dc; font-size: 14.5px; }

/* Testimonial cards */
.trust-card--quote {
  background: var(--color-white);
  border: 1px solid var(--color-border);
}
.trust-card--quote.trust-card--tint {
  background: var(--color-teal-light);
  border-color: transparent;
}
.trust-card--quote.trust-card--fill {
  background: var(--color-primary-navy);
  border-color: transparent;
}
.trust-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.trust-stars { display: flex; gap: 3px; color: #f5a623; }
.trust-card--fill .trust-stars { color: #ffd166; }
.trust-quote-glyph {
  font-family: Georgia, serif;
  font-size: 34px;
  line-height: 1;
  color: var(--color-ink);
  opacity: 0.5;
}
.trust-card--fill .trust-quote-glyph { color: var(--color-white); }

.trust-person {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--color-border);
}
.trust-card--fill .trust-person { border-bottom-color: rgba(255,255,255,0.2); }
.trust-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.trust-person-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  color: var(--color-ink);
}
.trust-card--fill .trust-person-name { color: var(--color-white); }
.trust-person-role { font-size: 12.5px; color: var(--color-body-text); }
.trust-card--fill .trust-person-role { color: #cfe3f5; }
.trust-card-body { font-size: 14.5px; color: var(--color-body-text); }
.trust-card--fill .trust-card-body { color: #e5f1fb; }

/* Stats card */
.trust-card--stats {
  background: var(--color-primary-navy);
  justify-content: center;
  gap: 22px;
}
.trust-stat-number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 30px;
  color: var(--color-white);
}
.trust-stat-label { font-size: 12.5px; color: #cfe3f5; margin-top: 2px; }
.trust-stat + .trust-stat { padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.15); }

@media (max-width: 1024px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .trust-grid { grid-template-columns: 1fr; }
  .trust-card { min-height: auto; }
}

/* ==========================================================================
   Section 5 — Why Bell Techlogix
   ========================================================================== */
.why { background: var(--color-bg-light); padding: 96px 0; }
.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.diff-card {
  background: var(--color-white);
  border-radius: 14px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.diff-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.diff-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--color-teal-light);
  color: var(--color-primary-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.diff-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.diff-card p { font-size: 14.5px; margin-bottom: 18px; }
.diff-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary-navy);
}
.diff-link svg { transition: transform 0.2s ease; }
.diff-card:hover .diff-link svg { transform: translateX(3px); }

.diff-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 56px;
}
.diff-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-border);
}
.diff-dots span:first-child {
  width: 10px;
  height: 10px;
  background: var(--color-primary-navy);
}

@media (max-width: 1024px) {
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .diff-grid { grid-template-columns: 1fr; }
}

.proof-strip {
  background: var(--color-white);
  border-radius: 16px;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  gap: 40px;
  box-shadow: var(--shadow-sm);
}
.proof-rating {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: 40px;
  border-right: 1px solid var(--color-border);
  flex-shrink: 0;
}
.proof-rating-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: var(--color-body-text);
  text-transform: uppercase;
}
.proof-stars { color: #f5a623; font-size: 16px; letter-spacing: 2px; }
.proof-rating-sub { font-size: 12px; color: var(--color-body-text); }

.proof-item {
  padding: 0 40px;
  border-right: 1px solid var(--color-border);
}
.proof-item:last-child { border-right: none; }
.proof-number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 30px;
  color: var(--color-ink);
}
.proof-number .unit { font-size: 17px; font-weight: 700; margin-left: 2px; }
.proof-context { font-size: 14px; color: var(--color-body-text); margin-top: 4px; white-space: nowrap; }

@media (max-width: 760px) {
  .diff-grid { grid-template-columns: 1fr; }
  .proof-strip { flex-direction: column; align-items: flex-start; gap: 24px; }
  .proof-rating, .proof-item {
    border-right: none;
    padding: 0 0 20px;
    border-bottom: 1px solid var(--color-border);
    width: 100%;
  }
  .proof-item:last-child { border-bottom: none; }
}

/* ==========================================================================
   Section 6 — Lead form
   ========================================================================== */
.get-started {
  background: var(--color-primary-navy);
  background-image:
    linear-gradient(rgba(255,255,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 40px 40px;
  padding: 96px 0;
  overflow: hidden;
}
.get-started-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.get-started-intro .section-tag {
  background: var(--color-white);
  color: var(--color-primary-navy);
}
.get-started-intro .section-tag::before { background: var(--color-primary-navy); }
.get-started-intro h2 {
  color: var(--color-white);
  font-weight: 800;
  font-size: 38px;
  margin-bottom: 18px;
}
.get-started-intro .lead-sub {
  color: #cfe3f5;
  font-size: 16px;
  max-width: 440px;
  padding-bottom: 26px;
  margin-bottom: 26px;
  border-bottom: 1px solid rgba(255,255,255,0.18);
}
.contact-info-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  color: var(--color-white);
  font-size: 15px;
  font-weight: 600;
}
.contact-info-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.form-frame {
  border-radius: 20px;
}
.form-card {
  background: var(--color-white);
  border-radius: 18px;
  padding: 48px;
  box-shadow: var(--shadow-lg);
}
.form-card h3 {
  font-size: 22px;
  font-weight: 700;
  padding-bottom: 22px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--color-border);
}

@media (max-width: 900px) {
  .get-started-grid { grid-template-columns: 1fr; }
  .form-card { padding: 34px 26px; }
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-field { display: flex; flex-direction: column; }
.form-field--full { grid-column: 1 / -1; }
.form-field label {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-ink);
  margin-bottom: 6px;
}
.form-field input,
.form-field textarea {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 13px 14px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-ink);
  background: var(--color-teal-light);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-accent-teal);
  box-shadow: 0 0 0 3px rgba(0, 189, 190, 0.18);
  background: var(--color-white);
}
.form-field input.field-error,
.form-field textarea.field-error {
  border-color: #d84343;
}
.field-error-msg {
  font-size: 12px;
  color: #d84343;
  margin-top: 4px;
  display: none;
}
.form-field.has-error .field-error-msg { display: block; }
.form-submit-wrap { text-align: center; margin-top: 8px; }
.form-reassurance {
  font-size: 13px;
  color: #8a97a5;
  margin-top: 14px;
}

@media (max-width: 640px) {
  .form-card { padding: 30px 22px; }
  .form-row { grid-template-columns: 1fr; }
  .form-submit-wrap .btn { width: 100%; }
}

/* ==========================================================================
   Section 7 — What Happens Next
   ========================================================================== */
.process { background: var(--color-bg-light); padding: 96px 0; }

.process-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.process-step {
  position: relative;
  text-align: left;
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.process-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.process-step::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 16px;
  width: 14px;
  height: 14px;
  border-top: 2px solid var(--color-primary-navy);
  border-right: 2px solid var(--color-primary-navy);
  opacity: 0.6;
}
.process-step-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 14px;
}
.step-badge {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--color-teal-light);
  color: var(--color-primary-navy);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.process-step h3 { font-size: 17px; font-weight: 700; }
.process-step p { font-size: 15px; color: var(--color-body-text); }

.process-connector { display: none; }

@media (max-width: 900px) {
  .process-track { grid-template-columns: 1fr; }
}

/* ---------- Sticky back-to-top ---------- */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-accent-teal);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
  z-index: 50;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { background: #00a3a4; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-navy-dark);
  padding: 32px 0;
}
.site-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo-img {
  height: 42px;
  width: auto;
  background: var(--color-white);
  padding: 8px 16px;
  border-radius: 8px;
}
.footer-text {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 13px; color: #9fb8d1; }
.footer-links a {
  font-size: 13px;
  color: #9fb8d1;
  text-decoration: underline;
}
.footer-links a:hover { color: var(--color-accent-teal); }

@media (max-width: 560px) {
  .site-footer .container { flex-direction: column; text-align: center; }
}

/* ---------- AOS override safety ---------- */
[data-aos] { pointer-events: auto; }

/* ==========================================================================
   Small-phone breakpoint (≤480px) — tightens up everything that only had
   a tablet (900px) fallback
   ========================================================================== */
@media (max-width: 480px) {
  .container { padding: 0 18px; }

  .site-logo .logo-img { height: 38px; padding: 6px 12px; }
  .hero-nav { gap: 10px; }
  .hero-nav-cta { padding: 8px 14px; font-size: 13px; }
  .hero-topbar { top: 16px; }

  .hero { padding: 96px 0 48px; }
  .hero h1 { font-size: 26px; }
  .hero-subhead { font-size: 15px; }
  .hero-ctas { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-ctas .btn { width: 100%; }

  .split-head h2,
  .challenge-head h2,
  .get-started-intro h2 { font-size: 26px; }
  .section-tag, .challenge-tag { font-size: 12px; padding: 7px 12px; }

  .services-showcase { gap: 24px; }
  .services-panel h3 { font-size: 19px; }

  .trust-card { padding: 24px 20px; }
  .trust-card--intro h3 { font-size: 21px; }

  .diff-card, .process-step, .pain-card { padding: 22px; }

  .proof-strip { padding: 24px; }
  .proof-number { font-size: 24px; }

  .form-card { padding: 24px 18px; }
  .form-card h3 { font-size: 19px; }
  .form-frame { border-radius: 14px; }

  .btn { padding: 13px 24px; font-size: 15px; }

  .back-to-top { right: 16px; bottom: 16px; width: 42px; height: 42px; }
}
