/* ========== CSS VARIABLES ========== */
:root {
  --blue-900: #0c2340;
  --blue-700: #13477a;
  --blue-600: #1a5daa;
  --blue-500: #2478cc;
  --blue-400: #3d8fd9;
  --blue-100: #ddeaf7;
  --blue-50: #eef5fc;
  --green-700: #2a7d34;
  --green-600: #36963f;
  --green-500: #3dae49;
  --green-400: #5dc268;
  --green-100: #d8f0da;
  --green-50: #edf8ee;
  --gray-900: #1a1a1a;
  --gray-700: #444;
  --gray-600: #555;
  --gray-500: #6e6e6e;
  --gray-400: #8e8e8e;
  --gray-300: #b3b3b3;
  --gray-200: #d4d4d4;
  --gray-100: #ebebeb;
  --gray-50: #f5f5f5;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.1);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.12);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--gray-700);
  line-height: 1.7;
  font-size: 16px;
  background: var(--white);
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 { font-family: 'Plus Jakarta Sans', sans-serif; color: var(--blue-900); line-height: 1.25; }
a { text-decoration: none; color: inherit; transition: color var(--transition-fast); }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }

/* ========== UTILITIES ========== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ========== ANNOUNCEMENT BAR ========== */
.announcement-bar {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  color: var(--white);
  text-align: center;
  padding: 8px 24px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  position: relative;
  z-index: 1001;
  overflow: hidden;
}
.announcement-bar::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 200%; height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.04) 50%, transparent 100%);
  animation: shimmer 4s infinite;
}
@keyframes shimmer { 0%{transform:translateX(-50%)} 100%{transform:translateX(50%)} }
.announcement-bar span { position: relative; z-index: 1; }
.announcement-bar .announce-icon { display: inline-block; margin-right: 6px; animation: pulse-icon 2s ease-in-out infinite; }
@keyframes pulse-icon { 0%,100%{transform:scale(1)} 50%{transform:scale(1.15)} }
.announcement-bar a { color: var(--green-400); font-weight: 700; border-bottom: 1px dashed var(--green-400); transition: var(--transition-fast); }
.announcement-bar a:hover { color: var(--green-100); border-color: var(--green-100); }

/* ========== HEADER ========== */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow var(--transition-smooth);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 24px;
}
.header-logo img { height: 52px; width: auto; transition: transform var(--transition-smooth); }
.header-logo:hover img { transform: scale(1.04); }

/* Main Nav */
.main-nav { display: flex; align-items: center; gap: 0; }
.main-nav > ul { display: flex; gap: 0; align-items: center; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  letter-spacing: 0.2px;
  position: relative;
  transition: color var(--transition-fast);
}
.main-nav > ul > li > a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 16px; right: 16px;
  height: 2px;
  background: var(--green-500);
  transform: scaleX(0);
  transition: transform var(--transition-smooth);
  border-radius: 1px;
}
.main-nav > ul > li > a:hover { color: var(--blue-600); }
.main-nav > ul > li > a:hover::after { transform: scaleX(1); }

/* Services Dropdown */
.has-dropdown > a::before {
  content: '';
  display: inline-block;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  margin-left: 5px;
  vertical-align: middle;
  transition: transform var(--transition-fast);
}
.services-mega {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 28px 32px;
  min-width: 740px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all var(--transition-smooth);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 24px;
}
.has-dropdown:hover .services-mega,
.has-dropdown:focus-within .services-mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.mega-group-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--blue-500);
  padding: 6px 12px 4px;
  margin-bottom: 2px;
}
.mega-link {
  display: block;
  padding: 7px 12px;
  font-size: 13.5px;
  color: var(--gray-600);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  font-weight: 500;
}
.mega-link:hover {
  background: var(--blue-50);
  color: var(--blue-600);
  transform: translateX(3px);
}

/* Header social icons */
.header-social { display: flex; gap: 6px; align-items: center; }
.header-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  color: var(--gray-400);
  transition: all var(--transition-fast);
  font-size: 14px;
}
.header-social a:hover { color: var(--blue-500); background: var(--blue-50); transform: translateY(-2px); }
.header-social a svg { width: 16px; height: 16px; fill: currentColor; }

