/* ═══════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-primary);
  font-size: var(--fs-base);
  line-height: var(--lh-normal);
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--teal-dark); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ═══════════════════════════════════════════
   TYPOGRAPHY
   ═══════════════════════════════════════════ */
h1, h2, h3, h4, h5, h6 { font-weight: var(--fw-bold); line-height: var(--lh-tight); color: var(--navy); }
h1 { font-size: var(--fs-5xl); margin-bottom: var(--space-6); }
h2 { font-size: var(--fs-4xl); margin-bottom: var(--space-5); }
h3 { font-size: var(--fs-2xl); margin-bottom: var(--space-4); }
h4 { font-size: var(--fs-xl); margin-bottom: var(--space-3); }
p { margin-bottom: var(--space-4); color: var(--text-light); line-height: var(--lh-relaxed); }
.text-center { text-align: center; }
.text-teal { color: var(--teal); }
.text-navy { color: var(--navy); }
.text-white { color: var(--white); }
.text-sm { font-size: var(--fs-sm); }
.text-lg { font-size: var(--fs-lg); }
.text-xl { font-size: var(--fs-xl); }
.eyebrow { font-size: var(--fs-sm); font-weight: var(--fw-semibold); text-transform: uppercase; letter-spacing: 0.08em; color: var(--teal); margin-bottom: var(--space-3); }

/* ═══════════════════════════════════════════
   LAYOUT
   ═══════════════════════════════════════════ */
.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 var(--gutter); }
.container-narrow { max-width: var(--max-width-narrow); }
.container-wide { max-width: var(--max-width-wide); }
.section { padding: var(--section-padding) 0; }
.section-dark { background: var(--navy-dark); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.8); }
.section-gray { background: var(--off-white); }
.section-teal { background: var(--teal); color: var(--white); }
.section-teal h2, .section-teal h3 { color: var(--white); }
.section-teal p { color: rgba(255,255,255,0.9); }

.grid { display: grid; gap: var(--space-8); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.flex { display: flex; }
.flex-center { align-items: center; justify-content: center; }
.flex-between { justify-content: space-between; align-items: center; }
.flex-col { flex-direction: column; }
.gap-4 { gap: var(--space-4); }
.gap-8 { gap: var(--space-8); }

/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-size: var(--fs-base); font-weight: var(--fw-semibold);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  text-decoration: none; white-space: nowrap;
}
.btn-primary {
  background: var(--teal); color: var(--white);
  box-shadow: 0 2px 8px rgba(65,78,155,0.3);
}
.btn-primary:hover { background: var(--teal-dark); color: var(--white); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(65,78,155,0.4); }
.btn-secondary { background: var(--navy); color: var(--white); }
.btn-secondary:hover { background: var(--navy-dark); color: var(--white); transform: translateY(-1px); }
.btn-outline { border: 2px solid var(--teal); color: var(--teal); background: transparent; }
.btn-outline:hover { background: var(--teal); color: var(--white); }
.btn-white { background: var(--white); color: var(--navy); }
.btn-white:hover { background: var(--off-white); color: var(--navy); transform: translateY(-1px); }
.btn-lg { padding: var(--space-4) var(--space-8); font-size: var(--fs-lg); }
.btn-sm { padding: var(--space-2) var(--space-4); font-size: var(--fs-sm); }
.btn-icon svg { width: 18px; height: 18px; }

/* Button variant - outline white (used in heroes and CTA banners) */
.btn-outline-white { border: 2px solid var(--white); color: var(--white); background: transparent; }
.btn-outline-white:hover { background: var(--white); color: var(--navy); }

