/* ============================================================
   OmniLaw PC — PPC Landing Page Styles
   Palette: Deep Navy (#0B2456) + Corporate Blue (#1A5BB5) +
            Gold CTAs (#C9A227) + Ice Blue (#EEF4FB) + White
   Typography: Playfair Display (display) + DM Sans (body)
   ============================================================ */

/* --- Design Tokens --- */
:root {
  /* Type Scale (fluid) */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);

  /* Spacing (4px base) */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Brand Colors — New Palette */
  --navy: #0B2456;
  --navy-dark: #071A3E;
  --navy-light: #133272;
  --blue: #1A5BB5;
  --blue-light: #2E6FC9;
  --blue-dark: #154A96;
  --gold: #C9A227;
  --gold-light: #D4B44A;
  --gold-dark: #A8871E;
  --gold-faint: rgba(201, 162, 39, 0.10);
  --ice-blue: #EEF4FB;
  --ice-blue-dark: #E0EBF5;
  --white: #FFFFFF;
  --off-white: #F8F9FC;
  --gray-50: #F4F6F9;
  --gray-100: #EDF0F4;
  --gray-200: #DEE2E8;
  --gray-300: #C8CDD5;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --text-primary: #0B2456;
  --text-secondary: #4B5563;
  --text-muted: #6B7280;
  --text-inverse: #FFFFFF;

  /* Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.25rem;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(11, 36, 86, 0.06);
  --shadow-md: 0 4px 12px rgba(11, 36, 86, 0.08);
  --shadow-lg: 0 12px 32px rgba(11, 36, 86, 0.12);
  --shadow-xl: 0 20px 48px rgba(11, 36, 86, 0.16);
  --shadow-gold: 0 4px 16px rgba(201, 162, 39, 0.3);

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.16, 1, 0.3, 1);
  --transition-base: 250ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Content Widths */
  --content-max: 1200px;
  --content-narrow: 800px;

  /* Fonts */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;
}

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: var(--space-16);
}

body {
  min-height: 100dvh;
  line-height: 1.6;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text-primary);
  background-color: var(--white);
}

img, svg { display: block; max-width: 100%; height: auto; }
ul, ol { list-style: none; }
input, button, textarea, select { font: inherit; color: inherit; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.15;
  text-wrap: balance;
  color: var(--navy);
}

p, li, figcaption {
  text-wrap: pretty;
  max-width: 72ch;
}

a {
  color: inherit;
  text-decoration: none;
}

a, button, [role="button"], input, textarea, select {
  transition: color var(--transition-fast),
              background var(--transition-fast),
              border-color var(--transition-fast),
              box-shadow var(--transition-fast),
              transform var(--transition-fast);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

::selection {
  background: var(--gold-faint);
  color: var(--navy);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border-width: 0;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

@media (min-width: 768px) {
  .container { padding-inline: var(--space-8); }
}

.section-padding {
  padding-block: clamp(var(--space-12), 5vw, 5rem);
}

/* ============================================================
   HEADER — White, matches omnilawpc.com brand
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--space-4);
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

@media (min-width: 768px) {
  .header-inner { padding-inline: var(--space-8); }
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.logo-icon {
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.logo-text span {
  color: var(--blue);
}

.header-phone {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--white);
  padding: var(--space-2) var(--space-5);
  background: var(--blue);
  border: 2px solid var(--blue);
  border-radius: var(--radius-md);
}

.header-phone:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-1px);
}

.header-phone svg {
  flex-shrink: 0;
}

.header-phone-text {
  display: none;
}

@media (min-width: 480px) {
  .header-phone-text { display: inline; }
}

/* ============================================================
   HERO SECTION — Navy-to-blue gradient
   ============================================================ */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 40%, var(--blue) 100%);
  color: var(--text-inverse);
  position: relative;
  overflow: hidden;
}

/* Soft radial glow for depth */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 15% 60%, rgba(26, 91, 181, 0.25) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 85% 20%, rgba(201, 162, 39, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

/* Subtle grid pattern for texture */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--content-max);
  margin-inline: auto;
  padding: var(--space-12) var(--space-6) var(--space-8);
  display: grid;
  gap: var(--space-10);
}

@media (min-width: 768px) {
  .hero-inner {
    padding: var(--space-16) var(--space-8) var(--space-20);
  }
}

