/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #000;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

picture {
  display: contents;
}

a {
  text-decoration: none;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* ===== UTILITIES ===== */
.text-green {
  color: #0f0;
}

.text-red {
  color: red;
}

.text-white {
  color: #fff;
}

/* ===== GREEN BUTTON ===== */
.btn-green {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, #0bff44, #8bffc3);
  color: #000;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  border: none;
  border-radius: 5px;
  height: 70px;
  padding: 0 40px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-green:hover {
  opacity: 0.9;
}

.btn-green--full {
  width: 100%;
  max-width: calc(100% - 96px);
}

/* ===== SECTION 1: HERO ===== */
.hero {
  padding: 60px 0 50px;
  background: #fff;
}

.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__title {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 46px;
  line-height: 47px;
  text-align: center;
  color: #000;
  margin-bottom: 30px;
}

.hero__phones {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: nowrap;
  max-width: 1300px;
}

.hero__phones img {
  height: 333px;
  flex: 0 1 auto;
  min-width: 0;
  object-fit: contain;
}

.hero__subtitle {
  font-size: 18px;
  line-height: 23px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 30px;
  max-width: 1245px;
}

/* ===== SECTION 2: ACCESS (What you get) ===== */
.access {
  background: #000;
  position: relative;
  padding: 80px 0 80px;
  overflow: hidden;
}

.access__bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  z-index: 1;
  pointer-events: none;
}

.access__bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.access__title {
  font-weight: 900;
  font-size: 46px;
  line-height: 47px;
  text-align: center;
  color: #fff;
  margin-bottom: 20px;
}

.access__subtitle {
  font-size: 18px;
  line-height: 23px;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 50px;
}

/* Cards Grid */
.access__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.access-card {
  background: #1b1b1b;
  border: 1px solid #0bff44;
  border-radius: 20px;
  padding: 25px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.access-card__image {
  width: 100%;
  max-width: 375px;
  margin-bottom: 20px;
}

.access-card__image img {
  width: 100%;
  height: auto;
}

.access-card__image--rounded img {
  border-radius: 10px;
}

.access-card__title {
  font-weight: 900;
  font-size: 23px;
  line-height: 27px;
  color: #f7f7f7;
  margin-bottom: 15px;
}

.access-card__title--bonus2 {
  margin-top: 0;
}

.access-card__desc {
  font-weight: 400;
  font-size: 15px;
  line-height: 23px;
  color: #f7f7f7;
  margin-bottom: 10px;
}

.access-card__price {
  font-size: 15px;
  line-height: 23px;
  color: #f7f7f7;
  margin-top: auto;
}

/* Bonus 3 Card (no image) */
.access-card--no-image {
  padding: 30px 26px;
  justify-content: flex-start;
}

.access-card__title--bonus3 {
  font-size: 36px;
  line-height: 42px;
  margin-bottom: 15px;
  text-align: left;
  width: 100%;
}

.access-card--no-image .access-card__desc {
  text-align: left;
  width: 100%;
}

.access-card--no-image .access-card__price {
  margin-bottom: 15px;
  text-align: left;
  width: 100%;
}

.btn-green--card {
  width: 100%;
  height: 90px;
  font-size: 18px;
  line-height: 1.3;
  padding: 10px 20px;
}

/* Results Carousel */
.carousel {
  position: relative;
  margin-top: 50px;
  overflow: hidden;
  border-radius: 10px;
}

.carousel__track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel__slide {
  min-width: 100%;
  flex-shrink: 0;
}

.carousel__slide img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: 2px solid #0bff44;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: background 0.2s;
}

.carousel__btn:hover {
  background: rgba(11, 255, 68, 0.3);
}

.carousel__btn--prev {
  left: 15px;
}

.carousel__btn--next {
  right: 15px;
}

.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.carousel__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #555;
  cursor: pointer;
  transition: background 0.2s;
}

.carousel__dot--active {
  background: #0bff44;
}

