/* ============================================================
   FONTS
============================================================ */

@font-face {
  font-family: 'Roboto-Regular';
  src: url('../fonts/Roboto-Regular.ttf') format('opentype');
  font-style: normal;
}

/* ============================================================
   RESET & BASE
============================================================ */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto-Regular', sans-serif;
}

/* ============================================================
   HERO
============================================================ */

.banner {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-image: url("../images/desktop LP Banner _2400 1200 (3).png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.btn {
  position: absolute;
  bottom: 5vh;
  left: 50%;
  transform: translateX(-50%);

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 1em 1.5em;
  min-width: 14vw;

  background: #f9c600;
  color: #000;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 600;
  border-radius: 5rem;

  transition: opacity 0.3s ease;
  cursor: pointer;
}

.btn:hover {
  opacity: 0.9;
}

/* ============================================================
   FEATURES GRID
============================================================ */

.grid {
  width: 100%;
  padding: 4vh 3vw;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 2vw;
  row-gap: 4vh;
}

.card:nth-child(1) { grid-column: 1 / span 3; }
.card:nth-child(2) { grid-column: 4 / span 3; }
.card:nth-child(3) { grid-column: 7 / span 3; }
.card:nth-child(4) { grid-column: 10 / span 3; }
.card:nth-child(5) { grid-column: 4 / span 3; }
.card:nth-child(6) { grid-column: 7 / span 3; }

.card {
  display: flex;
  align-items: flex-start;
  gap: 1.2vw;
}

.icon {
  flex-shrink: 0;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: #edf2f3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon svg {
  width: 1.9rem;
  height: 1.9rem;
}

.stroke {
  stroke: #28465a;
  stroke-width: 2.3;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fill {
  fill: #28465a;
}

.copy h3 {
  color: #2a4046;
  font-size: clamp(1.1rem, 1.1vw, 1.7rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 0.7rem;
}

.copy p {
  color: #9ca6a9;
  font-size: clamp(0.85rem, 0.95vw, 1.05rem);
  line-height: 1.2;
  max-width: 95%;
}

/* ============================================================
   FOOTER
============================================================ */

.footer {
  width: 100%;
  background: #f4f4f4;
  color: #6f8598;
}

.footer .top {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 3vh 11vw;
}

.footer .top p {
  color: #9099a5;
  font-size: 1rem;
  line-height: 1.8;
  text-align: center;
}

.divider {
  width: 100%;
  height: 1px;
  background: #d9d9d9;
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 992px)
============================================================ */

@media (max-width: 992px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 2rem;
  }

  .card,
  .card:nth-child(1),
  .card:nth-child(2),
  .card:nth-child(3),
  .card:nth-child(4),
  .card:nth-child(5),
  .card:nth-child(6) {
    grid-column: auto;
  }

  .footer .top {
    padding: 6vh 8vw;
    gap: 3rem;
  }
}

/* ============================================================
   RESPONSIVE — TABLET LANDSCAPE (768px – 1200px)
============================================================ */

@media screen and (min-width: 768px) and (max-width: 1200px) {
  .banner {
    background-image: url("../images/desktop LP Banner _2400 1200 (3).png");
    min-height: 80vh;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 768px)
============================================================ */

@media (max-width: 768px) {
  .banner {
    background-image: url("../images/hmob.png");
    min-height: 85vh;
  }

  .btn {
    width: 50%;
    max-width: 90%;
    padding: 1em;
    font-size: 1.2rem;
    bottom: 4vh;
  }

  .grid {
    grid-template-columns: 1fr;
    padding: 2rem 1rem;
    gap: 2rem;
  }

  .card {
    gap: 1rem;
  }

  .icon {
    width: 4.5rem;
    height: 4.5rem;
  }

  .icon svg {
    width: 1.6rem;
    height: 1.6rem;
  }

  .copy h3 {
    font-size: 1.05rem;
  }

  .copy p {
    font-size: 0.9rem;
  }

  .footer .top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2.5rem;
    padding: 5vh 8vw;
  }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (≤ 390px)
============================================================ */

@media (max-width: 390px) {
  .banner {
    background-image: url("../images/hmob.png");
    min-height: 100vh;
  }
}