* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 84px;
}

:root {
  --bg: #fbf7f4;
  --panel: #ffffff;
  --text: #2b2420;
  --muted: #7a6f66;
  --line: rgba(43, 36, 32, 0.12);
  --accent: #d1495b;
  --accent-strong: #a8324a;
  --accent-soft: rgba(209, 73, 91, 0.1);
  --shadow: 0 16px 40px rgba(43, 36, 32, 0.08);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --container: 1280px;
  --gutter: clamp(20px, 5vw, 64px);
}

html, body {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  -webkit-text-size-adjust: 100%;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
}

:focus-visible {
  outline: 2px solid var(--accent-strong);
  outline-offset: 2px;
}

.main {
  padding: 0 var(--gutter);
  width: 100%;
}

.main-body {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}

.paddingSection {
  padding: clamp(20px, 4vw, 32px) 0;
}

.mainPadding {
  padding: 0;
}

/* ---------- Header / Nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg);
  padding-top: 14px;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  min-width: 0;
}

.brand-mark {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  font-size: 19px;
  font-weight: 700;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  min-width: 0;
}

.brand-copy strong {
  font-size: 0.98rem;
  white-space: nowrap;
}

.brand-copy span {
  font-size: 0.76rem;
  color: var(--muted);
  white-space: nowrap;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex: 1;
  min-width: 0;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 28px);
  margin: 0 auto;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 6px 2px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
  border-color: var(--accent);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-login {
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 6px;
  color: var(--text);
  white-space: nowrap;
}

.nav-cta {
  font-weight: 600;
  font-size: 0.95rem;
  padding: 11px 20px;
  border-radius: 8px;
  color: #fff;
  background: var(--accent);
  transition: background-color 0.2s ease;
  white-space: nowrap;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--accent-strong);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Nav collapses to a slide-down panel below 1080px, where the link list
   would otherwise start crowding the logo and buttons. */
@media (max-width: 1080px) {
  .nav-toggle {
    display: inline-block;
  }

  .nav-shell {
    position: fixed;
    top: 72px;
    left: 4%;
    right: 4%;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--panel);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    max-height: calc(100vh - 96px);
    overflow-y: auto;
  }

  .nav-shell.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    width: 100%;
  }

  .nav-links a {
    width: 100%;
    padding: 12px 4px;
    border-bottom: 1px solid var(--line);
  }

  .nav-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-cta,
  .nav-login {
    text-align: center;
    padding: 13px 16px;
  }
}

@media (max-width: 400px) {
  .brand-copy span {
    display: none;
  }
}

/* ---------- Hero ---------- */

.hero-section {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  padding: clamp(32px, 6vw, 56px) 0 clamp(24px, 4vw, 40px);
  border-bottom: 1px solid var(--line);
}

.hero-copy .eyebrow {
  display: inline-block;
  color: var(--accent-strong);
  font-weight: 600;
  font-size: clamp(0.85rem, 1.4vw, 0.95rem);
  margin-bottom: 14px;
}

.hero-copy h1 {
  font-size: clamp(26px, 4.2vw, 42px);
  line-height: 1.18;
  font-weight: 700;
  margin-bottom: 18px;
}

.hero-copy p {
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 14px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
}

.hero-actions .btn-primary {
  padding: 14px 26px;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  transition: background-color 0.2s ease;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.hero-actions .btn-primary:hover {
  background: var(--accent-strong);
}

.hero-actions .btn-secondary {
  font-weight: 600;
  color: var(--text);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.hero-stat-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(20px, 3vw, 28px);
  box-shadow: var(--shadow);
  width: 100%;
}

.hero-stat-card .stat-number {
  font-size: clamp(30px, 4vw, 40px);
  font-weight: 700;
  color: var(--accent-strong);
}

.hero-stat-card .stat-label {
  color: var(--muted);
  margin-bottom: 20px;
  font-size: clamp(14px, 1.6vw, 16px);
}

.avatar-stack {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.avatar-stack img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--panel);
  margin-left: -12px;
  flex-shrink: 0;
}