/* ===== SECTION 3: WHY ===== */
.why {
  padding: 80px 0;
  display: flex;
  justify-content: center;
}

.why__card {
  background: linear-gradient(to bottom, #fff, #ebebeb);
  border: 5px solid #dbdbdb;
  border-radius: 20px;
  padding: 50px 60px;
  max-width: 764px;
  text-align: center;
}

.why__title {
  font-weight: 900;
  font-size: 46px;
  line-height: 47px;
  color: #000;
  margin-bottom: 30px;
}

.why__text {
  font-size: 18px;
  line-height: 23px;
  color: #000;
  margin-bottom: 20px;
}

.why__text:last-child {
  margin-bottom: 0;
}

.why__text strong {
  font-weight: 700;
}

/* ===== SECTION 4: PRICING ===== */
.pricing {
  background: #000;
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
}

.pricing__bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  z-index: 1;
  pointer-events: none;
}

.pricing__bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pricing__title {
  font-weight: 900;
  font-size: 46px;
  line-height: 47px;
  text-align: center;
  margin-bottom: 50px;
}

.pricing__box {
  background: #1b1b1b;
  border: 1px solid #0bff44;
  border-radius: 20px;
  padding: 40px 48px;
  max-width: 910px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pricing__top-image {
  width: 100%;
  max-width: 800px;
  margin-bottom: 30px;
}

.pricing__top-image img {
  width: 100%;
  height: auto;
}

.pricing__details-box {
  background: #1b1b1b;
  border: 1px solid #0bff44;
  border-radius: 20px;
  padding: 40px;
  width: 100%;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}

.pricing__details-image {
  max-width: 597px;
  width: 100%;
}

.pricing__details-image img {
  width: 100%;
  height: auto;
}

.pricing__box .btn-green {
  width: calc(100% - 0px);
  margin-bottom: 30px;
}

.pricing__bottom-image {
  width: 100%;
  max-width: 800px;
}

.pricing__bottom-image img {
  width: 100%;
  height: auto;
}

/* ===== SECTION 5: GUARANTEES ===== */
.guarantees {
  padding: 80px 0;
  max-width: 960px;
  margin: 0 auto;
}

.guarantee-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 30px;
}

