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

:root {
  --navy:       #1d3a5c;
  --navy-dark:  #111f33;
  --teal:       #1f7ea1;
  --teal-light: #d4edf7;
  --red:        #c0392b;
  --red-light:  #fdecea;
  --orange:     #d35400;
  --green:      #1e7e34;
  --green-light:#e6f4ea;
  --gray:       #f4f6f8;
  --gray-mid:   #dde3ea;
  --white:      #ffffff;
  --text:       #1c2b3a;
  --muted:      #5a6a7a;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* ── NAV ───────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(17, 31, 51, 0.97);
  backdrop-filter: blur(8px);
  padding: 0 40px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid var(--teal);
}
.nav-logo {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: white;
  letter-spacing: 1px;
  text-decoration: none;
}
.nav-logo span { color: #5fd0f0; }
.nav-logo-img {
  height: 36px;
  width: auto;
  vertical-align: middle;
  margin-right: 8px;
  border-radius: 4px;
}
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 600;
  transition: color 0.2s;
}
.nav-links a:hover { color: #5fd0f0; }
.nav-cta {
  background: var(--teal);
  color: white !important;
  padding: 7px 16px;
  border-radius: 4px;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: #1a6a8a !important; color: white !important; }

/* ── HERO ──────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(150deg, var(--navy-dark) 0%, #0d2a47 50%, #163552 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px 60px;
  position: relative;
  overflow: hidden;
}

/* Subtle background grid */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(31,126,161,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31,126,161,0.07) 1px, transparent 1px);
  background-size: 48px 48px;
}

