    :root{
      /* Brand palette */
      --primary-blue:#020288;
      --secondary-blue:#4C9FD6;
      --deep-blue:#263064;
      --gold:#ECA941;
      --neutral-grey:#414042;

      --soft:#f5f7fb;
      --border:#e6eaf3;
      --shadow: 0 18px 60px rgba(22, 34, 67, .14);
      --shadow-soft: 0 10px 30px rgba(22, 34, 67, .10);

      --grad-hero: linear-gradient(90deg, rgba(38,48,100,.92) 0%, rgba(38,48,100,.82) 45%, rgba(76,159,214,.35) 100%);
      --grad-soft: linear-gradient(135deg, rgba(76,159,214,.10) 0%, rgba(38,48,100,.06) 45%, rgba(245,247,251,1) 100%);
      --grad-warm: linear-gradient(140deg, rgba(236,169,65,.18) 0%, rgba(76,159,214,.08) 45%, rgba(255,255,255,1) 100%);
       --nav-h: 46px;
    }

    html, body { height: 100%; }
    body{
      font-family: "avenir-lt-pro", sans-serif;
      color: var(--neutral-grey);
      background: #fff;
      scroll-behavior: smooth;
    }

    /* Helpers */
    .text-ink{ color: var(--deep-blue) !important; }
    .text-primarybrand{ color: var(--primary-blue) !important; }
    .text-gold{ color: var(--gold) !important; }
    .bg-soft{ background: var(--soft) !important; }
    .bg-grad-soft{ background: var(--grad-soft) !important; }
    .bg-grad-warm{ background: var(--grad-warm) !important; }
    .border-soft{ border-color: var(--border) !important; }

    /* Buttons */
    .btn-primary{
      --bs-btn-bg: var(--primary-blue);
      --bs-btn-border-color: var(--primary-blue);
      --bs-btn-hover-bg: var(--deep-blue);
      --bs-btn-hover-border-color: var(--deep-blue);
      --bs-btn-active-bg: var(--deep-blue);
      --bs-btn-active-border-color: var(--deep-blue);
      border-radius: 999px;
      padding: .75rem 1.05rem;
      box-shadow: 0 10px 24px rgba(32,85,149,.22);
    }
    .btn-outline-primary{
      --bs-btn-color: var(--primary-blue);
      --bs-btn-border-color: rgba(32,85,149,.45);
      --bs-btn-hover-bg: var(--primary-blue);
      --bs-btn-hover-border-color: var(--primary-blue);
      border-radius: 999px;
      padding: .75rem 1.05rem;
    }
    .btn-outline-light{
      border-radius: 999px;
      padding: .75rem 1.05rem;
    }

    /* Cards */
    .card-elev{
      border: 1px solid var(--border);
      border-radius: 1.25rem;
      background: #fff;
      box-shadow: var(--shadow-soft);
      transition: all .25s ease;
    }
    .card-elev:hover{ 
        box-shadow: var(--gold);
        border: 1px solid var(--gold);
         transform: translateY(-2px);    
    }

    .accordion-body{
      font-size: .9rem;
    }

    /* Process cards */
    #process .card-elev{
      background: var(--deep-blue);
      border-color: rgba(255,255,255,.15);
    }
    #process .card-elev .text-ink,
    #process .card-elev .text-secondary{
      color: rgba(255,255,255,.9) !important;
    }
    #process .card-elev .icon-pill{
      background: rgba(255,255,255,.12);
      border-color: rgba(255,255,255,.2);
      color: #fff;
    }

    /* Sections */
    .section{
      padding: 2.5rem 0;
      position: relative;
      overflow: hidden;
    }
    .section-title{
      font-family: "avenir-lt-pro", sans-serif;
      font-weight: 700;
      color: var(--deep-blue);
    }
    .section-kicker{
      font-family: "avenir-lt-pro", sans-serif;
      font-weight: 600;
      letter-spacing: .12em;
      text-transform: uppercase;
      font-size: .78rem;
      color: rgba(38,48,100,.75);
    }
    .ghost-title{
      position:absolute;
      inset: 0 auto auto 0;
      transform: translate(-2%, -18%);
      font-family: "avenir-lt-pro", sans-serif;
      font-weight: 700;
      font-size: clamp(2.2rem, 6vw, 5rem);
      letter-spacing: .08em;
      color: rgba(38,48,100,.06);
      pointer-events:none;
      user-select:none;
      white-space: nowrap;
    }

    /* Navbar */
    .navbar{
      background: linear-gradient(90deg, #ffffff 0%, #E1E2E3 55%, #C9CCD1 100%);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(230,234,243,.7);
    }
    .navbar .nav-link{
      color: var(--deep-blue);
      font-weight: 700;
      font-size: .92rem;
    }
    .navbar .nav-link:hover{ color: var(--primary-blue); }
    .navbar .nav-link.active{ color: var(--deep-blue); }
    .navbar-brand img{
      height: auto;
      max-height: 65px;
      width: auto;
      display: block;
      object-fit: contain;
    }
    .navbar-toggler{
      border: 1px solid rgba(38,48,100,.20);
      border-radius: .9rem;
      padding: .35rem .55rem;
    }
    .navbar .dropdown-menu{
      border: 1px solid var(--border);
      border-radius: .9rem;
      padding: .4rem;
      box-shadow: var(--shadow-soft);
      background: #fff;
      min-width: 14rem;
    }
    .navbar .dropdown-item{
      font-size: .82rem;
      font-weight: 600;
      color: var(--deep-blue);
      border-radius: .65rem;
      padding: .5rem .75rem;
      line-height: 1.2;
      letter-spacing: .01em;
    }
    .navbar .dropdown-item:hover,
    .navbar .dropdown-item:focus{
      background: var(--grad-warm);
      color: var(--primary-blue);
    }
    .navbar .dropdown-item.active,
    .navbar .dropdown-item:active{
      background: var(--grad-soft);
      color: var(--deep-blue);
    }

  
    .chip{
      display:inline-flex;
      align-items:center;
      gap:.45rem;
      border-radius:999px;
      padding:.35rem .75rem;
      font-weight:700;
      font-size:.85rem;
      background: rgba(255,255,255,.12);
      border:1px solid rgba(255,255,255,.16);
      color:#fff;
      text-decoration:none;
      transition: all .18s ease;
    }
    .chip:hover{ transform: translateY(-1px); background: rgba(255,255,255,.18); }

    /* Hero dropdown */
    .hero-dropdown{
      margin-top: .75rem;
      border: 1px solid rgba(255,255,255,.16);
      background: rgba(0,0,0,.22);
      border-radius: 1rem;
      overflow: hidden;
    }
    .hero-dd-btn{
      width: 100%;
      text-align: left;
      border: 0;
      background: rgba(255,255,255,.06);
      color: #fff;
      padding: .7rem .9rem;
      display:flex;
      align-items:center;
      gap:.6rem;
    }
    .hero-dd-btn:hover{ background: rgba(255,255,255,.10); }
    .hero-dd-btn + .hero-dd-btn{ border-top: 1px solid rgba(255,255,255,.10); }

    /* KPIs */
    .kpi{
      border-radius: 1.25rem;
      border: 1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.08);
      backdrop-filter: blur(10px);
      padding: 1rem 1.1rem;
    }
    .kpi .num{
      font-family: "avenir-lt-pro", sans-serif;
      font-weight: 700;
      font-size: 1.65rem;
      line-height: 1;
    }
    .kpi .lbl{
      color: rgba(36, 30, 30, 0.8);
      font-size: .9rem;
    }

    .stats3{
        overflow:hidden;
        /* padding: 1.38rem .38rem; */
        width:100%;
        min-height: calc(40vh - var(--nav-h));
        display:flex;
        flex-direction:column;
        justify-content:center;
        border-top: 1px solid rgba(255,255,255,.10);
        border-bottom: 1px solid rgba(255,255,255,.10);
    }
        .stats3-track{
            position:relative;
            /* margin: .75rem auto 0; */
            height: 8px;
            background: rgba(255,255,255,.14);
            border-radius: 999px;
            overflow:hidden;
        }

        /* Continuous moving "flow" line */
        .stats3-fill{
        position:absolute;
        inset:0;
        width: 200%;              /* wider so it can slide continuously */
        height: 100%;
        border-radius: 999px;
        background: linear-gradient(
            90deg,
            transparent 0%,
            rgba(76,159,214,.85) 20%,
            rgba(236,169,65,.35) 50%,
            rgba(76,159,214,.85) 80%,
            transparent 100%
        );
        opacity: .85;
        transform: translateX(-50%);
        animation: stats3Flow 2.6s linear infinite;
        will-change: transform;
        }

        /* Start the moving line only when section is visible */
        .stats3:not(.is-visible) .stats3-fill{
        animation-play-state: paused;
        opacity: .55;
        }

        /* Smooth continuous motion */
        @keyframes stats3Flow{
        from { transform: translateX(-50%); }
        to   { transform: translateX(0%); }
        }

        /* Reduced motion */
        @media (prefers-reduced-motion: reduce){
        .stats3-fill{ animation: none !important; transform:none !important; opacity:.65; }
        }

        .stats3-grid{
        display:grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        margin-top: .25rem;
        }

        .stats3-item{
        text-align:center;
        opacity:0;
        transform: translateY(14px);
        transition: opacity .55s ease, transform .55s ease;
        }

        .stats3-dot{
        width: 14px; height: 14px;
        border-radius: 999px;
        margin: 0 auto .85rem;
        background: rgba(76,159,214,.95);
        box-shadow: 0 0 0 8px rgba(76,159,214,.18);
        }

        .stats3-num{
            color: var(--primary-blue);
            font-family: "good-times", sans-serif;
            font-weight: 850;
            letter-spacing:-1px;
            line-height:1;
            font-size: clamp(3rem, 5.2vw, 5.4rem);
            text-shadow:  5.5px 2px  #d2d2d2;
        }

        .stats3-label{
            margin-top:.55rem;
            color: var(--deep-blue);
            font-size: 1.12rem;
            font-family: "avenir-lt-pro", sans-serif;
        }

        .stats3.is-visible .stats3-item{ opacity:1; transform: translateY(0); }
        .stats3.is-visible .stats3-item:nth-child(1){ transition-delay:.05s; }
        .stats3.is-visible .stats3-item:nth-child(2){ transition-delay:.14s; }
        .stats3.is-visible .stats3-item:nth-child(3){ transition-delay:.23s; }
        .stats3.is-visible .stats3-fill{ width: 100%; }

        @media (max-width: 991px){
        .stats3-grid{ grid-template-columns: 1fr; text-align:left; }
        .stats3-item{ text-align:left; }
        .stats3-dot{ margin: 0 0 .85rem; }
        }
        @media (max-width: 576px){
        .stats3-grid{
          grid-template-columns: repeat(3, minmax(0, 1fr));
          gap: .2rem;
          text-align: center;
        }
        .stats3-item{
          text-align: center;
        }
        .stats3-num{
          font-size: clamp(2rem, 8.2vw, 2.6rem);
        }
        .stats3-label{
          font-size: .72rem;
        }
        }
        @media (prefers-reduced-motion: reduce){
        .stats3-item{ transition:none !important; transform:none !important; opacity:1 !important; }
        .stats3-fill{ transition:none !important; width:100% !important; }
        }

    /* Sticky CTA */
    .sticky-cta{
      position: fixed;
      right: 16px;
      bottom: 16px;
      z-index: 1030;
      border-radius: 999px;
      padding: .6rem 2.1rem .6rem 1.2rem;
      background: #52b93f;
      color: #fff;
      text-decoration: none;
      box-shadow: 0 18px 46px rgba(82, 185, 63, 0.35);
      display: inline-flex;
      align-items: center;
      gap: .6rem;
      font-weight: 700;
      position: fixed;
    }
    .sticky-cta .cta-icon{
      width: 46px;
      height: 46px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: #45a934;
      color: #fff;
      font-size: 1.35rem;
      margin-right: -1.1rem;
      box-shadow: 0 10px 22px rgba(69, 169, 52, 0.35);
    }
    .sticky-cta:hover{
      background: #48ad38;
      color: #fff;
    }