/* Mobile toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  position: relative;
}
.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gray-700);
  position: absolute;
  left: 7px;
  transition: all var(--transition-fast);
}
.mobile-toggle span:nth-child(1) { top: 10px; }
.mobile-toggle span:nth-child(2) { top: 17px; }
.mobile-toggle span:nth-child(3) { top: 24px; }

.mobile-toggle.active span:nth-child(1) { top: 17px; transform: rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { top: 17px; transform: rotate(-45deg); }

/* Header phone */
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  color: var(--blue-700);
  background: var(--blue-50);
  padding: 8px 16px;
  border-radius: 50px;
  transition: all var(--transition-fast);
  white-space: nowrap;
}
.header-phone:hover { background: var(--blue-100); color: var(--blue-900); transform: scale(1.02); }
.header-phone svg { width: 16px; height: 16px; fill: var(--green-500); flex-shrink: 0; }

/* ========== HERO ========== */
.hero {
  background: linear-gradient(165deg, var(--blue-900) 0%, var(--blue-700) 55%, var(--blue-600) 100%);
  position: relative;
  padding: 72px 0 56px;
  overflow: hidden;
  color: var(--white);
}
.hero::before {
  content: '';
  position: absolute;
  top: -40%; right: -15%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(61,174,73,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(36,120,204,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-size: 42px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  line-height: 1.15;
}
.hero h1 span { color: var(--green-400); }
.hero-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  line-height: 1.6;
}
.hero-cta-group { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green-500);
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 30px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--transition-smooth);
  box-shadow: 0 4px 20px rgba(61,174,73,0.35);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.6s;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover { background: var(--green-600); transform: translateY(-2px); box-shadow: 0 6px 28px rgba(61,174,73,0.45); }
.btn-primary svg { width: 18px; height: 18px; fill: var(--white); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 30px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all var(--transition-smooth);
}
.btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.08); transform: translateY(-2px); }

/* Hero differentiators */
.hero-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.hero-benefit {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 16px;
  transition: all var(--transition-smooth);
}
.hero-benefit:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-3px);
}
.hero-benefit-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-benefit-icon svg { width: 20px; height: 20px; fill: var(--white); }
.hero-benefit h4 { font-size: 14px; color: var(--white); font-weight: 700; margin-bottom: 3px; }
.hero-benefit p { font-size: 12.5px; color: rgba(255,255,255,0.7); line-height: 1.4; }

/* Trust Strip */
.trust-strip {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 8px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  font-weight: 600;
}
.trust-item svg { width: 18px; height: 18px; fill: var(--green-400); flex-shrink: 0; }

/* ========== BREADCRUMBS ========== */
.breadcrumbs {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-100);
  padding: 12px 0;
}
.breadcrumbs nav {
  font-size: 13px;
  color: var(--gray-500);
}
.breadcrumbs a { color: var(--blue-500); font-weight: 500; }
.breadcrumbs a:hover { color: var(--blue-700); }
.breadcrumbs .sep { margin: 0 8px; color: var(--gray-300); }

/* ========== CONTENT SECTIONS ========== */
.content-section {
  padding: 72px 0;
}
.content-section:nth-child(even) {
  background: var(--gray-50);
}

.content-section h2 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -0.3px;
  position: relative;
}
.content-section h2::after {
  content: '';
  display: block;
  width: 56px;
  height: 4px;
  background: linear-gradient(90deg, var(--green-500), var(--blue-500));
  border-radius: 2px;
  margin-top: 16px;
}
.content-section p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: 20px;
  max-width: 800px;
}
.content-section p strong {
  color: var(--gray-900);
  font-weight: 700;
}

/* ========== HIGHLIGHTS GRID ========== */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 20px;
  margin-top: 36px;
}
.highlight-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}
.highlight-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--blue-500), var(--green-500));
  opacity: 0;
  transition: opacity var(--transition-smooth);
}
.highlight-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.highlight-card:hover::before { opacity: 1; }
.highlight-card-icon {
  width: 48px; height: 48px;
  background: var(--blue-50);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: all var(--transition-smooth);
}
.highlight-card:hover .highlight-card-icon { background: var(--blue-500); }
.highlight-card-icon svg { width: 24px; height: 24px; fill: var(--blue-500); transition: fill var(--transition-smooth); }
.highlight-card:hover .highlight-card-icon svg { fill: var(--white); }
.highlight-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--blue-900);
}
.highlight-card p { font-size: 14.5px; color: var(--gray-600); line-height: 1.7; margin: 0; }

