*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --bg:         #020508;
  --primary:    #3e88ff;
  --dark-blue:  #25416f;
  --light-blue: #bfd8ff;
  --text:       #c0cee4;
  --text-grey:  #d4d4d9;
  --white:      #ffffff;
}

body.body-2 {
  background-color: var(--bg);
  background-image:
    url('https://cdn.prod.website-files.com/68389384e1dcd76506f75c43/68389387e1dcd76506f75df2_Lines.svg'),
    url('https://cdn.prod.website-files.com/68389384e1dcd76506f75c43/69c5b6edb99929281f846290_blue%20light.svg');
  background-position: 50% 67%, 50% 0;
  background-repeat: no-repeat, no-repeat;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.625;
  font-size: 16px;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  font-family: 'Poppins', sans-serif;
}

/* Typography */
.heading { font-size: 56px; font-weight: 600; line-height: 1.25em; font-family: 'Poppins', sans-serif; }
.h2      { font-size: 44px; font-weight: 600; line-height: 1.2727em; font-family: 'Poppins', sans-serif; }
.h3      { font-size: 32px; font-weight: 600; line-height: 1.3125em; font-family: 'Poppins', sans-serif; }
.text-xl { font-size: 20px; line-height: 1.7em; font-weight: 500; font-family: 'Inter', sans-serif; }
.text-lg { font-size: 18px; line-height: 1.6667em; font-weight: 300; color: var(--text); }
.text-default { font-size: 16px; line-height: 1.625em; color: var(--text); font-family: 'Inter', sans-serif; }
.text-sm { font-size: 14px; line-height: 1.5714em; font-family: 'Inter', sans-serif; }
.text-color-white { color: var(--white); font-size: 20px; font-weight: 600; font-family: 'Poppins', sans-serif; }
.text-weight-600 { font-weight: 600; }

/* Gradient text */
.color-gradient-primary {
  background-image: linear-gradient(138deg, white, #c0cee4 56%, #3e88ff 100%, #25416f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.color-gradient-primary.small-text {
  background-image: linear-gradient(135deg, white 0%, #bfd8ff 40%, #3e88ff 100%);
}
.color-gradient-b-w {
  background-image: linear-gradient(105deg, #fff, #b1b1b1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Poppins', sans-serif;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--primary);
  background-image: linear-gradient(270deg, var(--dark-blue), var(--primary));
  color: white;
  border-radius: 60px;
  padding: 4px 11px;
  font-size: 14px;
  width: fit-content;
  margin-bottom: 12px;
}
.badge-icon { width: 20px; height: 20px; object-fit: contain; flex-shrink: 0; }

/* ===== HEADER / NAV ===== */
.header-section {
  position: sticky;
  top: 0;
  z-index: 9999;
  background-color: var(--bg);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 16px;
}

.brand { display: flex; align-items: center; text-decoration: none; }
.logo { height: 52px; width: auto; mix-blend-mode: screen; }

.nav-menu {
  display: flex;
  align-items: center;
  border: 1px solid var(--primary);
  border-radius: 50px;
  padding: 0 28px;
  gap: 0;
}

.nav-link {
  color: var(--text);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 20px;
  transition: color 0.2s;
  font-family: 'Inter', sans-serif;
}
.nav-link:hover { color: var(--white); }

/* Button */
.button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 15px 20px;
  color: white;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  text-decoration: none;
  background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary) 60%, #d2e3ff 140%);
  background-size: 200% 200%;
  background-position: 0% 100%;
  transition: background-position 0.4s ease;
  cursor: pointer;
  border: none;
}
.button-primary:hover { background-position: 100% 0%; }
.button-primary.large { font-size: 20px; padding: 16px 28px; }

.btn-inner { display: flex; align-items: center; gap: 8px; }
.button-image { width: 24px; height: 24px; object-fit: contain; }
.button-text { white-space: nowrap; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; }

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 0 20px 16px;
  border-top: 1px solid rgba(62,136,255,0.2);
}
.mobile-menu.open { display: flex; }
.mobile-nav-link {
  color: var(--text);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid rgba(62,136,255,0.12);
  font-family: 'Inter', sans-serif;
}
.mobile-cta { margin-top: 14px; }

/* ===== HERO ===== */
.hero-section { padding: 50px 0; }