.guarantee-text-card {
  background: linear-gradient(to bottom, #fff, #ebebeb);
  border: 5px solid #dbdbdb;
  border-radius: 20px;
  padding: 40px 30px;
}

.guarantee__title {
  font-weight: 900;
  font-size: 46px;
  line-height: 47px;
  color: #000;
  margin-bottom: 25px;
}

.guarantee__text {
  font-size: 18px;
  line-height: 23px;
  color: #000;
  margin-bottom: 15px;
}

.guarantee__text:last-child {
  margin-bottom: 0;
}

.guarantee-image-card {
  background: linear-gradient(to bottom, #fff, #ebebeb);
  border: 5px solid #dbdbdb;
  border-radius: 20px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guarantee-image-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* ===== SECTION 6: ABOUT ===== */
.about {
  background: #000;
  position: relative;
  padding: 90px 0 80px;
  overflow: hidden;
}

/* about bg removed from HTML - no longer needed */

.about .container {
  max-width: 1050px;
}

.about-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.about-photo {
  border-radius: 20px;
  overflow: hidden;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.about-bio {
  background: #1b1b1b;
  border: 1px solid #0bff44;
  border-radius: 20px;
  padding: 25px;
  color: #fff;
}

.about-bio__name {
  font-weight: 900;
  font-size: 46px;
  line-height: 47px;
  color: #fff;
  margin-bottom: 30px;
}

.about-bio__text {
  font-size: 18px;
  line-height: 23px;
  color: #fff;
  margin-bottom: 15px;
}

.about-bio__text:last-child {
  margin-bottom: 0;
}

/* ===== FAQ ===== */
.faq__title {
  font-weight: 900;
  font-size: 46px;
  line-height: 47px;
  text-align: center;
  color: #fff;
  margin-top: 80px;
  margin-bottom: 30px;
}

.faq {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq__item {
  background: #f2f2f2;
  border-radius: 8px;
  overflow: hidden;
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  cursor: pointer;
  list-style: none;
  min-height: 68px;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question span {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 25.5px;
  color: #3a3a3a;
}

.faq__arrow {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  transition: transform 0.3s;
}

details[open] .faq__arrow {
  transform: rotate(180deg);
}

.faq__answer {
  padding: 0 20px 20px;
  font-size: 16px;
  line-height: 24px;
  color: #3a3a3a;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero__title {
    font-size: 32px;
    line-height: 36px;
  }

  .hero__phones img {
    height: 250px;
  }

  .access__title,
  .why__title,
  .guarantee__title,
  .pricing__title,
  .about-bio__name,
  .faq__title {
    font-size: 34px;
    line-height: 38px;
  }

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

  .access-card__title--bonus3 {
    font-size: 30px;
    line-height: 36px;
  }
}

@media (max-width: 768px) {
  /* Hero */
  .hero {
    padding: 30px 0 30px;
  }

  .hero__title {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 20px;
  }

  .hero__phones {
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
  }

  .hero__phones img {
    height: 140px;
    width: calc(50% - 6px);
    flex: 0 0 auto;
    object-fit: cover;
    border-radius: 8px;
  }

  .hero__subtitle {
    font-size: 14px;
    line-height: 20px;
  }

  .hero__subtitle br {
    display: none;
  }

  /* Titles */
  .access__title,
  .pricing__title {
    font-size: 22px;
    line-height: 26px;
  }

  .why__title,
  .guarantee__title {
    font-size: 24px;
    line-height: 28px;
  }

  .about-bio__name {
    font-size: 28px;
    line-height: 32px;
  }

  .faq__title {
    font-size: 26px;
    line-height: 30px;
    margin-top: 50px;
  }

  /* Cards */
  .access {
    padding: 50px 0;
  }

  .access__subtitle {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .access__cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .access-card {
    padding: 20px 16px;
  }

  .access-card__title {
    font-size: 20px;
    line-height: 24px;
  }

  .access-card__title--bonus3 {
    font-size: 26px;
    line-height: 32px;
  }

  /* Carousel */
  .carousel {
    margin-top: 30px;
  }

  .carousel__btn {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  /* Why */
  .why {
    padding: 50px 15px;
  }

  .why__card {
    padding: 30px 20px;
  }

  .why__text {
    font-size: 16px;
    line-height: 22px;
  }

  .why__text br {
    display: none;
  }

  /* Pricing */
  .pricing {
    padding: 60px 0;
  }

  .pricing__box {
    padding: 16px;
    border-radius: 14px;
  }

  .pricing__details-box {
    padding: 16px;
    border-radius: 14px;
  }

  /* Guarantees */
  .guarantees {
    padding: 50px 15px;
  }

  .guarantee-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .guarantee-text-card {
    padding: 25px 20px;
  }

  .guarantee__title {
    font-size: 28px;
    line-height: 32px;
  }

  .guarantee__text {
    font-size: 16px;
    line-height: 22px;
  }

  .guarantee-image-card {
    padding: 20px;
  }

  /* About */
  .about {
    padding: 50px 0;
  }

  .about-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .about-photo {
    max-height: 350px;
  }

  .about-bio {
    padding: 20px;
  }

  .about-bio__text {
    font-size: 16px;
    line-height: 22px;
  }

  /* FAQ */
  .faq__question span {
    font-size: 15px;
    line-height: 22px;
  }

  .faq__arrow {
    width: 28px;
    height: 28px;
  }

  /* Button */
  .btn-green {
    font-size: 14px;
    height: 55px;
    padding: 0 16px;
  }

  .btn-green--card {
    height: 70px;
    font-size: 14px;
  }

  .btn-green--full {
    max-width: 100%;
  }
}