/* Floating WhatsApp CTA - match your image style */
.wa-float{
  position: fixed;
  right: 18px;
  bottom: calc(18px + env(safe-area-inset-bottom));
  z-index: 1035;

  height: 52px;
  display: inline-flex;
  align-items: center;

  padding: 0 60px 0 20px; /* extra right space for the bubble */
  border-radius: 999px;

  background: #25D366;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .2px;

  box-shadow: 0 14px 34px rgba(0,0,0,.18);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.wa-text{
  font-size: 18px;
  line-height: 1;
  white-space: nowrap;
}

/* Right circular WhatsApp bubble */
.wa-bubble{
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);

  width: 58px;
  height: 58px;
  border-radius: 50%;

  background: #25D366;
  border: 7px solid #fff;      /* white ring like your image */
  display: grid;
  place-items: center;

  box-shadow: 0 10px 22px rgba(0,0,0,.14);
}

/* WhatsApp image */
.wa-icon{
  width: 26px;
  height: 26px;
  object-fit: contain;
  display: block;
}

/* Hover/press */
.wa-float:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(0,0,0,.22);
  filter: brightness(1.02);
}
.wa-float:active{
  transform: translateY(0);
}

@media (max-width: 576px){
  .wa-float{
    left: 16px;
    right: 16px;
    width: calc(100% - 32px);
    justify-content: center;
  }
  .wa-bubble{
    right: 8px;
  }
}


    

    /* Coverage icon pill */
    .icon-pill{
      width: 52px; height: 52px;
      border-radius: 999px;
      display:grid;
      place-items:center;
      background: rgba(32,85,149,.10);
      border: 1px solid rgba(32,85,149,.18);
      color: var(--primary-blue);
    }

    /* Tabs */
    .nav-pills .nav-link{
      border-radius: 999px;
      font-weight: 800;
      color: rgba(38,48,100,.85);
      border: 1px solid rgba(230,234,243,1);
      background: #fff;
      padding: .55rem .9rem;
    }
    .nav-pills .nav-link.active{
      background: var(--deep-blue);
      border-color: var(--deep-blue);
      color:#fff;
    }

    /* Steps */
    .step{
      display:flex; gap: 1rem;
      padding: 1rem 0;
      border-top: 1px dashed rgba(38,48,100,.18);
    }
    .step:first-child{ border-top: 0; }
    .badge-step{
      width: 38px; height: 38px;
      border-radius: 999px;
      display:grid; place-items:center;
      background: rgba(76,159,214,.14);
      border: 1px solid rgba(76,159,214,.25);
      color: var(--deep-blue);
      font-weight: 900;
    }

    /* Reveal */
    .reveal{ opacity:0; transform: translateY(12px); }
    .reveal.on{ opacity:1; transform:none; transition: all 1.7s ease; }

    /* Footer */
    .footer-cta{
      background: #060a7a;
      color: #fff;
      padding: 2.25rem 0;
    }
    .footer-cta-inner{
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
    }
    .footer-cta-text{
      font-size: clamp(.7rem, 1.8vw, 1.2rem);
      font-weight: 500;
    }
    .footer-cta-btn{
      border-width: 2px;
      padding: .7rem 1.6rem;
      font-weight: 700;
    }

    .footer-main{
      background: #f4f4f4;
      color: #232323;
      padding: 2.5rem 0 1.25rem;
      border-top: 1px solid rgba(0,0,0,.06);
    }
    .footer-title{
      font-size: 1rem;
      font-weight: 700;
      color: #111;
      margin-bottom: .75rem;
    }
    .footer-head{
      font-size: .95rem;
      font-weight: 700;
      color: #111;
      margin-bottom: .6rem;
    }
    .footer-text{
      font-size: .8rem;
      color: #333;
      margin-bottom: .6rem;
    }
    .footer-list{
      list-style: none;
      padding: 0;
      margin: 0;
      font-size: .8rem;
      color: #333;
    }
    .footer-list li{
      margin-bottom: .4rem;
    }
    .footer-list li a{
       color: #0b2a6f;
      text-decoration: none;
    }
    .footer-list li a:hover{
       color: var(--gold);
      text-decoration: none;
    }
    .footer-link{
      color: #0b2a6f;
      text-decoration: none;
    }
    .footer-link:hover{
      text-decoration: underline;
    }
    .footer-social{
      display: flex;
      gap: .6rem;
    }
    .footer-social a{
      width: 36px;
      height: 36px;
      border-radius: .6rem;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: #fff;
      border: 1px solid rgba(0,0,0,.12);
      color: #0b2a6f;
      font-size: 1.1rem;
      text-decoration: none;
    }
    .footer-bottom{
      margin-top: 1.5rem;
      padding-top: 1rem;
      border-top: 1px solid rgba(0,0,0,.08);
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      font-size: .8rem;
      color: #333;
      flex-wrap: wrap;
    }
    .footer-bottom-links{
      display: flex;
      align-items: center;
      gap: .6rem;
    }
    .footer-sep{
      color: #999;
    }
    @media (max-width: 768px){
      .footer-cta-inner{
        flex-direction: column;
        align-items: flex-start;
      }
      .footer-cta-btn{
        align-self: flex-start;
      }
    }

    @media (max-width: 992px){
      .orbit{ display:none; }
      .hero > .container{ padding-top: 5.75rem; }
    }
