/* ================================================================
   TF Communications — Main Stylesheet
   Lighter, consumer-friendly design system
   Same token base as IT Lead Network, different weight distribution
   ================================================================ */

/* ─── TOKENS ─────────────────────────────────────────────────────── */
:root {
  --navy:       #0B1F3A;
  --navy-mid:   #112847;
  --teal:       #00B4C6;
  --teal-dim:   #007f8e;
  --teal-light: rgba(0,180,198,0.08);
  --orange:     #F97316;
  --orange-h:   #ea6a0e;
  --slate:      #F4F6F9;
  --slate-mid:  #edf0f5;
  --charcoal:   #1C2B3A;
  --muted:      #5a6a7a;
  --white:      #FFFFFF;
  --border:     #e2e8f0;
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'Inter', sans-serif;
  --max-w: 1200px;
  --radius: 10px;
  --radius-lg: 16px;
}
]
/* ─── RESET ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ─── UTILITY ────────────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.section-title.light { color: var(--white); }
.section-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 580px;
  margin-top: 12px;
}
.section-sub.light { color: rgba(255,255,255,0.72); }

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--orange-h); transform: translateY(-1px); color: var(--white); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  white-space: nowrap;
}
.btn-secondary:hover { border-color: var(--navy); background: var(--slate); }

.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn-call:hover { background: var(--orange-h); color: var(--white); }

.btn-outline-navy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: var(--radius);
  border: 2px solid var(--navy);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }

/* Card text span — Gutenberg safe replacement for p tags inside divs */
.card-text {
  display: block;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

/* ─── NAVBAR ─────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 1px 0 var(--border);
  padding: 0 24px;
  transition: box-shadow 0.3s;
}
.navbar.scrolled {
  box-shadow: 0 2px 16px rgba(11,31,58,0.08);
}
.navbar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.nav-logo span { color: var(--teal); }
.nav-logo .logo-img { height: 44px; width: auto; display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  flex: 1;
}
.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
  padding: 8px 12px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav-links > li > a:hover { color: var(--navy); background: var(--slate); }

/* Dropdowns */
.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(11,31,58,0.12);
  padding: 8px;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 200;
}
.dropdown-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
  padding: 9px 12px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.dropdown-menu a:hover { background: var(--slate); color: var(--teal); }
.dropdown-menu--wide {
  min-width: 240px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.nav-cta { margin-left: 8px; flex-shrink: 0; }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); margin: 5px 0; }

