/* =========================================================
   HOME 1 HERO (2-COL + BG COVER + 50% DARK OVERLAY)
   Updated:
   - Removed CASHBACK card
   - Top row is now 2 columns (2 cards)
   - Bottom row remains 2 wide cards
   ========================================================= */

.home1-hero{
  position: relative;
  isolation: isolate;
  color: var(--gc-white);

  background-image: var(--home1-hero-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  padding: clamp(46px, 6vw, 92px) 0;
}

/* 50% overlay */
.home1-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,0.50);
  z-index:0;
}

.home1-hero .container{
  position: relative;
  z-index: 1;
}

.home1-hero__grid{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(18px, 3vw, 44px);
  align-items: center;
}

/* =========================
   LEFT: BADGES GRID
   4-col grid so:
   - top cards each span 2 (2+2 = 4)
   - bottom wide cards each span 2 (2+2 = 4)
   ========================= */

.home1-badges{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.home1-badge{
  grid-column: span 2; /* top row cards */
  border: 1px solid rgba(255,255,255,0.40);
  background: rgba(0,0,0,0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  border-radius: 12px;
  padding: 14px 14px;
  min-height: 92px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  line-height: 1.05;
}

.home1-badge__top{
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .90;
  margin-bottom: 6px;
}

.home1-badge__big{
  font-weight: 800;
  font-size: clamp(1.2rem, 1.05rem + 0.9vw, 2.0rem);
  color: var(--gc-white);
}

.home1-badge__bottom{
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: .92;
}

/* Row 2: 2 wide cards */
.home1-badge--wide2{
  grid-column: span 2; /* 2 + 2 = 4 */
  min-height: 86px;
}

/* Center note */
.home1-hero__note{
  margin-top: 14px;
  text-align: center;
  font-size: 13px;
  opacity: .90;
}

/* =========================
   RIGHT: CTA CARD
   ========================= */

.home1-cta{
  width: 100%;
  max-width: 520px;
  margin-left: auto;

  background: rgba(0, 59, 95, 0.88);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(0,0,0,.22);

  padding: clamp(18px, 2.6vw, 30px);
}

.home1-cta__title{
  margin: 0 0 14px;
  color: var(--gc-white);
  font-weight: 800;
  letter-spacing: -0.02em;

  font-size: clamp(1.55rem, 1.25rem + 1.2vw, 2.35rem);
  line-height: 1.12;
}

.home1-cta__underline{
  width: 72px;
  height: 4px;
  border-radius: 999px;
  background: var(--gc-light-blue);
  margin-bottom: 18px;
}

/* local orange CTA */
.home1-cta__btn{
  --cta-orange: #ff7a1a;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  min-height: 52px;
  border-radius: 12px;

  background: var(--cta-orange);
  color: #fff;
  font-weight: 800;
  letter-spacing: .01em;
  text-decoration: none !important;

  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 10px 22px rgba(0,0,0,0.18);

  transition: transform .15s ease, filter .15s ease, opacity .15s ease;
}

.home1-cta__btn:hover{
  transform: translateY(-1px);
  filter: brightness(1.02);
  opacity: .98;
}

.home1-cta__sub{
  margin-top: 12px;
  font-size: 14px;
  opacity: .92;
  text-align: center;
  color: rgba(255,255,255,0.92);
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 1024px){
  .home1-hero__grid{
    grid-template-columns: 1fr;
  }
  .home1-cta{
    max-width: 640px;
    margin: 0 auto;
  }
}

/* On small screens keep 2 columns, wide cards full width */
@media (max-width: 680px){
  .home1-badges{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home1-badge{
    grid-column: auto;
  }

  .home1-badge--wide2{
    grid-column: span 2;
  }
}

@media (max-width: 420px){
  .home1-badges{
    grid-template-columns: 1fr;
  }

  .home1-badge--wide2{
    grid-column: span 1;
  }
}