/* Glow orb */
.hero::after {
  content: '';
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(31,126,161,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner { position: relative; z-index: 1; max-width: 800px; }

.hero-badge {
  display: inline-block;
  background: rgba(31,126,161,0.25);
  border: 1px solid rgba(95,208,240,0.4);
  color: #5fd0f0;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
  animation: fadeDown 0.7s ease both;
}

.hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 700;
  color: white;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  animation: fadeDown 0.7s 0.1s ease both;
}
.hero h1 em { color: #5fd0f0; font-style: normal; }

.hero-sub {
  font-size: clamp(15px, 2vw, 19px);
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: 36px;
  animation: fadeDown 0.7s 0.2s ease both;
}

.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeDown 0.7s 0.3s ease both;
}

.btn-primary {
  background: var(--teal);
  color: white;
  padding: 14px 32px;
  border-radius: 5px;
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-primary:hover { background: #1a6a8a; transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: white;
  padding: 14px 32px;
  border-radius: 5px;
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.3);
  transition: border-color 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-outline:hover { border-color: #5fd0f0; color: #5fd0f0; transform: translateY(-2px); }

.hero-stats {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-top: 56px;
  flex-wrap: wrap;
  animation: fadeDown 0.7s 0.4s ease both;
}
.stat {
  text-align: center;
  border-top: 2px solid rgba(95,208,240,0.4);
  padding-top: 14px;
  min-width: 120px;
}
.stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #5fd0f0;
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.3);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.scroll-hint svg { opacity: 0.4; }

/* ── SHARED SECTION STYLES ─────────────────── */
section { padding: 80px 24px; }

.container { max-width: 1100px; margin: 0 auto; }

.section-label {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.section-intro {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 620px;
  margin-bottom: 48px;
}

/* ── IDENTIFY SECTION ──────────────────────── */
.identify { background: var(--white); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.step-card {
  background: var(--gray);
  border-radius: 10px;
  padding: 28px 24px;
  border-top: 3px solid var(--teal);
  transition: transform 0.2s, box-shadow 0.2s;
}
.step-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.step-num-badge {
  width: 36px; height: 36px;
  background: var(--navy);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 16px; font-weight: 700;
  margin-bottom: 14px;
}
.step-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.step-card p, .step-card ul {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}
.step-card ul {
  padding-left: 16px;
}
.step-card ul li { margin-bottom: 4px; }
.step-card ul li strong { color: var(--text); }

/* ── DANGER SECTION ────────────────────────── */
.danger { background: var(--navy-dark); }
.danger .section-title { color: white; }
.danger .section-intro { color: rgba(255,255,255,0.6); }
.danger .section-label { color: #5fd0f0; }

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

.danger-points { display: flex; flex-direction: column; gap: 16px; }
.danger-point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.d-icon-wrap {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.danger-point h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 4px;
}
.danger-point p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.6);
  line-height: 1.55;
}

/* Breaker comparison */
.breaker-compare {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.breaker-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 20px;
}
.breaker-label-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 14px;
  font-weight: 600;
}
.tag-good { background: rgba(30,126,52,0.3); color: #6fcf97; border: 1px solid rgba(30,126,52,0.4); }
.tag-bad  { background: rgba(192,57,43,0.3); color: #eb5757; border: 1px solid rgba(192,57,43,0.4); }

.flow-steps {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.flow-step {
  background: rgba(255,255,255,0.07);
  border-radius: 4px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  text-align: center;
  line-height: 1.3;
}
.flow-step.good { background: rgba(30,126,52,0.2); color: #6fcf97; }
.flow-step.bad  { background: rgba(192,57,43,0.2); color: #eb5757; }
.flow-step.fire { background: rgba(211,84,0,0.2);  color: #f0a05a; }
.flow-arrow { color: rgba(255,255,255,0.3); font-size: 14px; }
.flow-outcome {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 700;
}
.flow-outcome.ok   { color: #6fcf97; }
.flow-outcome.fail { color: #eb5757; }

.no-repair-banner {
  background: var(--red);
  border-radius: 8px;
  padding: 16px 20px;
  text-align: center;
  margin-top: 4px;
}
.no-repair-banner strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.5px;
}
.no-repair-banner span {
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  margin-top: 4px;
  display: block;
}

/* ── INSURANCE SECTION ─────────────────────── */
.insurance { background: var(--gray); }

.ins-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.ins-card {
  background: white;
  border-radius: 10px;
  padding: 28px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.ins-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.ins-num {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 16px; font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.n1 { background: var(--red); }
.n2 { background: var(--orange); }
.n3 { background: var(--teal); }

.ins-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 6px;
}
.ins-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.ins-note {
  background: var(--navy);
  border-radius: 10px;
  padding: 24px 28px;
  margin-top: 28px;
  display: flex;
  gap: 16px;
  align-items: center;
}
.ins-note-icon { font-size: 28px; flex-shrink: 0; }
.ins-note p {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}
.ins-note p strong { color: #5fd0f0; }

/* ── NEXT STEPS ────────────────────────────── */
.next-steps { background: white; }

.steps-big {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 800px;
}

.big-step {
  background: var(--gray);
  border-radius: 12px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s;
}
.big-step:hover { transform: translateY(-4px); }
.big-step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--teal), var(--navy));
}
.big-step-num {
  font-family: 'Oswald', sans-serif;
  font-size: 64px;
  font-weight: 700;
  color: rgba(29,58,92,0.08);
  line-height: 1;
  position: absolute;
  top: 12px; right: 20px;
}
.big-step-icon { font-size: 36px; margin-bottom: 14px; }
.big-step h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.big-step p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

/* ── CTA SECTION ───────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, #0d2a47 100%);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(31,126,161,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31,126,161,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
}
.cta-inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.cta-section h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 8px;
}
.cta-section h2 em { color: #5fd0f0; font-style: normal; }
.cta-section p {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 36px;
  margin-top: 12px;
}

/* ── CONTACT SECTION ───────────────────────── */
.contact { background: var(--gray); }

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

.contact-info { display: flex; flex-direction: column; gap: 20px; }

.contact-logo {
  font-family: 'Oswald', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.contact-logo span { color: var(--teal); }
.contact-logo-img {
  height: 80px;
  width: auto;
  border-radius: 6px;
}
.contact-tagline {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
}

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.contact-icon {
  width: 40px; height: 40px;
  background: var(--navy);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-item h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 3px;
}
.contact-item a, .contact-item p {
  font-size: 15px;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.contact-item a:hover { color: var(--teal); }

.contact-company-name {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-area {
  background: var(--navy);
  border-radius: 10px;
  padding: 28px;
  color: white;
}
.service-area h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #5fd0f0;
  margin-bottom: 14px;
}
.service-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}
.service-item::before {
  content: '\2713';
  color: #5fd0f0;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.disclaimer {
  margin-top: 36px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  font-style: italic;
  border-top: 1px solid var(--gray-mid);
  padding-top: 20px;
}

/* ── FOOTER ────────────────────────────────── */
footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.45);
  text-align: center;
  padding: 20px 24px;
  font-size: 12px;
  letter-spacing: 0.5px;
}
footer span { color: #5fd0f0; }

/* ── ANIMATIONS ────────────────────────────── */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ────────────────────────────── */
@media (max-width: 768px) {
  .danger-grid { grid-template-columns: 1fr; }
  nav { padding: 0 16px; }
  .nav-links { display: none; }
}

@media (max-width: 600px) {
  .steps-big { grid-template-columns: 1fr; }
  .danger-grid { gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .steps-big { grid-template-columns: 1fr; }
}