.hero-block {
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-content { flex: 1; min-width: 0; }

.hero-heading-block { margin-bottom: 20px; }

.text-lg { margin-bottom: 32px; display: block; }

.button-tele { margin-bottom: 28px; }

.customer-stats-wrapper { display: flex; align-items: center; gap: 12px; }
.customers-image { height: 44px; width: auto; }
.member-icon { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; }
.customer-stats-wrap { display: flex; align-items: center; gap: 8px; }

.hero-images-wrapper {
  flex: 1;
  min-width: 0;
  max-width: 520px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(62,136,255,0.25);
}

/* ===== FEATURES 3-CARD ===== */
.features-section { padding-bottom: 100px; }

.features-card-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.features-card-list-item {
  border: 1px solid var(--light-blue);
  border-radius: 10px;
  padding: 20px 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fetures-card-content-wrap { display: flex; flex-direction: column; gap: 12px; }

/* ===== EXCLUSIVE SECTIONS ===== */
.exclusive-features-section { padding-bottom: 100px; }

.content-layout-space-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
.content-layout-space-between.reverse { flex-direction: row-reverse; }

.exclusive-feature-content-block { flex: 1; min-width: 0; max-width: 520px; }

.section-heading-wrap { display: flex; flex-direction: column; gap: 24px; }
.section-heading-wrap.center { align-items: center; text-align: center; margin-bottom: 52px; }
.section-title-wrap { display: flex; flex-direction: column; gap: 12px; }

.exclusive-feature-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.exclusive-feature-list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
}

.features-images-wrap {
  background-color: rgba(37,65,111,0.24);
  border-radius: 16px;
  width: 420px;
  max-width: 450px;
  min-height: 400px;
  padding: 40px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-image { width: 100%; height: auto; border-radius: 8px; }

/* Stats grid (2x2) */
.stats-box-wrap {
  padding: 30px;
  min-height: unset;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
}
.stat-block {
  border: 1px solid var(--primary);
  background-color: var(--dark-blue);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  box-shadow: inset 10px 4px 40px rgba(98,67,255,0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.stats-count { font-size: 36px; font-weight: 600; font-family: 'Poppins', sans-serif; }
.stat-label-text { font-size: 16px; font-family: 'Poppins', sans-serif; }

.mini-stats-row { display: flex; gap: 32px; }
.mini-stat { display: flex; flex-direction: column; gap: 4px; }
.mini-stat-title { font-size: 20px; font-weight: 700; }

/* ===== COACH ===== */
.benifit-section { padding-bottom: 100px; }

.benifit-card-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.benifit-card-block { display: flex; flex-direction: column; gap: 20px; }

.lifestyle-video-wrap { width: 100%; border-radius: 10px; overflow: hidden; }

.benifit-card-content-wrap { display: flex; flex-direction: column; gap: 8px; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { padding-bottom: 100px; }

.testimonials-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}
.testimonials-scroll:active { cursor: grabbing; }
.testimonials-scroll::-webkit-scrollbar { height: 4px; }
.testimonials-scroll::-webkit-scrollbar-track { background: rgba(255,255,255,0.05); border-radius: 4px; }
.testimonials-scroll::-webkit-scrollbar-thumb { background: rgba(62,136,255,0.4); border-radius: 4px; }

.testimonial-card {
  flex: 0 0 280px;
  display: flex;
  flex-direction: column;
  background-color: rgba(37,65,111,0.2);
  border: 1px solid rgba(62,136,255,0.2);
  border-radius: 16px;
  overflow: hidden;
  scroll-snap-align: start;
  transition: border-color 0.2s;
}
.testimonial-card:hover { border-color: rgba(62,136,255,0.5); }

.testimonial-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: top;
  display: block;
}

.testimonial-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  flex: 1;
}

.testimonial-quote {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-grey);
  font-style: italic;
  font-family: 'Inter', sans-serif;
}

.testimonial-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.08em;
  margin-top: auto;
}

/* ===== TESTIMONIALS (interview layout) ===== */
.testimonials-section {
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://cdn.prod.website-files.com/68389384e1dcd76506f75c43/68389387e1dcd76506f75df2_Lines.svg');
  background-position: center top;
  background-repeat: repeat-y;
  background-size: 100% auto;
  opacity: 0.45;
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0,0,0,0.6) 8%,
    black 20%,
    black 80%,
    rgba(0,0,0,0.6) 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0,0,0,0.6) 8%,
    black 20%,
    black 80%,
    rgba(0,0,0,0.6) 92%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 0;
}

.testimonials-section > * {
  position: relative;
  z-index: 1;
}

.interview-row { padding-bottom: 80px; }
.interview-row:last-child { padding-bottom: 0; }

.interview-photo-wrap {
  flex-shrink: 0;
  width: 383px;
  border-radius: 16px;
  overflow: hidden;
}