.avatar-stack img:first-child {
  margin-left: 0;
}

.hero-stat-card .stat-note {
  font-size: 13.5px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 16px;
  line-height: 1.55;
}
.hero-Section-Content{
    margin-top: 4rem;
}
.hero-Section-Content h6{
    font-size: 16px;
    color: var(--muted);
}

@media (max-width: 860px) {
  .hero-section {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .hero-copy p {
    max-width: none;
  }

  .hero-stat-card {
    max-width: 420px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    justify-content: center;
    width: 100%;
  }

  .hero-actions .btn-secondary {
    border-bottom: none;
    border: 1px solid var(--line);
    border-radius: 8px;
  }

  .hero-stat-card {
    max-width: none;
  }
}

/* ---------- Section heading ---------- */

.h2heading {
  margin: 8px 0 clamp(20px, 3vw, 28px);
}

.h2heading .eyebrow {
  display: block;
  color: var(--accent-strong);
  font-weight: 600;
  margin-bottom: 8px;
  font-size: clamp(0.85rem, 1.4vw, 0.95rem);
}

.h2heading h2 {
  font-size: clamp(22px, 3.4vw, 30px);
  font-weight: 700;
  max-width: 44ch;
  line-height: 1.25;
}

.intro {
  padding: clamp(28px, 5vw, 44px) 0;
  border-bottom: 1px solid var(--line);
}

.content p {
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 16px;
}
.content h4 {
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 16px;
}
.content ul{
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 16px;
}

.content strong {
  color: var(--text);
}

/* ---------- Member grid ---------- */

.main-subheading {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 20px;
}

.main-subheading p {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}

.main-subheading p span {
  color: var(--accent-strong);
}

.slots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: clamp(10px, 2vw, 14px);
}

.slot-card {
  width: 100%;
  aspect-ratio: 4 / 6;
  perspective: 1200px;
  cursor: pointer;
}

.slot-card-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transition: transform 0.6s ease;
  transform-style: preserve-3d;
}

.slot-card:hover .slot-card-inner,
.slot-card:focus-visible .slot-card-inner,
.slot-card.is-flipped .slot-card-inner {
  transform: rotateY(180deg);
}

.slot-face {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border: 1px solid var(--line);
}

.slot-front {
  background: #000;
}

.slot-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slot-front::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 55%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.6) 45%, transparent 100%);
}

.slot-text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: clamp(10px, 2vw, 14px);
  z-index: 2;
}

.slot-text h3 {
  font-size: clamp(13px, 1.6vw, 16px);
  font-weight: 700;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.slot-text span {
  display: inline-block;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  background: var(--accent);
  padding: 3px 9px;
  border-radius: 100px;
}

.slot-back {
  background: var(--panel);
  color: var(--text);
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(12px, 2.5vw, 20px);
  text-align: center;
}

.profile-top img {
  width: clamp(52px, 8vw, 72px);
  height: clamp(52px, 8vw, 72px);
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-soft);
  margin-bottom: 10px;
}

.slot-back h3 {
  font-size: clamp(14px, 1.8vw, 17px);
  font-weight: 700;
}

.slot-back span {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 12px;
}