@media (min-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr 420px;
    align-items: start;
    gap: var(--space-12);
    padding: var(--space-16) var(--space-8) var(--space-20);
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(201, 162, 39, 0.15);
  border: 1px solid rgba(201, 162, 39, 0.35);
  color: var(--gold-light);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-xl);
  width: fit-content;
}

.hero-badge svg {
  flex-shrink: 0;
}

.hero h1 {
  font-size: var(--text-2xl);
  color: var(--white);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.hero h1 .gold-text {
  color: var(--gold-light);
}

.hero-subtitle {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  max-width: 560px;
}

.hero-stats {
  display: flex;
  gap: var(--space-8);
  padding-top: var(--space-4);
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.hero-stat svg {
  flex-shrink: 0;
}

.hero-stat-label {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  padding-top: var(--space-2);
}

/* ============================================================
   HERO FORM CARD — White card with gold accent stripe
   ============================================================ */
.hero-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border-top: 4px solid var(--gold);
}

.hero-form-header {
  background: var(--white);
  padding: var(--space-6) var(--space-6) var(--space-4);
  text-align: center;
  border-bottom: 1px solid var(--gray-200);
}

.hero-form-header h2 {
  font-size: var(--text-lg);
  color: var(--navy);
  font-weight: 700;
  margin-bottom: var(--space-1);
}

.hero-form-header p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

.hero-form-body {
  padding: var(--space-6);
  background: var(--white);
}

.hero-form-body #ghl-form-container {
  min-height: 400px;
}

.hero-form-body #ghl-form-container iframe {
  border-radius: var(--radius-md);
}

.form-trust-signals {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-6);
  border-top: 1px solid var(--gray-200);
  background: var(--ice-blue);
}

.form-trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: var(--text-muted);
}

.form-trust-item svg {
  flex-shrink: 0;
  color: var(--blue);
}

/* ============================================================
   BUTTONS — Gold primary, Blue outline secondary
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  min-height: 48px;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  font-weight: 700;
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

.btn-secondary {
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
}
.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

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

.btn svg { flex-shrink: 0; }

/* ============================================================
   TRUST BAR — Ice blue background
   ============================================================ */
.trust-bar {
  background: var(--ice-blue);
  border-bottom: 1px solid var(--ice-blue-dark);
  padding-block: var(--space-5);
}

.trust-bar-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: var(--space-6);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .trust-bar-inner {
    justify-content: space-between;
    padding-inline: var(--space-8);
  }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

.trust-item svg {
  flex-shrink: 0;
  color: var(--blue);
}

.trust-item strong {
  color: var(--navy);
}

.trust-stars {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.trust-stars svg {
  color: var(--gold);
}

/* ============================================================
   CREDENTIALS / ASSOCIATIONS — White
   ============================================================ */
.credentials-section {
  background: var(--white);
  padding-block: var(--space-8);
  border-bottom: 1px solid var(--gray-200);
}

.credentials-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: var(--space-6);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
}

@media (min-width: 768px) {
  .credentials-inner { padding-inline: var(--space-8); }
}

.credential-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: var(--gray-500);
  font-size: var(--text-xs);
  text-align: center;
  font-weight: 600;
  padding: var(--space-4) var(--space-5);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  background: var(--off-white);
  transition: transform var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
}

.credential-badge:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  background: var(--ice-blue);
}

.credential-badge svg {
  opacity: 0.8;
  color: var(--blue);
  width: 40px;
  height: 40px;
}

/* ============================================================
   BENEFITS / SERVICES — White background
   ============================================================ */
.benefits-section {
  background: var(--white);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: var(--space-12);
}

.section-label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: var(--space-3);
}

.section-header h2 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-4);
}

.section-header p {
  color: var(--text-secondary);
  margin-inline: auto;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 600px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .benefits-grid { grid-template-columns: repeat(4, 1fr); }
}

.benefit-card {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--ice-blue) 0%, var(--ice-blue-dark) 100%);
  border: 1px solid var(--ice-blue-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}

.benefit-card h3 {
  font-size: var(--text-lg);
  font-weight: 700;
}

.benefit-card p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================================
   ATTORNEY PROFILES — Ice blue background
   ============================================================ */
.attorneys-section {
  background: var(--ice-blue);
}

.attorneys-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .attorneys-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .attorneys-grid { grid-template-columns: repeat(4, 1fr); }
}

.attorney-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-6);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-4);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.attorney-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.attorney-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 3px solid var(--gold);
  box-shadow: 0 4px 12px rgba(11, 36, 86, 0.15);
}