/* ═══════════════════════════════════════════
   HEADER / NAV
   ═══════════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: all var(--transition-base);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--max-width-wide); margin: 0 auto;
  padding: var(--space-4) var(--gutter);
}
.logo { display: flex; align-items: center; gap: var(--space-3); text-decoration: none; }
.logo img { height: 48px; width: auto; }
.logo-text { font-size: var(--fs-xl); font-weight: var(--fw-bold); color: var(--navy); }
.nav-links { display: flex; align-items: center; gap: var(--space-8); }
.nav-links a {
  font-size: var(--fs-sm); font-weight: var(--fw-medium); color: var(--text);
  padding: var(--space-2) 0; position: relative;
  transition: color var(--transition-fast);
}
.nav-links a:hover, .nav-links a.active { color: var(--teal); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px;
  background: var(--teal); transition: width var(--transition-base);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: var(--space-4); }
.nav-phone { font-weight: var(--fw-semibold); color: var(--navy); font-size: var(--fs-sm); }
.nav-phone:hover { color: var(--teal); }

/* Header phone link */
.header-phone { display: inline-flex; align-items: center; gap: var(--space-2); font-weight: var(--fw-semibold); color: var(--navy); font-size: var(--fs-sm); text-decoration: none; }
.header-phone:hover { color: var(--teal); }
.header-phone svg { flex-shrink: 0; }
.header-actions { display: flex; align-items: center; gap: var(--space-4); }

/* Logo mark */
.logo-mark { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; background: var(--teal); color: var(--white); font-weight: var(--fw-bold); font-size: var(--fs-sm); border-radius: var(--radius-sm); }
.footer-logo { display: flex; align-items: center; gap: var(--space-3); text-decoration: none; }
.footer-logo .logo-mark { width: 32px; height: 32px; font-size: var(--fs-xs); }
.footer-logo .logo-text { font-size: var(--fs-lg); font-weight: var(--fw-bold); color: var(--white); }
.footer-logo img { width: 130px; height: auto; filter: brightness(0) invert(1); }

/* Mobile Nav */
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: var(--space-2); }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); transition: all var(--transition-fast); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: -16px; min-width: 240px;
  background: var(--white); border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); padding: var(--space-2) 0;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all var(--transition-base);
}
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-menu a {
  display: block; padding: var(--space-2) var(--space-4);
  font-size: var(--fs-sm); color: var(--text);
}
.nav-dropdown-menu a:hover { background: var(--off-white); color: var(--teal); }
.nav-dropdown-menu a::after { display: none; }

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  padding: calc(var(--space-32) + 80px) 0 var(--space-32);
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 40%, var(--navy-light) 100%);
  color: var(--white); position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  background: radial-gradient(circle at 70% 30%, rgba(65,78,155,0.15) 0%, transparent 60%);
}
.hero-content { position: relative; z-index: 1; max-width: 700px; }
.hero h1 { font-size: var(--fs-6xl); color: var(--white); margin-bottom: var(--space-6); }
.hero h1 .highlight { color: var(--teal-light); }
.hero p { font-size: var(--fs-xl); color: rgba(255,255,255,0.85); margin-bottom: var(--space-8); max-width: 600px; }
.hero-cta { display: flex; gap: var(--space-4); flex-wrap: wrap; }
.hero-stats { display: flex; gap: var(--space-12); margin-top: var(--space-12); }
.hero-stat { text-align: center; }
.hero-stat-number { font-size: var(--fs-4xl); font-weight: var(--fw-bold); color: var(--teal-light); }
.hero-stat-label { font-size: var(--fs-sm); color: rgba(255,255,255,0.7); margin-top: var(--space-1); }

/* Page Hero (inner pages) */
.page-hero {
  padding: calc(var(--space-20) + 80px) 0 var(--space-16);
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: var(--white);
}
.page-hero h1 { color: var(--white); font-size: var(--fs-5xl); }
.page-hero p { color: rgba(255,255,255,0.85); font-size: var(--fs-lg); max-width: 600px; }
.breadcrumb { display: flex; gap: var(--space-2); font-size: var(--fs-sm); margin-bottom: var(--space-4); }
.breadcrumb a { color: var(--teal-light); }
.breadcrumb span { color: rgba(255,255,255,0.5); }