@media (max-width: 576px){
  .navbar-brand img{ max-height: 40px; }
  .sticky-cta{ left: 16px; right: 16px; justify-content:center; }
}

/* Advocacy section */
.advocate-section{
  position: relative;
  background: #fff;
}
.advocate-title{
  font-family: "avenir-lt-pro", sans-serif;
  font-weight: 600;
  /* font-style: italic; */
  color: var(--primary-blue);
  text-align: center;
  margin-bottom: 2rem;
}
.advocate-wrap{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  align-items: center;
  position: relative;
}
.advocate-panel{
  background: #162a6f;
  /* border-radius: 1rem; */
  height: auto;
  box-shadow: 0 22px 60px rgba(12, 27, 82, .35);
  width: clamp(300px, 52vw, 640px);
  justify-self: start;
  z-index: 2;
  display: flex;
  flex-direction: column;
  padding: 3.1rem 2.3rem 2.1rem 2.8rem;
  color: #fff;
  position: relative;
  overflow: hidden;
  margin-right: clamp(-120px, -8vw, -160px);
}
.advocate-panel::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 8px;
  background: var(--gold);
  /* border-radius: 999px; */
}
.advocate-panel-inner{
  max-width: 44ch;
  align-self: left;
  margin-bottom: 10px;
}
.advocate-company{
  max-width: 100%;
  text-align: right;
  font-size: 14px;
}
.advocate-eyebrow{
  font-size: .78rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255,255,255,.78);
}
.advocate-headline{
  font-family: "avenir-lt-pro", sans-serif;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 600;
  margin: .55rem 0 .6rem;
}
.advocate-copy{
  color: rgba(255,255,255,.82);
  margin-bottom: 1.1rem;
}
.advocate-meta{
  display:flex;
  align-items:center;
  gap:.65rem;
  font-size: .9rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
}
.advocate-dot{
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.65);
}
.advocate-image{
  /* border-radius: 1rem; */
  box-shadow: 0 18px 40px rgba(22, 34, 67, .22);
  width: clamp(360px, 60vw, 900px);
  max-width: 100%;
  display: block;
  justify-self: end;
  animation: advocate-float 6s ease-in-out infinite;
  box-shadow: 10px 10px var(--gold);
  z-index: 1;
}
.advocate-image img{
  width: 100%;
  height: auto;
  display: block;
  transition: opacity .5s ease;
}
.advocate-image img.is-swapping{
  opacity: .2;
}
@keyframes advocate-float{
  0%, 100%{ transform: translateY(0); }
  50%{ transform: translateY(-6px); }
}
@media (max-width: 991px){
  .advocate-wrap{
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .advocate-panel{
    height: auto;
    max-width: none;
    width: 100%;
    margin-right: 0;
    padding: 2rem 1.6rem 2rem 2.3rem;
  }
  .advocate-image{
    max-width: none;
    width: 100%;
    justify-self: stretch;
  }
}
@media (prefers-reduced-motion: reduce){
  .advocate-image{ animation: none !important; }
}

.advocate-panel.reveal{
  transform: translateY(28px);
}
.advocate-panel.reveal.on{
  transform: translateY(0);
  transition: opacity 1.5s ease, transform 1.5s ease;
}
.advocate-image img.reveal{
  transform: translateX(30px);
}
.advocate-image img.reveal.on{
  transform: translateX(0);
  transition: opacity 2.5s ease, transform 1.5s ease;
}



/* About section */
.about-section{
  background: linear-gradient(180deg, #e9f0fb 0%, #ffffff 70%);
  border-top: 1px solid rgba(38,48,100,.08);
  border-bottom: 1px solid rgba(38,48,100,.08);
}
.about-header{
  margin-bottom: 2.5rem;
}
.about-body{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 2.5rem;
  align-items: center;
}
.about-media{
  position: relative;
}
.about-image{
  width: 100%;
  height: auto;
  box-shadow: -10px 10px var(--gold);
  /* box-shadow: 0 20px 48px rgba(22, 34, 67, .18); */
  display: block;
  transition: opacity 1.35s ease, transform 1.35s ease;
}
.about-image.is-swapping{
  opacity: 0;
  transform: translateX(-12px);
}
.about-image.mv-hidden{
  opacity: 0;
  transform: translateX(-14px);
}
.about-image.mv-show{
  opacity: 1;
  transform: translateX(0);
  transition: opacity .5s ease, transform .5s ease;
}
.about-tabs{
  display: inline-flex;
  gap: .55rem;
  padding: .4rem;
  margin-top: 1.6rem;
  margin-bottom: 1.6rem;
  flex-wrap: wrap;
}
.about-tab{
  border: 0;
  background: transparent;
  color: var(--deep-blue);
  font-weight: 600;
  padding: .55rem 1.1rem;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease, box-shadow .2s ease;
}
.about-tab.active{
  background: var(--gold);
  color: #050404;
  box-shadow: 0 12px 28px #20559540;
}
.about-panels{
  min-height: 260px;
}
.about-panel{
  display: none;
}
.about-panel.active{
  display: block;
}
.about-panel.is-seq .mv-step{
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .5s ease, transform .5s ease;
}
.about-panel.is-seq .mv-step.mv-show{
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 991px){
  .about-body{
    grid-template-columns: 1fr;
  }
  .about-tabs{
    justify-content: center;
  }
}

/* Additional info */
.additional-info{
  margin-top: 2.5rem;
  padding: 2rem;
  /* background:
    linear-gradient(90deg, rgba(38,48,100,.06) 1px, transparent 1px) 0 0 / 48px 48px,
    linear-gradient(0deg, rgba(38,48,100,.06) 1px, transparent 1px) 0 0 / 48px 48px; */
  border-radius: 1.25rem;
}
.ai-panel{
  background: rgba(255,255,255,.9);
  /* border-radius: 1rem; */
  padding: 1.75rem 1.75rem 1.5rem;
  box-shadow: -10px 10px var(--border);
  /* box-shadow: 0 18px 40px rgba(22, 34, 67, .12); */
  transition: transform .45s ease, box-shadow .45s ease;
}
.ai-title{
  font-family: "avenir-lt-pro", sans-serif;
  font-weight: 700;
  color: var(--deep-blue);
  margin-bottom: 1rem;
}
.ai-text{
  color: rgba(38,48,100,.85);
  line-height: 1.65;
}
.ai-points{
  display: grid;
  gap: 1rem;
}
.ai-point{
  border-left: 4px solid var(--gold);
  padding-left: .9rem;
  transition: transform .4s ease, border-color .4s ease;
}
.ai-point-title{
  font-weight: 700;
  color: var(--deep-blue);
}
.ai-point-text{
  color: rgba(38,48,100,.8);
}
.ai-image-card{
  height: 80vh;
  background: #dfe6f6;
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: 10px 10px var(--gold);
  transition: transform .45s ease, box-shadow .45s ease;
}
.ai-image-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  animation: ai-zoom 14s ease-in-out infinite;
}
.ai-point:hover{
  transform: translateX(4px);
  border-color: var(--primary-blue);
}
.ai-point.reveal:nth-child(2){ transition-delay: .08s; }
.ai-point.reveal:nth-child(3){ transition-delay: .16s; }

.ai-panel.reveal{
  transform: translateX(-40px);
}
.ai-image-card.reveal{
  transform: translateX(40px);
}
.ai-panel.reveal.on{
  transform: translateX(0);
  transition: transform .8s ease, box-shadow .45s ease, opacity .7s ease;
}
.ai-image-card.reveal.on{
  transform: translateX(0);
  transition: transform 1.8s ease, box-shadow .45s ease, opacity .7s ease;
}

@keyframes ai-zoom{
  0%, 100%{ transform: scale(1); }
  50%{ transform: scale(1.03); }
}
@media (prefers-reduced-motion: reduce){
  .ai-image-card img{ animation: none; }
}
@media (max-width: 991px){
  .additional-info{
    padding: 1.5rem;
  }
  .ai-image-card{
    min-height: 240px;
  }
}
@media (max-width: 576px){
  .additional-info{
    width: 98%;
    padding: .5rem;
    margin: 0 auto;
  }
}

/* Reviews */
.review-card{
  border: 1px solid rgba(236, 169, 65, .22);
}
.review-stars{
  font-size: 1rem;
  letter-spacing: .15rem;
  margin-bottom: .75rem;
}
.review-message{
  color: rgba(38,48,100,.9);
  font-size: .98rem;
}
.review-name{
  font-weight: 700;
  color: var(--deep-blue);
}

.reviews-slider{
  position: relative;
  overflow: hidden;
  padding: .25rem 0;
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}
.reviews-track{
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: reviews-scroll 38s linear infinite;
  will-change: transform;
}
.review-card{
  flex: 0 0 clamp(240px, 28vw, 320px);
  border: 1px solid rgba(236, 169, 65, .22);
}

@keyframes reviews-scroll{
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce){
  .reviews-track{ animation: none; }
}

/* News */
.news-card{
  overflow: hidden;
  border-radius: 1.1rem;
}
.news-thumb{
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.news-thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.news-body{
  padding: 1.25rem 1.35rem 1.5rem;
}
.news-date{
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(38,48,100,.6);
  margin-bottom: .6rem;
  font-weight: 600;
}
.news-title{
  font-family: "avenir-lt-pro", sans-serif;
  font-size: 1.15rem;
  color: var(--deep-blue);
  margin: 0;
  line-height: 1.45;
}

/* Travel hero */
.travel-hero{
  position: relative;
  padding: 10.5rem 0 5.5rem;
  color: #fff;
  background: #5f6f94 url("img/travel/Travel\ Ins_1.jpg") center/cover no-repeat;
  overflow: hidden;
}
.travel-hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,42,90,.75) 0%, rgba(78, 100, 167, 0.6) 45%, rgba(115, 130, 176, 0.35) 100%);
}
.travel-hero-inner{
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.travel-hero-title{
  font-family: "avenir-lt-pro", sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  margin-bottom: 1rem;
  text-shadow: 6px 3px rgba(52, 65, 103, 0.35);
}
.travel-hero-pill{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .55rem 1.35rem;
  border-radius: 999px;
  background: #fff;
  color: var(--primary-blue);
  font-weight: 800;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  box-shadow: 0 14px 28px rgba(8, 16, 40, .25);
  margin-bottom: 1.25rem;
}
.travel-hero-text{
  font-size: clamp(.7rem, 1.5vw, 1rem);
  color: rgba(255,255,255,.9);
  margin: 0 auto;
  padding-top: 2rem;
  max-width: 900px;
  line-height: 1.6;
}

/* Travel what is it */
.travel-what{
  background: #f7f9fc;
}
.travel-what-card{
  background: rgba(255,255,255,.9);
  /* border-radius: 1rem; */
  padding: 1.75rem 1.75rem 1.5rem;
  box-shadow: -10px 10px var(--border);
  color: rgba(38,48,100,.85);
}
.travel-what-card p{
  margin-bottom: 1rem;
  line-height: 1.6;
}
.travel-what-list{
  margin: 0;
  padding-left: 1.2rem;
  color: #2d3a5d;
}
.travel-what-list li{
  margin-bottom: .45rem;
}
.travel-what-image{
  height: 65vh;
  overflow: hidden;
  box-shadow: 10px 10px var(--gold);
    /* border-radius: 1.5rem; */
  /* background: #f2b44a;
  padding: .5rem;
  box-shadow: 0 16px 36px rgba(22, 34, 67, .18); */
}
.travel-what-image img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  /* border-radius: 1.2rem; */
}
.travel-what-btn{
  border-radius: 999px;
  padding: .7rem 1.2rem;
  box-shadow: 0 12px 28px rgba(12, 28, 74, .2);
}