.attorney-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.attorney-avatar-initials {
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-xl);
}

.attorney-name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.attorney-name-link {
  color: var(--navy);
  text-decoration: none;
  transition: color var(--transition-base);
}

.attorney-name-link:hover {
  color: var(--blue);
}

.attorney-title {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--blue);
}

.attorney-credentials {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

.attorney-focus {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--navy);
  padding: var(--space-2) var(--space-4);
  background: var(--gold-faint);
  border-radius: var(--radius-xl);
}

.attorney-bio {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.6;
}

.attorney-bar-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  justify-content: center;
}

.attorney-bar-badge {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--blue);
  background: var(--ice-blue);
  border: 1px solid var(--ice-blue-dark);
  border-radius: var(--radius-sm);
  padding: var(--space-1) var(--space-3);
}



/* ============================================================
   CASE RESULTS — White background
   ============================================================ */
.case-results-section {
  background: var(--white);
}

.case-results-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-12);
}

@media (min-width: 768px) {
  .case-results-stats { grid-template-columns: repeat(4, 1fr); }
}

.case-stat-card {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.case-stat-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.case-stat-value {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--blue);
  line-height: 1.2;
}

.case-stat-label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--navy);
}

.case-stat-desc {
  font-size: var(--text-xs);
  color: var(--text-muted);
  line-height: 1.5;
}

.case-results-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .case-results-highlights { grid-template-columns: repeat(3, 1fr); }
}

.case-highlight-card {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.case-highlight-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.case-highlight-type {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-dark);
}

.case-highlight-result {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================================
   PROCESS SECTION — Navy gradient band for visual rhythm
   ============================================================ */
.process-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--blue-dark) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 50% at 80% 20%, rgba(201, 162, 39, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.process-section .section-label {
  color: var(--gold-light);
}

.process-section h2 {
  color: var(--white);
}

.process-section .section-header p {
  color: rgba(255, 255, 255, 0.75);
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  position: relative;
  z-index: 1;
}

@media (min-width: 600px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .process-grid { grid-template-columns: repeat(4, 1fr); }
}

.process-step {
  position: relative;
  padding: var(--space-6);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(4px);
}

.process-step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-lg);
  margin-bottom: var(--space-4);
}

.process-step h3 {
  color: var(--white);
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.process-step p {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* ============================================================
   TESTIMONIALS — Light gray background
   ============================================================ */
/* ============================================================
   INDUSTRIES WE SERVE
   ============================================================ */
.industries-section {
  background: var(--gray-50);
}

.industries-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 600px) {
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
}

.industry-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.industry-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--gold-faint) 0%, rgba(201, 162, 39, 0.18) 100%);
  border: 1px solid rgba(201, 162, 39, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  margin-bottom: var(--space-2);
}

.industry-card h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text-primary);
}

.industry-card p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.6;
}

.testimonials-section {
  background: var(--gray-50);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.testimonial-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

.testimonial-quote {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.testimonial-quote::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--blue);
  line-height: 0;
  vertical-align: -0.25em;
  margin-right: 2px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-top: var(--space-4);
  border-top: 1px solid var(--gray-200);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  flex-shrink: 0;
}

.testimonial-author-info strong {
  display: block;
  font-size: var(--text-sm);
  color: var(--navy);
}

.testimonial-author-info span {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

/* ============================================================
   FAQ SECTION — White
   ============================================================ */
.faq-section {
  background: var(--white);
}

.faq-list {
  max-width: var(--content-narrow);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--off-white);
  transition: border-color var(--transition-base);
}

.faq-item.open {
  border-color: var(--blue);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-base);
  color: var(--navy);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  min-height: 48px;
}

.faq-question:hover {
  color: var(--blue);
}

.faq-question svg {
  flex-shrink: 0;
  transition: transform var(--transition-base);
  color: var(--blue);
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding: 0 var(--space-6) var(--space-6);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

/* ============================================================
   CTA / FORM SECTION (bottom) — Ice blue background
   ============================================================ */
.cta-section {
  background: var(--ice-blue);
  border-top: 1px solid var(--ice-blue-dark);
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  align-items: start;
}

@media (min-width: 1024px) {
  .cta-inner { grid-template-columns: 1fr 460px; }
}

.cta-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.cta-content h2 {
  font-size: var(--text-xl);
}

.cta-content p {
  color: var(--text-secondary);
  line-height: 1.7;
}

.cta-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.cta-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.cta-feature svg {
  flex-shrink: 0;
  color: var(--blue);
  margin-top: 2px;
}

.cta-feature strong {
  display: block;
  color: var(--navy);
  margin-bottom: var(--space-1);
}

.cta-feature p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

.cta-form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border-top: 4px solid var(--gold);
}