.interview-portrait {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

/* ===== FAQ ===== */
.faq-section { padding-bottom: 100px; }
.faq-block { display: flex; flex-direction: column; gap: 40px; }

.faq-accordion-wrap {
  max-width: 917px;
  margin: 0 auto;
  width: 100%;
}

.accordion { border-bottom: 1px solid rgba(212,212,217,0.1); }

.accordion-title-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0 20px;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  text-align: left;
}

.accordion-icon-wrapper {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.accordion-arrow { width: 18px; height: 18px; }
.accordion.open .accordion-icon-wrapper { transform: rotate(180deg); }

.accordion-description-wrap {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}
.accordion.open .accordion-description-wrap { max-height: 400px; }

.accordion-description {
  color: var(--text-grey);
  font-size: 16px;
  line-height: 1.625em;
  max-width: 90%;
  padding-bottom: 20px;
  margin: 0;
  font-family: 'Inter', sans-serif;
}

/* ===== COACH SECTION ===== */
.coach-highlight-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(62,136,255,0.06);
  border: 1px solid rgba(62,136,255,0.2);
  border-radius: 20px;
  padding: 32px 40px;
  margin: 48px auto;
  max-width: 860px;
  flex-wrap: wrap;
}

.coach-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 40px;
  text-align: center;
}

.coach-stat-num {
  font-size: 40px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  line-height: 1;
}

.coach-stat-label {
  font-size: 13px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.coach-stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(62,136,255,0.25);
  flex-shrink: 0;
}

.coach-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 16px;
}

.coach-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(62,136,255,0.15);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.coach-card:hover {
  border-color: rgba(62,136,255,0.4);
  background: rgba(62,136,255,0.05);
}

.coach-card-icon {
  font-size: 32px;
  line-height: 1;
}

/* ===== FOOTER ===== */
.footer { padding-bottom: 20px; }

.footer-block {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding: 60px 0 40px;
  border-bottom: 1px solid rgba(255,255,255,0.16);
}

.footer-logo-block { display: flex; flex-direction: column; gap: 16px; max-width: 381px; }
.footer-logo-block .logo { height: 44px; }

.footer-links-block-wrap { display: flex; gap: 60px; }

.footer-links-block { display: flex; flex-direction: column; gap: 12px; }

.footer-link-title {
  font-weight: 700;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-link {
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  transition: color 0.3s;
}
.footer-link:hover { color: var(--white); }

.copyright-block-2 {
  color: #c8cacc;
  text-align: center;
  padding-top: 20px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .heading { font-size: 48px; }
  .h2 { font-size: 38px; }
  .h3 { font-size: 28px; }
  .hero-block { flex-direction: column; gap: 40px; }
  .hero-images-wrapper { max-width: 100%; width: 100%; }
  .content-layout-space-between,
  .content-layout-space-between.reverse { flex-direction: column; gap: 40px; }
  .features-images-wrap { width: 100%; max-width: 100%; min-height: unset; }
  .exclusive-feature-content-block { max-width: 100%; }
  .benifit-card-list { grid-template-columns: repeat(2, 1fr); }
  .coach-card-grid { grid-template-columns: repeat(2, 1fr); }
  .coach-highlight-bar { gap: 0; padding: 24px 20px; }
  .coach-stat { padding: 0 24px; }
  .interview-photo-wrap { width: 100%; max-width: 100%; }
  .interview-row { padding-bottom: 60px; }
}

@media (max-width: 767px) {
  body.body-2 { background-image: none; }
  .heading { font-size: 30px; }
  .h2 { font-size: 30px; }
  .h3 { font-size: 24px; }
  .nav-menu { display: none; }
  .nav-button { display: none; }
  .hamburger { display: flex; }
  .hero-section { padding: 20px 0; }
  .features-section { padding-bottom: 60px; }
  .features-card-list { grid-template-columns: 1fr; }
  .exclusive-features-section { padding-bottom: 60px; }
  .benifit-section { padding-bottom: 60px; }
  .benifit-card-list { grid-template-columns: 1fr; }
  .testimonial-card { flex: 0 0 240px; }
  .coach-card-grid { grid-template-columns: 1fr; }
  .coach-highlight-bar { flex-direction: column; gap: 24px; }
  .coach-stat-divider { width: 80px; height: 1px; }
  .coach-stat { padding: 0; }
  .footer-block { flex-direction: column; }
  .footer-links-block-wrap { flex-wrap: wrap; gap: 32px; }
  .mini-stats-row { flex-direction: column; gap: 12px; }
  .stats-grid { gap: 12px; }
  .stat-block { padding: 20px; }
  .stats-count { font-size: 28px; }
}