@media (max-width: 576px){
  .travel-what-card{
    padding: 1.2rem 1.2rem;
  }
}

/* Travel importance */
.travel-importance{
  background: #f7f9fc;
}
.travel-importance .ghost-title{
  color: rgba(38,48,100,.08);
}
.ti-card{
  background: #fff;
  border-radius: 1.4rem;
  padding: 1.5rem;
  box-shadow: 0 14px 28px rgba(22, 34, 67, .08);
  min-height: 170px;
  position: relative;
}
.ti-badge{
  width: 54px;
  height: 54px;
  min-width: 54px;
  min-height: 54px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-weight: 700;
  margin-bottom: .9rem;
  background: #fff7ea;
  flex-shrink: 0;
}
.ti-title{
  font-weight: 700;
  color: var(--deep-blue);
  line-height: 1.35;
}

/* Travel importance detail cards */
.ti-detail-card{
  background: #fff;
  border-radius: 1.5rem;
  padding: 1.5rem 1.6rem;
  border: 1px solid #e6eaf3;
  box-shadow: 0 16px 30px rgba(22, 34, 67, .08);
  height: 100%;
}
.ti-detail-head{
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: .9rem;
}
.ti-detail-head .ti-badge{
  margin-bottom: 0;
}
.ti-detail-title{
  font-weight: 700;
  color: var(--deep-blue);
  margin-bottom: .35rem;
}
.ti-detail-text{
  color: rgba(38,48,100,.82);
  font-size: .95rem;
  line-height: 1.55;
}
.ti-detail-sub{
  font-weight: 600;
  color: rgba(38,48,100,.9);
  margin-bottom: .4rem;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .25s ease, opacity .25s ease;
}
.ti-detail-card:hover .ti-detail-sub{
  max-height: 60px;
  opacity: 1;
}
.ti-detail-list{
  margin: 0 0 .65rem;
  padding-left: 1.2rem;
  color: #2d3a5d;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .25s ease, opacity .25s ease;
}
.ti-detail-list li{
  margin-bottom: .35rem;
}
.ti-detail-note{
  color: rgba(38,48,100,.78);
  font-size: .92rem;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .25s ease, opacity .25s ease;
}
.ti-detail-card:hover .ti-detail-list,
.ti-detail-card:hover .ti-detail-note{
  max-height: 200px;
  opacity: 1;
}

/* Travel plans */
.travel-plans{
  background: #f7f9fc;
}
.travel-plans .ghost-title{
  color: rgba(38,48,100,.08);
}
.travel-plans-image{
  /* border-radius: 1.6rem; */
  /* overflow: hidden; */
  /* background: var(--gold); */
  /* padding: .6rem; */
  box-shadow: 10px 10px var(--gold);
}
.travel-plans-image img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  /* border-radius: 1.2rem; */
}
.travel-plan-item{
  background: #fff;
  border-radius: 1.4rem;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 14px 28px rgba(22, 34, 67, .08);
  margin-bottom: 1.2rem;
  transition: transform .3s ease, box-shadow .3s ease;
}
.travel-plan-item:last-child{
  margin-bottom: 0;
}
.travel-plans .travel-plan-item.reveal{
  transform: translateX(40px);
}
.travel-plans .travel-plan-item.reveal.on{
  transform: translateX(0);
  transition: transform .7s ease, opacity .7s ease;
}
.travel-plans .travel-plan-item.reveal:nth-child(1){ transition-delay: .05s; }
.travel-plans .travel-plan-item.reveal:nth-child(2){ transition-delay: .15s; }
.travel-plans .travel-plan-item.reveal:nth-child(3){ transition-delay: .25s; }
.tpi-badge{
  width: 52px;
  height: 52px;
  min-width: 52px;
  min-height: 52px;
  border-radius: 999px;
  border: 2px solid var(--gold);
  background: #fff7ea;
  color: var(--gold);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.tpi-text{
  font-weight: 700;
  color: var(--deep-blue);
}
.tpi-subtext{
  display: block;
  font-weight: 500;
  color: rgba(38,48,100,.75);
  font-size: .95rem;
  margin-top: .35rem;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .35s ease, opacity .35s ease;
}
.tpi-subtext .tpi-meta{
  font-weight: 700;
  color: var(--deep-blue);
  margin-bottom: .2rem;
}
.tpi-subtext .tpi-list{
  margin: 0 0 .35rem;
  padding-left: 1.1rem;
  color: rgba(38,48,100,.82);
}
.tpi-subtext .tpi-list li{
  margin-bottom: .25rem;
}
.tpi-subtext .tpi-note{
  color: rgba(38,48,100,.7);
  font-size: .9rem;
}
.travel-plan-item:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(22, 34, 67, .12);
}
.travel-plan-item:hover .tpi-subtext{
  max-height: 220px;
  opacity: 1;
}