/* Mobile Menu */
.mobile-menu {
  display: none;
  background: var(--white);
  padding: 16px 24px 24px;
  border-top: 1px solid var(--border);
  max-height: 80vh;
  overflow-y: auto;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.mobile-menu ul li a {
  display: block;
  padding: 10px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--charcoal);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-menu ul li a:hover { color: var(--teal); }
.mobile-menu ul li:last-child a { border-bottom: none; }
.mobile-sub {
  padding-left: 16px !important;
  font-size: 14px !important;
  color: var(--muted) !important;
}
.mobile-call {
  display: flex !important;
  justify-content: center;
  margin-top: 16px;
  width: 100%;
  padding: 14px !important;
  font-size: 15px !important;
  border-radius: var(--radius) !important;
  border-bottom: none !important;
}

/* ─── HERO ───────────────────────────────────────────────────────── */
.hero {
  background: var(--white);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 100% 50%, rgba(0,180,198,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-light);
  border: 1px solid rgba(0,180,198,0.25);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--teal-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.hero h1 em { font-style: normal; color: var(--teal); }
.hero-sub {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-actions .btn-call {
  font-size: 16px;
  padding: 14px 24px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}
.hero-trust-item svg { color: var(--teal); flex-shrink: 0; }

/* Hero visual — right side */
.hero-visual {
  background: var(--slate);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
}
.hero-visual-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.hero-visual-sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 28px;
}

/* ─── HOW IT WORKS ───────────────────────────────────────────────── */
.how-it-works {
  padding: 80px 0;
  background: var(--slate);
}
.hiw-header { text-align: center; margin-bottom: 48px; }
.hiw-header .section-sub { margin: 12px auto 0; }
.hiw-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.hiw-step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  position: relative;
}
.hiw-step-num {
  width: 48px;
  height: 48px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.hiw-step-card:nth-child(2) .hiw-step-num { background: var(--teal); }
.hiw-step-card:nth-child(3) .hiw-step-num { background: var(--orange); }
.hiw-step-card h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

/* ─── SERVICE VERTICALS ──────────────────────────────────────────── */
.verticals {
  padding: 80px 0;
  background: var(--white);
}
.verticals-header { text-align: center; margin-bottom: 48px; }
.verticals-header .section-sub { margin: 12px auto 0; }
.verticals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.vertical-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.vertical-card:hover { box-shadow: 0 12px 40px rgba(11,31,58,0.08); transform: translateY(-2px); }
.vertical-card-header {
  background: var(--navy);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.vertical-card-icon {
  width: 46px;
  height: 46px;
  background: rgba(0,180,198,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.vertical-card-icon svg { width: 24px; height: 24px; color: var(--teal); }
.vertical-card-header h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}
.vertical-card-body { padding: 28px 32px; background: var(--white); }
.vertical-card-body .card-text { margin-bottom: 20px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.service-tag {
  font-size: 12px;
  font-weight: 500;
  color: var(--teal-dim);
  background: var(--teal-light);
  border: 1px solid rgba(0,180,198,0.2);
  padding: 5px 12px;
  border-radius: 100px;
}
.vertical-card-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.vertical-card-actions .btn-primary,
.vertical-card-actions .btn-secondary { font-size: 14px; padding: 10px 18px; }

/* ─── TRUST SECTION ──────────────────────────────────────────────── */
.trust-section {
  padding: 64px 0;
  background: var(--navy);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.trust-item {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.trust-item:last-child { border-right: none; }
.trust-num {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}
.trust-num span { color: var(--teal); }
.trust-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ─── WHY US SECTION ─────────────────────────────────────────────── */
.why-us {
  padding: 80px 0;
  background: var(--slate);
}
.why-header { text-align: center; margin-bottom: 48px; }
.why-header .section-sub { margin: 12px auto 0; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.why-icon {
  width: 44px;
  height: 44px;
  background: var(--teal-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.why-icon svg { width: 22px; height: 22px; color: var(--teal); }
.why-card h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

/* ─── CTA BANNER ─────────────────────────────────────────────────── */
.cta-banner {
  padding: 80px 0;
  background: var(--navy);
  background-image: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(0,180,198,0.1) 0%, transparent 70%);
  text-align: center;
}
.cta-banner .section-sub { margin: 12px auto 0; }
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.cta-actions .btn-call { font-size: 16px; padding: 14px 28px; }

/* ─── PAGE HERO (inner pages) ────────────────────────────────────── */
.page-hero {
  background: var(--navy);
  background-image:
    radial-gradient(ellipse 60% 60% at 30% 50%, rgba(0,180,198,0.08) 0%, transparent 70%),
    linear-height(180deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 140px 0 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}
.page-hero-inner { max-width: 700px; position: relative; z-index: 1; }
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}
.page-hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 560px;
}
.page-hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.page-hero-actions .btn-call { font-size: 15px; padding: 13px 22px; }

/* ─── MULTI-STEP FORM ────────────────────────────────────────────── */
.ms-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 4px 24px rgba(11,31,58,0.07);
}
.ms-form-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.ms-form-sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 28px;
}

/* Progress bar */
.ms-progress {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  margin-bottom: 32px;
  overflow: hidden;
}
.ms-progress-fill {
  height: 100%;
  background: var(--teal);
  border-radius: 2px;
  width: 0%;
  transition: width 0.4s ease;
}

/* Step dots */
.ms-step-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
}
.ms-step-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  transition: background 0.2s, transform 0.2s;
}
.ms-step-dot--active {
  background: var(--teal);
  transform: scale(1.3);
}
.ms-step-dot--done { background: var(--navy); }

/* Steps */
.ms-step { display: none; }
.ms-step--active { display: block; }
.ms-step-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}
.ms-step h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
}

/* Form fields */
.ms-field {
  margin-bottom: 16px;
}
.ms-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.ms-field input[type="text"],
.ms-field input[type="email"],
.ms-field input[type="tel"],
.ms-field input[type="number"],
.ms-field select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--charcoal);
  background: var(--slate);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.ms-field input:focus,
.ms-field select:focus {
  background: var(--white);
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,180,198,0.12);
}
.ms-field input::placeholder { color: #a0aec0; }
.ms-field.ms-field--2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.ms-field.ms-field--2col label { grid-column: 1 / -1; }

/* Select arrow */
.ms-select-wrap { position: relative; }
.ms-select-wrap select { padding-right: 40px; }
.ms-select-wrap::after {
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--muted);
  pointer-events: none;
}