/* ═══════════════════════════════════════════
   CARDS
   ═══════════════════════════════════════════ */
.card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: var(--space-8); border: var(--border);
  transition: all var(--transition-base);
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--teal); }
.card-icon {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-4); color: var(--white); font-size: 24px;
}
.card h3 { font-size: var(--fs-xl); margin-bottom: var(--space-3); }
.card p { font-size: var(--fs-sm); color: var(--text-light); margin-bottom: var(--space-4); }
.card-link { font-size: var(--fs-sm); font-weight: var(--fw-semibold); color: var(--teal); display: inline-flex; align-items: center; gap: var(--space-1); }
.card-link:hover { gap: var(--space-2); }

/* ═══════════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  padding: var(--space-16) 0; text-align: center; color: var(--white);
}
.cta-banner h2 { color: var(--white); font-size: var(--fs-4xl); margin-bottom: var(--space-4); }
.cta-banner p { color: rgba(255,255,255,0.9); font-size: var(--fs-lg); margin-bottom: var(--space-8); max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-banner .cta-phone {
  font-size: var(--fs-3xl); font-weight: var(--fw-bold); color: var(--white);
  display: block; margin-bottom: var(--space-6);
}
.cta-banner .cta-phone:hover { color: rgba(255,255,255,0.9); }

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,0.7); padding: var(--space-16) 0 var(--space-8); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--space-8); margin-bottom: var(--space-8); }
.footer-brand p { font-size: var(--fs-sm); margin-top: var(--space-4); line-height: var(--lh-relaxed); }
.footer-heading { font-size: var(--fs-sm); font-weight: var(--fw-semibold); color: var(--white); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: var(--space-4); }
.footer-links { display: flex; flex-direction: column; gap: var(--space-2); }
.footer-links a { font-size: var(--fs-sm); color: rgba(255,255,255,0.6); transition: color var(--transition-fast); }
.footer-links a:hover { color: var(--teal-light); }
.footer-service-areas { margin-bottom: var(--space-8); }
.footer-service-areas h4 { font-size: var(--fs-sm); font-weight: var(--fw-semibold); color: var(--white); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: var(--space-3); }
.service-areas-list { font-size: var(--fs-sm); line-height: 1.8; }
.service-areas-list a { color: rgba(255,255,255,0.6); transition: color var(--transition-fast); }
.service-areas-list a:hover { color: var(--teal-light); }
.service-areas-list .sep { color: rgba(255,255,255,0.25); margin: 0 0.35em; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: var(--space-6); display: flex; justify-content: space-between; align-items: center; font-size: var(--fs-xs); color: rgba(255,255,255,0.4); }

/* ═══════════════════════════════════════════
   SERVICE / INDUSTRY PAGE CONTENT
   ═══════════════════════════════════════════ */
.content-section { padding: var(--space-16) 0; }
.content-section h2 { margin-bottom: var(--space-8); }
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-6); }
.feature-item { display: flex; gap: var(--space-4); }
.feature-icon { flex-shrink: 0; width: 40px; height: 40px; border-radius: var(--radius-sm); background: var(--off-white); display: flex; align-items: center; justify-content: center; color: var(--teal); font-size: 20px; }
.feature-item h4 { margin-bottom: var(--space-1); font-size: var(--fs-base); }
.feature-item p { font-size: var(--fs-sm); margin-bottom: 0; }

/* Pricing */
.pricing-card {
  background: var(--white); border: 2px solid var(--light-gray); border-radius: var(--radius-xl);
  padding: var(--space-10); text-align: center; transition: all var(--transition-base);
}
.pricing-card.featured { border-color: var(--teal); box-shadow: var(--shadow-xl); transform: scale(1.03); }
.pricing-price { font-size: var(--fs-5xl); font-weight: var(--fw-bold); color: var(--navy); }
.pricing-price span { font-size: var(--fs-lg); font-weight: var(--fw-normal); color: var(--mid-gray); }
.pricing-features { text-align: left; margin: var(--space-8) 0; }
.pricing-features li { padding: var(--space-2) 0; font-size: var(--fs-sm); color: var(--text-light); display: flex; align-items: center; gap: var(--space-2); }
.pricing-features li::before { content: '✓'; color: var(--teal); font-weight: var(--fw-bold); }

