/* ============================================================
   HeartWest Advisors — Main Stylesheet
   Premium AR Management | Midwest Businesses
   ============================================================ */

/* --- Design Tokens --- */
:root {
  --navy:        #1E3A8A;
  --navy-dark:   #0D1F5C;
  --navy-mid:    #162D73;
  --navy-light:  #2D4FAA;
  --gold:        #F59E0B;
  --gold-dark:   #D97706;
  --gold-light:  #FCD34D;
  --gold-pale:   #FEF3C7;
  --steel:       #475569;
  --steel-light: #64748B;
  --steel-pale:  #CBD5E1;
  --light:       #F1F5F9;
  --lighter:     #F8FAFC;
  --dark:        #0D1B3E;
  --white:       #FFFFFF;
  --success:     #10B981;
  --error:       #EF4444;

  --font-display:   'Playfair Display', Georgia, serif;
  --font-body:      'Raleway', 'Segoe UI', sans-serif;
  --font-condensed: 'Barlow Condensed', Impact, sans-serif;

  --max-width: 1200px;
  --nav-h: 80px;

  --shadow-sm:  0 1px 4px rgba(14,30,90,0.08);
  --shadow-md:  0 4px 16px rgba(14,30,90,0.12);
  --shadow-lg:  0 12px 32px rgba(14,30,90,0.16);
  --shadow-xl:  0 24px 56px rgba(14,30,90,0.22);
  --shadow-gold: 0 8px 24px rgba(245,158,11,0.30);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --transition: all 0.3s var(--ease);
  --transition-slow: all 0.6s var(--ease);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* --- Typography System --- */
h1, h2, h3, h4, h5 { font-family: var(--font-display); line-height: 1.2; }

.display-xl { font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 800; }
.display-lg { font-size: clamp(2.2rem, 4.5vw, 3.8rem); font-weight: 700; }
.display-md { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
.display-sm { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 600; }

.text-gold    { color: var(--gold); }
.text-navy    { color: var(--navy); }
.text-steel   { color: var(--steel); }
.text-white   { color: var(--white); }
.text-light   { color: var(--steel-light); }

/* --- Layout --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section-sm { padding: clamp(2rem, 4vw, 3.5rem) 0; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* --- Section Labels --- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-header { max-width: 680px; margin-bottom: 2.5rem; }
.section-header h1, .section-header h2, .section-header h3 { margin-bottom: 1rem; }
.section-header.centered { margin: 0 auto; text-align: center; }
.section-header.centered .section-label { justify-content: center; }
.section-header.centered .section-label::before { display: none; }
.section-header.centered .section-label::after {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--steel);
  margin-top: 1rem;
  line-height: 1.7;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: var(--transition-slow);
}

.navbar.transparent { background: transparent; }

.navbar.scrolled {
  background: rgba(13, 31, 92, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.25);
  border-bottom: 1px solid rgba(245,158,11,0.15);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-condensed);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy-dark);
  letter-spacing: -0.02em;
  box-shadow: var(--shadow-gold);
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}

.logo-tagline {
  font-family: var(--font-condensed);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.85;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  letter-spacing: 0.01em;
}

.nav-link:hover, .nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.nav-link.active { color: var(--gold); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy-dark) !important;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  margin-left: 0.5rem;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
  letter-spacing: 0.01em;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(245,158,11,0.45);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  border: none;
  background: transparent;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--navy-dark);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: var(--transition-slow);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
}

.mobile-menu .nav-link {
  font-size: 1.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
  padding: 0.75rem 2rem;
}

.mobile-menu .nav-link:hover { color: var(--gold); background: transparent; }

.mobile-menu .nav-cta {
  font-size: 1rem;
  padding: 0.85rem 2.5rem;
  margin-top: 1rem;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(145deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-mid) 100%);
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(245,158,11,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(45,79,170,0.15) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,158,11,0.08) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-top: 3rem;
  padding-bottom: 5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.3);
  color: var(--gold-light);
  font-family: var(--font-condensed);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.badge-pulse {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.hero-headline {
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.headline-accent {
  color: var(--gold);
  position: relative;
  display: inline-block;
}

.headline-accent::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  border-radius: 2px;
  opacity: 0.5;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-trust {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.02em;
}

.trust-item svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; }

/* Hero Stats Panel */
.hero-stats-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.stat-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(245,158,11,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245,158,11,0.3);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.stat-card.featured {
  background: linear-gradient(135deg, rgba(245,158,11,0.15) 0%, rgba(245,158,11,0.05) 100%);
  border-color: rgba(245,158,11,0.35);
  grid-column: span 2;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 1.75rem;
}

.stat-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.stat-card.featured .stat-icon { margin-bottom: 0; font-size: 2.5rem; }

.stat-number {
  font-family: var(--font-condensed);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}

.stat-card.featured .stat-number { font-size: 2.2rem; }

.stat-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
}

.stat-label small { font-size: 0.72rem; opacity: 0.7; font-weight: 400; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 1.5rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.72rem;
  font-family: var(--font-condensed);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollWheel 2s ease-in-out infinite;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  border-radius: 50px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.btn-lg { font-size: 0.95rem; padding: 0.9rem 2rem; }
.btn-md { font-size: 0.88rem; padding: 0.75rem 1.75rem; }
.btn-sm { font-size: 0.8rem; padding: 0.55rem 1.4rem; }

.btn-icon { width: 18px; height: 18px; transition: transform 0.3s var(--ease); }
.btn:hover .btn-icon { transform: translateX(4px); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy-dark);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(245,158,11,0.5);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-navy:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline-light:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.5);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy-dark);
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(245,158,11,0.2);
}