@media (max-width: 991px){
  .ti-card{
    min-height: 150px;
  }
}

/* Partners & Sponsors */
.ps-group .section-kicker{
  margin-bottom: .35rem;
}
.ps-logos{
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: .85rem;
}
.ps-logo{
  border: 1px dashed rgba(38,48,100,.2);
  border-radius: .9rem;
  padding: .9rem .9rem;
  text-align: center;
  font-weight: 700;
  color: var(--deep-blue);
  background: #fff;
  display: grid;
  place-items: center;
  min-height: 76px;
}
.ps-logo img{
  max-width: 140px;
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
}
@media (max-width: 991px){
  .ps-logos{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 576px){
  .ps-logos{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Responsive refinements */
@media (max-width: 992px){
  .section{
    padding: 2rem 0;
  }
  .ghost-title{
    font-size: clamp(1.6rem, 10vw, 3.2rem);
    transform: translate(-2%, -10%);
  }
  .advocate-panel{
    width: 100%;
  }
  .about-body{
    gap: 1.75rem;
  }
  .reviews-track{
    gap: 1rem;
  }
  .review-card{
    flex: 0 0 clamp(220px, 60vw, 320px);
  }
  .footer-main{
    padding-top: 2rem;
  }
  .footer-bottom{
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-bottom-links{
    gap: .4rem;
  }
}

@media (max-width: 576px){
  .section{
    padding: 1.75rem 0;
  }
  .section-title{
    font-size: 1.5rem;
  }
  .section-kicker{
    letter-spacing: .08em;
  }
  .stats3{
    min-height: auto;
    padding: 1.2rem .5rem;
  }
  .stats3-num{
    font-size: clamp(2.2rem, 11vw, 3rem);
  }
  .advocate-panel{
    height: auto;
    padding: 1.4rem 1.3rem 1.4rem 1.8rem;
  }
  .advocate-image{
    box-shadow: 6px 6px var(--gold);
  }
  .about-image{
    box-shadow: -6px 6px var(--gold);
  }
  .reviews-slider{
    mask-image: none;
  }
  .review-card{
    flex: 0 0 80vw;
  }
  .news-title{
    font-size: 1.05rem;
  }
  .travel-hero{
    padding: 6.5rem 0 4.5rem;
  }
  .travel-hero-pill{
    width: 100%;
  }
  .footer-cta{
    padding: 1.6rem 0;
  }
  .footer-cta-text{
    font-size: 1.1rem;
  }
  .footer-main{
    padding: 2rem 0 1rem;
  }
  .footer-social a{
    width: 32px;
    height: 32px;
  }
  .ps-logo img{
    max-width: 120px;
    max-height: 42px;
  }
}

/* Large screens: keep content width consistent */
@media (min-width: 1400px){
  .container{
    max-width: 1200px;
  }
  .section{
    padding: 3rem 0;
  }
}

/* Index hero */
.index-hero{
  position: relative;
  display: flex;
  align-items: center;
  padding: 9.5rem 0 6rem;
  background: url("img/AIB_Banner.png") center/cover no-repeat;
  overflow: hidden;
  height: 100vh;
}
.index-hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.86) 38%, rgba(255,255,255,.35) 68%, rgba(255,255,255,0) 100%);
}
.index-hero-inner{
  position: relative;
  display: grid;
  grid-template-columns: 6px minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  max-width: 560px;
  margin: 0;
}
.index-hero-line{
  width: 6px;
  border-radius: 999px;
  background: var(--gold);
  min-height: 120px;
}
.index-hero-title{
  margin: 0;
  color: var(--deep-blue);
  font-weight: 800;
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  line-height: 1.25;
  text-shadow: 0 1px 0 rgba(255,255,255,.6);
}



/* Travel hero */
.home-hero{
  position: relative;
  padding: 10.5rem 0 5.5rem;
  color: #fff;
  background: #5f6f94 url("img/home/Home\ Ins_1.jpg") center/cover no-repeat;
  overflow: hidden;
}
.home-hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(90, 74, 26, 0.75) 0%, rgba(167, 151, 78, 0.6) 45%, rgba(176, 164, 115, 0.35) 100%);
}
.home-hero-inner{
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.home-hero-title{
  font-family: "avenir-lt-pro", sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  margin-bottom: 1rem;
  text-shadow: 4px 3px rgba(52, 65, 103, 0.35);
}
.home-hero-pill{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .55rem 1.35rem;
  border-radius: 999px;
  background: #fff;
  color: var(--gold);
  font-weight: 800;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  box-shadow: 0 14px 28px rgba(8, 16, 40, .25);
  margin-bottom: 1.25rem;
}
.home-hero-text{
  font-size: clamp(.7rem, 1.5vw, 1rem);
  color: rgba(3, 2, 2, 0.9);
  margin: 0 auto;
  padding-top: 2rem;
  max-width: 900px;
  line-height: 1.6;
   text-shadow: 2px 2px rgba(52, 65, 103, 0.35);
}

.home-plans-image{
  /* border-radius: 1.6rem; */
  /* overflow: hidden; */
  /* background: var(--gold); */
  /* padding: .6rem; */
  height: 90vh;
  box-shadow: 10px 10px var(--gold);
}
.home-plans-image img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  /* border-radius: 1.2rem; */
}

/* Motor hero */
.motor-hero{
  position: relative;
  padding: 10.5rem 0 5.5rem;
  color: #fff;
  background: #505b7b url("img/motor/Motor\ Ins_1.jpg") center/cover no-repeat;
  overflow: hidden;
}
.motor-hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30, 37, 64, 0.78) 0%, rgba(52, 60, 98, 0.6) 45%, rgba(80, 92, 123, 0.35) 100%);
}
.motor-hero-inner{
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}
.motor-hero-title{
  font-family: "avenir-lt-pro", sans-serif;
  font-weight: 700;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  margin-bottom: 1rem;
  text-shadow: 3px 3px rgba(83, 98, 191, 0.45);
}
.motor-hero-pill{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .55rem 1.35rem;
  border-radius: 999px;
  background: #fff;
  color: var(--deep-blue);
  font-weight: 800;
  font-size: clamp(1.05rem, 2.3vw, 1.35rem);
  box-shadow: 0 14px 28px rgba(8, 16, 40, .25);
  margin-bottom: 1.25rem;
}
.motor-hero-text{
  font-size: clamp(.88rem, 1.55vw, 1rem);
  color: rgba(255,255,255,.92);
  margin: 0 auto;
  padding-top: 2rem;
  max-width: 820px;
  line-height: 1.6;
}

/* Motor what is it */
.motor-what{
  background: #f7f9fc;
}
.motor-what-card{
  background: #fff;
  /* border-radius: 2rem; */
  padding: 1.9rem 2rem 1.8rem;
  border: 1px solid #e6eaf3;
  box-shadow: 0 18px 40px rgba(22, 34, 67, .08);
  color: rgba(38,48,100,.85);
}
.motor-what-card p{
  margin-bottom: 1rem;
  line-height: 1.6;
}
.motor-what-list{
  margin: 0 0 1rem;
  padding-left: 1.2rem;
  color: #2d3a5d;
}
.motor-what-list li{
  margin-bottom: .45rem;
}
.motor-what-image{
  overflow: hidden;
  /* border-radius: 1.8rem; */
  box-shadow: 12px 12px 0 var(--gold);
}
.motor-what-image img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.motor-what-btn{
  border-radius: 999px;
  padding: .7rem 1.2rem;
  box-shadow: 0 12px 28px rgba(12, 28, 74, .2);
}

