/* Page-specific styles extracted from style.css. */

.stormServices {
  position: relative;
  overflow: hidden;
  background: #fff;

  &::before {
    content: "";
    position: absolute;
    top: 132px;
    left: -150px;
    width: 328px;
    height: 328px;
    border-radius: 999px;
    background: rgba(255, 237, 212, 0.72);
    filter: blur(54px);
    pointer-events: none;
  }

  .stormServicesShell {
    position: relative;
    z-index: 1;
    width: var(--container);
    margin: 0 auto;
    padding: 44px 0 56px;
  }

  .stormServicesHeader {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    margin: 0 auto 36px;
    text-align: center;
  }

  .stormServicesTitle {
    margin: 0;
    color: #101828;
    font-size: 2rem;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.04em;
    text-wrap: balance;
  }

  .stormServicesBody {
    margin: 0;
    color: #4a5565;
    font-size: 1rem;
    line-height: 1.7;
    text-wrap: balance;
  }

  .stormServicesGrid {
    display: grid;
    gap: 20px;
  }

  .stormServicesCard {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 32px;
    border: 1px solid #fff7ed;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.1);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
  }

  .stormServicesCard:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
  }

  .stormServicesIcon {
    width: auto;
    max-width: 56px;
    height: 56px;
    margin-bottom: 28px;
    object-fit: contain;
    object-position: left center;
    align-self: flex-start;
  }

  .stormServicesCardTitle {
    margin: 0 0 8px;
    color: #101828;
    font-size: 1.25rem;
    line-height: 1.25;
    font-weight: 700;
  }

  .stormServicesCardBody {
    margin: 0;
    color: #4a5565;
    font-size: 1rem;
    line-height: 1.625;
  }

  .stormServicesLinkRow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
  }

  .stormServicesLinkText {
    color: var(--orange);
    font-size: 0.875rem;
    line-height: 1.4286;
    font-weight: 700;
  }

  .stormServicesLinkBadge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 27px;
    height: 27px;
    border-radius: 999px;
    background: #fff7ed;
  }

  .stormServicesLinkIcon {
    width: 14px;
    height: 14px;
    object-fit: contain;
  }
}

@media (min-width: 768px) {
    .stormServices {
      .stormServicesShell {
        padding: 52px 0 60px;
      }

      .stormServicesHeader {
        margin-bottom: 40px;
      }

      .stormServicesTitle {
        font-size: 2.5rem;
        line-height: 1.25;
      }

      .stormServicesBody {
        font-size: 1.125rem;
        line-height: 1.625;
      }

      .stormServicesGrid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }
}

@media (min-width: 1024px) {
    .stormServices {
      .stormServicesShell {
        padding: 56px 0 77px;
      }

      .stormServicesGrid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 32px;
      }

      .stormServicesCard {
        padding: 32px 32px 24px;
      }

      .stormServicesCardTitle {
        font-size: 1.375rem;
      }
    }
}

