/* ============================================
   AMOUDI & ASSOCIATES CPAs
   Agency-Quality Design System
   ============================================ */

/* --- Design Tokens --- */
:root {
  --primary: #0c2340;
  --primary-dark: #061526;
  --primary-light: #1b4d8e;
  --secondary: #2563eb;
  --accent: #16a34a;
  --accent-hover: #15803d;
  --gold: #b8952a;
  --gold-light: #d4af37;

  --text-dark: #111827;
  --text-body: #374151;
  --text-muted: #6b7280;
  --text-light: #9ca3af;

  --bg-white: #ffffff;
  --bg-surface: #f8fafc;
  --bg-warm: #fafaf8;
  --border: #e5e7eb;
  --border-light: #f3f4f6;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.07);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
  --shadow-xl: 0 24px 64px rgba(0,0,0,0.14);
  --shadow-glow: 0 0 40px rgba(22,163,74,0.15);

  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container-max: 1200px;
  --container-wide: 1400px;
  --section-padding: 100px;
  --header-height: 80px;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  line-height: 1.7;
  background: var(--bg-white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--secondary);
  text-decoration: none;
  transition: color 0.3s var(--ease-out);
}
a:hover { color: var(--primary); }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.15;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

h1, h2 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
}

h3, h4, h5, h6 {
  font-family: var(--font-body);
}

h1 { font-size: clamp(2.5rem, 5.5vw, 3.75rem); line-height: 1.1; }
h2 { font-size: clamp(2rem, 4.5vw, 3rem); line-height: 1.15; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.125rem; font-weight: 600; }

p {
  margin-bottom: 1rem;
  color: var(--text-body);
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: var(--section-padding) 0;
  position: relative;
}

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.4s; }

/* Fallback: if JS hasn't initialized within 2s, show everything */
@keyframes revealFallback {
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  animation: revealFallback 0s 2s forwards;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(12, 35, 64, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 1000;
  transition: all 0.4s var(--ease-out);
}

.header.scrolled {
  background: rgba(12, 35, 64, 0.97);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 1.25rem;
  font-family: var(--font-display);
  transition: transform 0.3s var(--ease-spring), background 0.3s;
}

.logo:hover .logo-icon { transform: scale(1.05); background: rgba(255, 255, 255, 0.18); }

.logo-icon-img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: contain;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.logo:hover .logo-icon-img { transform: scale(1.05); }

.founder-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.2);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.footer-social a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.25s;
}
.footer-social a:hover {
  color: white;
}

/* BBB Accredited Badge */
.bbb-badge {
  display: inline-block;
  max-width: 120px;
  height: auto;
}
.bbb-badge-trust {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.bbb-badge-trust img {
  max-width: 80px;
  height: auto;
}
.bbb-badge-trust span {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}
.footer-bbb {
  margin-top: 16px;
}
.footer-bbb img {
  max-width: 100px;
  height: auto;
  opacity: 0.85;
  transition: opacity 0.25s;
}
.footer-bbb img:hover {
  opacity: 1;
}
.header-bbb {
  display: flex;
  align-items: center;
  margin-left: 14px;
  padding-left: 14px;
  margin-right: auto;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}
.header-bbb img {
  height: 36px;
  width: auto;
}
@media (max-width: 768px) {
  .header-bbb {
    margin-left: 8px;
    padding-left: 8px;
  }
  .header-bbb img {
    height: 28px;
  }
}

.logo-text {
  font-size: 1.15rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  font-family: var(--font-body);
}

.logo-text span {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 8px 16px;
  border-radius: 8px;
  position: relative;
  transition: all 0.25s var(--ease-out);
}

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

.nav-links a::after { display: none; }

.nav-cta {
  display: inline-flex;
  margin-left: 16px;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.2s;
}
.mobile-toggle:hover { background: rgba(255, 255, 255, 0.1); }
.mobile-toggle span {
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: var(--font-body);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  border: 2px solid transparent;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(22, 163, 74, 0.3);
}

.btn-secondary {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}
.btn-secondary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

.btn-white {
  background: white;
  color: var(--primary);
  border-color: white;
  font-weight: 700;
}
.btn-white:hover {
  background: rgba(255,255,255,0.9);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1rem;
  border-radius: 12px;
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.875rem;
}

.btn-success {
  background: var(--accent);
  color: white;
  border: none;
}
.btn-success:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
  padding: 16px 24px;
}

