:root {
  --blue: #0f3f6f;
  --teal: #0f766e;
  --green: #3f7d20;
  --sand: #f6f1e8;
  --ink: #102033;
  --muted: #5c6b7a;
  --white: #ffffff;
  --line: #dfe7ec;
  --shadow: 0 18px 45px rgba(16,32,51,.14);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  color: var(--white);
  font-weight: 800;
  letter-spacing: .04em;
}
.brand strong { display: block; font-size: 1rem; }
.brand small { display: block; color: var(--muted); font-size: .78rem; }
.nav { display: flex; align-items: center; gap: 22px; font-size: .95rem; font-weight: 600; }
.nav a:hover { color: var(--teal); }
.nav-cta { padding: 10px 16px; border-radius: 999px; color: var(--white) !important; background: var(--teal); }
.hero {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  padding: 100px clamp(20px, 6vw, 80px);
  background:
    linear-gradient(90deg, rgba(6,28,44,.86), rgba(6,28,44,.45), rgba(6,28,44,.08)),
    url("images/elc_hero_at4x.png") center/cover no-repeat;
}
.hero-content { position: relative; max-width: 760px; color: var(--white); }
.eyebrow { margin: 0 0 12px; color: #c7822b; font-weight: 800; text-transform: uppercase; letter-spacing: .09em; font-size: .78rem; }
.hero .eyebrow { color: #f5bd64; }
h1 { margin: 0; font-size: clamp(2.4rem, 6vw, 5.4rem); line-height: .98; letter-spacing: -.055em; }
.hero-text { max-width: 700px; margin: 24px 0 0; font-size: clamp(1.05rem, 2vw, 1.35rem); color: rgba(255,255,255,.92); }
.hero-actions, .quick-quote, .final-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-actions { margin-top: 32px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 800;
  border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.button:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.primary { background: var(--teal); color: var(--white); }
.secondary { color: var(--white); border-color: rgba(255,255,255,.75); background: rgba(255,255,255,.08); }
.light { background: var(--white); color: var(--teal); }
.trust-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 26px; }
.trust-row span {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.24);
  font-weight: 700;
  font-size: .9rem;
}
.quick-quote {
  justify-content: space-between;
  padding: 30px clamp(20px, 6vw, 80px);
  background: var(--sand);
  border-bottom: 1px solid var(--line);
}
.quick-quote h2, .quick-quote p { margin: 0; }
.quick-quote p { color: var(--muted); margin-top: 4px; }
.section { padding: 84px clamp(20px, 6vw, 80px); }
.section-heading { max-width: 820px; margin: 0 auto 38px; text-align: center; }
.section-heading.left { text-align: left; margin: 0; }
h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.25rem); line-height: 1.05; letter-spacing: -.04em; }
h3 { margin: 0 0 8px; font-size: 1.15rem; }
.section-heading p, .card p, .step p, .about p, .pricing p, .faq p { color: var(--muted); }
.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 10px 25px rgba(16,32,51,.05);
}
.card::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 10px;
  background: rgba(15,118,110,.1);
  color: var(--teal);
  font-weight: 900;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  background: #fbfcfd;
}
.steps { display: grid; gap: 16px; }
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
}
.step span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-weight: 900;
}
.storm {
  position: relative;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(15,63,111,.96), rgba(15,118,110,.86)),
    url('https://images.unsplash.com/photo-1500674425229-f692875b0ab7?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
}
.storm-content { max-width: 820px; }
.storm p { color: rgba(255,255,255,.9); font-size: 1.08rem; }
.storm .fine-print { font-size: .95rem; color: rgba(255,255,255,.78); }
.price-line { font-size: 1.35rem; }
.price-line strong { color: var(--teal); }
.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.checklist li {
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--white);
  font-weight: 700;
}
.checklist li::before { content: "✓"; color: var(--teal); font-weight: 900; margin-right: 10px; }
.faq-list { max-width: 920px; margin: 0 auto; display: grid; gap: 12px; }
details { border: 1px solid var(--line); border-radius: 18px; padding: 20px 22px; background: var(--white); }
summary { cursor: pointer; font-weight: 800; font-size: 1.05rem; }
.final-cta {
  flex-direction: column;
  text-align: center;
  padding: 80px 20px;
  background: var(--sand);
}
.final-cta p { max-width: 680px; color: var(--muted); }
.footer { padding: 32px 20px; text-align: center; color: rgba(255,255,255,.75); background: var(--ink); }
.footer p { margin: 4px 0; }
@media (max-width: 920px) {
  .nav { display: none; }
  .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split { grid-template-columns: 1fr; }
  .hero { min-height: 610px; }
}
@media (max-width: 640px) {
  .site-header { padding: 13px 16px; }
  .brand small { display: none; }
  .hero { min-height: auto; padding: 86px 20px; }
  .hero-actions .button, .quick-quote .button, .final-cta .button { width: 100%; }
  .cards { grid-template-columns: 1fr; }
  .section { padding: 62px 20px; }
  .quick-quote { align-items: stretch; }
}