.card-accent { border-top: 4px solid var(--gold); }

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.card-icon svg { width: 28px; height: 28px; color: var(--gold-dark); }
.card-icon.navy { background: rgba(30,58,138,0.08); }
.card-icon.navy svg { color: var(--navy); }

.card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--dark);
}

.card p { font-size: 0.92rem; color: var(--steel); line-height: 1.7; }

/* ============================================================
   PROBLEM SECTION
   ============================================================ */
.problem-section { background: var(--white); }

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.problem-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  /* 📸 IMAGE PLACEHOLDER: frustrated-owner.jpg - Business owner stressed at desk with unpaid invoices */
  background: linear-gradient(145deg, var(--steel-pale) 0%, var(--light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.problem-image-placeholder {
  text-align: center;
  color: var(--steel-light);
  font-size: 0.85rem;
  padding: 2rem;
}

.problem-image-placeholder .placeholder-icon { font-size: 4rem; margin-bottom: 1rem; opacity: 0.5; }

.problem-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(30,58,138,0.08) 100%);
}

.pain-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.25rem; }

.pain-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  border-radius: var(--radius-md);
  background: var(--lighter);
  border-left: 3px solid var(--gold);
  transition: var(--transition);
}

.pain-item:hover { background: var(--light); transform: translateX(4px); }

.pain-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pain-icon svg { width: 20px; height: 20px; color: var(--gold-dark); }

.pain-text h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.3rem; color: var(--dark); }
.pain-text p { font-size: 0.85rem; color: var(--steel); line-height: 1.6; }

/* ============================================================
   SOLUTION SECTION
   ============================================================ */
.solution-section { background: var(--light); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  margin-top: 3.5rem;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.67% + 30px);
  right: calc(16.67% + 30px);
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark), var(--gold));
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
}

.process-step { text-align: center; position: relative; }

.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--gold);
}

.step-number-inner {
  font-family: var(--font-condensed);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
}

.step-icon {
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 28px;
  height: 28px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
}

.step-icon svg { width: 14px; height: 14px; color: var(--navy-dark); }

.process-step h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.75rem; color: var(--dark); }
.process-step p { font-size: 0.9rem; color: var(--steel); line-height: 1.7; }

/* ============================================================
   RESULTS SECTION (Dark)
   ============================================================ */
.results-section {
  background: linear-gradient(145deg, var(--navy-dark) 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}

.results-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.results-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 5rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.result-stat { text-align: center; }

.result-number {
  font-family: var(--font-condensed);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.result-label {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  line-height: 1.4;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(245,158,11,0.3);
  transform: translateY(-4px);
}

.testimonial-card::before {
  display: none;
}

.stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
}

.stars svg { width: 16px; height: 16px; color: var(--gold); fill: var(--gold); }

.testimonial-text {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-stat {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245,158,11,0.12);
  border: 1px solid rgba(245,158,11,0.25);
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  font-family: var(--font-condensed);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  /* 📸 IMAGE PLACEHOLDER: testimonial-[name].jpg - Professional headshot */
  background: linear-gradient(135deg, var(--steel) 0%, var(--steel-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-condensed);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
  border: 2px solid rgba(245,158,11,0.3);
}

.author-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.15rem;
}

.author-title {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}

/* ============================================================
   INDUSTRIES SECTION
   ============================================================ */
.industry-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/5;
  transition: var(--transition);
  cursor: default;
}

.industry-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }

.industry-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.6s var(--ease);
}

.industry-card:hover .industry-bg { transform: scale(1.05); }