.stormSigns {
  background: #f8fafc;

  .stormSignsShell {
    width: var(--container);
    margin: 0 auto;
    display: grid;
    gap: 36px;
    padding: 56px 0 72px;
  }

  .stormSignsContent {
    display: grid;
    gap: 32px;
  }

  .stormSignsHeader {
    display: grid;
    gap: 16px;
  }

  .stormSignsTitle {
    margin: 0;
    color: #101828;
    font-size: 2rem;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.04em;
    text-wrap: balance;
  }

  .stormSignsBody {
    max-width: 33rem;
    margin: 0;
    color: #4a5565;
    font-size: 1rem;
    line-height: 1.625;
  }

  .stormSignsList {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .stormSignsItem {
    display: flex;
    gap: 14px;
    align-items: center;
    min-height: 64px;
    padding: 17px 20px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.1);
  }

  .stormSignsItemIcon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    border-radius: 999px;
    background: rgba(5, 223, 114, 0.1);
    color: #12b76a;
    font-size: 1rem;
    line-height: 1;
    font-weight: 700;
  }

  .stormSignsItemText {
    color: #364153;
    font-size: 1rem;
    line-height: 1.625;
    font-weight: 500;
  }

  .stormSignsMedia {
    position: relative;
    display: grid;
    justify-items: center;
    padding-bottom: 32px;
  }

  .stormSignsImage {
    display: block;
    width: 100%;
    border-radius: 21px;
    box-shadow: 0 22px 44px -10px rgba(0, 0, 0, 0.25);
  }

  .stormSignsBadge {
    position: absolute;
    right: 0;
    bottom: 0;
    display: inline-flex;
    gap: 16px;
    align-items: center;
    min-height: 98px;
    padding: 24px;
    border: 1px solid #f3f4f6;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1), 0 8px 10px rgba(0, 0, 0, 0.1);
  }

  .stormSignsBadgeIcon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    border-radius: 999px;
    background: #dbeafe;
  }

  .stormSignsBadgeIcon img {
    width: 24px;
    height: 24px;
  }

  .stormSignsBadgeCopy {
    display: grid;
    gap: 4px;
  }

  .stormSignsBadgeLabel {
    color: #6a7282;
    font-size: 0.75rem;
    line-height: 1.333;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .stormSignsBadgeTitle {
    color: #101828;
    font-size: 1.125rem;
    line-height: 1.556;
    font-weight: 800;
    white-space: nowrap;
  }
}

@media (min-width: 768px) {
    .stormSigns {
      .stormSignsShell {
        gap: 40px;
        padding: 72px 0 84px;
      }

      .stormSignsTitle {
        font-size: 2.5rem;
        line-height: 1.125;
      }

      .stormSignsBody {
        font-size: 1.125rem;
        line-height: 1.556;
      }

      .stormSignsItem {
        padding-right: 24px;
        padding-left: 24px;
      }

      .stormSignsMedia {
        justify-items: end;
        padding-bottom: 30px;
      }

      .stormSignsBadge {
        padding-right: 25px;
        padding-left: 25px;
      }
    }
}

@media (min-width: 1024px) {
    .stormSigns {
      .stormSignsShell {
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
        gap: 48px;
        align-items: start;
        padding: 60px 0 88px;
      }

      .stormSignsContent {
        padding-top: 2px;
      }

      .stormSignsMedia {
        min-height: 686px;
        padding-bottom: 0;
      }

      .stormSignsBadge {
        bottom: -31px;
      }
    }
}

@media (min-width: 1400px) {
    .stormSigns {
      .stormSignsBadge {
        right: -41px;
      }
    }
}

.stormNotAlone {
  background: #fff;

  .stormNotAloneShell {
    width: var(--container);
    margin: 0 auto;
    padding: 56px 0 52px;
  }

  .stormNotAloneHeader {
    display: grid;
    gap: 16px;
    justify-items: center;
    max-width: 56rem;
    margin: 0 auto 36px;
    text-align: center;
  }

  .stormNotAloneTitle {
    margin: 0;
    color: #101828;
    font-size: 2rem;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.04em;
    text-wrap: balance;
  }

  .stormNotAloneBody {
    margin: 0;
    color: #4a5565;
    font-size: 1rem;
    line-height: 1.625;
    text-wrap: balance;
  }

  .stormNotAloneGrid {
    display: grid;
    gap: 20px;
  }

  .stormNotAloneCard {
    display: grid;
    justify-items: center;
    gap: 16px;
    min-height: 258px;
    padding: 32px 28px;
    border: 1px solid #f3f4f6;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.1);
    text-align: center;
  }

  .stormNotAloneIconWrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 999px;
  }

  .stormNotAloneIconWrapBlue {
    background: #eff6ff;
  }

  .stormNotAloneIconWrapPurple {
    background: #faf5ff;
  }

  .stormNotAloneIconWrapGreen {
    background: #f0fdf4;
  }

  .stormNotAloneIconWrapOrange {
    background: #fff7ed;
  }

  .stormNotAloneIcon {
    width: 32px;
    height: 32px;
    object-fit: contain;
  }

  .stormNotAloneCardTitle {
    margin: 0;
    color: #101828;
    font-size: 1.25rem;
    line-height: 1.4;
    font-weight: 700;
  }

  .stormNotAloneCardBody {
    margin: 0;
    color: #4a5565;
    font-size: 1rem;
    line-height: 1.5;
  }

  .stormNotAloneNote {
    margin: 20px 0 0;
    color: #6a7282;
    font-size: 0.875rem;
    line-height: 1.4286;
    font-weight: 500;
    text-align: center;
  }
}