/* ========== INTERSTITIAL: CTA BAND ========== */
.cta-band {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  padding: 48px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(61,174,73,0.1), transparent 70%);
  border-radius: 50%;
}
.cta-band h3 {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
  position: relative;
}
.cta-band p {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
  position: relative;
}
.cta-band .btn-primary { position: relative; }

/* ========== INTERSTITIAL: STATS ========== */
.stats-bar {
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  padding: 48px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item {
  position: relative;
  padding: 0 16px;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 10%;
  height: 80%;
  width: 1px;
  background: var(--gray-200);
}
.stat-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--blue-600);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-number .stat-suffix { font-size: 28px; color: var(--green-500); }
.stat-label {
  font-size: 13px;
  color: var(--gray-500);
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* ========== WHY CHOOSE US - LAYOUT WITH IMAGE ========== */
.split-content {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}
.split-content .prose p { max-width: none; }
.image-placeholder {
  background: linear-gradient(135deg, var(--blue-50), var(--green-50));
  border: 2px dashed var(--gray-200);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gray-400);
  font-size: 13px;
  font-weight: 600;
  transition: all var(--transition-smooth);
  position: sticky;
  top: 100px;
}
.image-placeholder:hover { border-color: var(--blue-400); background: linear-gradient(135deg, var(--blue-100), var(--green-100)); }
.image-placeholder svg { width: 40px; height: 40px; fill: var(--gray-300); }

/* ========== SIGNS SECTION ========== */
.signs-grid {
  display: grid;
  gap: 24px;
  margin-top: 32px;
}
.sign-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: start;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition-smooth);
}
.sign-card:hover { box-shadow: var(--shadow-md); border-color: var(--blue-100); transform: translateX(4px); }
.sign-number {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}
.sign-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--blue-900);
}
.sign-card p { font-size: 14.5px; color: var(--gray-600); line-height: 1.7; margin: 0; }

/* ========== INTERSTITIAL: HOW IT WORKS ========== */
.how-it-works {
  background: linear-gradient(180deg, var(--blue-50) 0%, var(--white) 100%);
  padding: 72px 0;
  position: relative;
}
.how-it-works h2 { text-align: center; }
.how-it-works h2::after { margin: 16px auto 0; }
.how-it-works-subtitle {
  text-align: center;
  color: var(--gray-500);
  font-size: 16px;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.process-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 12px;
  position: relative;
}
.process-timeline::before {
  content: '';
  position: absolute;
  top: 48px; left: 15%; right: 15%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-500), var(--green-500));
  opacity: 0.2;
  z-index: 0;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 24px 16px;
  border-radius: var(--radius-lg);
  transition: all var(--transition-smooth);
}
.process-step:hover { background: var(--white); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.process-step-number {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(36,120,204,0.3);
  transition: all var(--transition-smooth);
}
.process-step:hover .process-step-number { transform: scale(1.1); background: linear-gradient(135deg, var(--green-500), var(--green-600)); }
.process-step h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: var(--blue-900); }
.process-step p { font-size: 13.5px; color: var(--gray-500); line-height: 1.6; margin: 0; }

