@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&family=Roboto+Condensed:wght@700;900&family=Open+Sans:wght@400;500;600&display=swap');

:root {
  --red: #D72638;
  --red-dark: #B01E2C;
  --navy: #0D1B2A;
  --navy-light: #1A2E45;
  --gold: #F4A11D;
  --gold-light: #FFF3DC;
  --white: #FFFFFF;
  --off-white: #F8F7F5;
  --light-gray: #EEF0F3;
  --mid-gray: #8B95A1;
  --dark-gray: #3D4452;
  --text: #1A1A2E;
  --border: #E2E5EC;
  --font-display: 'Roboto Condensed', 'Roboto', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.16);
  --radius: 10px;
  --radius-lg: 18px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── TOP BAR ─── */
.topbar {
  background: var(--navy);
  color: #aab;
  font-size: 12px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar a { color: #aab; }
.topbar a:hover { color: var(--gold); }

/* ─── HEADER ─── */
header {
  background: var(--white);
  border-bottom: 3px solid var(--red);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 12px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-badge {
  background: var(--red);
  color: var(--white);
  font-family: 'Roboto Condensed', 'Roboto', sans-serif;
  font-weight: 900;
  font-size: 16px;
  line-height: 1;
  padding: 7px 10px;
  border-radius: 6px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.logo-text {
  font-family: 'Roboto Condensed', 'Roboto', sans-serif;
  font-weight: 900;
  font-size: 22px;
  color: var(--navy);
  line-height: 1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.logo-text span { color: var(--red); }
.logo-tagline {
  font-size: 9px;
  color: var(--mid-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}

nav { display: flex; align-items: center; gap: 2px; flex-shrink: 0; }
nav a {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-gray);
  padding: 8px 10px;
  border-radius: 6px;
  transition: all .2s;
  white-space: nowrap;
  font-family: 'Roboto', sans-serif;
}
nav a:hover, nav a.active { color: var(--red); background: rgba(215,38,56,0.06); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: 7px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all .2s;
}
.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(215,38,56,0.35); }
.btn-outline { background: transparent; color: var(--red); border: 2px solid var(--red); }
.btn-outline:hover { background: var(--red); color: var(--white); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-light); transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: #e6960f; transform: translateY(-1px); }

/* ─── HERO ─── */
.hero {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 80px 24px 90px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(215,38,56,0.18) 0%, transparent 70%);
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--white));
}
.hero-tag {
  display: inline-block;
  background: rgba(244,161,29,0.15);
  color: var(--gold);
  border: 1px solid rgba(244,161,29,0.3);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: 'Roboto Condensed', 'Roboto', sans-serif;
  font-size: clamp(36px, 5.5vw, 66px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 1px;
  margin-bottom: 18px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-transform: uppercase;
}
.hero h1 .accent { color: var(--gold); }
.hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 60px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat-num {
  font-family: 'Roboto Condensed', 'Roboto', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.hero-stat-num span { color: var(--gold); }
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

/* ─── DASHBOARD PREVIEW ─── */
.dashboard-preview {
  background: var(--white);
  padding: 0 24px 70px;
}
.dashboard-card {
  max-width: 900px;
  margin: -40px auto 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
  z-index: 5;
}
.dashboard-bar {
  background: var(--navy);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.dash-dot { width: 11px; height: 11px; border-radius: 50%; }
.dash-dot.red { background: #FF5F57; }
.dash-dot.yellow { background: #FFBD2E; }
.dash-dot.green { background: #28CA41; }
.dashboard-body { padding: 24px; background: var(--off-white); }
.dash-welcome { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.dash-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}
.dash-metric {
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px;
  border: 1px solid var(--border);
}
.dash-metric-label { font-size: 11px; color: var(--mid-gray); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 6px; }
.dash-metric-val { font-size: 24px; font-weight: 700; color: var(--navy); font-family: 'Roboto Condensed', 'Roboto', sans-serif; }
.dash-metric-val.red { color: var(--red); }
.dash-metric-val.gold { color: var(--gold); }
.dash-chart {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--border);
  height: 120px;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  overflow: hidden;
}
.chart-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(to top, var(--red), #f07080);
  opacity: 0.85;
  transition: height .3s;
}
.chart-bar.gold { background: linear-gradient(to top, var(--gold), #f5c96a); }

/* ─── SECTION COMMONS ─── */
section { padding: 72px 24px; }
.container { max-width: 1200px; margin: 0 auto; }

.section-tag {
  display: inline-block;
  background: rgba(215,38,56,0.08);
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Roboto Condensed', 'Roboto', sans-serif;
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 900;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: 0.3px;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.section-sub {
  font-size: 16px;
  color: var(--mid-gray);
  line-height: 1.7;
  max-width: 560px;
}
.section-head { margin-bottom: 48px; }
.section-head.center { text-align: center; }
.section-head.center .section-sub { margin: 0 auto; }

/* ─── WHAT IS SECTION ─── */
.what-is { background: var(--off-white); }
.what-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.what-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.what-card h3 {
  font-family: 'Roboto Condensed', 'Roboto', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
}
.what-card p { color: var(--dark-gray); line-height: 1.75; font-size: 15px; }

/* ─── BENEFITS ─── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all .25s;
  position: relative;
  overflow: hidden;
}
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform .25s;
}
.benefit-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.benefit-card:hover::before { transform: scaleX(1); }
.benefit-icon {
  width: 48px; height: 48px;
  background: rgba(215,38,56,0.08);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.benefit-card h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.benefit-card p { font-size: 13.5px; color: var(--mid-gray); line-height: 1.65; }

/* ─── NETWORK ─── */
.network { background: var(--off-white); }
.network-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
}
.network-logo {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 24px;
  font-weight: 700;
  font-size: 14px;
  color: var(--dark-gray);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all .2s;
}
.network-logo:hover { border-color: var(--red); color: var(--red); box-shadow: var(--shadow-sm); }
.network-logo .dot-r { width: 8px; height: 8px; border-radius: 50%; background: var(--red); flex-shrink: 0; }

/* ─── INDUSTRIES ─── */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.industry-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  text-align: center;
  cursor: pointer;
  transition: all .2s;
}
.industry-card:hover { border-color: var(--red); background: rgba(215,38,56,0.03); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.industry-icon { font-size: 28px; margin-bottom: 10px; }
.industry-card h4 { font-size: 13px; font-weight: 600; color: var(--navy); }

/* ─── CTA BANNER ─── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 60px 48px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-banner h2 {
  font-family: 'Roboto Condensed', 'Roboto', sans-serif;
  font-size: 30px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 8px;
}
.cta-banner p { color: rgba(255,255,255,0.65); font-size: 15px; }

/* ─── CLIENTS ─── */
.clients-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
}
.client-logo {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark-gray);
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 110px;
  justify-content: center;
}

/* ─── TESTIMONIALS ─── */
.testimonials { background: var(--off-white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.stars { color: var(--gold); font-size: 16px; margin-bottom: 12px; }
.testimonial-card p { font-size: 14.5px; color: var(--dark-gray); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--gold));
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.reviewer-name { font-weight: 700; font-size: 14px; color: var(--navy); }
.reviewer-title { font-size: 12px; color: var(--mid-gray); }

/* ─── PACKAGES ─── */
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.package-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  position: relative;
  transition: all .25s;
}
.package-card.featured {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.package-card.featured .package-price { color: var(--gold); }
.package-card.featured .package-name { color: rgba(255,255,255,0.7); }
.package-card.featured .package-feature { color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.1); }
.package-card.featured .check { color: var(--gold); }
.package-badge {
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.package-name { font-size: 13px; font-weight: 600; color: var(--mid-gray); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 8px; }
.package-price { font-family: 'Roboto Condensed', 'Roboto', sans-serif; font-size: 42px; font-weight: 900; color: var(--navy); line-height: 1; margin-bottom: 6px; }
.package-price small { font-size: 18px; font-weight: 400; }
.package-desc { font-size: 13.5px; color: var(--mid-gray); margin-bottom: 24px; }
.package-features { margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.package-feature { font-size: 14px; color: var(--dark-gray); display: flex; align-items: center; gap: 8px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.check { color: var(--red); font-weight: 700; }

/* ─── PROCESS ─── */
.process-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; position: relative; }
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px; left: 10%; right: 10%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; padding: 0 12px; }
.step-num {
  width: 56px; height: 56px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Roboto Condensed', 'Roboto', sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--red);
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
  transition: all .2s;
}
.process-step:hover .step-num { background: var(--red); color: var(--white); border-color: var(--red); }
.process-step h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.process-step p { font-size: 12.5px; color: var(--mid-gray); line-height: 1.6; }

/* ─── WHO WE SERVE ─── */
.serve-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.serve-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  transition: all .2s;
  cursor: pointer;
  background: var(--white);
}
.serve-card:hover { border-color: var(--red); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.serve-icon { font-size: 32px; margin-bottom: 14px; }
.serve-card h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.serve-card p { font-size: 13px; color: var(--mid-gray); line-height: 1.65; }

/* ─── DISTRIBUTION ─── */
.dist-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.dist-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: all .2s;
}
.dist-card:hover { border-color: var(--red); box-shadow: var(--shadow-md); }
.dist-card h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.dist-card p { font-size: 14px; color: var(--mid-gray); line-height: 1.7; margin-bottom: 16px; }
.dist-tag {
  display: inline-block;
  background: var(--light-gray);
  color: var(--dark-gray);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  margin: 2px;
}

/* ─── COMPLIANCE / POLICY ─── */
.policy-list { display: flex; flex-direction: column; gap: 1px; }
.policy-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 28px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: all .15s;
}
.policy-item:hover { border-color: var(--red); box-shadow: var(--shadow-sm); }
.policy-num {
  font-family: 'Roboto Condensed', 'Roboto', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: rgba(215,38,56,0.15);
  line-height: 1;
  flex-shrink: 0;
  width: 36px;
}
.policy-item h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.policy-item p { font-size: 14px; color: var(--mid-gray); line-height: 1.7; }

/* ─── CONTACT ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-form { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s;
  outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--red); }
.form-group textarea { height: 130px; resize: vertical; }
.contact-info h3 { font-family: 'Roboto Condensed', 'Roboto', sans-serif; font-size: 28px; font-weight: 900; color: var(--navy); margin-bottom: 14px; }
.contact-info p { font-size: 15px; color: var(--mid-gray); line-height: 1.75; margin-bottom: 30px; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.contact-icon {
  width: 44px; height: 44px;
  background: rgba(215,38,56,0.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-detail h5 { font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 2px; }
.contact-detail p { font-size: 13px; color: var(--mid-gray); }

/* ─── PORTAL ─── */
.portal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.portal-features { display: flex; flex-direction: column; gap: 20px; }
.portal-feature { display: flex; gap: 16px; align-items: flex-start; }
.portal-feature-icon {
  width: 44px; height: 44px;
  background: rgba(215,38,56,0.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.portal-feature h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.portal-feature p { font-size: 13.5px; color: var(--mid-gray); line-height: 1.65; }
.portal-mockup {
  background: var(--navy);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* ─── FOOTER ─── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding-top: 64px;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand .logo-text { color: var(--white); }
.footer-brand .logo-text span { color: var(--gold); }
.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-top: 14px;
  margin-bottom: 20px;
  max-width: 280px;
}
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  transition: all .2s;
  border: 1px solid rgba(255,255,255,0.1);
}
.social-btn:hover { background: var(--red); color: var(--white); border-color: var(--red); }
.footer-col h5 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
  transition: color .2s;
}
.footer-col a:hover { color: var(--gold); }

.footer-disclaimer {
  background: rgba(215,38,56,0.12);
  border: 1px solid rgba(215,38,56,0.25);
  border-radius: var(--radius);
  padding: 16px 24px;
  margin: 0 24px 24px;
  max-width: 1152px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.footer-disclaimer-icon { font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.footer-disclaimer p { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.65; }
.footer-disclaimer strong { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 24px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: 12.5px; color: rgba(255,255,255,0.4); }
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: var(--gold); }

/* ─── PAGE HERO ─── */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 60px 24px;
  text-align: center;
  border-bottom: 3px solid var(--red);
}
.page-hero h1 {
  font-family: 'Roboto Condensed', 'Roboto', sans-serif;
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 900;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.page-hero p { font-size: 16px; color: rgba(255,255,255,0.65); max-width: 520px; margin: 0 auto; }
.breadcrumb {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.breadcrumb a { color: rgba(255,255,255,0.4); }
.breadcrumb a:hover { color: var(--gold); }

/* ─── DISCLAIMER NOTICE ─── */
.notice-bar {
  background: var(--gold-light);
  border-bottom: 2px solid var(--gold);
  padding: 12px 24px;
  text-align: center;
  font-size: 13px;
  color: var(--navy);
}
.notice-bar strong { color: var(--red); }

/* ─── RESOURCES PAGE ─── */
.resources-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.resource-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .2s;
}
.resource-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.resource-thumb {
  height: 160px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  position: relative;
  overflow: hidden;
}
.resource-thumb::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.3));
}
.resource-body { padding: 22px; }
.resource-tag { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--red); margin-bottom: 8px; }
.resource-card h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.4; }
.resource-card p { font-size: 13.5px; color: var(--mid-gray); line-height: 1.65; }

/* ─── TEAM ─── */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  transition: all .2s;
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.team-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
}
.team-card h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.team-card .role { font-size: 12.5px; color: var(--red); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.team-card p { font-size: 13px; color: var(--mid-gray); line-height: 1.65; }

/* ─── MOBILE MENU ─── */
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); margin: 5px 0; border-radius: 2px; transition: all .3s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  nav { display: none; }
  .menu-toggle { display: block; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .serve-grid { grid-template-columns: repeat(2, 1fr); }
  .what-grid { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .portal-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .dist-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .process-steps::before { display: none; }
  .dash-metrics { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .serve-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 32px; }
  .hero-stats { gap: 28px; }
  .cta-banner { padding: 36px 24px; }
  .team-grid { grid-template-columns: 1fr; }
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 3px solid var(--red);
  padding: 16px 24px;
  box-shadow: var(--shadow-md);
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: 15px; font-weight: 500; color: var(--dark-gray); padding: 10px 0; border-bottom: 1px solid var(--border); }
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--red); }