@media (min-width: 768px) {
    .stormNotAlone {
      .stormNotAloneShell {
        padding: 72px 0 56px;
      }

      .stormNotAloneHeader {
        margin-bottom: 40px;
      }

      .stormNotAloneTitle {
        font-size: 2.5rem;
        line-height: 1.125;
      }

      .stormNotAloneBody {
        max-width: 56rem;
        font-size: 1.125rem;
        line-height: 1.625;
      }

      .stormNotAloneGrid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 32px;
      }

      .stormNotAloneNote {
        margin-top: 24px;
      }
    }
}

@media (min-width: 1024px) {
    .stormNotAlone {
      .stormNotAloneShell {
        padding: 80px 0 56px;
      }

      .stormNotAloneGrid {
        gap: 32px;
      }

      .stormNotAloneCard {
        padding-right: 32px;
        padding-left: 32px;
      }
    }
}

.heroStorm {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.42)),
    url("../img/storm-dmg-bg.webp") center/cover;

  .heroStormShell {
    width: var(--container);
    margin: 0 auto;
    padding: 56px 0 64px;
  }

  .heroStormContent {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 100%;
  }

  .heroStormTitle {
    margin: 0;
    font-size: clamp(2.55rem, 10vw, 4.2rem);
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -0.05em;
    text-wrap: balance;
  }

  .heroStormBody {
    max-width: 44rem;
    margin: 0;
    color: #d1d5dc;
    font-size: 1rem;
    line-height: 1.7;
  }

  .heroStormActions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }

  .heroStormPrimary,
  .heroStormSecondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    width: 100%;
    padding: 14px 24px;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
  }

  .heroStormPrimary:hover,
  .heroStormSecondary:hover {
    transform: translateY(-1px);
  }

  .heroStormPrimary {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .heroStormSecondary {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.08), 0 4px 6px rgba(0, 0, 0, 0.08);
  }

  .heroStormMeta {
    margin: 0;
    color: #d1d5dc;
    font-size: 0.875rem;
    line-height: 1.45;
    opacity: 0.8;
  }
}

@media (min-width: 768px) {
    .heroStorm {
      background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 48%, rgba(0, 0, 0, 0.08) 100%),
        url("../img/storm-dmg-bg.webp") center/cover;

      .heroStormShell {
        padding: 88px 0 96px;
      }

      .heroStormContent {
        gap: 28px;
        max-width: 44rem;
      }

      .heroStormTitle {
        font-size: clamp(3.5rem, 7vw, 4.8rem);
      }

      .heroStormBody {
        font-size: 1.125rem;
        line-height: 1.625;
      }

      .heroStormActions {
        flex-direction: row;
        align-items: center;
        width: auto;
      }

      .heroStormPrimary,
      .heroStormSecondary {
        width: auto;
        min-height: 62px;
        padding: 15px 28px;
      }
    }
}

@media (min-width: 1024px) {
    .heroStorm {
      min-height: 800px;
      background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 48%, rgba(0, 0, 0, 0) 100%),
        url("../img/storm-dmg-bg.webp") center/cover;

      .heroStormShell {
        display: flex;
        align-items: flex-start;
        min-height: 800px;
        padding: 110px 0 34px;
      }

      .heroStormContent {
        gap: 29px;
        max-width: 48rem;
      }

      .heroStormTitle {
        max-width: 45rem;
        font-size: 4.375rem;
        line-height: 1;
      }

      .heroStormBody {
        max-width: 44rem;
        font-size: 1.25rem;
        line-height: 1.625;
      }

      .heroStormSecondary {
        padding-right: 31px;
        padding-left: 31px;
      }

      .heroStormMeta {
        max-width: 34rem;
      }
    }
}