.back-actions {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.back-actions p {
  background: var(--text);
  color: #fff;
  padding: 9px 12px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 11px;
  transition: background-color 0.2s ease;
}

.back-actions p:hover {
  background: var(--accent-strong);
}

.button-section {
  margin-top: 28px;
  text-align: center;
}

.button-section .nav-cta {
  display: inline-block;
}

@media (max-width: 480px) {
  .slots {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- How it works: timeline ---------- */

.timeline {
  position: relative;
  padding-left: clamp(24px, 4vw, 32px);
  max-width: 74ch;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: var(--line);
}

.timeline-step {
  position: relative;
  padding-bottom: 30px;
}

.timeline-step:last-child {
  padding-bottom: 0;
}

.timeline-step::before {
  content: attr(data-step);
  position: absolute;
  left: clamp(-24px, -4vw, -32px);
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.timeline-step h4 {
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 700;
  margin-bottom: 6px;
}

.timeline-step p {
  font-size: clamp(14.5px, 1.6vw, 16px);
  color: var(--muted);
  line-height: 1.65;
}

/* ---------- Features grid ---------- */

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(14px, 2.5vw, 20px);
  margin-top: 8px;
}

.feature-card {
  display: flex;
  gap: 16px;
  padding: clamp(16px, 2.5vw, 22px);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
}

.feature-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  display: grid;
  place-items: center;
  font-size: 18px;
}

.feature-copy h4 {
  font-size: clamp(15.5px, 1.8vw, 17px);
  font-weight: 700;
  margin-bottom: 6px;
}

.feature-copy p {
  font-size: clamp(14px, 1.6vw, 15px);
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 760px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 400px) {
  .feature-card {
    gap: 12px;
  }

  .feature-icon {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
}

/* ---------- Reviews carousel ---------- */

.reviews-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
}

.reviews-track::-webkit-scrollbar {
  height: 6px;
}

.reviews-track::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 100px;
}

.review-card {
  scroll-snap-align: start;
  flex: 0 0 clamp(240px, 78vw, 300px);
  padding: clamp(16px, 2.5vw, 22px);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
}

.review-card .quote-mark {
  font-size: 28px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 10px;
}

.review-text {
  font-size: clamp(14px, 1.6vw, 15px);
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 18px;
}

.review-user {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.review-user h4 {
  font-size: 14.5px;
  font-weight: 700;
}

.review-user span {
  color: var(--accent-strong);
  font-size: 14px;
  white-space: nowrap;
}

@media (min-width: 900px) {
  .review-card {
    flex: 0 0 320px;
  }
}

/* ---------- FAQ ---------- */

.faqs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 80ch;
}

.box {
  border-left: 3px solid var(--line);
  padding: 4px 0 4px clamp(12px, 2.5vw, 20px);
  transition: border-color 0.2s ease;
}

.box:hover {
  border-left-color: var(--accent);
}

.question {
  display: flex;
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
}

.question h3 {
  font-size: clamp(15px, 1.8vw, 17px);
  font-weight: 600;
  line-height: 1.4;
}

.question i {
  flex-shrink: 0;
  font-size: 14px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--muted);
  transition: transform 0.3s ease;
}

.box .ans.active + .question i,
.question:has(+ .ans.active) i {
  transform: rotate(180deg);
}

.ans {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.ans p {
  font-size: clamp(14px, 1.6vw, 15px);
  line-height: 1.65;
  color: var(--muted);
  padding-bottom: 16px;
}

.ans.active {
  max-height: 320px;
}

/* ---------- Footer ---------- */

.footer {
  border-top: 1px solid var(--line);
  background: var(--text);
  margin-top: 40px;
}

.footer-section p {
  font-size: 13.5px;
  line-height: 1.7;
  color: #d8d1c9;
  max-width: 90ch;
  margin: 0 auto;
  text-align: center;
}

.footer-conditions p {
  color: #fff;
  font-size: 13.5px;
  word-break: break-word;
}

.footer-conditions p a {
  color: #d8d1c9;
  display: inline-block;
  padding: 4px 2px;
}

.footer-conditions p a:hover {
  color: #fff;
}

/* ---------- General breakpoints ---------- */

@media (max-width: 1024px) {
  :root {
    --container: 960px;
  }
}

@media (max-width: 576px) {
  .navbar {
    padding: 12px 0;
  }

  .h2heading h2 {
    max-width: none;
  }

  .main-subheading {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 360px) {
  .main {
    padding: 0 4%;
  }

  .slots {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .hero-stat-card {
    padding: 16px;
  }
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}