/* ─── TICKER ─── */
.ticker-wrap {
  background: var(--red);
  color: var(--white);
  overflow: hidden;
  padding: 8px 0;
}
.ticker-inner {
  display: flex;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 40px;
  font-size: 13px;
  font-weight: 600;
}
.ticker-item .t-up { color: #b8ffdc; }
.ticker-item .t-down { color: #ffd0d0; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── GLOSSARY ─── */
.glossary-list { display: flex; flex-direction: column; gap: 16px; }
.glossary-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 28px;
}
.glossary-term { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 6px; display: flex; align-items: center; gap: 10px; }
.glossary-badge {
  font-size: 10px;
  font-weight: 700;
  background: rgba(215,38,56,0.08);
  color: var(--red);
  padding: 2px 8px;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.glossary-def { font-size: 14.5px; color: var(--dark-gray); line-height: 1.7; }

/* ─── FAQ ─── */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  padding: 18px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  user-select: none;
}
.faq-q:hover { background: var(--off-white); }
.faq-q .arrow { color: var(--red); font-size: 18px; transition: transform .2s; flex-shrink: 0; }
.faq-a {
  padding: 0 24px;
  font-size: 14.5px;
  color: var(--mid-gray);
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s, padding .3s;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 24px 18px; }
.faq-item.open .arrow { transform: rotate(180deg); }

/* ─── BACK TO TOP ─── */
.back-top {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 42px; height: 42px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  border: none;
  z-index: 999;
}
.back-top.visible { opacity: 1; pointer-events: all; }
.back-top:hover { background: var(--red-dark); }

/* ─── REAL LOGO GRID ─── */
.real-logos-section { background: var(--white); padding: 56px 24px; }
.real-logos-section.dark { background: var(--navy); }
.logo-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}
.logo-pill {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 130px;
  min-height: 56px;
  transition: all .2s;
  box-shadow: var(--shadow-sm);
}
.logo-pill:hover { border-color: var(--red); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.logo-pill img {
  height: 28px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.75;
  transition: all .2s;
}
.logo-pill:hover img { filter: grayscale(0%); opacity: 1; }
.logo-pill-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark-gray);
  font-family: 'Roboto', sans-serif;
  white-space: nowrap;
}

/* client logos dark bg */
.client-logo-pill {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 130px;
  min-height: 56px;
  transition: all .2s;
}
.client-logo-pill:hover { background: rgba(255,255,255,0.14); border-color: var(--gold); }
.client-logo-pill img {
  height: 26px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: all .2s;
}
.client-logo-pill:hover img { opacity: 1; }
.client-logo-pill-name {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  font-family: 'Roboto', sans-serif;
  white-space: nowrap;
}

/* ─── HERO IMAGE CARDS ─── */
.hero-image-strip {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  margin-top: 32px;
}
.hero-img-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/9;
  background: var(--navy-light);
}
.hero-img-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: transform .4s;
}
.hero-img-card:hover img { transform: scale(1.05); }
.hero-img-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  padding: 20px 14px 12px;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
}

/* ─── FEATURE IMAGE SECTION ─── */
.feature-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.feature-img img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 600px) {
  .hero-image-strip { grid-template-columns: 1fr; }
  .logo-row { gap: 10px; }
  .logo-pill { min-width: 100px; padding: 10px 14px; }
}