/* ========== BRANDS SECTION ========== */
.brands-section {
  padding: 72px 0;
  overflow: hidden;
}
.brands-section h2 { text-align: center; }
.brands-section h2::after { margin: 16px auto 0; }
.brands-section > .container > p { text-align: center; max-width: 700px; margin: 0 auto 12px; }
.brands-track-wrapper {
  margin-top: 40px;
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.brands-track {
  display: flex;
  gap: 32px;
  animation: scroll-brands 30s linear infinite;
  width: max-content;
}
@keyframes scroll-brands {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.brand-card {
  flex-shrink: 0;
  width: 200px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: all var(--transition-smooth);
}
.brand-card:hover { border-color: var(--blue-200); box-shadow: var(--shadow-sm); transform: scale(1.04); }
.brand-logo-placeholder {
  width: 100%;
  height: 56px;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-300);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  overflow: hidden;
  padding: 8px;
}
.brand-logo-placeholder img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.brand-text-logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--gray-600);
  letter-spacing: 0.5px;
  text-transform: none;
}
.brand-card span {
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-700);
  text-align: center;
}
.brand-card small {
  font-size: 11.5px;
  color: var(--gray-500);
  text-align: center;
  line-height: 1.4;
}
.brands-note {
  text-align: center;
  margin-top: 36px;
  font-size: 14.5px;
  color: var(--gray-600);
  line-height: 1.7;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ========== INTERSTITIAL: TRUST SIGNALS ========== */
.trust-band {
  background: var(--green-50);
  border-top: 1px solid var(--green-100);
  border-bottom: 1px solid var(--green-100);
  padding: 40px 0;
}
.trust-band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.trust-band-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 16px;
  border-radius: var(--radius-md);
  transition: all var(--transition-smooth);
}
.trust-band-item:hover { background: var(--white); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.trust-band-icon {
  width: 48px; height: 48px;
  background: var(--green-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-band-icon svg { width: 24px; height: 24px; fill: var(--white); }
.trust-band-item strong { font-size: 14px; color: var(--blue-900); }
.trust-band-item p { font-size: 12.5px; color: var(--gray-500); margin: 0; line-height: 1.4; }

/* ========== OTHER SERVICES TABLE ========== */
.services-table-wrap {
  overflow-x: auto;
  margin-top: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
}
.services-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
}
.services-table thead th {
  background: var(--blue-900);
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 16px 24px;
  text-align: left;
}
.services-table tbody td {
  padding: 14px 24px;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-600);
  transition: background var(--transition-fast);
}

.services-table tbody tr:hover td {
  background: var(--blue-50);
}
.services-table tbody tr:last-child td { border-bottom: none; }

/* ========== FAQ SECTION ========== */
.faq-grid {
  display: grid;
  gap: 16px;
  margin-top: 32px;
  max-width: 860px;
}
.faq-item {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-smooth);
}
.faq-item:hover { border-color: var(--blue-200); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: var(--white);
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--blue-900);
  transition: all var(--transition-fast);
}
.faq-question:hover { background: var(--blue-50); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-smooth);
}
.faq-icon svg { width: 14px; height: 14px; fill: var(--blue-500); transition: transform var(--transition-smooth); }
.faq-item.active .faq-icon { background: var(--blue-500); }
.faq-item.active .faq-icon svg { fill: var(--white); transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.75;
}
.faq-item.active .faq-answer { max-height: 500px; }

/* ========== INTERSTITIAL: WIDGET - CALCULATOR ========== */
.calc-interstitial {
  background: linear-gradient(135deg, var(--blue-50), var(--green-50));
  padding: 56px 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}
.calc-box {
  max-width: 520px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.calc-box h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--blue-900);
}
.calc-box > p {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 28px;
}
.calc-field { margin-bottom: 20px; text-align: left; }
.calc-field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-700);
  margin-bottom: 6px;
}
.calc-field input, .calc-field select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: 'DM Sans', sans-serif;
  color: var(--gray-700);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  background: var(--white);
  appearance: none;
}
.calc-field input:focus, .calc-field select:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(36,120,204,0.12);
}
.calc-result {
  margin-top: 24px;
  padding: 20px;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: var(--radius-md);
  display: none;
}
.calc-result.show { display: block; animation: fadeUp 0.3s ease; }
@keyframes fadeUp { from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:translateY(0)} }
.calc-result-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--green-600);
  line-height: 1;
}
.calc-result-label {
  font-size: 14px;
  color: var(--gray-600);
  margin-top: 4px;
}
.calc-btn {
  width: 100%;
  padding: 14px;
  background: var(--blue-600);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
  margin-top: 8px;
}
.calc-btn:hover { background: var(--blue-700); transform: translateY(-1px); }

/* ========== FOOTER ========== */
.site-footer {
  background: var(--blue-900);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img { height: 48px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition-fast);
}
.footer-social a:hover { background: var(--green-500); border-color: var(--green-500); color: var(--white); transform: translateY(-3px); }
.footer-social a svg { width: 16px; height: 16px; fill: currentColor; }
.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li { font-size: 14px; color: rgba(255,255,255,0.6); }
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition-fast);
  display: inline-block;
}
.footer-col a:hover { color: var(--green-400); transform: translateX(3px); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 14px;
}
.footer-contact-item svg { width: 16px; height: 16px; fill: var(--green-400); flex-shrink: 0; margin-top: 3px; }
.footer-contact-item a:hover { color: var(--green-400); }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--green-400); }