/* Motor plans */
.motor-plans{
  background: #f7f9fc;
}
.motor-plans .ghost-title{
  color: rgba(38,48,100,.08);
}
.motor-plans-image{
  /* border-radius: 1.6rem; */
  overflow: hidden;
  box-shadow: 12px 12px 0 var(--gold);
  height: 90vh;
}
.motor-plans-image img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.motor-plans-row{
  align-items: stretch;
}
.motor-plan-card{
  background: #fff;
  border-radius: 1.4rem;
  padding: 1.4rem 1.6rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  border: 1px solid #e4e8f2;
  box-shadow: 0 14px 28px rgba(22, 34, 67, .08);
  margin-bottom: 1.2rem;
  position: relative;
}
.motor-plan-card:last-child{
  margin-bottom: 0;
}
.motor-plan-dot{
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 2px solid rgba(38,48,100,.35);
  background: #f4f6fb;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  color: var(--deep-blue);
  font-size: 1.1rem;
}
.motor-plan-title{
  font-weight: 700;
  color: var(--deep-blue);
}
.motor-plan-sub{
  font-size: .92rem;
  color: rgba(38,48,100,.75);
  margin-bottom: .65rem;
}
.motor-plan-tabs{
  display: flex;
  gap: .5rem;
  flex-wrap: nowrap;
  margin-bottom: .7rem;
}
.plan-tab{
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .35rem;
  flex: 1 1 0;
  min-width: 0;
  transition: flex .8s ease;
}
.motor-plan-tabs:hover .plan-tab{
  flex: 1 1 0;
}
.motor-plan-tabs:hover .plan-tab:hover{
  flex: 2 1 0;
}
.plan-tab-label{
  background: #e6e9f2;
  border: 1px solid #d7dbe6;
  color: var(--deep-blue);
  padding: .35rem .8rem;
  border-radius: .65rem;
  font-size: .85rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}
.plan-tab .plan-tab-panel{
  position: static;
  width: 100%;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: .1rem 0 0;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  pointer-events: none;
  transition: opacity .18s ease, max-height .18s ease;
}
.plan-tab:hover .plan-tab-panel,
.plan-tab:focus-within .plan-tab-panel{
  opacity: 1;
  max-height: 520px;
  pointer-events: auto;
}
.plan-tab.is-open .plan-tab-panel{
  opacity: 1;
  max-height: 520px;
  pointer-events: auto;
}
.plan-tab.is-open .plan-tab-label{
  background: var(--grad-soft);
  border-color: rgba(38,48,100,.2);
}
.plan-tab-title{
  display: block;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .02em;
  color: var(--deep-blue);
}
.plan-tab-subtitle{
  display: block;
  margin-top: .45rem;
  font-weight: 700;
  font-size: .75rem;
  color: rgba(38,48,100,.85);
}
.plan-tab-list{
  margin: .4rem 0 0;
  padding-left: 1.1rem;
  color: #2d3a5d;
  font-size: .85rem;
}
.plan-tab-list li{
  margin-bottom: .3rem;
}
.motor-plan-list{
  margin: 0;
  padding-left: 1.1rem;
  color: #2d3a5d;
  font-size: .95rem;
}
.motor-plan-list li{
  margin-bottom: .35rem;
}

/* Motor matters */
.motor-matters{
  background: #f7f9fc;
}
.motor-matters-grid{
  display: block;
}
.matters-table{
  display: grid;
  gap: .7rem;
}
.matters-row{
  display: grid;
  grid-template-columns: minmax(0, 220px) repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
  padding-bottom: .55rem;
  border-bottom: 1px solid rgba(38,48,100,.12);
}
.matters-row:last-child{
  border-bottom: 0;
}
.matters-cell{
  background: transparent;
  border-radius: 0;
  padding: .35rem 0;
  border: 0;
  box-shadow: none;
  display: flex;
  align-items: center;
}
.matters-head .matters-cell{
  background: transparent;
  color: var(--deep-blue);
  font-weight: 800;
  justify-content: flex-start;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .72rem;
  padding-bottom: .6rem;
  border-bottom: 2px solid rgba(38,48,100,.2);
}
.matters-pill{
  background: transparent;
  color: var(--deep-blue);
  border-radius: 0;
  padding: 0;
  min-height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  font-weight: 700;
  border: 0;
}
.matters-value{
  color: rgba(38,48,100,.9);
  font-weight: 600;
}
.matters-col-a{
  padding-left: .65rem;
  border-left: 3px solid rgba(236,169,65,.55);
}
.matters-col-b{
  padding-left: .65rem;
  border-left: 3px solid rgba(76,159,214,.6);
}
.matters-head .matters-col-a{
  color: #a86f17;
}
.matters-head .matters-col-b{
  color: #2b6aa2;
}

.faq-cta-lines{
  display: grid;
  gap: .35rem;
}
.advice-cta{
  background: #fff;
}
.advice-cta-grid{
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}
.advice-cta-side{
  border-left: 3px solid rgba(236,169,65,.7);
  padding-left: 1.5rem;
}
.advice-cta-lines{
  display: grid;
  gap: .35rem;
}
.advice-cta-tag{
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .72rem;
  color: var(--deep-blue);
  margin-bottom: .6rem;
}
.advice-cta-myinfo{
  font-weight: 800;
  color: var(--primary-blue);
}
.advice-cta-call{
  font-weight: 600;
  color: rgba(38,48,100,.9);
  line-height: 1.6;
}

/* Motor advocacy */
.motor-advocacy{
  background: #28306b;
  color: #fff;
}
.motor-advocacy .ghost-title{
  color: rgba(255,255,255,.08);
}
.motor-advocacy-grid{
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  margin-top: .5rem;
}
.advocacy-card{
  background: #fff;
  border-radius: 1.1rem;
  padding: 1.2rem 1rem 1.3rem;
  text-align: center;
  color: var(--deep-blue);
  box-shadow: 0 14px 24px rgba(8, 16, 40, .22);
  font-weight: 600;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .65rem;
}
.advocacy-card img{
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: .75rem;
}
.motor-advocacy-note{
  margin-top: 1.8rem;
  text-align: center;
  color: rgba(255,255,255,.85);
}

/* Motor approach */
.motor-approach{
  background: #f7f9fc;
}
.approach-banner{
  display: grid;
  grid-template-columns: minmax(0, 1fr) 70px minmax(0, 1fr);
  gap: 1.2rem;
  align-items: center;
  margin-bottom: 1rem;
}
.approach-panel-card{
  min-height: 230px;
  color: #fff;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.approach-panel-card--left{
  background: linear-gradient(90deg, rgba(18,30,60,.82), rgba(18,30,60,.45)), url("img/motor/Motor Ins_4.jpg") center/cover no-repeat;
  /* clip-path: polygon(0 0, 80% 0, 100% 50%, 80% 100%, 0 100%); */
}
.approach-panel-card--right{
  background: linear-gradient(90deg, rgba(18,30,60,.82), rgba(18,30,60,.45)), url("img/motor/Motor Ins_5.jpg") center/cover no-repeat;
 /* clip-path: polygon(0 0, 60% 0, 100% 50%, 60% 100%, 0 100%, 30% 50%); */
  /* clip-path: polygon(0 0, 80% 0, 100% 50%, 80% 100%, 0 100%); */
}

.approach-panel-content{
  padding: 1.6rem 1.8rem;
  max-width: 28rem;
  text-shadow: 2px 2px rgba(18, 22, 44, .3);
}
.approach-panel-label{
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .72rem;
  margin-bottom: .85rem;
  padding: .35rem .65rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.28);
}
.approach-panel-list{
  margin: 0;
  padding-left: 1.1rem;
  font-size: .98rem;
  line-height: 1.6;
}
.approach-panel-list li{
  margin-bottom: .4rem;
}
.approach-arrow{
  width: 64px;
  height: 64px;
  background: var(--gold);
  border: 2px solid rgba(38,48,100,.15);
  box-shadow: 0 10px 24px rgba(22, 34, 67, .12);
  justify-self: center;
  clip-path: polygon(0 0, 60% 0, 100% 50%, 60% 100%, 0 100%, 38% 50%);
}
.approach-panel-card--left.reveal{
  transform: translateX(-24px);
}
.approach-panel-card--right.reveal{
  transform: translateX(24px);
}
.approach-arrow.reveal{
  transform: scale(.92);
}
.approach-panel-card--left.reveal.on{
  transition-delay: .05s;
}
.approach-arrow.reveal.on{
  transition-delay: .2s;
}
.approach-panel-card--right.reveal.on{
  transition-delay: .35s;
}
.approach-note{
  text-align: center;
  color: rgba(38,48,100,.85);
  font-weight: 600;
}