/* ============================================
   HERO - Homepage
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

/* Geometric background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(37, 99, 235, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(22, 163, 74, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  top: 15%;
  right: -5%;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 50%;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 0 60px;
  max-width: 860px;
  margin: 0 auto;
}

.hero-text {
  animation: fadeInUp 0.9s var(--ease-out);
}

.hero-text h1 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: clamp(2.75rem, 6vw, 4.25rem);
  letter-spacing: -0.02em;
}

.hero-text .highlight {
  color: var(--gold-light);
  font-style: italic;
}

.hero-text p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2.5rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-buttons .btn-outline {
  border-color: rgba(255,255,255,0.3);
  color: white;
}
.hero-buttons .btn-outline:hover {
  background: white;
  color: var(--primary);
  border-color: white;
}

.hero-features {
  display: flex;
  gap: 48px;
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.1);
  justify-content: center;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.hero-feature-icon svg {
  width: 22px;
  height: 22px;
  fill: white;
}

.hero-feature-text {
  font-weight: 600;
  color: white;
  font-size: 0.9375rem;
}

.hero-feature-text span {
  display: block;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8125rem;
}

/* Hero image */
.hero-image { display: none; }
.hero-image-main { display: none; }
.hero-card { display: none; }
.hero-headshot {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-headshot-img {
  width: 340px;
  height: 400px;
  border-radius: 12px;
  object-fit: cover;
  border: 4px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.hero-headshot-caption {
  text-align: center;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  font-weight: 600;
}
.hero-headshot-caption span {
  display: block;
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 500;
  margin-top: 2px;
}
.hero-content.hero-with-photo {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;
  max-width: 1140px;
  text-align: left;
  flex-direction: row;
}
.hero-content.hero-with-photo .hero-text p {
  max-width: 100%;
}
.hero-headshot .hero-features {
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  justify-content: flex-start;
}
@media (max-width: 900px) {
  .hero-content.hero-with-photo {
    grid-template-columns: 1fr;
    text-align: center;
    max-width: 600px;
  }
  .hero-headshot .hero-features {
    flex-direction: row;
    justify-content: center;
    gap: 24px;
  }
  .hero-headshot {
    order: -1;
  }
  .hero-headshot-img {
    width: 200px;
    height: 240px;
  }
}

/* ============================================
   PAGE HERO - Inner pages
   ============================================ */
.page-hero {
  padding: 180px 0 100px;
  background: var(--primary);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 60% 30%, rgba(37, 99, 235, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 30% 80%, rgba(22, 163, 74, 0.08) 0%, transparent 50%);
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: white;
  margin-bottom: 1rem;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.page-hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.7);
}

.page-hero .hero-buttons {
  margin-top: 2rem;
  justify-content: center;
}

.page-hero .btn-outline {
  border-color: rgba(255,255,255,0.3);
  color: white;
}
.page-hero .btn-outline:hover {
  background: white;
  color: var(--primary);
  border-color: white;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--accent);
  padding: 0;
  font-size: 0.8125rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border: none;
  border-radius: 0;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--accent);
  display: inline-block;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================
   SERVICES GRID
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-white);
  padding: 44px 32px 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all 0.4s var(--ease-out);
  text-align: left;
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.service-icon {
  width: 64px;
  height: 64px;
  background: var(--bg-surface);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.4s var(--ease-out);
  box-shadow: none;
}

.service-card:hover .service-icon {
  background: var(--primary);
  transform: none;
  box-shadow: none;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
  transition: color 0.4s var(--ease-out);
}

/* Fill-based icons (homepage) */
.service-icon svg[fill="currentColor"] {
  fill: var(--primary);
  transition: fill 0.4s var(--ease-out);
}

