/* ============================================
   HAIL DAMAGE PAGE — Divided Sky Roofing + Exteriors
   ============================================ */

/* --- Hide old Zephyr elements --- */
.ds-hail-page .l-header,
.ds-hail-page .w-header,
.ds-hail-page .l-footer,
.ds-hail-page .w-footer,
.ds-hail-page .l-titlebar,
.ds-hail-page .w-toplink,
.ds-hail-page .w-nav,
.ds-hail-page .us-footer,
.ds-hail-page .l-main,
.ds-hail-page .us-footer-terms,
.ds-hail-page .w-footer-terms,
.ds-hail-page [class*="footer-terms"],
.ds-hail-page .us_error_frame,
.ds-hail-page #us_error_frame,
.ds-hail-page [id*="us_error"],
.ds-hail-page .l-section {
  display: none !important;
}

div[style*="position: fixed"][style*="z-index"][style*="right"] {
  display: none !important;
}
.w-footer-terms, .us-footer-terms, footer.us-footer {
  display: none !important;
}


/* --- HERO --- */
.hail-hero {
  position: relative;
  background: linear-gradient(135deg, #1a1a1a 0%, #2B2B2B 60%, #1e2a1e 100%);
  padding: 160px 0 100px;
  overflow: hidden;
}

.hail-hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 75% 30%, rgba(119, 232, 6, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 25% 80%, rgba(119, 232, 6, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.hail-hero-content {
  max-width: 660px;
  position: relative;
  z-index: 2;
}

.hail-hero h1 {
  font-family: 'Inter', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  color: #FFFFFF;
  margin: 12px 0 24px;
  letter-spacing: -0.03em;
}

.hail-hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 36px;
  max-width: 560px;
}


/* --- SHARED SECTION TITLE --- */
.hail-section-title {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 12px 0 48px;
  letter-spacing: -0.01em;
}


/* ============================================
   STEPS SECTION
   ============================================ */
.hail-steps {
  background: #222222;
  padding: 80px 0;
}

.hail-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.hail-step {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 32px 28px;
  transition: all 0.3s ease;
  position: relative;
}

.hail-step:hover {
  border-color: rgba(119, 232, 6, 0.2);
  background: rgba(119, 232, 6, 0.03);
  transform: translateY(-3px);
}

.hail-step-num {
  font-family: 'Inter', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(119, 232, 6, 0.2);
  margin-bottom: 16px;
  line-height: 1;
}

.hail-step h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 12px;
}

.hail-step p {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}


/* ============================================
   SIGNS OF DAMAGE
   ============================================ */
.hail-signs {
  background: #1a1a1a;
  padding: 80px 0;
}

.hail-signs-layout {}

.hail-signs-content {
  max-width: 600px;
  margin-bottom: 48px;
}

.hail-signs-intro {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

.hail-signs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.hail-sign-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 32px 28px;
  transition: all 0.3s ease;
}

.hail-sign-card:hover {
  border-color: rgba(119, 232, 6, 0.2);
  background: rgba(119, 232, 6, 0.03);
}

.hail-sign-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(119, 232, 6, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.hail-sign-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 16px;
}

.hail-sign-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hail-sign-card ul li {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
  padding: 6px 0 6px 20px;
  position: relative;
}

.hail-sign-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(119, 232, 6, 0.4);
}


/* ============================================
   HAIL INFO — SPLIT BLOCKS
   ============================================ */
.hail-info {
  background: #222222;
  padding: 80px 0;
}

.hail-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.hail-info-block {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 40px 36px;
}

.hail-info-block h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: #77E806;
  margin: 0 0 16px;
}

.hail-info-block p {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 16px;
}

.hail-info-block p:last-child {
  margin-bottom: 0;
}

.hail-info-block strong {
  color: rgba(255, 255, 255, 0.85);
}


/* ============================================
   WHY DIVIDED SKY
   ============================================ */
.hail-why {
  background: #1a1a1a;
  padding: 80px 0;
}

.hail-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.hail-why-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.hail-why-card:hover {
  border-color: rgba(119, 232, 6, 0.2);
  background: rgba(119, 232, 6, 0.03);
  transform: translateY(-3px);
}

.hail-why-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.hail-why-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 10px;
}

.hail-why-card p {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.hail-why-card a {
  color: #77E806;
  text-decoration: none;
  font-weight: 600;
}

.hail-why-card a:hover {
  text-decoration: underline;
}


/* ============================================
   CTA SECTION
   ============================================ */
.hail-cta {
  background: linear-gradient(135deg, #1a1a1a 0%, #2B2B2B 50%, #1e2a1e 100%);
  padding: 80px 0;
  position: relative;
}

.hail-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(119, 232, 6, 0.3), transparent);
}


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hail-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hail-signs-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hail-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hail-hero {
    padding: 120px 0 60px;
  }

  .hail-hero h1 {
    font-size: 2.2rem;
  }

  .hail-steps-grid {
    grid-template-columns: 1fr;
  }

  .hail-signs-grid {
    grid-template-columns: 1fr;
  }

  .hail-info-grid {
    grid-template-columns: 1fr;
  }

  .hail-why-grid {
    grid-template-columns: 1fr;
  }

  .hail-steps,
  .hail-signs,
  .hail-info,
  .hail-why {
    padding: 60px 0;
  }

  .hail-section-title {
    font-size: 1.5rem;
  }

  .hail-cta {
    padding: 60px 0;
  }

  .hail-cta h2 {
    font-size: 1.8rem !important;
  }
}

@media (max-width: 480px) {
  .hail-hero h1 {
    font-size: 1.8rem;
  }

  .hail-step, .hail-sign-card, .hail-info-block, .hail-why-card {
    padding: 24px 20px;
  }
}
