/* =============================================================
   Aura Restoration — Landing Page Styles
   Aesthetic: Professional emergency service, dark + amber
   Fonts: Fraunces (display/headings), DM Sans (body)
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,600;0,9..144,700;0,9..144,900;1,9..144,300;1,9..144,400&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --navy:       #0d1f3c;
  --navy-mid:   #162a52;
  --navy-light: #1e3a6e;
  --amber:      #d4a853;
  --amber-dark: #b8892e;
  --amber-pale: #f7eed8;
  --white:      #ffffff;
  --off-white:  #f8f7f3;
  --gray-100:   #f0efe9;
  --gray-200:   #e2e0d9;
  --gray-400:   #9a978e;
  --gray-600:   #5c5952;
  --gray-800:   #2e2c28;
  --green:      #2d7a4f;
  --green-bg:   #e8f4ed;
  --error:      #c0392b;
  --error-bg:   #fdf0ee;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

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

  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.10), 0 2px 6px rgba(0,0,0,0.07);
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.13), 0 4px 12px rgba(0,0,0,0.08);
  --shadow-amber: 0 4px 20px rgba(212,168,83,0.25);
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::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(--gray-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; font-weight: 700; }

/* ── Layout Container ──────────────────────────────────────── */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── NAVBAR ─────────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(212,168,83,0.2);
  backdrop-filter: blur(8px);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 16px;
}

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

.navbar-logo-mark {
  width: 36px;
  height: 36px;
  background: var(--amber);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.navbar-logo-mark svg {
  width: 20px;
  height: 20px;
  fill: var(--navy);
}

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

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

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.navbar-nav a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: color 0.15s, background 0.15s;
}

.navbar-nav a:hover { color: var(--white); background: rgba(255,255,255,0.08); }

.navbar-cta {
  background: var(--amber) !important;
  color: var(--navy) !important;
  font-weight: 600 !important;
  padding: 8px 18px !important;
  border-radius: var(--radius-sm) !important;
  transition: background 0.15s, transform 0.1s !important;
  flex-shrink: 0;
}

.navbar-cta:hover {
  background: var(--amber-dark) !important;
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .navbar-nav { display: none; }
}

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 0%, rgba(212,168,83,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(30,58,110,0.5) 0%, transparent 50%);
  pointer-events: none;
}

/* geometric accent shapes */
.hero::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -40px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(212,168,83,0.08);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(212,168,83,0.15);
  border: 1px solid rgba(212,168,83,0.3);
  color: var(--amber);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 99px;
  margin-bottom: 20px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: italic;
  color: var(--amber);
}

.hero-sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
}

.hero-trust-item svg {
  width: 14px;
  height: 14px;
  fill: var(--amber);
  flex-shrink: 0;
}

/* Hero visual panel */
.hero-visual {
  position: relative;
}

.hero-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(4px);
}

.hero-card-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

.hero-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 20px 0;
}

.hero-cert {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(45,122,79,0.12);
  border: 1px solid rgba(45,122,79,0.25);
  border-radius: var(--radius-sm);
}

.hero-cert-icon {
  width: 28px;
  height: 28px;
  background: rgba(45,122,79,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-cert-icon svg {
  width: 14px;
  height: 14px;
  fill: #5cba8a;
}

.hero-cert-text strong { display: block; color: var(--white); font-size: 0.85rem; }
.hero-cert-text span { color: rgba(255,255,255,0.5); font-size: 0.75rem; }

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  line-height: 1;
}

.btn-primary {
  background: var(--amber);
  color: var(--navy);
  box-shadow: var(--shadow-amber);
}

.btn-primary:hover {
  background: var(--amber-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(212,168,83,0.35);
}

.btn-secondary {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-1px);
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
  border: 1px solid var(--navy-light);
}

.btn-dark:hover {
  background: var(--navy-mid);
  transform: translateY(-1px);
}

.btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}

/* ── TRUST BAR ──────────────────────────────────────────────── */
.trust-bar {
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
  padding: 20px 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-600);
}