/* Stroke-based icons (landing pages) - preserve fill:none */
.service-icon svg[fill="none"] {
  fill: none;
  stroke: var(--primary);
  transition: stroke 0.4s var(--ease-out);
}

.service-card:hover .service-icon svg[fill="currentColor"] {
  fill: white;
}

.service-card:hover .service-icon svg[fill="none"] {
  fill: none;
  stroke: white;
}

.service-item:hover .service-icon svg[fill="none"] {
  stroke: var(--accent);
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.service-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.65;
}

.service-card a {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.25s var(--ease-out);
}

.service-card a:hover {
  gap: 10px;
  color: var(--accent-hover);
}

/* Animation stagger */
.service-card { animation: none; }

/* ============================================
   WHY SECTION / STATS
   ============================================ */
.why-section {
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 20%, rgba(37, 99, 235, 0.15) 0%, transparent 60%);
}

.why-section .container { position: relative; z-index: 1; }

.why-section .section-header h2 { color: white; }
.why-section .section-header p { color: rgba(255,255,255,0.65); }
.why-section .section-label { color: var(--gold-light); }
.why-section .section-label::before { background: var(--gold-light); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.why-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 24px;
  border-radius: var(--radius-lg);
  transition: all 0.4s var(--ease-out);
  backdrop-filter: blur(8px);
}

.why-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.15);
}

.why-number {
  font-size: 3.25rem;
  font-weight: 800;
  font-family: var(--font-display);
  color: white;
  line-height: 1;
  margin-bottom: 12px;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
}

.why-item h4 {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 8px;
  font-weight: 600;
}

.why-item p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--bg-white);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  border-top: none;
  transition: all 0.4s var(--ease-out);
  position: relative;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--secondary));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 1.125rem;
  margin-bottom: 20px;
  letter-spacing: 3px;
  text-shadow: none;
}

.testimonial-card blockquote {
  font-size: 1rem;
  color: var(--text-body);
  font-style: normal;
  margin-bottom: 28px;
  line-height: 1.75;
  position: relative;
}

.testimonial-card blockquote::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.15;
  position: absolute;
  top: -20px;
  left: -4px;
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 0.875rem;
}

.testimonial-info strong {
  display: block;
  color: var(--text-dark);
  font-size: 0.9375rem;
}

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

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: var(--primary);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 20% 50%, rgba(22, 163, 74, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 80% 30%, rgba(37, 99, 235, 0.12) 0%, transparent 60%);
}

.cta-section .container { position: relative; z-index: 1; }

.cta-section h2 {
  color: white;
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 2.75rem);
}

.cta-section p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.125rem;
  max-width: 560px;
  margin: 0 auto 36px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-phone {
  margin-top: 28px;
  font-size: 1.125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
}

.cta-phone a {
  color: white;
  font-weight: 700;
  font-size: 1.375rem;
  font-family: var(--font-display);
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  height: 480px;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}

.about-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(255,255,255,0.08) 0%, transparent 50%);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.value-item {
  text-align: center;
  padding: 36px 24px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.4s var(--ease-out);
}

.value-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.value-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.founder-avatar {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: var(--shadow-lg);
}

.founder-avatar svg {
  width: 56px;
  height: 56px;
  fill: white;
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.service-detail-card {
  padding: 32px;
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease-out);
}

.service-detail-card:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.service-detail-card h4 {
  color: var(--primary);
  margin-bottom: 16px;
  font-size: 1.125rem;
}

.service-detail-card ul { list-style: none; padding: 0; }