/* Motor claims */
.motor-claims{
  background: #f7f9fc;
}
.claims-card{
  background: #fff;
  /* border-radius: 1.6rem; */
  padding: 1.7rem 1.8rem;
  border: 1px solid #e6eaf3;
  box-shadow: 0 16px 34px rgba(22, 34, 67, .08);
  color: rgba(38,48,100,.85);
}
.claims-list{
  margin: 0 0 1rem;
  padding-left: 1.2rem;
  color: #2d3a5d;
}
.claims-list li{
  margin-bottom: .45rem;
}
.claims-image{
  /* border-radius: 1.6rem; */
  overflow: hidden;
  box-shadow: 12px 12px 0 var(--gold);
}
.claims-image img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

@media (max-width: 991px){
  .motor-matters-grid{
    display: block;
  }
  .matters-row{
    grid-template-columns: 190px 220px 220px;
    min-width: 640px;
  }
  .matters-table{
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: .5rem;
  }
  .motor-advocacy-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .advice-cta-grid{
    grid-template-columns: 1fr;
  }
  .advice-cta-side{
    border-left: 0;
    border-top: 1px solid rgba(38,48,100,.12);
    padding-left: 0;
    padding-top: 1rem;
  }
  .approach-banner{
    grid-template-columns: 1fr;
  }
  .approach-arrow{
    display: none;
  }
  .approach-panel-card--left,
  .approach-panel-card--right{
    clip-path: none;
  }
}

/* Policy hero (Privacy / Terms) */
.policy-hero{
  position: relative;
  padding: 9.5rem 0 5rem;
  color: #fff;
  background: linear-gradient(135deg, rgba(38,48,100,.96) 0%, rgba(32,85,149,.88) 52%, rgba(76,159,214,.7) 100%);
  overflow: hidden;
}

@media (max-width: 576px){
  .index-hero{
    padding: 7rem 0 4.5rem;
    background-position: 100% center;
  }
  .index-hero-inner{
    grid-template-columns: 4px 1fr;
    max-width: 100%;
  }
  .index-hero-line{
    min-height: 90px;
  }
  .process-card-row{
    flex-wrap: wrap;
    padding-bottom: .5rem;
  }
  .process-card-row > [class*="col-"]{
    flex: 0 0 100%;
    max-width: 100%;
    scroll-snap-align: start;
  }
  .motor-hero{
    padding: 6.5rem 0 4.5rem;
  }
  .policy-hero{
    padding: 7rem 0 4.5rem;
  }
  .motor-hero-pill{
    width: 100%;
  }
  .motor-advocacy-grid{
   grid-template-columns: 1fr;
   gap: .9rem;
  }
  .advocacy-card{
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    padding: .75rem 1rem;
    min-height: auto;
    border-radius: 1.2rem;
    gap: .75rem;
  }
  .advocacy-card img{
    width: 34px;
    height: 34px;
    margin-bottom: 0;
  }
  .motor-plans-image{
    display: none;
  }
  .motor-plan-tabs{
    flex-wrap: wrap;
  }
  .motor-plan-tabs:hover .plan-tab,
  .motor-plan-tabs:hover .plan-tab:hover{
    flex: 1 1 100%;
  }
  .plan-tab{
    flex: 1 1 100%;
  }
}

/* Contact page */
.contact-hero{
  position: relative;
  padding: 2.5rem 0 5.5rem;
  color: #fff;
  background: #4b5875;
  overflow: hidden;
}
.contact-hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24, 32, 64, 0.78) 0%, rgba(46, 57, 96, 0.6) 45%, rgba(80, 92, 123, 0.35) 100%);
}
.contact-hero-inner{
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.contact-hero-title{
  font-family: "avenir-lt-pro", sans-serif;
  font-weight: 700;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  margin-bottom: 1rem;
  text-shadow: 6px 3px rgba(28, 32, 57, 0.35);
}
.contact-hero-pill{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .55rem 1.35rem;
  border-radius: 999px;
  background: #fff;
  color: var(--deep-blue);
  font-weight: 800;
  font-size: clamp(1.05rem, 2.3vw, 1.35rem);
  box-shadow: 0 14px 28px rgba(8, 16, 40, .25);
  margin-bottom: 1.25rem;
}
.contact-hero-text{
  font-size: clamp(.88rem, 1.55vw, 1rem);
  color: rgba(255,255,255,.92);
  margin: 0 auto;
  padding-top: 1.5rem;
  max-width: 820px;
  line-height: 1.6;
}

.contact-select-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}
.contact-select-card{
  background: #fff;
  border-radius: 1.2rem;
  padding: 1.15rem 1.25rem;
  border: 1px solid #e6eaf3;
  box-shadow: 0 12px 24px rgba(22, 34, 67, .06);
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: .9rem;
  align-items: start;
}
.contact-select-card label{
  display: grid;
  gap: .35rem;
  cursor: pointer;
}
.contact-select-title{
  font-weight: 600;
  color: var(--deep-blue);
  display: inline-flex;
  gap: .5rem;
  align-items: center;
  font-size: .8rem;
  line-height: 1.35;
}
.contact-select-text{
  color: rgba(38,48,100,.75);
  font-size: .92rem;
}
.contact-select-card .form-check-input{
  margin-top: .2rem;
  accent-color: var(--gold);
}

.contact-form-card{
  background: #fff;
  border-radius: 1.6rem;
  padding: 1.8rem 1.9rem;
  border: 1px solid #e6eaf3;
  box-shadow: 0 16px 34px rgba(22, 34, 67, .08);
}
.contact-form-card .form-label{
  font-weight: 600;
  color: var(--deep-blue);
}
.contact-form-note{
  margin-top: 1rem;
  font-size: .9rem;
  color: rgba(38,48,100,.75);
}
.contact-form-note a{
  color: var(--deep-blue);
  text-decoration: none;
}
.contact-form-note a:hover{
  text-decoration: underline;
}
.contact-form-note .form-check{
  margin-bottom: .6rem;
}
.contact-note-sub{
  font-size: .85rem;
  color: rgba(38,48,100,.72);
}
.consent-link{
  margin-left: .35rem;
  padding: 0;
  border: 0;
  background: none;
  color: var(--primary-blue);
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
}
.consent-link:hover{
  color: var(--deep-blue);
}

.contact-info-card{
  background: #fff;
  border-radius: 1.6rem;
  padding: 1.6rem 1.7rem;
  border: 1px solid #e6eaf3;
  box-shadow: 0 16px 34px rgba(22, 34, 67, .08);
  height: 100%;
}
.contact-info-list{
  list-style: none;
  padding: 0;
  margin: 0;
  color: rgba(38,48,100,.85);
  font-size: .95rem;
}
.contact-info-list li{
  margin-bottom: .4rem;
}

@media (max-width: 991px){
  .contact-select-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 576px){
  .contact-hero{
    padding: 7rem 0 4.5rem;
  }
  .contact-hero-pill{
    width: 100%;
  }
  .contact-select-grid{
    grid-template-columns: 1fr;
  }
}

/* WIC hero */
.wic-hero{
  position: relative;
  padding: 10.5rem 0 5.5rem;
  color: #fff;
  background: #6f6a59 url("img/wic/WICA\\ Ins_1.jpg") center/cover no-repeat;
  overflow: hidden;
}
.wic-hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(78, 64, 34, 0.78) 0%, rgba(120, 98, 54, 0.6) 45%, rgba(150, 132, 84, 0.35) 100%);
}
.wic-hero-inner{
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}
.wic-hero-title{
  font-family: "avenir-lt-pro", sans-serif;
  font-weight: 700;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  margin-bottom: 1rem;
  text-shadow: 6px 3px rgba(28, 32, 57, 0.35);
}
.wic-hero-pill{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .55rem 1.35rem;
  border-radius: 999px;
  background: #fff;
  color: var(--gold);
  font-weight: 800;
  font-size: clamp(1.05rem, 2.3vw, 1.35rem);
  box-shadow: 0 14px 28px rgba(8, 16, 40, .25);
  margin-bottom: 1.25rem;
  border: 1px solid rgba(236,169,65,.55);
}
.wic-hero-text{
  font-size: clamp(.88rem, 1.55vw, 1rem);
  color: rgba(255,255,255,.92);
  margin: 0 auto;
  padding-top: 2rem;
  max-width: 860px;
  line-height: 1.6;
}