/* Blog */
.blog-card { border-radius: var(--radius-lg); overflow: hidden; border: var(--border); transition: all var(--transition-base); }
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.blog-card-body { padding: var(--space-6); }
.blog-card-meta { font-size: var(--fs-xs); color: var(--mid-gray); margin-bottom: var(--space-2); }
.blog-card h3 { font-size: var(--fs-lg); margin-bottom: var(--space-2); }
.blog-card h3 a { color: var(--navy); }
.blog-card h3 a:hover { color: var(--teal); }

/* Contact Form */
.form-group { margin-bottom: var(--space-4); }
.form-group label { display: block; font-size: var(--fs-sm); font-weight: var(--fw-medium); color: var(--text); margin-bottom: var(--space-2); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: var(--space-3) var(--space-4);
  border: var(--border); border-radius: var(--radius-md);
  font-size: var(--fs-base); transition: border-color var(--transition-fast);
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(65,78,155,0.1); }
.form-group textarea { min-height: 120px; resize: vertical; }

/* Trust Bar */
.trust-bar { padding: var(--space-8) 0; background: var(--off-white); text-align: center; }
.trust-bar p { font-size: var(--fs-sm); color: var(--mid-gray); margin-bottom: var(--space-4); }
.trust-logos { display: flex; align-items: center; justify-content: center; gap: var(--space-12); flex-wrap: wrap; opacity: 0.6; }

/* ═══════════════════════════════════════════
   SECTION HEADER & LAYOUT UTILITIES
   ═══════════════════════════════════════════ */
/* Section header (centered) */
.section-header { text-align: center; max-width: 700px; margin: 0 auto var(--space-12); }
.section-header p { color: var(--text-light); font-size: var(--fs-lg); }

/* Section alt background */
.section-alt { background: var(--off-white); }

/* Card grid layouts */
.card-grid { display: grid; gap: var(--space-6); }
.card-grid-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }

/* Feature cards (numbered cards) */
.feature-card { background: var(--white); border-radius: var(--radius-lg); padding: var(--space-8); border: var(--border); }
.feature-number { font-size: var(--fs-3xl); font-weight: var(--fw-bold); color: var(--teal); opacity: 0.3; margin-bottom: var(--space-3); }

/* Steps (how it works) */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-8); }
.step { text-align: center; }
.step-number { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: var(--radius-full); background: var(--teal); color: var(--white); font-weight: var(--fw-bold); font-size: var(--fs-xl); margin-bottom: var(--space-4); }

/* Two column layout */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-12); align-items: center; }
.two-col-content { }
.two-col-media { }

/* Checklist */
.check-list { list-style: none; padding: 0; margin: var(--space-6) 0; }
.check-list li { padding: var(--space-2) 0; padding-left: var(--space-6); position: relative; color: var(--text-light); }
.check-list li::before { content: '\2713'; position: absolute; left: 0; color: var(--teal); font-weight: var(--fw-bold); }

/* Hero subtitle */
.hero-subtitle { font-size: var(--fs-xl); color: rgba(255,255,255,0.85); margin-bottom: var(--space-8); max-width: 600px; }
.page-hero .hero-subtitle { font-size: var(--fs-lg); color: rgba(255,255,255,0.85); }

/* Hero and CTA actions */
.hero-actions { display: flex; gap: var(--space-4); flex-wrap: wrap; }
.cta-actions { display: flex; gap: var(--space-4); flex-wrap: wrap; justify-content: center; }
.cta-content { text-align: center; }

