@font-face {
  font-family: 'OpenSans';
  src: url('../fonts/OpenSans-Regular.ttf') format('opentype');
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'OpenSans';
}

/* ── HERO ── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8%;
  overflow: hidden;
}

.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero__img--mobile { display: none; }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .35);
  z-index: 2;
}

.hero__content {
  color: #fff;
  z-index: 3;
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2vh;
}

.hero__content h1 {
  font-size: 4rem;
  line-height: 1.1;
  text-align: center;
  margin-bottom: 2rem;
}

.hero__offer { text-align: center; }

.hero__offer p {
  display: inline-block;
  position: relative;
  padding: 0.3em 2em;
  font-size: 1.7rem;
  line-height: 1.6;
  color: #000;
  margin-bottom: 5rem;
  z-index: 1;
}

.hero__offer p::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.75) 20%,
    rgba(255,255,255,1) 50%,
    rgba(255,255,255,0.75) 80%,
    rgba(255,255,255,0) 100%
  );
  z-index: -1;
}

.hero__btn {
  min-width: 10rem;
  height: 7vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: #43397c;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: .4rem;
  padding: 1.25rem 1.65rem;
  cursor: pointer;
}

.hero__copy-msg {
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  min-height: 1rem;
}

/* ── BADGES ── */
.badges {
  width: 100%;
  background: #000;
  padding: 3vh 4vw;
}

.badges__grid {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2vh 2vw;
}

.badges__item {
  flex: 1;
  min-width: 20%;
  text-align: center;
}

.badges__item p {
  color: #fff;
  font-size: clamp(0.95rem, 1.2vw, 1.2rem);
  font-weight: 500;
  line-height: 1.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
}

/* ── FAQ ── */
.faq {
  width: min(720px, 92vw);
  margin: 0 auto;
  padding: 8vh 0 10vh;
}

.faq__header { margin-bottom: 5vh; }

.faq__title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  text-align: center;
}

.faq__list {
  list-style: none;
  border-top: 1px solid var(--line);
}

.faq__item {
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 0.45s ease forwards;
}

.faq__item:nth-child(1) { animation-delay: 0.05s; }
.faq__item:nth-child(2) { animation-delay: 0.10s; }
.faq__item:nth-child(3) { animation-delay: 0.15s; }
.faq__item:nth-child(4) { animation-delay: 0.20s; }

@keyframes fadeUp {
  to { opacity: 1; transform: none; }
}

.faq__btn {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.4em 0;
  background: none;
  border: none;
  color: var(--ink);
  font-size: clamp(0.9rem, 2vw, 1.02rem);
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
}

.faq__btn:hover,
.faq__item.open .faq__btn { color: var(--accent); }

.faq__question {
  display: flex;
  align-items: flex-start;
}

.faq__icon {
  flex-shrink: 0;
  margin-top: 0.2em;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: grid;
  place-items: center;
  transition: transform 0.35s cubic-bezier(.4,0,.2,1),
              border-color 0.25s,
              background 0.25s;
}

.faq__item.open .faq__icon {
  transform: rotate(45deg);
  border-color: var(--accent);
  background: var(--accent-lt);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(.4,0,.2,1);
}

.faq__item.open .faq__answer { max-height: 25rem; }

.faq__body {
  padding: 0 0 1.5em 2.6em;
  font-size: clamp(0.85rem, 1.6vw, 0.93rem);
  color: var(--muted);
  font-weight: 300;
  line-height: 1.85;
}

/* ── FOOTER ── */
.site-footer {
  height: 7vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  background: #000;
}

.site-footer a {
  color: #fff;
  text-decoration: none;
}

/* ── TABLET ── */
@media (max-width: 991px) {
  .hero__content { width: 60%; }
  .hero__content h1 { font-size: 2.8rem; }
  .hero__btn { width: 22vw; }
}

/* ── MOBILE ── */
@media (max-width: 767px) {
  .hero__img--desktop { display: none; }
  .hero__img--mobile { display: block; height: 125vh; }

  .hero {
    height: 90vh;
    justify-content: center;
    padding: 0 5%;
  }

  .hero__content {
    width: 100%;
    text-align: center;
    align-items: center;
    padding: 0;
    margin-top: 20vh;
  }

  .hero__content h1 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
  }

  .hero__content p { font-size: 1.2rem; margin-bottom: 2.5rem; }

  .hero__btn {
    width: 72%;
    height: 6.5vh;
    font-size: 1.25rem;
  }

  .hero__copy-msg { font-size: 1rem; }

  .badges { padding: 4vh 4vw; }

  .badges__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .badges__item {
    min-width: unset;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 0.75rem;
    padding: 1rem 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
  }

  .badges__item p {
    font-size: 1rem;
    line-height: 1.4;
    text-align: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.5rem;
  }

  .faq__body { padding-left: 1.8em; }
  .faq__btn  { padding: 1.2em 0; }
}

@media (max-width: 480px) {
  .badges__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }

  .badges__item {
    min-height: 75px;
    padding: 0.9rem 0.6rem;
  }

  .badges__item p { font-size: 0.9rem; }
}