.trust-item svg {
  width: 18px;
  height: 18px;
  fill: var(--amber-dark);
  flex-shrink: 0;
}

/* ── SECTION SHARED ─────────────────────────────────────────── */
.section {
  padding: 88px 0;
}

.section-dark {
  background: var(--navy);
  color: var(--white);
}

.section-light {
  background: var(--off-white);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber-dark);
  margin-bottom: 14px;
}

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

.section-dark .section-label { color: var(--amber); }

.section-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-heading em {
  font-style: italic;
  color: var(--amber);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 600px;
  line-height: 1.7;
}

.section-dark .section-sub { color: rgba(255,255,255,0.6); }

/* ── HOW IT WORKS ───────────────────────────────────────────── */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.how-step {
  padding: 32px 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  background: var(--white);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.section-dark .how-step {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
}

.how-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--amber-pale);
  color: var(--amber-dark);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.section-dark .how-step-number {
  background: rgba(212,168,83,0.15);
  color: var(--amber);
}

.how-step h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.how-step p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.65;
}

.section-dark .how-step p { color: rgba(255,255,255,0.6); }

.how-step-arrow {
  position: absolute;
  top: 48px;
  right: -18px;
  width: 36px;
  height: 36px;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.how-step-arrow svg { width: 14px; height: 14px; fill: var(--gray-400); }

@media (max-width: 768px) {
  .how-grid { grid-template-columns: 1fr; }
  .how-step-arrow { display: none; }
}

/* ── WHO IT'S FOR ───────────────────────────────────────────── */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 52px;
}

.audience-card {
  display: flex;
  gap: 20px;
  padding: 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.audience-card:hover {
  border-color: var(--amber);
  box-shadow: var(--shadow-md);
}

.audience-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.audience-icon svg { width: 24px; height: 24px; fill: var(--amber); }

.audience-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.audience-card p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
}

@media (max-width: 640px) {
  .audience-grid { grid-template-columns: 1fr; }
}

/* ── SOCIAL PROOF ───────────────────────────────────────────── */
.proof-bar {
  background: var(--gray-100);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 40px 0;
}

.proof-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}

.proof-rating {
  display: flex;
  align-items: center;
  gap: 12px;
}

.proof-stars {
  display: flex;
  gap: 2px;
}

.proof-stars svg {
  width: 22px;
  height: 22px;
  fill: var(--amber);
}

.proof-score {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gray-800);
}

.proof-count {
  font-size: 0.875rem;
  color: var(--gray-400);
}

.proof-divider {
  width: 1px;
  height: 36px;
  background: var(--gray-200);
}

.proof-stat-label {
  font-size: 0.8rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-bottom: 2px;
}

.proof-stat-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-800);
}

/* ── CTA FORM SECTION ───────────────────────────────────────── */
.cta-section {
  background: var(--navy);
  color: var(--white);
  padding: 96px 0;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.cta-copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.cta-copy h2 em { font-style: italic; color: var(--amber); }

.cta-copy p {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 28px;
}

.cta-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
}

.cta-features li svg {
  width: 18px;
  height: 18px;
  fill: var(--amber);
  flex-shrink: 0;
}

/* Form card */
.cta-form-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 36px;
  backdrop-filter: blur(4px);
}

.cta-form-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.cta-form-card .form-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 28px;
}

/* Form elements */
.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.form-control {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.15s, background 0.15s;
  -webkit-appearance: none;
}

.form-control::placeholder { color: rgba(255,255,255,0.3); }

.form-control:focus {
  outline: none;
  border-color: var(--amber);
  background: rgba(255,255,255,0.1);
}

select.form-control {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='rgba(255,255,255,0.4)'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 20px;
  padding-right: 36px;
}