/* Trust bar items */
.trust-bar-label { font-size: var(--fs-sm); color: var(--mid-gray); margin-bottom: var(--space-4); text-align: center; }
.trust-bar-items { display: flex; align-items: center; justify-content: center; gap: var(--space-12); flex-wrap: wrap; }
.trust-stat { text-align: center; }
.trust-stat-number { display: block; font-size: var(--fs-2xl); font-weight: var(--fw-bold); color: var(--navy); }
.trust-stat-label { display: block; font-size: var(--fs-xs); color: var(--mid-gray); margin-top: var(--space-1); }

/* Hero trust items */
.hero-trust { display: flex; gap: var(--space-6); margin-top: var(--space-8); flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: var(--space-2); font-size: var(--fs-sm); color: rgba(255,255,255,0.8); }
.trust-item svg { color: var(--teal-light); flex-shrink: 0; }

/* Map embed */
.map-embed { border-radius: var(--radius-lg); overflow: hidden; }

/* Blog article */
.blog-article { padding: var(--space-16) 0; }
.blog-meta { font-size: var(--fs-sm); color: var(--mid-gray); margin-bottom: var(--space-4); display: flex; gap: var(--space-4); }
.blog-author { color: var(--text-light); }
.blog-body { font-size: var(--fs-lg); line-height: var(--lh-relaxed); }
.blog-body h2 { margin-top: var(--space-10); }
.blog-body h3 { margin-top: var(--space-8); }
.blog-body ul, .blog-body ol { margin: var(--space-4) 0; padding-left: var(--space-6); }
.blog-body li { margin-bottom: var(--space-2); color: var(--text-light); list-style: disc; }
.blog-body strong { color: var(--text); }

/* Content block (privacy/terms) */
.content-block { font-size: var(--fs-base); line-height: var(--lh-relaxed); }
.content-block h2 { margin-top: var(--space-8); font-size: var(--fs-2xl); }

/* Form success */
.form-success { text-align: center; padding: var(--space-8); }
.form-success h3 { color: var(--teal); }

/* Animations */
.animate-in { opacity: 0; transform: translateY(20px); transition: opacity var(--transition-slow), transform var(--transition-slow); }
.animate-in.is-visible { opacity: 1; transform: translateY(0); }

/* Site header container & main nav */
.site-header .container { display: flex; align-items: center; justify-content: space-between; padding-top: var(--space-4); padding-bottom: var(--space-4); }
.main-nav { flex: 1; display: flex; justify-content: center; }
.nav-list { display: flex; align-items: center; gap: var(--space-6); }
.nav-item { position: relative; }
.nav-link { font-size: var(--fs-sm); font-weight: var(--fw-medium); color: var(--text); padding: var(--space-2) 0; transition: color var(--transition-fast); text-decoration: none; }
.nav-link:hover { color: var(--teal); }
.has-dropdown .dropdown { position: absolute; top: 100%; left: -16px; min-width: 240px; background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-lg); padding: var(--space-2) 0; opacity: 0; visibility: hidden; transform: translateY(8px); transition: all var(--transition-base); z-index: 100; }
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a { display: block; padding: var(--space-2) var(--space-4); font-size: var(--fs-sm); color: var(--text); text-decoration: none; }
.dropdown li a:hover { background: var(--off-white); color: var(--teal); }
.nav-toggle.is-active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.main-nav.is-open { display: flex !important; }

/* Card highlight variant */
.card-highlight { border-left: 3px solid var(--teal); }

/* ═══════════════════════════════════════════
   LOGO PARADE
   ═══════════════════════════════════════════ */