/* 📸 IMAGE PLACEHOLDERS for industry cards */
.industry-ag .industry-bg {
  background: linear-gradient(145deg, #2D5016 0%, #4A7A25 50%, #6B9E3B 100%);
}
.industry-construction .industry-bg {
  background: linear-gradient(145deg, #7C3A0A 0%, #B35A15 50%, #D4762A 100%);
}
.industry-manufacturing .industry-bg {
  background: linear-gradient(145deg, #1A2F50 0%, #2D4B7A 50%, #3D66A0 100%);
}

.industry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(13,27,62,0.92) 100%);
}

.industry-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
}

.industry-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.industry-content h3 { font-size: 1.3rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.industry-content p { font-size: 0.85rem; color: rgba(255,255,255,0.75); line-height: 1.6; margin-bottom: 1rem; }

.industry-tag {
  display: inline-block;
  background: rgba(245,158,11,0.2);
  border: 1px solid rgba(245,158,11,0.4);
  color: var(--gold);
  font-family: var(--font-condensed);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  text-transform: uppercase;
}

/* ============================================================
   TRUST / SECURITY SECTION
   ============================================================ */
.trust-section { background: var(--lighter); }

.trust-badges {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 3rem;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  min-width: 140px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.trust-badge:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(245,158,11,0.2); }
.trust-badge-icon { font-size: 2rem; }
.trust-badge-label { font-size: 0.78rem; font-weight: 700; color: var(--dark); text-align: center; letter-spacing: 0.02em; }
.trust-badge-sub { font-size: 0.68rem; color: var(--steel-light); text-align: center; }

/* ============================================================
   PRICING PREVIEW
   ============================================================ */
.pricing-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.pricing-tier {
  background: var(--white);
  border: 2px solid var(--light);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.pricing-tier:hover, .pricing-tier.featured {
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.pricing-tier.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: 12px;
  right: -20px;
  background: var(--gold);
  color: var(--navy-dark);
  font-family: var(--font-condensed);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 0.25rem 2rem;
  transform: rotate(45deg);
}

.tier-name {
  font-family: var(--font-condensed);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 0.5rem;
}

.tier-accounts {
  font-size: 0.82rem;
  color: var(--steel-light);
  margin-bottom: 1.25rem;
}

.tier-price {
  font-family: var(--font-condensed);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.tier-price span { font-size: 1.2rem; vertical-align: super; }
.tier-period { font-size: 0.78rem; color: var(--steel-light); }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,158,11,0.06) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.7); font-size: 1.1rem; margin-bottom: 2.5rem; max-width: 580px; margin-left: auto; margin-right: auto; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}

.footer-brand .logo-name { font-size: 1.3rem; }
.footer-tagline { font-size: 0.88rem; color: rgba(255,255,255,0.5); margin: 1rem 0 1.5rem; max-width: 280px; line-height: 1.7; }

.footer-social { display: flex; gap: 0.75rem; }

.social-link {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: rgba(255,255,255,0.5);
}

.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-dark);
}

.social-link svg { width: 16px; height: 16px; }

.footer-col h4 {
  font-family: var(--font-condensed);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }

.footer-link {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}

.footer-link:hover { color: var(--white); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
}

.footer-contact-item svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.35); }

.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.8rem; color: rgba(255,255,255,0.35); transition: var(--transition); }
.footer-legal a:hover { color: var(--gold); }

/* ============================================================
   PAGE HERO (Inner Pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(145deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: calc(var(--nav-h) + 4rem) 0 4rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.1rem; max-width: 600px; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-condensed);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.breadcrumb a { color: rgba(255,255,255,0.5); transition: var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }
.breadcrumb-sep { color: rgba(255,255,255,0.3); }

/* ============================================================
   FORMS
   ============================================================ */
.form-group { margin-bottom: 1.5rem; }
.form-label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--dark); margin-bottom: 0.5rem; }
.form-label .required { color: var(--gold-dark); margin-left: 2px; }

.form-control {
  width: 100%;
  padding: 0.85rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--dark);
  background: var(--white);
  border: 2px solid var(--light);
  border-radius: var(--radius-md);
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-control:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(30,58,138,0.1);
}

.form-control.error { border-color: var(--error); }
.form-control.error:focus { box-shadow: 0 0 0 3px rgba(239,68,68,0.1); }

.form-error { font-size: 0.78rem; color: var(--error); margin-top: 0.35rem; display: none; }
.form-error.show { display: block; }

textarea.form-control { resize: vertical; min-height: 130px; }

select.form-control { cursor: pointer; }

/* ============================================================
   TIMELINE (How It Works)
   ============================================================ */
