/* ============================================================
   TRUSTED HVAC — SHARED STYLES
   ============================================================ */

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  background: #F8FAFC;
  color: #1B2A4A;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button, input, select, textarea { font-family: inherit; }

/* ---------- KEYFRAME ANIMATIONS ---------- */

@keyframes ctaGlow {
  0%, 100% { box-shadow: 0 0 8px 2px rgba(249,115,22,.65); }
  50%       { box-shadow: 0 0 20px 7px rgba(249,115,22,1); }
}

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-4px); }
}

@keyframes statGlow {
  0%, 100% { text-shadow: 0 0 6px rgba(249,115,22,.4); }
  50%       { text-shadow: 0 0 18px rgba(249,115,22,.9); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-28px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes orangePulse {
  0%, 100% { color: #F97316; text-shadow: 0 0 8px rgba(249,115,22,.35); }
  50%       { color: #FB923C; text-shadow: 0 0 20px rgba(249,115,22,.8); }
}

@keyframes urgencyPulse {
  0%, 100% { background-color: #7f1d1d; }
  50%       { background-color: #991b1b; }
}

@keyframes lossBg {
  0%, 100% { background-color: rgba(185,28,28,.07); }
  50%       { background-color: rgba(185,28,28,.14); }
}

@keyframes checkPop {
  0%   { transform: scale(0); opacity: 0; }
  70%  { transform: scale(1.2); }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.07); }
}

/* ---------- UTILITY CLASSES ---------- */

.anim-cta-glow   { animation: ctaGlow 2s ease-in-out infinite; }
.anim-orange-txt { animation: orangePulse 3s ease-in-out infinite; }
.anim-stat       { animation: statGlow 2.5s ease-in-out infinite; }
.anim-urgency    { animation: urgencyPulse 3s ease-in-out infinite; }
.anim-loss-bg    { animation: lossBg 3s ease-in-out infinite; }

/* ---------- URGENCY BAR ---------- */

.urgency-bar {
  width: 100%;
  padding: 6px 12px;
  text-align: center;
  animation: urgencyPulse 3s ease-in-out infinite;
  position: relative;
  z-index: 200;
}

.urgency-bar p {
  font-size: 10px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.4;
}

.urgency-bar .urgency-soft {
  color: #FCA5A5;
}

.urgency-bar .urgency-sym {
  color: #FCA5A5;
  margin-right: 4px;
}

/* ---------- STICKY NAV ---------- */

.site-nav {
  background: #1B2A4A;
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-logo {
  height: 36px;
  width: auto;
}

.nav-slogan {
  font-size: 9px;
  color: #64748B;
  font-style: italic;
  line-height: 1.3;
  white-space: nowrap;
}

.nav-cta {
  background: #F97316;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 13px;
  border: none;
  border-radius: 6px;
  padding: 10px 14px;
  cursor: pointer;
  min-height: 44px;
  white-space: nowrap;
  animation: ctaGlow 2s ease-in-out infinite;
  flex-shrink: 0;
}

/* ---------- HERO ---------- */

.hero {
  position: relative;
  height: 310px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('Firefly.png');
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,18,44,0.60);
}

.hero-content {
  position: absolute;
  inset: 0;
  padding: 22px 18px 60px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 8px;
}

.hero-eyebrow {
  font-size: 9px;
  color: #F97316;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}

.hero-headline {
  font-size: 24px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
}

.hero-headline span { color: #F97316; }

.hero-sub {
  font-size: 11px;
  color: #94A3B8;
  line-height: 1.5;
}

.hero-buttons {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.btn-primary {
  background: #F97316;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 13px;
  border: none;
  border-radius: 8px;
  padding: 12px 14px;
  min-height: 44px;
  cursor: pointer;
  flex: 1;
  animation: ctaGlow 2s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.btn-secondary {
  background: rgba(255,255,255,0.08);
  color: #FFFFFF;
  font-weight: 600;
  font-size: 13px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  padding: 12px 14px;
  min-height: 44px;
  cursor: pointer;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-badges {
  position: absolute;
  bottom: 12px;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: center;
  gap: 5px;
  flex-wrap: wrap;
}

.badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(249,115,22,0.4);
  color: #FFFFFF;
  font-size: 9px;
  font-weight: 700;
  border-radius: 20px;
  padding: 5px 9px;
  white-space: nowrap;
  animation: badgeFloat 3s ease-in-out infinite;
}

.badge:nth-child(1) { animation-delay: 0s; }
.badge:nth-child(2) { animation-delay: 0.5s; }
.badge:nth-child(3) { animation-delay: 1s; }

/* ---------- STATS STRIP ---------- */

.stats-strip {
  background: #1B2A4A;
  padding: 12px 16px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 8px;
}

.stat-item {
  text-align: center;
  flex: 1;
}

.stat-num {
  font-size: 17px;
  font-weight: 800;
  color: #F97316;
  animation: statGlow 2.5s ease-in-out infinite;
  display: block;
}

.stat-label {
  font-size: 9px;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-top: 2px;
}

/* ---------- SLOGAN BLOCK ---------- */

.slogan-block {
  background: #1B2A4A;
  margin: 16px;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  border: 1px solid rgba(249,115,22,0.2);
}

.slogan-line1 {
  font-size: 19px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
}

.slogan-line2 {
  font-size: 20px;
  font-weight: 800;
  animation: orangePulse 3s ease-in-out infinite;
  display: block;
  margin-top: 2px;
}

.slogan-sub {
  font-size: 11px;
  color: #64748B;
  margin-top: 10px;
  line-height: 1.5;
}

/* ---------- WHY CHOOSE US ---------- */

.why-section {
  background: #FFFFFF;
  padding: 16px;
}

.section-eyebrow {
  font-size: 9px;
  color: #F97316;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 6px;
}

.section-title {
  font-size: 14px;
  font-weight: 700;
  color: #1B2A4A;
  margin-bottom: 14px;
  line-height: 1.4;
}

.why-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.why-card {
  background: #FFFFFF;
  border: 0.5px solid #E2E8F0;
  border-radius: 10px;
  padding: 11px 12px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  opacity: 0;
  animation: slideInLeft 0.5s ease forwards;
}

.why-card:nth-child(1) { animation-delay: 0.1s; }
.why-card:nth-child(2) { animation-delay: 0.2s; }
.why-card:nth-child(3) { animation-delay: 0.3s; }
.why-card:nth-child(4) { animation-delay: 0.4s; }

.card-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #1B2A4A;
  flex-shrink: 0;
  animation: breathe 4s ease-in-out infinite;
}

.card-body { flex: 1; }

.card-title {
  font-size: 12px;
  font-weight: 700;
  color: #1B2A4A;
  margin-bottom: 4px;
}

.card-desc {
  font-size: 11px;
  color: #64748B;
  line-height: 1.5;
  margin-bottom: 6px;
}

.card-tag {
  font-size: 10px;
  font-weight: 700;
  color: #F97316;
}

/* ---------- LOSS AVERSION ---------- */

.loss-section {
  margin: 0 16px 16px;
  border-radius: 12px;
  overflow: hidden;
  border: 1.5px solid rgba(185,28,28,0.3);
}

.loss-header {
  background: #B91C1C;
  padding: 11px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.loss-header-sym {
  color: #FEE2E2;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.loss-header-text {
  font-size: 11px;
  font-weight: 700;
  color: #FFFFFF;
}

.loss-body {
  padding: 12px 14px;
  animation: lossBg 3s ease-in-out infinite;
}

.loss-item {
  padding: 10px 0;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.loss-item + .loss-item {
  border-top: 0.5px solid rgba(185,28,28,0.12);
}

.loss-sym {
  color: #B91C1C;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}

.loss-content { flex: 1; }

.loss-title {
  font-size: 11px;
  font-weight: 700;
  color: #B91C1C;
  margin-bottom: 3px;
}

.loss-desc {
  font-size: 11px;
  color: #64748B;
  line-height: 1.5;
  margin-bottom: 4px;
}

.loss-cost {
  font-size: 10px;
  font-weight: 700;
  color: #B91C1C;
}

.loss-cta {
  display: block;
  width: 100%;
  background: #B91C1C;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 700;
  padding: 14px;
  min-height: 44px;
  border: none;
  border-radius: 0 0 10px 10px;
  cursor: pointer;
  text-align: center;
}

/* ---------- PROMISE ---------- */

.promise-section {
  background: #1B2A4A;
  margin: 0 16px 16px;
  border-radius: 12px;
  padding: 14px;
}

.promise-title {
  font-size: 11px;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  text-align: center;
  margin-bottom: 14px;
}

.promise-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.promise-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  opacity: 0;
  animation: slideInLeft 0.5s ease forwards;
}

.promise-item:nth-child(1) { animation-delay: 0.15s; }
.promise-item:nth-child(2) { animation-delay: 0.25s; }
.promise-item:nth-child(3) { animation-delay: 0.35s; }
.promise-item:nth-child(4) { animation-delay: 0.45s; }

.promise-check {
  width: 20px;
  height: 20px;
  background: #F97316;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  opacity: 0;
  animation: checkPop 0.5s ease forwards;
}

.promise-item:nth-child(1) .promise-check { animation-delay: 0.15s; }
.promise-item:nth-child(2) .promise-check { animation-delay: 0.25s; }
.promise-item:nth-child(3) .promise-check { animation-delay: 0.35s; }
.promise-item:nth-child(4) .promise-check { animation-delay: 0.45s; }

.promise-text { flex: 1; }

.promise-strong {
  font-size: 12px;
  font-weight: 700;
  color: #FFFFFF;
  display: block;
  margin-bottom: 2px;
}

.promise-light {
  font-size: 11px;
  color: #CBD5E1;
  line-height: 1.5;
}

/* ---------- FAMILY PHOTO ---------- */

.family-photo-wrap {
  margin: 0 16px 16px;
  border-radius: 12px;
  overflow: hidden;
}

.family-photo {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ---------- FINAL CTA ---------- */

.final-cta {
  margin: 0 16px 16px;
  background: linear-gradient(135deg, #1B2A4A, #2D4A8A);
  border-radius: 12px;
  padding: 18px;
  text-align: center;
}

.final-cta-line1 {
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.final-cta-line2 {
  font-size: 18px;
  font-weight: 800;
  animation: orangePulse 3s ease-in-out infinite;
  display: block;
}

.final-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}

.btn-full-primary {
  display: block;
  width: 100%;
  background: #F97316;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 14px;
  border: none;
  border-radius: 8px;
  padding: 14px;
  min-height: 44px;
  cursor: pointer;
  text-align: center;
  animation: ctaGlow 2s ease-in-out infinite;
}

.btn-full-secondary {
  display: block;
  width: 100%;
  background: rgba(255,255,255,0.08);
  color: #FFFFFF;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  padding: 14px;
  min-height: 44px;
  cursor: pointer;
  text-align: center;
}

/* Hide desktop-only left column on mobile */
.form-page-left { display: none; }

/* ---------- FORM PAGE — HERO ---------- */

.form-hero {
  position: relative;
  min-height: 280px;
}

.form-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('Firefly.png');
  background-size: cover;
  background-position: center top;
}

.form-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,18,44,0.60);
}

.form-hero-content {
  position: absolute;
  inset: 0;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.form-hero-h1 {
  font-size: 20px;
  font-weight: 800;
  color: #FFFFFF;
  text-shadow: 0 2px 14px rgba(0,0,0,0.6);
  line-height: 1.2;
}

.form-hero-h2 {
  font-size: 22px;
  font-weight: 800;
  display: block;
  animation: orangePulse 3s ease-in-out infinite;
  line-height: 1.1;
}

.form-hero-badges {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

/* Mobile: form-page-body is just a passthrough */
.form-page-body {
  display: block;
}

/* ---------- FORM CARD ---------- */

.form-card {
  background: #FFFFFF;
  margin: -20px 16px 0;
  border-radius: 12px;
  position: relative;
  z-index: 10;
  box-shadow: 0 8px 32px rgba(27,42,74,0.15);
  padding: 20px;
}

.form-card-title {
  font-size: 15px;
  font-weight: 700;
  color: #1B2A4A;
  margin-bottom: 4px;
}

.form-card-sub {
  font-size: 11px;
  color: #64748B;
  margin-bottom: 16px;
  line-height: 1.5;
}

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

.form-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: #1B2A4A;
  margin-bottom: 5px;
}

.form-label-note {
  font-size: 10px;
  color: #94A3B8;
  font-weight: 400;
}

.form-input,
.form-select {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid #E2E8F0;
  border-radius: 8px;
  font-size: 13px;
  background: #F8FAFC;
  color: #1B2A4A;
  outline: none;
  transition: border-color 0.2s;
  min-height: 44px;
  appearance: none;
  -webkit-appearance: none;
}

.form-select-wrap {
  position: relative;
}

.form-select-wrap::after {
  content: '▾';
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #64748B;
  pointer-events: none;
  font-size: 14px;
}

.form-input:focus,
.form-select:focus {
  border-color: #2D4A8A;
}

.btn-submit {
  width: 100%;
  background: #F97316;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  padding: 14px;
  min-height: 44px;
  cursor: pointer;
  animation: ctaGlow 2s ease-in-out infinite;
  margin-bottom: 14px;
}

.form-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.form-divider-line {
  flex: 1;
  height: 1px;
  background: #E2E8F0;
}

.form-divider-text {
  font-size: 11px;
  color: #94A3B8;
  white-space: nowrap;
}

.btn-call-dark {
  display: block;
  width: 100%;
  background: #1B2A4A;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  padding: 12px;
  min-height: 44px;
  cursor: pointer;
  text-align: center;
  margin-bottom: 12px;
}

.form-privacy {
  font-size: 10px;
  color: #94A3B8;
  text-align: center;
  line-height: 1.5;
}

/* ---------- TRUST STRIP (form page) ---------- */

.trust-strip {
  background: #1B2A4A;
  margin: 16px;
  border-radius: 8px;
  padding: 12px 16px;
}

.trust-strip-title {
  font-size: 10px;
  color: #64748B;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.trust-stats {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

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

.trust-num {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: #F97316;
  animation: statGlow 2.5s ease-in-out infinite;
}

.trust-label {
  display: block;
  font-size: 9px;
  color: #94A3B8;
  margin-top: 2px;
}

/* ---------- SUCCESS MESSAGE ---------- */

.form-success {
  display: none;
  text-align: center;
  padding: 24px 16px;
}

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

.form-success-icon {
  width: 52px;
  height: 52px;
  background: #F97316;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #FFFFFF;
  margin: 0 auto 12px;
}

.form-success-title {
  font-size: 17px;
  font-weight: 800;
  color: #1B2A4A;
  margin-bottom: 6px;
}

.form-success-sub {
  font-size: 12px;
  color: #64748B;
  line-height: 1.6;
  margin-bottom: 16px;
}

/* ============================================================
   TABLET — 768px and up
   ============================================================ */

@media (min-width: 768px) {

  /* NAV */
  .site-nav { padding: 10px 40px; }
  .nav-logo { height: 42px; max-width: 180px; object-fit: contain; }
  .nav-slogan { font-size: 10px; }

  /* HERO — background-position center center on tablet+ */
  .hero {
    height: 480px;
    min-height: 480px;
  }
  .hero-bg { background-position: center center; }

  .hero-content {
    padding: 48px 60px 90px;
    max-width: 560px;
    justify-content: center;
  }

  .hero-eyebrow { font-size: 11px; }
  .hero-headline { font-size: 36px; }
  .hero-sub { font-size: 13px; }
  .hero-buttons { max-width: 420px; }

  .hero-badges {
    left: 60px;
    right: 60px;
    justify-content: flex-start;
  }

  /* STATS */
  .stats-strip { padding: 16px 60px; }
  .stat-num { font-size: 22px; }
  .stat-label { font-size: 11px; }

  /* SLOGAN */
  .slogan-block { margin: 24px 60px; padding: 28px; }
  .slogan-line1 { font-size: 26px; }
  .slogan-line2 { font-size: 28px; }
  .slogan-sub { font-size: 13px; }

  /* WHY */
  .why-section { padding: 32px 60px; }
  .section-title { font-size: 18px; }
  .why-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .card-title { font-size: 13px; }
  .card-desc { font-size: 12px; }

  /* LOSS */
  .loss-section { margin: 0 60px 24px; }
  .loss-title { font-size: 12px; }
  .loss-desc { font-size: 12px; }

  /* PROMISE */
  .promise-section { margin: 0 60px 24px; padding: 20px 28px; }
  .promise-strong { font-size: 13px; }
  .promise-light { font-size: 12px; }

  /* FAMILY PHOTO */
  .family-photo-wrap { margin: 0 60px 24px; }
  .family-photo { height: 280px; }

  /* FINAL CTA */
  .final-cta { margin: 0 60px 32px; padding: 32px; }
  .final-cta-line1 { font-size: 22px; }
  .final-cta-line2 { font-size: 26px; }
  .final-cta-buttons {
    flex-direction: row;
    max-width: 480px;
    margin: 14px auto 0;
  }
  .btn-full-primary, .btn-full-secondary { flex: 1; }

  /* FORM HERO */
  .form-hero { min-height: 340px; }
  .form-hero-content { padding: 40px 60px; max-width: 600px; }
  .form-hero-h1 { font-size: 26px; }
  .form-hero-h2 { font-size: 30px; }

  /* FORM — two-col layout */
  .form-page-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
    padding: 32px 40px;
  }

  .form-card {
    margin: 0;
    box-shadow: 0 8px 32px rgba(27,42,74,0.15);
    position: sticky;
    top: 80px;
  }

  .form-page-left {
    display: block;
    padding-right: 40px;
    padding-top: 8px;
  }

  .form-left-heading {
    font-size: 22px;
    font-weight: 800;
    color: #1B2A4A;
    margin-bottom: 20px;
    line-height: 1.3;
  }

  .form-left-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 16px;
  }

  .form-left-icon {
    width: 36px;
    height: 36px;
    background: #FFF7ED;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #F97316;
    flex-shrink: 0;
  }

  .form-left-text strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #1B2A4A;
    margin-bottom: 2px;
  }

  .form-left-text span {
    font-size: 12px;
    color: #64748B;
    line-height: 1.5;
  }

  /* TRUST STRIP */
  .trust-strip {
    margin: 0 40px 32px;
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 16px 32px;
  }
  .trust-strip-title { margin-bottom: 0; white-space: nowrap; flex-shrink: 0; }
  .trust-stats { flex: 1; justify-content: space-around; }
  .trust-num { font-size: 20px; }
}

/* ============================================================
   DESKTOP — 1024px and up
   (Two-column hero: text left, more photo visible right)
   ============================================================ */

@media (min-width: 1024px) {

  /* NAV */
  .site-nav { padding: 10px 60px; }
  .nav-logo { height: 48px; max-width: 200px; object-fit: contain; }

  /* HERO — two-column feel: text sits left, right half shows photo */
  .hero {
    height: 520px;
    min-height: 520px;
  }
  .hero-bg { background-position: center center; }

  .hero-content {
    padding: 60px 60px 100px;
    /* Constrain text to left half so right side shows photo clearly */
    max-width: 55%;
    justify-content: center;
  }

  .hero-eyebrow { font-size: 12px; }
  .hero-headline { font-size: 42px; }
  .hero-sub { font-size: 14px; max-width: 480px; }

  .hero-buttons { max-width: 460px; }

  .hero-badges {
    left: 60px;
    right: auto;
    justify-content: flex-start;
  }

  /* STATS */
  .stats-strip { padding: 18px 80px; }
  .stat-num { font-size: 24px; }

  /* SLOGAN */
  .slogan-block { margin: 28px 80px; padding: 32px; }
  .slogan-line1 { font-size: 28px; }
  .slogan-line2 { font-size: 30px; }

  /* WHY */
  .why-section { padding: 40px 80px; }
  .section-title { font-size: 20px; }

  /* LOSS */
  .loss-section { margin: 0 80px 28px; }

  /* PROMISE */
  .promise-section { margin: 0 80px 28px; padding: 24px 36px; }

  /* FAMILY PHOTO */
  .family-photo-wrap { margin: 0 80px 28px; }
  .family-photo { height: 320px; }

  /* FINAL CTA */
  .final-cta { margin: 0 80px 36px; padding: 40px; }
  .final-cta-line1 { font-size: 24px; }
  .final-cta-line2 { font-size: 30px; }

  /* FORM HERO */
  .form-hero { min-height: 380px; }
  .form-hero-content { padding: 60px 80px; max-width: 640px; }
  .form-hero-h1 { font-size: 30px; }
  .form-hero-h2 { font-size: 34px; }

  /* FORM two-col */
  .form-page-body {
    padding: 40px 80px;
    max-width: 1100px;
    margin: 0 auto;
  }
  .form-left-heading { font-size: 26px; }
}

/* ============================================================
   WIDE DESKTOP — 1200px+ (max content width caps here)
   ============================================================ */

@media (min-width: 1200px) {

  /* All content sections max out at 1200px centered */
  .stats-strip,
  .why-section,
  .form-page-body {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }

  /* NAV inner content cap */
  .site-nav { padding: 12px 60px; }

  /* HERO */
  .hero { height: 560px; min-height: 560px; }
  .hero-content { padding: 60px 100px 100px; max-width: 52%; }
  .hero-headline { font-size: 48px; }

  /* Contained sections */
  .slogan-block { max-width: 1200px; margin: 28px auto; }
  .loss-section { max-width: 1200px; margin: 0 auto 28px; }
  .promise-section { max-width: 1200px; margin: 0 auto 28px; padding: 28px 60px; }
  .family-photo-wrap { max-width: 1200px; margin: 0 auto 28px; }
  .family-photo { height: 360px; }
  .final-cta { max-width: 1200px; margin: 0 auto 40px; padding: 48px 60px; }
  .final-cta-line1 { font-size: 26px; }
  .final-cta-line2 { font-size: 34px; }

  /* FORM page */
  .form-hero { min-height: 400px; }
  .form-hero-content { max-width: 700px; }
  .form-page-body { padding: 48px 60px; max-width: 1200px; }
  .trust-strip { max-width: 1200px; margin: 0 auto 36px; }
  .form-left-heading { font-size: 28px; }
}