/* ========== SCROLL ANIMATIONS ========== */
.animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== SERVICE AREAS PAGE ========== */
.service-areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  margin-top: 36px;
}
.area-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}
.area-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--blue-500), var(--green-500));
  opacity: 0;
  transition: opacity var(--transition-smooth);
}
.area-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}
.area-card:hover::before { opacity: 1; }
.area-card-icon {
  width: 48px; height: 48px;
  background: var(--blue-50);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: all var(--transition-smooth);
}
.area-card:hover .area-card-icon { background: var(--blue-500); }
.area-card-icon svg { width: 24px; height: 24px; fill: var(--blue-500); transition: fill var(--transition-smooth); }
.area-card:hover .area-card-icon svg { fill: var(--white); }
.area-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--blue-900);
}
.area-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
  margin: 0;
}

/* Map Placeholder */
.map-placeholder {
  background: linear-gradient(135deg, var(--blue-50), var(--green-50));
  border: 2px dashed var(--gray-200);
  border-radius: var(--radius-lg);
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gray-400);
  font-size: 15px;
  font-weight: 700;
  transition: all var(--transition-smooth);
  max-width: 900px;
  margin: 0 auto;
}
.map-placeholder:hover {
  border-color: var(--blue-400);
  background: linear-gradient(135deg, var(--blue-100), var(--green-100));
}
.map-placeholder svg { width: 56px; height: 56px; fill: var(--gray-300); }

/* Services Overview Grid */
.services-overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 36px;
}
.service-overview-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  transition: all var(--transition-smooth);
}
.service-overview-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--blue-100);
}
.service-overview-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: all var(--transition-smooth);
}
.service-overview-card:hover .service-overview-icon {
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  transform: scale(1.08);
}
.service-overview-icon svg { width: 28px; height: 28px; fill: var(--white); }
.service-overview-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--blue-900);
}
.service-overview-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
  margin: 0;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero h1 { font-size: 34px; }
  .split-content { grid-template-columns: 1fr; }
  .image-placeholder { position: static; max-width: 400px; }
  .process-timeline { grid-template-columns: repeat(2, 1fr); }
  .process-timeline::before { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .services-mega { min-width: 560px; grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .announcement-bar { font-size: 12px; padding: 6px 16px; }
  .header-phone { padding: 8px 12px; font-size: 13px; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--gray-100);
    box-shadow: var(--shadow-lg);
    z-index: 999;
    padding: 16px 0;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .main-nav.open { display: block; }
  .main-nav > ul { flex-direction: column; gap: 0; }
  .main-nav > ul > li > a { padding: 12px 24px; font-size: 15px; border-bottom: 1px solid var(--gray-100); }
  .main-nav > ul > li > a::after { display: none; }
  .has-dropdown > a::before { display: none; }
  .services-mega {
    position: relative;
    top: 0;
    left: 0;
    transform: none !important;
    width: 100%;
    min-width: 0;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 8px 24px 16px;
    display: none;
    grid-template-columns: 1fr;
    gap: 4px;
    background: var(--gray-50);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .has-dropdown.open-sub .services-mega { display: grid; }
  .mega-group-title { padding: 10px 0 4px; }
  .mega-link { padding: 8px 0; font-size: 14px; }
  .mega-link:hover { transform: none; }
  .mobile-toggle { display: block; }
  .header-social { display: none; }
  .hero { padding: 48px 0 40px; }
  .hero h1 { font-size: 28px; }
  .hero-benefits { grid-template-columns: 1fr; }
  .trust-strip { gap: 16px; }
  .content-section { padding: 48px 0; }
  .content-section h2 { font-size: 26px; }
  .highlights-grid { grid-template-columns: 1fr; }
  .service-areas-grid { grid-template-columns: 1fr; }
  .services-overview-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .stat-item::after { display: none; }
  .stat-number { font-size: 32px; }
  .trust-band-grid { grid-template-columns: 1fr 1fr; }
  .process-timeline { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* Fix for sticky sidebar cutting off on mobile */
@media (max-width: 1024px) {
  /* Targets the second column in your split-content layout */
  .split-content > div:last-child > div {
    position: static !important;
    margin-top: 40px; /* Adds some breathing room between the contact info and the card */
  }
  
  /* Ensures the grid collapses correctly on all mobile devices */
  .split-content {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
}

.sticky-card {
  position: sticky;
  top: 100px;
}

/* Reset for mobile */
@media (max-width: 1024px) {
  .sticky-card {
    position: static !important;
  }
}