.cta-form-header {
  background: var(--white);
  padding: var(--space-6);
  text-align: center;
  border-bottom: 1px solid var(--gray-200);
}

.cta-form-header h3 {
  color: var(--navy);
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}

.cta-form-header p {
  color: var(--text-secondary);
  font-size: var(--text-sm);
}

.cta-form-body {
  padding: var(--space-6);
  background: var(--white);
}

.cta-form-body #ghl-form-container-bottom {
  min-height: 400px;
}

/* ============================================================
   FOOTER — Deep navy
   ============================================================ */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.7);
  padding-block: var(--space-10);
}

.footer-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    padding-inline: var(--space-8);
  }
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--white);
}

.footer-logo span {
  color: var(--gold);
}

.footer-address {
  font-size: var(--text-xs);
  line-height: 1.6;
}

.footer-phone {
  font-size: var(--text-sm);
  color: var(--gold-light);
  font-weight: 600;
}

.footer-phone:hover {
  color: var(--gold);
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  align-items: center;
}

@media (min-width: 768px) {
  .footer-right { align-items: flex-end; }
}

.footer-disclaimer {
  font-size: var(--text-xs);
  max-width: 420px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bar-assoc {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.4);
}

.footer-copyright {
  width: 100%;
  text-align: center;
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.4);
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

/* ============================================================
   MOBILE STICKY CTA
   ============================================================ */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
  padding: var(--space-3) var(--space-4);
}

@media (max-width: 1023px) {
  .mobile-sticky-cta { display: flex; gap: var(--space-3); }
}

.mobile-sticky-cta .btn {
  flex: 1;
  font-size: var(--text-sm);
  padding: var(--space-3) var(--space-4);
  min-height: 44px;
}

/* Extra padding at bottom for mobile sticky bar */
@media (max-width: 1023px) {
  .site-footer { padding-bottom: calc(var(--space-10) + 64px); }
}

/* ============================================================
   SCROLL ANIMATIONS (subtle)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   FALLBACK / PLACEHOLDER FORM STYLES
   ============================================================ */
.form-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  min-height: 300px;
  color: var(--text-muted);
  text-align: center;
  padding: var(--space-6);
}

.form-placeholder svg {
  color: var(--gray-300);
}

.form-placeholder p {
  font-size: var(--text-sm);
}

/* Print styles */
@media print {
  .site-header, .mobile-sticky-cta, .hero-form-card, .cta-section { display: none; }
  .hero { background: var(--navy) !important; }
  body { font-size: 12pt; }
}

/* ============================================================
   LOGO
   ============================================================ */
.logo-svg {
  height: 36px;
  width: auto;
}

.footer-logo-svg {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

/* Footer cities line */
.footer-cities {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  letter-spacing: 0.02em;
}

/* ============================================================
   FORM SKELETON LOADER
   ============================================================ */
.form-skeleton {
  padding: 20px;
}
.skeleton-field {
  height: 44px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-pulse 1.5s infinite;
  border-radius: 8px;
  margin-bottom: 12px;
}
.skeleton-button {
  height: 48px;
  background: linear-gradient(90deg, rgba(201,162,39,0.2) 25%, rgba(201,162,39,0.35) 50%, rgba(201,162,39,0.2) 75%);
  background-size: 200% 100%;
  animation: skeleton-pulse 1.5s infinite;
  border-radius: 8px;
  margin-top: 8px;
}
@keyframes skeleton-pulse {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ============================================================
   TESTIMONIALS CTA LINK & VERIFIED LABEL
   ============================================================ */
.testimonials-cta {
  text-align: center;
  margin-top: var(--space-8);
}

.reviews-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(26, 91, 181, 0.4);
  transition: color var(--transition-fast), text-decoration-color var(--transition-fast);
}

.reviews-link:hover {
  color: var(--navy);
  text-decoration-color: var(--navy);
}

.verified-label {
  font-size: var(--text-xs);
  color: var(--blue);
  font-weight: 600;
}