.service-detail-card li {
  padding: 8px 0;
  color: var(--text-body);
  font-size: 0.9375rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-detail-card li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.why-card-inline {
  padding: 36px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  background: white;
  transition: all 0.4s var(--ease-out);
}

.why-card-inline:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.why-card-inline .card-icon {
  width: 56px;
  height: 56px;
  background: var(--bg-surface);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.4s var(--ease-out);
}

.why-card-inline:hover .card-icon {
  background: var(--primary);
}

.why-card-inline .card-icon svg {
  width: 26px;
  height: 26px;
  color: var(--primary);
  transition: color 0.4s var(--ease-out);
}

.why-card-inline .card-icon svg[fill="currentColor"] {
  fill: var(--primary);
  transition: fill 0.4s var(--ease-out);
}

.why-card-inline .card-icon svg[fill="none"] {
  fill: none;
  stroke: var(--primary);
  transition: stroke 0.4s var(--ease-out);
}

.why-card-inline:hover .card-icon svg[fill="currentColor"] {
  fill: white;
}

.why-card-inline:hover .card-icon svg[fill="none"] {
  fill: none;
  stroke: white;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  background: var(--primary);
  color: white;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 30%, rgba(37, 99, 235, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 20% 70%, rgba(22, 163, 74, 0.08) 0%, transparent 50%);
}

.contact-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.contact-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 80px 0;
}

.contact-hero h1 {
  color: white;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.contact-hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-hero-cta .btn-outline {
  border-color: rgba(255,255,255,0.3);
  color: white;
}
.contact-hero-cta .btn-outline:hover {
  background: white;
  color: var(--primary);
  border-color: white;
}

/* Contact Section */
.contact-section {
  padding: 100px 0;
  background: var(--bg-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.contact-info-card {
  background: var(--bg-white);
}

.contact-info-card h3 {
  margin-bottom: 12px;
  font-size: 1.75rem;
  font-family: var(--font-display);
}

.contact-info-card > p {
  color: var(--text-muted);
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-surface);
  border-radius: 12px;
  flex-shrink: 0;
  font-size: 1.5rem;
}

.contact-item-content h4 {
  color: var(--primary);
  margin-bottom: 6px;
  font-size: 1rem;
}

.contact-item-content p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.9375rem;
}

.contact-item-content a {
  color: var(--secondary);
  font-weight: 600;
}
.contact-item-content a:hover {
  color: var(--primary);
}

/* Contact Map */
.contact-map {
  margin-top: 32px;
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  position: relative;
}

.contact-map::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 49.5%, rgba(0,0,0,0.03) 49.5%, rgba(0,0,0,0.03) 50.5%, transparent 50.5%),
    linear-gradient(0deg, transparent 49.5%, rgba(0,0,0,0.03) 49.5%, rgba(0,0,0,0.03) 50.5%, transparent 50.5%);
  background-size: 40px 40px;
}

.map-placeholder { text-align: center; }
.map-content p:first-child { font-size: 2.5rem; margin-bottom: 12px; }
.map-content h5 { color: var(--primary); margin-bottom: 6px; }
.map-content p { color: var(--text-muted); margin: 0; }

/* Contact Form */
.contact-form-wrapper { position: relative; }

.contact-form {
  background: var(--bg-white);
  padding: 44px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
}

.contact-form h3 {
  font-size: 1.5rem;
  font-family: var(--font-display);
  margin-bottom: 6px;
}

.contact-form .form-subtitle {
  text-align: left;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--bg-white);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(12, 35, 64, 0.08);
}

.form-group textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-note {
  font-size: 0.8125rem;
  color: var(--text-light);
  margin-top: 16px;
  text-align: center;
  margin-bottom: 0;
}

/* Trust Section */
.trust-section {
  padding: 100px 0;
  background: var(--bg-surface);
}

.trust-section h2 {
  text-align: center;
  margin-bottom: 60px;
  font-family: var(--font-display);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-item {
  background: white;
  padding: 40px 28px;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.4s var(--ease-out);
}

.trust-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}

.trust-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}

.trust-item h4 {
  color: var(--primary);
  margin-bottom: 10px;
}

.trust-item p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.9375rem;
}

/* ============================================
   RESOURCES PAGE
   ============================================ */
/* Inherits page-hero and section-header styles */

/* ============================================
   LANDING PAGE HERO
   ============================================ */