/* WIC what is it */
.wic-what{
  background: #f7f9fc;
}
.wic-what-card{
  background: #fff;
  border-radius: 2rem;
  padding: 1.9rem 2rem 1.8rem;
  border: 1px solid #e6eaf3;
  box-shadow: 0 18px 40px rgba(22, 34, 67, .08);
  color: rgba(38,48,100,.85);
}
.wic-what-card p{
  margin-bottom: 1rem;
  line-height: 1.6;
}
.wic-what-image{
  overflow: hidden;
  border-radius: 1.8rem;
  box-shadow: 12px 12px 0 var(--gold);
}
.wic-what-image img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* WIC requirements */
.wic-required{
  background: #f7f9fc;
}
.wic-required-card{
  background: #fff;
  border-radius: 1.6rem;
  padding: 1.1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid #e6eaf3;
  box-shadow: 0 14px 26px rgba(22, 34, 67, .06);
}
.wic-required-num{
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 2px solid rgba(38,48,100,.35);
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--deep-blue);
  background: #f4f6fb;
  flex-shrink: 0;
}
.wic-required-text{
  font-weight: 600;
  color: rgba(38,48,100,.9);
}
.wic-required-note{
  color: rgba(38,48,100,.8);
  font-size: .95rem;
}

/* WIC coverage list */
.wic-coverage{
  background: #f7f9fc;
}
.wic-coverage-image{
  border-radius: 1.6rem;
  overflow: hidden;
  box-shadow: 12px 12px 0 var(--gold);
}
.wic-coverage-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.wic-cover-item{
  background: #fff;
  border-radius: 1.2rem;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid #e6eaf3;
  box-shadow: 0 12px 24px rgba(22, 34, 67, .06);
  margin-bottom: 1rem;
}
.wic-cover-item:last-child{
  margin-bottom: 0;
}
.wic-cover-icon{
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 2px solid rgba(38,48,100,.35);
  background: #f4f6fb;
  flex-shrink: 0;
}
.wic-cover-title{
  font-weight: 700;
  color: var(--deep-blue);
}

/* WIC work-related injury */
.wic-injury{
  background: #28306b;
  color: #fff;
}
.wic-injury .ghost-title{
  color: rgba(255,255,255,.08);
}
.wic-injury-card{
  background: #fff;
  border-radius: 1.2rem;
  padding: 1.4rem 1.2rem;
  text-align: center;
  color: var(--deep-blue);
  box-shadow: 0 16px 28px rgba(8, 16, 40, .2);
  height: 100%;
}
.wic-injury-badge{
  width: 50px;
  height: 50px;
  border-radius: 999px;
  background: var(--gold);
  display: grid;
  place-items: center;
  font-weight: 800;
  margin: 0 auto .8rem;
  color: #1a2040;
}
.wic-injury-text{
  font-weight: 700;
  line-height: 1.35;
}
.wic-injury-note{
  text-align: center;
  margin-top: 1.4rem;
  color: rgba(255,255,255,.8);
}

/* WIC not covered */
.wic-not-covered{
  background: #f7f9fc;
}
.wic-not-card{
  background: #fff;
  border-radius: 1.8rem;
  padding: 1.6rem 1.8rem;
  border: 1px solid #e6eaf3;
  box-shadow: 0 16px 34px rgba(22, 34, 67, .08);
  color: rgba(38,48,100,.85);
}
.wic-not-list{
  margin: 0 0 1rem;
  padding-left: 1.2rem;
  color: #2d3a5d;
}
.wic-not-list li{
  margin-bottom: .45rem;
}
.wic-not-image{
  border-radius: 1.6rem;
  overflow: hidden;
  box-shadow: 12px 12px 0 var(--gold);
}
.wic-not-image img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* WIC importance */
.wic-importance{
  background: #f7f9fc;
}
.wic-importance-pill{
  background: #27306a;
  color: #fff;
  border-radius: .8rem;
  padding: .6rem 1rem;
  text-align: center;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(24, 36, 86, .18);
  margin-bottom: .75rem;
}
.wic-importance-card{
  background: #fff;
  border-radius: 1.4rem;
  padding: 1.4rem 1.6rem 1.4rem 1.4rem;
  border: 1px solid rgba(236,169,65,.55);
  box-shadow: 0 16px 30px rgba(22, 34, 67, .08);
  display: grid;
  gap: .9rem;
  position: relative;
}
.wic-importance-card::after{
  content: "";
  position: absolute;
  top: 12px;
  bottom: 12px;
  right: 10px;
  width: 6px;
  border-radius: 999px;
  background: var(--gold);
}
.wic-importance-card div{
  font-weight: 600;
  color: rgba(38,48,100,.85);
}

/* WIC claims process */
.wic-claims{
  background: #f7f9fc;
}
.wic-claims-image{
  border-radius: 1.6rem;
  overflow: hidden;
  box-shadow: 12px 12px 0 var(--gold);
}
.wic-claims-image img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.wic-claims-note{
  text-align: center;
  margin-top: 1.4rem;
  color: rgba(38,48,100,.8);
}

/* WIC broker help */
.wic-help{
  background: #f7f9fc;
}
.wic-help-card{
  background: #fff;
  border-radius: 1.8rem;
  padding: 1.7rem 1.8rem;
  border: 1px solid #e6eaf3;
  box-shadow: 0 16px 34px rgba(22, 34, 67, .08);
  color: rgba(38,48,100,.85);
}
.wic-help-list{
  margin: 0 0 1rem;
  padding-left: 1.2rem;
  color: #2d3a5d;
}
.wic-help-list li{
  margin-bottom: .45rem;
}

@media (max-width: 991px){
  .wic-hero{
    padding: 7.5rem 0 4.5rem;
  }
}

@media (max-width: 576px){
  .wic-hero-pill{
    width: 100%;
  }
  .wic-required-card{
    border-radius: 1.2rem;
  }
  .wic-importance-card::after{
    right: 6px;
  }
}

/* Home coverage details */
.home-coverage{
  background: #f7f9fc;
}
.home-coverage .ghost-title{
  color: rgba(38,48,100,.08);
}
.coverage-panel{
  background: #fff;
  border-radius: 1.6rem;
  padding: 2rem 2.2rem 2.1rem;
  border: 1px solid rgba(236,169,65,.35);
  box-shadow: 0 16px 36px rgba(22, 34, 67, .08);
  position: relative;
}
.coverage-panel::after{
  content: "";
  position: absolute;
  top: 14px;
  bottom: 14px;
  right: 12px;
  width: 6px;
  border-radius: 999px;
  background: var(--gold);
  opacity: .85;
}
.coverage-pill{
  background: var(--deep-blue);
  color: #fff;
  text-align: center;
  font-weight: 700;
  padding: .6rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.4rem;
  font-size: 1.05rem;
  box-shadow: 0 10px 22px rgba(22, 34, 67, .18);
}
.coverage-item{
  text-align: center;
  margin-bottom: 1rem;
}
.coverage-title{
  font-weight: 700;
  color: var(--deep-blue);
  margin-bottom: .15rem;
}
.coverage-sub{
  color: rgba(38,48,100,.78);
  font-size: .95rem;
}
.coverage-note{
  text-align: center;
  color: rgba(38,48,100,.8);
  font-size: .95rem;
}

/* Home importance */
.home-importance{
  background: #27306a;
  color: #fff;
}
.home-importance .ghost-title{
  color: rgba(255,255,255,.08);
}
.home-importance .section-title{
  color: #fff;
}
.home-importance-card{
  background: #fff;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(8, 16, 40, .35);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.home-importance-img{
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.home-importance-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.home-importance-label{
  padding: .9rem 1rem 1rem;
  text-align: center;
  font-weight: 700;
  color: var(--deep-blue);
  font-size: 1.05rem;
  background: #fff;
}

/* HDB Fire vs Home */
.home-diff{
  background: #f7f9fc;
}
.home-diff .ghost-title{
  color: rgba(38,48,100,.08);
}
.home-diff-card{
  background: #fff;
  border-radius: 2.2rem;
  padding: 2rem 2.25rem;
  border: 1px solid var(--border);
  box-shadow: 0 18px 40px rgba(22, 34, 67, .08);
}
.home-diff-card p{
  color: rgba(38,48,100,.85);
}
.home-diff-list{
  margin: .75rem 0 1.25rem;
  padding-left: 1.2rem;
  color: #2d3a5d;
}
.home-diff-btn{
  padding: .6rem 1.1rem;
}

@media (max-width: 576px){
  .coverage-panel{
    padding: 1.6rem 1.5rem 1.7rem;
  }
  .home-diff-card{
    padding: 1.6rem 1.5rem;
  }
}