/* Error state */
.ms-field input.ms-error,
.ms-field select.ms-error {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229,62,62,0.1);
}
.ms-error-msg {
  font-size: 12px;
  color: #e53e3e;
  margin-top: 4px;
}

/* Radio options */
.ms-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}
.ms-option {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--slate);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
}
.ms-option input[type="radio"] { accent-color: var(--teal); }
.ms-option:has(input:checked) {
  border-color: var(--teal);
  background: rgba(0,180,198,0.06);
  color: var(--navy);
}

/* Form navigation */
.ms-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
}
.ms-back {
  background: none;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 20px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.ms-back:hover { border-color: var(--charcoal); color: var(--charcoal); }
.ms-next,
.ms-submit {
  flex: 1;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  padding: 14px 24px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.ms-next:hover,
.ms-submit:hover { background: var(--orange-h); transform: translateY(-1px); }

/* Confirmation step */
.ms-confirm {
  text-align: center;
  padding: 20px 0;
}
.ms-confirm-icon {
  width: 64px;
  height: 64px;
  background: rgba(0,180,198,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.ms-confirm-icon svg { width: 32px; height: 32px; color: var(--teal); }
.ms-confirm h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.ms-confirm p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
}
.ms-confirm .btn-call {
  width: 100%;
  justify-content: center;
  padding: 15px;
  font-size: 16px;
}

/* Hidden WPForms */
.wpforms-hidden { display: none !important; }

/* ─── SERVICE PAGE ───────────────────────────────────────────────── */
.service-page-layout {
  padding: 72px 0 96px;
  background: var(--slate);
}
.service-page-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: flex-start;
}
.service-page-content h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}
.service-page-content .card-text {
  font-size: 16px;
  margin-bottom: 32px;
}
.service-benefits {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}
.service-benefit {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.benefit-icon {
  width: 28px;
  height: 28px;
  background: rgba(0,180,198,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.benefit-icon svg { width: 14px; height: 14px; color: var(--teal); }
.service-benefit strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
}
.service-benefit span { font-size: 14px; color: var(--muted); line-height: 1.5; }

/* Related services */
.related-services { padding: 64px 0; background: var(--white); }
.related-header { margin-bottom: 32px; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.related-card {
  background: var(--slate);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.related-card:hover { box-shadow: 0 4px 16px rgba(11,31,58,0.08); transform: translateY(-2px); }
.related-card-icon {
  width: 40px;
  height: 40px;
  background: var(--teal-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}
.related-card-icon svg { width: 20px; height: 20px; color: var(--teal); }
.related-card a {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  transition: color 0.2s;
}
.related-card:hover a { color: var(--teal); }

/* ─── FOOTER ─────────────────────────────────────────────────────── */
footer {
  background: #070f1e;
  color: rgba(255,255,255,0.6);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 14px;
  max-width: 280px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  display: inline-block;
}
.footer-logo span { color: var(--teal); }
.footer-logo .logo-img { height: 36px; width: auto; display: block; }
.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 15px;
  font-weight: 600;
  color: var(--orange);
  transition: color 0.2s;
}
.footer-phone:hover { color: var(--orange-h); }
.footer-col h5 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; padding:0; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--teal); }
.footer-view-all a { color: var(--teal) !important; font-weight: 600; font-size: 13px; }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ─── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .service-page-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 32px; }
  .trust-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }
  .trust-item:last-child, .trust-item:nth-last-child(2) { border-bottom: none; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: block; }
  .hero { padding: 120px 0 60px; }
  .hiw-steps { grid-template-columns: 1fr; }
  .verticals-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .ms-options { grid-template-columns: 1fr; }
  .ms-field.ms-field--2col { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .dropdown-menu--wide { grid-template-columns: 1fr; }
}

/* CTA banner outline button — white outlined for dark backgrounds */
.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  white-space: nowrap;
}
.btn-cta-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
  color: var(--white);
}
.wpforms-hidden-form {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.wpforms-hidden-form .wpforms-confirmation-container,
.wpforms-hidden-form .wpforms-confirmation-scroll,
.wpforms-hidden-form .wpforms-confirmation {
    display: none !important;
}