.landing-hero {
  background: var(--primary);
  color: white;
  padding: 0 24px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.landing-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 20%, rgba(37, 99, 235, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 20% 80%, rgba(22, 163, 74, 0.08) 0%, transparent 50%);
}

.landing-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.landing-hero-content {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
  padding: 120px 0 80px;
}

.landing-hero .hero-text h1 {
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  line-height: 1.12;
  margin-bottom: 24px;
  font-weight: 700;
  color: white;
  font-family: var(--font-display);
}

.landing-hero .hero-text p {
  font-size: 1.125rem;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-subtext {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

/* Lead Form Card */
.hero-form-card {
  background: white;
  padding: 40px;
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
  position: relative;
}

.hero-form-card h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 8px;
  font-family: var(--font-display);
}

.hero-form-card p {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 0.9375rem;
}

.hero-form-card .form-privacy {
  color: var(--text-light) !important;
  font-size: 0.8rem !important;
  margin-top: 8px;
  margin-bottom: 0;
  text-align: center;
}

.landing-form .form-group {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
}

.landing-form label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.landing-form input {
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-family: var(--font-body);
  transition: all 0.25s;
}

.landing-form input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(12, 35, 64, 0.08);
}

.form-privacy {
  font-size: 0.8125rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 12px;
}

.landing-hero .hero-features {
  border-color: rgba(255, 255, 255, 0.1);
}

.landing-hero .hero-feature-icon {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255,255,255,0.12);
  color: white;
  box-shadow: none;
}

.landing-hero .hero-feature-text { color: white; }
.landing-hero .hero-feature-text span { color: rgba(255, 255, 255, 0.55); }

/* Landing Form (used on main contact too) */
.landing-form {
  background: white;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.landing-form h3 {
  text-align: center;
  margin-bottom: 8px;
  font-family: var(--font-display);
}

.landing-form .form-subtitle {
  text-align: center;
  margin-bottom: 24px;
  color: var(--text-muted);
}

/* ============================================
   LANDING PAGE SECTIONS
   ============================================ */

/* Benefits */
.benefits-section {
  background: var(--bg-surface);
  padding: 100px 24px;
}

.benefits-section h2 {
  text-align: center;
  margin-bottom: 64px;
  font-family: var(--font-display);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.benefit-card {
  background: white;
  padding: 40px 28px;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.4s var(--ease-out);
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--primary);
}

.benefit-icon svg {
  width: 32px;
  height: 32px;
  color: var(--primary);
}

.benefit-icon svg[fill="none"] {
  fill: none;
  stroke: var(--primary);
}

.benefit-card h3 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.benefit-card p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.65;
}

/* Services Handled */
.services-handled {
  padding: 100px 24px;
  background: white;
}

.services-handled h2 {
  text-align: center;
  margin-bottom: 64px;
  font-family: var(--font-display);
}

.service-item {
  background: var(--bg-surface);
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  text-align: center;
  border-left: 4px solid var(--accent);
  transition: all 0.4s var(--ease-out);
}

.service-item:hover {
  transform: translateY(-4px);
  background: white;
  box-shadow: var(--shadow-lg);
}