.logo-parade {
  padding: var(--space-6) 0;
  background: var(--white);
  overflow: hidden;
  border-bottom: 1px solid var(--light-gray);
}
.logo-parade-track {
  display: flex;
  gap: var(--space-12);
  animation: logoScroll 30s linear infinite;
  width: max-content;
}
.logo-parade-item {
  flex-shrink: 0;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--mid-gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  opacity: 0.5;
  transition: opacity var(--transition-base);
}
.logo-parade-item:hover { opacity: 1; }
@keyframes logoScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════
   ALTERNATING FEATURE ROWS
   ═══════════════════════════════════════════ */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
  margin-bottom: var(--space-16);
}
.feature-row:last-of-type { margin-bottom: 0; }
.feature-row-reverse { direction: rtl; }
.feature-row-reverse > * { direction: ltr; }
.feature-row-content .eyebrow { margin-bottom: var(--space-3); }
.feature-row-content h3 { font-size: var(--fs-3xl); margin-bottom: var(--space-4); }
.feature-row-content p { font-size: var(--fs-lg); margin-bottom: var(--space-6); }
.feature-row-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-row-icon {
  width: 160px;
  height: 160px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: var(--shadow-xl);
}
.feature-row-icon svg { width: 64px; height: 64px; }

/* ═══════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  border: var(--border);
  position: relative;
  transition: all var(--transition-base);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.testimonial-stars {
  color: var(--yellow);
  font-size: var(--fs-lg);
  margin-bottom: var(--space-4);
  letter-spacing: 2px;
}
.testimonial-quote {
  font-size: var(--fs-base);
  font-style: italic;
  color: var(--text-light);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-6);
  position: relative;
  padding-left: var(--space-6);
  border-left: 3px solid var(--teal);
}
.testimonial-author strong {
  display: block;
  font-size: var(--fs-sm);
  color: var(--navy);
  font-weight: var(--fw-semibold);
}
.testimonial-author span {
  font-size: var(--fs-xs);
  color: var(--mid-gray);
}

/* ═══════════════════════════════════════════
   PRICING PREVIEW (HOMEPAGE)
   ═══════════════════════════════════════════ */
.pricing-plus {
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  color: var(--navy);
  margin-bottom: var(--space-6);
}
.pricing-plus span {
  font-size: var(--fs-sm);
  font-weight: var(--fw-normal);
  color: var(--mid-gray);
}
.pricing-subtitle {
  font-size: var(--fs-sm);
  color: var(--text-light);
  margin-bottom: var(--space-4);
}
.pricing-header { margin-bottom: var(--space-4); }
.pricing-header h3 { margin-bottom: var(--space-1); }
.pricing-footer { margin-top: var(--space-6); }
.pricing-badge {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-4);
}
.btn-block { display: block; width: 100%; text-align: center; justify-content: center; }

/* ═══════════════════════════════════════════
   BLOG PREVIEW CARDS
   ═══════════════════════════════════════════ */
.blog-card { display: flex; flex-direction: column; text-decoration: none; }
.blog-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-card-placeholder {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
}
.blog-card .blog-card-body { flex: 1; }
.blog-card .blog-card-body p { font-size: var(--fs-sm); color: var(--text-light); }

/* ═══════════════════════════════════════════
   FAQ ACCORDION
   ═══════════════════════════════════════════ */
.faq-section { margin-top: var(--space-12); }
.faq-item {
  border: var(--border);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-3);
  overflow: hidden;
  transition: all var(--transition-base);
}
.faq-item:hover { border-color: var(--teal); }
.faq-question {
  width: 100%;
  padding: var(--space-4) var(--space-6);
  background: var(--white);
  border: none;
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  font-family: inherit;
}
.faq-question::after {
  content: '+';
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--teal);
  transition: transform var(--transition-base);
  flex-shrink: 0;
}
.faq-item.is-open .faq-question::after {
  content: '\2212';
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}
.faq-answer-inner {
  padding: 0 var(--space-6) var(--space-6);
  font-size: var(--fs-sm);
  color: var(--text-light);
  line-height: var(--lh-relaxed);
}

/* ═══════════════════════════════════════════
   MOBILE CTA BAR
   ═══════════════════════════════════════════ */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--white);
  border-top: 1px solid var(--light-gray);
  box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
  padding: var(--space-3) var(--space-4);
  gap: var(--space-3);
}
.mobile-cta-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  text-decoration: none;
  text-align: center;
}
.mobile-cta-call {
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--navy);
}
.mobile-cta-quote {
  background: var(--teal);
  color: var(--white);
}

