
  :root {
    --navy: #0d1b3e;
    --navy-mid: #162654;
    --red: #d81f2a;
    --red-hover: #b81820;
    --orange: #e05a00;
    --amber: #f59e0b;
    --cream: #f5f3ee;
    --white: #ffffff;
    --text-dark: #0d1b3e;
    --text-muted: #6b7280;
    --border: #e5e7eb;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body { font-family: 'Barlow', 'Arial Narrow', Arial, sans-serif; background: var(--white); color: var(--text-dark); overflow-x: hidden; }

  /* EMERGENCY TOP BAR - pulsing red */
  .emergency-bar {
    background: var(--red);
    color: white;
    text-align: center;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    animation: pulse-bar 2s ease-in-out infinite;
  }
  @keyframes pulse-bar {
    0%, 100% { background: #d81f2a; }
    50% { background: #b81820; }
  }
  .emergency-bar .alarm-icon { font-size: 20px; animation: blink 1s step-start infinite; }
  @keyframes blink { 50% { opacity: 0; } }
  .emergency-bar a.call-now-btn {
    background: white;
    color: var(--red);
    padding: 6px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 15px;
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: 0.02em;
  }

  /* HEADER */
  header {
    background: var(--navy);
    padding: 14px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 16px rgba(0,0,0,0.4);
  }
  .logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
  .logo img.mascot { width: 56px; height: 56px; object-fit: cover; border-radius: 50%; border: 2px solid var(--red); }
  .logo-text .name { font-family: 'Barlow Condensed', Arial, sans-serif; font-weight: 800; font-size: 22px; color: white; line-height: 1; }
  .logo-text .tagline { font-size: 10px; letter-spacing: 0.08em; color: rgba(255,255,255,0.5); font-weight: 600; text-transform: uppercase; }
  .header-phone { text-align: right; }
  .header-phone .label { font-size: 11px; color: rgba(255,255,255,0.55); font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; }
  .header-phone a {
    display: block;
    font-family: 'Barlow Condensed', Arial, sans-serif;
    font-size: 30px;
    font-weight: 900;
    color: white;
    text-decoration: none;
    line-height: 1.1;
    letter-spacing: 0.02em;
  }
  .header-phone a:hover { color: #fca5a5; }

  /* HERO - dark urgent */
  .hero {
    background: #0a0f1e;
    background-image: linear-gradient(135deg, #0a0f1e 0%, #1a0505 100%);
    min-height: 580px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
    padding: 60px 80px;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(216,31,42,0.18) 0%, transparent 70%);
    pointer-events: none;
  }

  .alarm-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(216,31,42,0.2);
    border: 1px solid rgba(216,31,42,0.5);
    color: #fca5a5;
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }
  .alarm-dot {
    width: 8px; height: 8px;
    background: var(--red);
    border-radius: 50%;
    animation: blink 1s step-start infinite;
  }

  .hero h1 {
    font-family: 'Barlow Condensed', Arial, sans-serif;
    font-weight: 900;
    font-size: 68px;
    color: white;
    line-height: 0.92;
    margin-bottom: 22px;
    text-transform: uppercase;
  }
  .hero h1 .accent { color: var(--red); }
  .hero h1 .highlight { color: #fbbf24; }

  .hero-desc {
    color: rgba(255,255,255,0.82);
    font-size: 17px;
    line-height: 1.65;
    max-width: 520px;
    margin-bottom: 32px;
  }

  /* BIG PHONE CTA */
  .phone-cta-block { margin-bottom: 28px; }
  .phone-cta-block .label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 8px;
  }
  .phone-cta-block a.big-phone {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: var(--red);
    color: white;
    text-decoration: none;
    padding: 18px 32px;
    border-radius: 12px;
    font-family: 'Barlow Condensed', Arial, sans-serif;
    font-size: 42px;
    font-weight: 900;
    letter-spacing: 0.02em;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 0 0 0 rgba(216,31,42,0.6);
    animation: phone-pulse 2s ease-out infinite;
  }
  @keyframes phone-pulse {
    0% { box-shadow: 0 0 0 0 rgba(216,31,42,0.6); }
    70% { box-shadow: 0 0 0 18px rgba(216,31,42,0); }
    100% { box-shadow: 0 0 0 0 rgba(216,31,42,0); }
  }
  .phone-cta-block a.big-phone:hover { background: var(--red-hover); transform: translateY(-2px); }
  .phone-cta-block .phone-icon { width: 36px; height: 36px; }
  .phone-cta-block .availability {
    margin-top: 10px;
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    font-weight: 500;
  }
  .availability-dot {
    display: inline-block;
    width: 8px; height: 8px;
    background: #22c55e;
    border-radius: 50%;
    margin-right: 6px;
    animation: pulse-green 2s ease-in-out infinite;
  }
  @keyframes pulse-green {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
  }

  .hero-trust-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  .trust-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.85);
    padding: 7px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
  }
  .trust-pill img { width: 15px; height: 15px; }

  /* ALARM EXPLAINER CARD */
  .alarm-card {
    background: white;
    border-radius: 18px;
    padding: 30px 26px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.5);
    border-top: 4px solid var(--red);
  }
  .alarm-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
  }
  .alarm-indicator {
    width: 52px;
    height: 52px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    animation: pulse-red 1.5s ease-in-out infinite;
    flex-shrink: 0;
  }
  @keyframes pulse-red {
    0%, 100% { box-shadow: 0 0 0 0 rgba(216,31,42,0.5); }
    50% { box-shadow: 0 0 0 12px rgba(216,31,42,0); }
  }
  .alarm-card-header h3 {
    font-family: 'Barlow Condensed', Arial, sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: var(--navy);
    line-height: 1.15;
  }
  .alarm-card-header p { font-size: 13px; color: var(--text-muted); margin-top: 2px; }

  .alarm-signs {
    list-style: none;
    margin-bottom: 20px;
  }
  .alarm-signs li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
  }
  .alarm-signs li:last-child { border-bottom: none; }
  .alarm-sign-icon {
    width: 20px; height: 20px;
    background: #fef2f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
    margin-top: 1px;
  }
  .alarm-card-cta {
    background: var(--red);
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    border-radius: 10px;
    font-family: 'Barlow Condensed', Arial, sans-serif;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 0.02em;
    transition: background 0.2s;
  }
  .alarm-card-cta:hover { background: var(--red-hover); }
  .alarm-card-cta img { width: 22px; height: 22px; filter: brightness(10); }
  .alarm-card-sub {
    text-align: center;
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 8px;
    font-weight: 500;
  }

  /* URGENCY BAND */
  .urgency-band {
    background: #1a0000;
    border-top: 1px solid rgba(216,31,42,0.3);
    border-bottom: 1px solid rgba(216,31,42,0.3);
    padding: 20px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
  }
  .urgency-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.88);
    font-size: 14px;
    font-weight: 600;
  }
  .urgency-item img { width: 22px; height: 22px; }

  /* WHAT CAUSES IT */
  .causes-section { padding: 80px 80px; background: var(--cream); }
  .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: white;
    border: 1px solid var(--border);
    color: var(--navy);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
  }
  .section-tag img { width: 14px; height: 14px; }
  .section-title {
    font-family: 'Barlow Condensed', Arial, sans-serif;
    font-weight: 900;
    font-size: 46px;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 14px;
  }
  .section-sub {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 560px;
    line-height: 1.6;
    margin-bottom: 48px;
  }

  .causes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .cause-card {
    background: white;
    border-radius: 14px;
    padding: 28px;
    border: 1.5px solid var(--border);
    border-top: 4px solid var(--red);
    transition: box-shadow 0.2s, transform 0.2s;
  }
  .cause-card:hover { box-shadow: 0 8px 32px rgba(13,27,62,0.1); transform: translateY(-2px); }
  .cause-card img { width: 44px; height: 44px; margin-bottom: 16px; }
  .cause-card h4 { font-weight: 700; font-size: 17px; color: var(--navy); margin-bottom: 8px; }
  .cause-card p { color: var(--text-muted); font-size: 14px; line-height: 1.6; }
  .severity-badge {
    display: inline-block;
    margin-top: 12px;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }
  .severity-critical { background: #fef2f2; color: #991b1b; }
  .severity-urgent { background: #fff7ed; color: #9a3412; }
  .severity-warning { background: #fefce8; color: #854d0e; }

  /* WHY CALL FAST */
  .risk-section { padding: 80px 80px; background: #0a0f1e; }
  .risk-section .section-title { color: white; }
  .risk-section .section-sub { color: rgba(255,255,255,0.65); }
  .risk-section .section-tag { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); color: rgba(255,255,255,0.8); }
  .risks-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 0;
  }
  .risk-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-left: 4px solid var(--red);
    border-radius: 12px;
    padding: 24px 22px;
  }
  .risk-card h4 { font-weight: 700; font-size: 16px; color: white; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
  .risk-card h4 img { width: 20px; height: 20px; }
  .risk-card p { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.6; }

  /* PHONE CTA BAND */
  .phone-band {
    background: var(--red);
    padding: 48px 80px;
    text-align: center;
  }
  .phone-band h2 {
    font-family: 'Barlow Condensed', Arial, sans-serif;
    font-weight: 900;
    font-size: 42px;
    color: white;
    margin-bottom: 8px;
  }
  .phone-band p { color: rgba(255,255,255,0.85); font-size: 16px; margin-bottom: 24px; }
  .phone-band a.band-phone {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: white;
    color: var(--red);
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-family: 'Barlow Condensed', Arial, sans-serif;
    font-size: 46px;
    font-weight: 900;
    letter-spacing: 0.02em;
    transition: transform 0.15s, box-shadow 0.15s;
  }
  .phone-band a.band-phone:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.25); }
  .phone-band a.band-phone img { width: 36px; height: 36px; }
  .phone-band .band-sub { color: rgba(255,255,255,0.65); font-size: 13px; margin-top: 12px; font-weight: 500; }

  /* WHAT TO EXPECT */
  .steps-section { padding: 80px 80px; }
  .steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 48px;
  }
  .step-card {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 36px 22px 28px;
    text-align: center;
    position: relative;
    transition: box-shadow 0.2s;
  }
  .step-card:hover { box-shadow: 0 8px 28px rgba(13,27,62,0.1); }
  .step-num {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--red);
    color: white;
    font-family: 'Barlow Condensed', Arial, sans-serif;
    font-weight: 800;
    font-size: 16px;
    width: 28px; height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .step-card img { width: 48px; height: 48px; margin: 0 auto 14px; display: block; }
  .step-card h4 { font-weight: 700; font-size: 16px; color: var(--navy); margin-bottom: 8px; }
  .step-card p { color: var(--text-muted); font-size: 13px; line-height: 1.6; }

  /* CREDENTIALS BAR */
  .creds-bar {
    background: var(--navy);
    padding: 40px 80px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 28px;
  }
  .cred-item { text-align: center; }
  .cred-item img.cred-icon { width: 52px; height: 52px; margin: 0 auto 10px; display: block; }
  .cred-item a img.bbb-cred-img { height: 56px; width: auto; display: block; margin: 0 auto 6px; border: 0; }
  .cred-label { color: white; font-weight: 700; font-size: 15px; }
  .cred-sub { color: rgba(255,255,255,0.55); font-size: 12px; margin-top: 2px; }

  /* FAQ */
  .faq-section { padding: 80px 80px; background: var(--cream); }
  .faq-list { margin-top: 40px; max-width: 780px; margin-left: auto; margin-right: auto; }
  .faq-item { border: 1.5px solid var(--border); border-radius: 10px; margin-bottom: 10px; background: white; overflow: hidden; }
  .faq-q { padding: 18px 22px; font-weight: 600; font-size: 15px; cursor: pointer; display: flex; align-items: center; justify-content: space-between; color: var(--navy); user-select: none; }
  .faq-q .arrow { transition: transform 0.3s; font-size: 12px; color: var(--text-muted); }
  .faq-item.open .faq-q .arrow { transform: rotate(180deg); }
  .faq-a { padding: 0 22px; max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.3s; color: var(--text-muted); font-size: 14px; line-height: 1.75; }
  .faq-item.open .faq-a { max-height: 300px; padding: 0 22px 18px; }

  /* FOOTER CTA */
  .footer-cta { background: var(--navy); padding: 64px 80px; text-align: center; }
  .footer-cta h2 { font-family: 'Barlow Condensed', Arial, sans-serif; font-weight: 900; font-size: 52px; color: white; margin-bottom: 10px; }
  .footer-cta p { color: rgba(255,255,255,0.7); font-size: 16px; margin-bottom: 28px; }
  .footer-cta a.footer-phone {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: var(--red);
    color: white;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-family: 'Barlow Condensed', Arial, sans-serif;
    font-size: 46px;
    font-weight: 900;
    letter-spacing: 0.02em;
    transition: background 0.2s, transform 0.15s;
  }
  .footer-cta a.footer-phone:hover { background: var(--red-hover); transform: translateY(-2px); }
  .footer-cta a.footer-phone img { width: 36px; height: 36px; filter: brightness(10); }

  footer { background: #f9f8f5; padding: 22px 80px; text-align: center; border-top: 1px solid var(--border); color: var(--text-muted); font-size: 13px; }
  footer a { color: var(--navy); text-decoration: none; font-weight: 600; }

  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; padding: 40px 24px; min-height: auto; }
    .hero h1 { font-size: 48px; }
    .phone-cta-block a.big-phone { font-size: 30px; padding: 14px 22px; }
    .causes-grid { grid-template-columns: 1fr; }
    .risks-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr 1fr; }
    .causes-section, .risk-section, .steps-section, .faq-section, .footer-cta { padding: 56px 24px; }
    .urgency-band, .phone-band, .creds-bar { padding: 28px 24px; }
    header { padding: 12px 20px; }
    .phone-band a.band-phone, .footer-cta a.footer-phone { font-size: 32px; padding: 14px 24px; }
    footer { padding: 22px 24px; }
  }

  /* Sticky call bar */
  .sticky-call-bar{position:fixed;bottom:0;left:0;right:0;z-index:9999;background:#b81820;color:white;padding:14px 24px;display:flex;align-items:center;justify-content:center;gap:16px;box-shadow:0 -4px 20px rgba(0,0,0,0.3);transform:translateY(100%);transition:transform 0.3s ease;}
  .sticky-call-bar.visible{transform:translateY(0);}
  .sticky-call-bar .sticky-msg{font-size:15px;font-weight:700;margin:0;}
  .sticky-call-bar a.sticky-btn{background:white;color:var(--red);padding:10px 24px;border-radius:50px;font-family:"Barlow Condensed",Arial,sans-serif;font-size:22px;font-weight:900;text-decoration:none;white-space:nowrap;animation:phone-pulse 2s ease-out infinite;}
  .sticky-call-bar .sticky-close{background:none;border:none;color:rgba(255,255,255,0.7);font-size:20px;cursor:pointer;padding:0 4px;line-height:1;margin-left:8px;}
  /* Mid-page call band — after causes */
  .mid-call-band{background:var(--navy);padding:40px 80px;display:flex;align-items:center;justify-content:space-between;gap:24px;flex-wrap:wrap;}
  .mid-call-band .mcb-left h3{font-family:"Barlow Condensed",Arial,sans-serif;font-weight:900;font-size:32px;color:white;line-height:1;margin-bottom:6px;}
  .mid-call-band .mcb-left p{color:rgba(255,255,255,0.65);font-size:14px;}
  .mid-call-band a.mcb-btn{display:inline-flex;align-items:center;gap:10px;background:var(--red);color:white;text-decoration:none;padding:16px 32px;border-radius:12px;font-family:"Barlow Condensed",Arial,sans-serif;font-size:34px;font-weight:900;white-space:nowrap;animation:phone-pulse 2s ease-out infinite;}
  .mid-call-band a.mcb-btn:hover{background:#b81820;}
  /* Post-FAQ call band */
  .post-faq-band{background:var(--red);padding:52px 80px;text-align:center;}
  .post-faq-band h2{font-family:"Barlow Condensed",Arial,sans-serif;font-weight:900;font-size:44px;color:white;line-height:1;margin-bottom:10px;}
  .post-faq-band p{color:rgba(255,255,255,0.85);font-size:16px;margin-bottom:28px;}
  .post-faq-band a.pfq-btn{display:inline-flex;align-items:center;gap:12px;background:white;color:var(--red);text-decoration:none;padding:18px 40px;border-radius:12px;font-family:"Barlow Condensed",Arial,sans-serif;font-size:42px;font-weight:900;transition:transform 0.15s,box-shadow 0.15s;}
  .post-faq-band a.pfq-btn:hover{transform:translateY(-2px);box-shadow:0 8px 28px rgba(0,0,0,0.2);}
  .post-faq-band .pfq-sub{color:rgba(255,255,255,0.65);font-size:13px;margin-top:14px;}
  @media(max-width:960px){.mid-call-band{padding:32px 24px;flex-direction:column;text-align:center;}.post-faq-band{padding:40px 24px;}.post-faq-band a.pfq-btn{font-size:32px;padding:14px 28px;}}