.service-item h4 {
  font-size: 1.125rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.service-item p {
  color: var(--text-muted);
  font-size: 0.9375rem;
}

/* Process */
.process-section {
  background: var(--bg-surface);
  padding: 100px 24px;
}

.process-section h2 {
  text-align: center;
  margin-bottom: 64px;
  font-family: var(--font-display);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  max-width: var(--container-max);
  margin: 0 auto;
  align-items: stretch;
  counter-reset: step;
}

.process-step {
  background: white;
  padding: 40px 28px;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.4s var(--ease-out);
  position: relative;
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.process-step::before {
  display: none;
}

.step-number {
  width: 52px;
  height: 52px;
  background: var(--primary);
  color: white;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  font-weight: 700;
  font-family: var(--font-display);
  margin: 0 auto 20px;
}

.process-step h3 {
  font-size: 1.125rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.process-step p {
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.process-arrow { display: none; color: var(--primary); font-size: 2rem; text-align: center; }

/* Trust Badges (landing) */
.trust-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.trust-badge {
  text-align: center;
  padding: 28px 20px;
}

.badge-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: var(--primary);
}

.badge-icon svg {
  width: 32px;
  height: 32px;
  color: var(--primary);
}

.badge-icon svg[fill="none"] {
  fill: none;
  stroke: var(--primary);
}

.trust-badge h4 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.trust-badge p {
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* Testimonial Section (landing) */
.testimonial-section {
  background: var(--primary);
  padding: 100px 24px;
  color: white;
  position: relative;
  overflow: hidden;
}

.testimonial-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 50%, rgba(37, 99, 235, 0.12) 0%, transparent 60%);
}

.testimonial-section h2 {
  text-align: center;
  margin-bottom: 48px;
  color: white;
  font-family: var(--font-display);
  position: relative;
  z-index: 1;
}

.testimonial-section .testimonial-card {
  max-width: 680px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.07);
  padding: 44px;
  border-radius: var(--radius-xl);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

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

.testimonial-section .testimonial-stars { color: #fbbf24; }

.testimonial-text {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-display);
}

.testimonial-section .testimonial-author {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

/* FAQ */
.faq-section {
  padding: 100px 24px;
  background: var(--bg-surface);
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 48px;
  font-family: var(--font-display);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s var(--ease-out);
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  cursor: pointer;
  background: white;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--text-dark);
  transition: background 0.2s;
}

.faq-question:hover { background: var(--bg-surface); }

.faq-question::after {
  display: none;
}

.faq-question h4 {
  margin: 0;
  color: var(--primary);
  font-weight: 600;
}

.faq-icon {
  font-size: 1.375rem;
  color: var(--primary);
  transition: transform 0.3s var(--ease-out);
}

.faq-item.active .faq-icon { transform: rotate(45deg); }

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

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 28px 24px;
}

.faq-answer p {
  color: var(--text-body);
  line-height: 1.75;
  margin: 0;
  font-size: 0.9375rem;
}

/* Benefits List */
.benefits-list { list-style: none; padding: 0; }

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--text-body);
  font-size: 0.9375rem;
}

.benefits-list li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: rgba(22, 163, 74, 0.1);
  color: var(--accent);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 3px;
}

/* Business Services Section */
.business-services {
  padding: 100px 24px;
  background: white;
}

.business-services h2 {
  text-align: center;
  margin-bottom: 64px;
  font-family: var(--font-display);
}