select.form-control option {
  background: var(--navy-mid);
  color: var(--white);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-submit {
  width: 100%;
  margin-top: 8px;
  padding: 15px;
  background: var(--amber);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.form-submit:hover {
  background: var(--amber-dark);
  transform: translateY(-1px);
}

.form-submit svg { width: 18px; height: 18px; fill: currentColor; }

.form-disclaimer {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

/* Form success state */
.form-success {
  display: none;
  text-align: center;
  padding: 24px 0;
}

.form-success.show { display: block; }
.form-success-icon {
  width: 56px;
  height: 56px;
  background: rgba(45,122,79,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.form-success-icon svg { width: 28px; height: 28px; fill: #5cba8a; }

.form-success h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
}

.form-success p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* Form error */
.form-error-msg {
  display: none;
  background: var(--error-bg);
  border: 1px solid var(--error);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 0.85rem;
  color: var(--error);
  margin-bottom: 16px;
}

.form-error-msg.show { display: block; }

@media (max-width: 768px) {
  .cta-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ── NO HIDDEN FEES BANNER ──────────────────────────────────── */
.no-fees {
  background: var(--green-bg);
  border-top: 1px solid rgba(45,122,79,0.15);
  border-bottom: 1px solid rgba(45,122,79,0.15);
  padding: 24px 0;
}

.no-fees-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.no-fees-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--green);
}

.no-fees-item svg { width: 18px; height: 18px; fill: var(--green); flex-shrink: 0; }

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: var(--gray-100);
  border-top: 1px solid var(--gray-200);
  padding: 40px 0 32px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
}

.footer-brand span { color: var(--amber-dark); }

.footer-copy {
  font-size: 0.8rem;
  color: var(--gray-400);
}

.footer-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.footer-links a {
  font-size: 0.8rem;
  color: var(--gray-600);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-links a:hover { color: var(--amber-dark); }

/* ── ANIMATIONS ─────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* ── UTILITY ─────────────────────────────────────────────────── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* ── COMMERCIAL STATS BAR ═══════════════════════════════════════ */
.commercial-stats {
  background: var(--navy);
  padding: 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.commercial-stats-inner {
  display: flex;
  align-items: stretch;
}

.commercial-stat-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: background 0.15s;
}

.commercial-stat-item:last-child { border-right: none; }
.commercial-stat-item:hover { background: rgba(255,255,255,0.03); }

.commercial-stat-icon {
  width: 40px;
  height: 40px;
  background: rgba(212,168,83,0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.commercial-stat-icon svg { width: 20px; height: 20px; fill: var(--amber); }

.commercial-stat-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}

.commercial-stat-text span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.4;
}

@media (max-width: 640px) {
  .commercial-stats-inner { flex-wrap: wrap; }
  .commercial-stat-item { flex: 1 1 50%; border-bottom: 1px solid rgba(255,255,255,0.06); }
}

/* ── HERO IMAGE ═══════════════════════════════════════════════ */
.hero-image-panel {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}

.hero-image-panel img {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
}

.hero-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(13,31,60,0.9) 0%, rgba(13,31,60,0.5) 60%, transparent 100%);
  padding: 24px 24px 20px;
}

.hero-image-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(212,168,83,0.2);
  border: 1px solid rgba(212,168,83,0.4);
  color: var(--amber);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 99px;
}

.hero-image-caption {
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

/* ── SERVICE AREAS ═════════════════════════════════════════════ */
.service-areas {
  background: var(--navy);
  padding: 80px 0;
}

.service-areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 44px;
}

.service-area-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.service-area-tag:hover {
  background: rgba(212,168,83,0.1);
  border-color: rgba(212,168,83,0.3);
  color: var(--amber);
}

.service-area-tag svg { width: 14px; height: 14px; fill: currentColor; flex-shrink: 0; }

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

/* ── TRUST SIGNALS REVISED ═════════════════════════════════════ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.trust-card {
  padding: 28px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  background: var(--white);
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.trust-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--amber);
}

.trust-card-icon {
  width: 52px;
  height: 52px;
  background: var(--amber-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.trust-card-icon svg { width: 24px; height: 24px; fill: var(--amber-dark); }

.trust-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.trust-card p {
  font-size: 0.8rem;
  color: var(--gray-600);
  line-height: 1.6;
}

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

@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr; }
}

/* ── FORM ESTIMATED JOB SIZE ═══════════════════════════════════ */
.form-group-half { margin-bottom: 16px; }
.form-group-half label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}