/* ═══════════════════════════════════════════
   ENHANCED CARD HOVER
   ═══════════════════════════════════════════ */
.card { will-change: transform; }
.card:hover { transform: translateY(-4px) scale(1.01); }

/* Hero scroll link */
.hero-scroll-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255,255,255,0.7);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  text-decoration: none;
  margin-top: var(--space-4);
  transition: color var(--transition-base);
}
.hero-scroll-link:hover { color: var(--white); }
.hero-scroll-link span {
  display: inline-block;
  animation: bounceDown 2s infinite;
}
@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* Section CTA */
.section-cta { text-align: center; margin-top: var(--space-8); }

/* Dark section card adjustments */
.section-dark .card { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.1); }
.section-dark .card h3 { color: var(--white); }
.section-dark .card p { color: rgba(255,255,255,0.7); }
.section-dark .card:hover { background: rgba(255,255,255,0.1); border-color: var(--teal-light); box-shadow: var(--shadow-lg); }
.section-dark .card-link { color: var(--teal-light); }
.section-dark .card-highlight { border-left-color: var(--teal-light); }

/* Stagger animation delay */
.animate-in.delay-1 { transition-delay: 100ms; }
.animate-in.delay-2 { transition-delay: 200ms; }
.animate-in.delay-3 { transition-delay: 300ms; }

/* Count-up animation */
.trust-stat-number.counted { transition: none; }

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --section-padding: var(--space-12); }
  h1 { font-size: var(--fs-4xl); }
  h2 { font-size: var(--fs-3xl); }
  .hero h1 { font-size: var(--fs-4xl); }
  .hero { padding: calc(var(--space-24) + 80px) 0 var(--space-20); }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: var(--space-6); }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: var(--space-2); text-align: center; }

  /* Mobile nav */
  .nav-toggle { display: flex; }
  .logo img { height: 36px; }
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); flex-direction: column; padding: var(--space-4) var(--gutter); border-bottom: var(--border); gap: var(--space-4); }
  .nav-links.open { display: flex; }
  .nav-dropdown-menu { position: static; box-shadow: none; opacity: 1; visibility: visible; transform: none; padding-left: var(--space-4); }
  .nav-cta { flex-direction: column; width: 100%; }
  .nav-cta .btn { width: 100%; justify-content: center; }
  .card-grid-2, .card-grid-3 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .hero-actions, .cta-actions { flex-direction: column; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; justify-content: center; }
  .hero-trust { flex-direction: column; gap: var(--space-3); }
  .trust-bar-items { flex-direction: column; gap: var(--space-4); }
  .main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); flex-direction: column; padding: var(--space-4) var(--gutter); border-bottom: var(--border); z-index: 999; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .has-dropdown .dropdown { position: static; box-shadow: none; opacity: 1; visibility: visible; transform: none; padding-left: var(--space-4); }
  .header-phone span { display: none; }
  .feature-row, .feature-row-reverse { grid-template-columns: 1fr; direction: ltr; }
  .feature-row-visual { order: -1; }
  .feature-row-icon { width: 100px; height: 100px; }
  .feature-row-icon svg { width: 40px; height: 40px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .mobile-cta-bar { display: flex; }
  .site-footer { padding-bottom: calc(var(--space-8) + 70px); }
  .logo-parade-track { gap: var(--space-8); }
  .blog-card-img { height: 150px; }
}
@media (max-width: 480px) {
  h1 { font-size: var(--fs-3xl); }
  .hero h1 { font-size: var(--fs-3xl); }
  .container { padding: 0 var(--space-4); }
  .steps { grid-template-columns: 1fr; }
  .feature-row-icon { width: 80px; height: 80px; }
  .feature-row-icon svg { width: 32px; height: 32px; }
}