.timeline { position: relative; }

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--navy) 100%);
  transform: translateX(-50%);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 4rem;
  position: relative;
}

.timeline-item:nth-child(odd) .timeline-content { grid-column: 1; }
.timeline-item:nth-child(odd) .timeline-empty { grid-column: 3; }
.timeline-item:nth-child(even) .timeline-content { grid-column: 3; }
.timeline-item:nth-child(even) .timeline-empty { grid-column: 1; }

.timeline-node {
  grid-column: 2;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-condensed);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  box-shadow: var(--shadow-md);
  z-index: 1;
  flex-shrink: 0;
}

.timeline-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.06);
  border-top: 4px solid var(--gold);
}

.timeline-month {
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
}

.timeline-content h3 { font-size: 1.15rem; margin-bottom: 0.75rem; }
.timeline-content p { font-size: 0.9rem; color: var(--steel); line-height: 1.7; }

/* ============================================================
   PRICING PAGE
   ============================================================ */
.pricing-section { background: var(--lighter); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.pricing-card {
  background: var(--white);
  border: 2px solid var(--light);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.pricing-card.popular {
  border-color: var(--gold);
  transform: scale(1.03);
  box-shadow: var(--shadow-xl);
}

.pricing-card:hover:not(.popular) {
  border-color: rgba(30,58,138,0.3);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.popular-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy-dark);
  font-family: var(--font-condensed);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  padding: 0.3rem 1.25rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  text-transform: uppercase;
}

.tier-label {
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 0.5rem;
}

.tier-accounts-range {
  font-size: 0.9rem;
  color: var(--steel-light);
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--light);
}

.tier-impl-price {
  font-family: var(--font-condensed);
  font-size: 3rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.tier-impl-price sup { font-size: 1.4rem; vertical-align: super; }
.tier-impl-label { font-size: 0.8rem; color: var(--steel-light); margin-bottom: 1.5rem; }

.tier-features { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }

.tier-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--steel);
}

.tier-feature svg { width: 18px; height: 18px; color: var(--success); flex-shrink: 0; }

/* ROI Calculator */
.roi-calculator {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 5vw, 3.5rem);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0,0,0,0.06);
  margin-top: 4rem;
}

.roi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.roi-inputs h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.roi-inputs p { font-size: 0.9rem; color: var(--steel); margin-bottom: 2rem; }

.roi-slider-group { margin-bottom: 1.75rem; }

.roi-slider-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.roi-slider-value {
  font-family: var(--font-condensed);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}

input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  height: 6px;
  background: var(--light);
  border-radius: 3px;
  outline: none;
  cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  transition: transform 0.2s var(--ease);
}

input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.2); }