.services-grid-large {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.service-card-large {
  background: white;
  padding: 40px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all 0.4s var(--ease-out);
}

.service-card-large:hover {
  border-color: transparent;
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.service-icon-large {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.service-card-large h3 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.service-card-large p {
  color: var(--text-muted);
  line-height: 1.7;
}

/* Industries */
.industries-section {
  padding: 100px 24px;
  background: var(--bg-surface);
}

.industries-section h2 {
  text-align: center;
  margin-bottom: 16px;
  font-family: var(--font-display);
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.0625rem;
  margin-bottom: 56px;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.industry-item {
  background: white;
  padding: 36px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.4s var(--ease-out);
}

.industry-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.industry-icon { font-size: 2rem; margin-bottom: 16px; }

.industry-item h4 {
  font-size: 1.0625rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.industry-item p {
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--primary-dark);
  color: white;
  padding: 80px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.55);
  margin: 20px 0 0;
  max-width: 280px;
  font-size: 0.9375rem;
  line-height: 1.7;
}

.footer h4 {
  color: white;
  font-size: 0.8125rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-links { list-style: none; }

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9375rem;
  transition: color 0.25s;
}

.footer-links a:hover { color: white; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9375rem;
  line-height: 1.5;
}

.footer-contact-item svg,
.footer-contact-item span:first-child {
  color: rgba(255,255,255,0.4);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.55);
}
.footer-contact-item a:hover { color: white; }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.8125rem;
  margin: 0;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

.hero-text { animation: fadeInUp 0.9s var(--ease-out); }
.hero-image { animation: slideInRight 0.9s var(--ease-out) 0.15s both; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }

  .hero-content {
    padding: 60px 0 40px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image { height: 320px; }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .landing-hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 100px 0 60px;
  }

  .landing-form,
  .hero-form-card {
    max-width: 500px;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 64px;
    --header-height: 68px;
  }

  .header-inner { padding: 0 16px; }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: rgba(12, 35, 64, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 8px 16px 16px;
    gap: 0;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-links.active { display: flex; }

  .nav-links li { border-bottom: 1px solid rgba(255, 255, 255, 0.06); }

  .nav-links a {
    display: block;
    padding: 14px 8px;
    border-radius: 0;
  }
  .nav-links a:hover,
  .nav-links a.active {
    background: rgba(255, 255, 255, 0.08);
    color: white;
  }

  .mobile-toggle { display: flex; }
  .nav-cta { display: none; }

  .hero-content { padding: 40px 0; }

  .hero-text h1 {
    font-size: clamp(2rem, 7vw, 2.75rem);
  }

  .hero-features {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .services-grid { grid-template-columns: 1fr; }

  .why-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }

  .footer-about p {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }

  .cta-phone { font-size: 1rem; }
  .cta-phone a { font-size: 1.125rem; }

  .page-hero { padding: 140px 0 60px; }

  /* Contact */
  .contact-hero-cta { flex-direction: column; }
  .contact-hero-cta .btn { width: 100%; }
  .contact-form { padding: 28px 20px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }

  /* Landing */
  .landing-hero { padding: 0 16px; min-height: auto; }
  .landing-hero-content { gap: 32px; padding: 100px 0 48px; }

  .benefits-grid,
  .industries-grid { grid-template-columns: 1fr; }

  .process-steps { grid-template-columns: 1fr; }
  .process-arrow { display: block; margin: -8px 0; }

  .cta-buttons { flex-direction: column; }
  .cta-buttons .btn { width: 100%; }

  .testimonial-section .testimonial-card { padding: 28px 20px; }

  .trust-badges { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .hero-text h1 { font-size: 2rem; }

  .page-hero h1 { font-size: 2rem; }
  .contact-hero h1 { font-size: 2rem; }

  .trust-grid { grid-template-columns: 1fr; }
  .trust-badges { grid-template-columns: 1fr; }

  .contact-item-icon { font-size: 1.25rem; width: 40px; height: 40px; }
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.hidden { display: none; }

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

/* ============================================
   URGENCY BANNER
   ============================================ */
.urgency-banner {
  background: linear-gradient(90deg, #b8952a 0%, #d4af37 100%);
  color: #0c2340;
  text-align: center;
  padding: 10px 16px;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--font-body);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
}

/* Push header below the banner */
.urgency-banner ~ .header {
  top: 38px;
}

/* Push page content down to account for banner + header */
body:has(.urgency-banner) {
  padding-top: 38px;
}

.urgency-banner a {
  color: #0c2340;
  text-decoration: underline;
  font-weight: 700;
}

.urgency-banner .urgency-deadline {
  font-weight: 800;
}

@media (max-width: 768px) {
  .urgency-banner {
    font-size: 0.8rem;
    padding: 8px 12px;
    line-height: 1.4;
  }

  .urgency-banner ~ .header {
    top: 50px;
  }

  body:has(.urgency-banner) {
    padding-top: 50px;
  }
}

/* ============================================
   STICKY MOBILE CTA
   ============================================ */
.sticky-mobile-cta {
  display: none;
}

@media (max-width: 768px) {
  .sticky-mobile-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--primary);
    padding: 12px 16px;
    gap: 10px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .sticky-mobile-cta .btn {
    flex: 1;
    text-align: center;
    padding: 12px 8px;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
  }

  .sticky-mobile-cta .btn-call {
    background: var(--accent);
    color: white;
  }

  .sticky-mobile-cta .btn-consult {
    background: white;
    color: var(--primary);
  }

  /* Add padding to body so footer isn't hidden behind sticky bar */
  body {
    padding-bottom: 70px;
  }
}