.roi-results {
  background: linear-gradient(145deg, var(--navy-dark) 0%, var(--navy) 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.roi-results h3 { font-size: 1.3rem; color: var(--white); margin-bottom: 1.5rem; }

.roi-result-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.roi-result-item:last-child { border-bottom: none; }

.roi-result-label { font-size: 0.88rem; color: rgba(255,255,255,0.65); }

.roi-result-value {
  font-family: var(--font-condensed);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
}

.roi-result-value.positive { color: var(--success); }
.roi-result-value.large { font-size: 2rem; }

/* ============================================================
   SECURITY PAGE
   ============================================================ */
.security-measures {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.security-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  gap: 1.5rem;
}

.security-card:hover { box-shadow: var(--shadow-md); border-color: rgba(30,58,138,0.15); }

.security-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(30,58,138,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.security-icon svg { width: 28px; height: 28px; color: var(--navy); }
.security-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; }
.security-card p { font-size: 0.88rem; color: var(--steel); line-height: 1.7; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-mission {
  background: var(--lighter);
  border-radius: var(--radius-xl);
  padding: clamp(2.5rem, 5vw, 4rem);
  border-left: 6px solid var(--gold);
  margin: 3rem 0;
}

.about-mission blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 600;
  color: var(--navy-dark);
  line-height: 1.5;
  font-style: italic;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  text-align: center;
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}

.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-number { font-family: var(--font-condensed); font-size: 3.5rem; font-weight: 800; color: var(--gold); line-height: 1; margin-bottom: 0.5rem; }
.value-card h3 { font-size: 1.1rem; margin-bottom: 0.75rem; }
.value-card p { font-size: 0.88rem; color: var(--steel); }

/* Team placeholder */
.team-photo {
  aspect-ratio: 4/3;
  border-radius: var(--radius-xl);
  /* 📸 IMAGE PLACEHOLDER: team-photo.jpg - Professional team photo or founder headshot */
  background: linear-gradient(145deg, var(--steel-pale) 0%, var(--light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-card {
  background: linear-gradient(145deg, var(--navy-dark) 0%, var(--navy) 100%);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}

.contact-info-card h2 { color: var(--white); font-size: 1.7rem; margin-bottom: 0.75rem; }
.contact-info-card p { color: rgba(255,255,255,0.65); font-size: 0.92rem; margin-bottom: 2.5rem; line-height: 1.7; }

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg { width: 20px; height: 20px; color: var(--gold); }

.contact-item-label { font-size: 0.75rem; font-weight: 700; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.25rem; }
.contact-item-value { font-size: 0.95rem; color: var(--white); font-weight: 500; }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0,0,0,0.06);
}

.contact-form-wrap h2 { font-size: 1.7rem; margin-bottom: 0.5rem; }
.contact-form-wrap p { font-size: 0.9rem; color: var(--steel); margin-bottom: 2rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}

.form-success.show { display: block; }

.success-icon {
  width: 72px;
  height: 72px;
  background: rgba(16,185,129,0.1);
  border: 2px solid var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.success-icon svg { width: 36px; height: 36px; color: var(--success); }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 1rem; max-width: 800px; margin: 2rem auto 0; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open { border-color: rgba(30,58,138,0.2); box-shadow: var(--shadow-sm); }

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  border: none;
  background: transparent;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  gap: 1rem;
}

.faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item.open .faq-toggle { background: var(--navy); transform: rotate(45deg); }
.faq-toggle svg { width: 16px; height: 16px; color: var(--dark); }
.faq-item.open .faq-toggle svg { color: var(--white); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq-answer-inner {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.9rem;
  color: var(--steel);
  line-height: 1.75;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.bg-navy { background: var(--navy); }
.bg-navy-dark { background: var(--navy-dark); }
.bg-light { background: var(--light); }
.bg-lighter { background: var(--lighter); }
.bg-white { background: var(--white); }

.divider {
  height: 1px;
  background: var(--light);
  margin: 2rem 0;
}

.divider-gold {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.5rem auto;
  max-width: 80px;
}

.pill {
  display: inline-block;
  background: var(--gold-pale);
  color: var(--gold-dark);
  font-family: var(--font-condensed);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
}

.pill.navy { background: rgba(30,58,138,0.08); color: var(--navy); }

.highlight-box {
  background: var(--gold-pale);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.25rem 1.5rem;
  font-size: 0.92rem;
  color: var(--dark);
}

.text-center { text-align: center; }
.text-right { text-align: right; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2.5rem; }
.mb-6 { margin-bottom: 4rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }
.mt-8 { margin-top: 4rem; }

/* --- Philosophy Bar Grid (Pricing page) --- */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

/* --- Overview Grid (How It Works quick overview) --- */
.overview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

/* --- Industry Image wrapper (Services page) --- */
.industry-img {
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* --- Results section card text override (white text on dark bg) --- */
.results-section .testimonial-card h3 {
  color: var(--white);
}
.results-section .testimonial-card p {
  color: rgba(255, 255, 255, 0.75);
}
.results-section .testimonial-card div[style] {
  opacity: 1;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .grid-4, .pricing-grid, .pricing-preview-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-container { grid-template-columns: 1fr; gap: 3rem; }
  .hero-stats-panel { grid-template-columns: repeat(4, 1fr); }
  .stat-card.featured { grid-column: span 1; }
  .results-stats { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .grid-2, .grid-3, .process-steps, .about-values, .security-measures, .two-col-grid { grid-template-columns: 1fr; }
  .process-steps::before { display: none; }
  .problem-grid { grid-template-columns: 1fr; }
  .hero-stats-panel { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .pricing-card.popular { transform: none; }
  .roi-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .scroll-indicator { display: none; } 
  .timeline::before { left: 28px; }
  .timeline-item { grid-template-columns: auto 1fr; gap: 1.5rem; align-items: start; }
  .timeline-item .timeline-empty { display: none; }
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content { grid-column: 2; grid-row: 1; }
  .timeline-node { grid-column: 1; grid-row: 1; align-self: start; margin-top: 0; }
  .results-stats { grid-template-columns: repeat(2, 1fr); }
  /* New grid classes */
  .philosophy-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .overview-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  /* Industry image spacing when stacked */
  .two-col-grid .industry-img { max-width: 480px; margin: 0 auto; width: 100%; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-stats-panel { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .trust-badges { gap: 1rem; }
  .results-stats { grid-template-columns: 1fr 1fr; }
  .overview-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .philosophy-grid { grid-template-columns: 1fr; }
}
