.btn-primary,
.btn-ghost {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 14px 28px;
  cursor: pointer;
  font-weight: 800;
  transition: opacity 0.15s, transform 0.15s, border-color 0.15s;
}

.btn-primary {
  border: none;
  background: linear-gradient(135deg, var(--neon), var(--neon-dark));
  color: #000;
  box-shadow: 0 10px 34px rgba(170, 255, 0, 0.38), 0 0 0 1px rgba(225, 255, 167, 0.18) inset;
  letter-spacing: -0.01em;
}

.btn-primary:hover {
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 16px 46px rgba(170, 255, 0, 0.46), 0 0 0 1px rgba(255, 255, 255, 0.24) inset;
}

.btn-ghost {
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: var(--text);
}

.btn-ghost:hover {
  border-color: var(--neon-border);
}

.card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(12, 24, 16, 0.92), var(--bg-1));
  padding: 24px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  padding: 7px 12px;
  border: 1px solid var(--neon-border);
  border-radius: 999px;
  background: rgba(170, 255, 0, 0.08);
  color: #E8FFD5;
  font-size: 0.9rem;
  font-weight: 800;
}

.text-icon {
  font-size: 0.74em;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.nav-toggle span {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s, opacity 0.2s;
}

.nav-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.nav-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.site-header.is-open .nav-toggle span:nth-child(1) {
  transform: rotate(45deg);
}

.site-header.is-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .nav-toggle span:nth-child(3) {
  transform: rotate(-45deg);
}

.trust-item {
  display: grid;
  place-items: center;
  min-height: 124px;
  padding: 22px 12px;
  text-align: center;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--border);
}

.trust-item strong {
  color: var(--neon);
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  line-height: 1;
}

.trust-item span,
.testimonial-card span {
  color: var(--muted);
  font-weight: 700;
}

.step-card {
  z-index: 1;
}

.step-number {
  display: inline-flex;
  margin-bottom: 36px;
  color: var(--neon);
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.step-card p,
.bundle-card p,
.testimonial-card p,
.instructor-copy p {
  color: var(--muted);
}

.text-link {
  color: var(--neon);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.hero-trust-card {
  display: grid;
  gap: 12px;
  width: min(100%, 520px);
  margin-top: 16px;
  border: 1px solid rgba(170, 255, 0, 0.16);
  border-radius: 18px;
  background:
    radial-gradient(circle at 12% 20%, rgba(170, 255, 0, 0.11), transparent 10rem),
    rgba(255, 255, 255, 0.035);
  padding: 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hero-trust-card strong {
  display: block;
  color: #F3FFE8;
  font-size: 0.92rem;
}

.hero-trust-card p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.hero-trust-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-trust-card li {
  border: 1px solid rgba(170, 255, 0, 0.18);
  border-radius: 999px;
  background: rgba(170, 255, 0, 0.08);
  color: #E8FFD5;
  padding: 7px 10px;
  font-size: 0.76rem;
  font-weight: 800;
}

.hero-mockup-trigger {
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
  padding: 0;
  color: inherit;
  cursor: pointer;
}

.hero-mockup-trigger:hover {
  transform: translateY(-3px);
}

.hero-mockup-trigger:focus-visible {
  outline: 2px solid var(--neon);
  outline-offset: 6px;
  border-radius: 30px;
}

.hero-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
}

.hero-modal[hidden] {
  display: none;
}

.hero-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.hero-modal-card {
  position: relative;
  width: min(100%, 480px);
  border: 1px solid rgba(170, 255, 0, 0.26);
  border-radius: 26px;
  background:
    radial-gradient(circle at 82% 16%, rgba(170, 255, 0, 0.18), transparent 12rem),
    linear-gradient(180deg, rgba(9, 22, 12, 0.98), rgba(3, 8, 5, 0.98));
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.62), 0 0 54px rgba(170, 255, 0, 0.13);
  padding: clamp(24px, 5vw, 34px);
}

.hero-modal-card h2 {
  margin: 14px 0 12px;
  font-size: clamp(1.75rem, 5vw, 2.45rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.hero-modal-card p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.65;
}

.hero-modal-card .btn-primary {
  width: 100%;
  margin-top: 18px;
}

.hero-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
}

.bundle-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  margin-bottom: 28px;
  border: 1px solid rgba(213, 255, 120, 0.34);
  border-radius: 16px;
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.32), transparent 24%),
    radial-gradient(circle at 70% 78%, rgba(170, 255, 0, 0.28), transparent 58%),
    linear-gradient(135deg, rgba(170, 255, 0, 0.32), rgba(76, 126, 0, 0.22));
  color: #F5FFE8;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -16px 28px rgba(0, 0, 0, 0.18),
    0 0 26px rgba(170, 255, 0, 0.2);
}

.bundle-icon svg {
  width: 25px;
  height: 25px;
  filter: drop-shadow(0 0 8px rgba(245, 255, 232, 0.35));
}

.bundle-icon svg * {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.instructor-photo {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: clamp(420px, 46vw, 560px);
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--neon-border);
  border-radius: 28px;
  background:
    repeating-linear-gradient(135deg, rgba(170, 255, 0, 0.08) 0 14px, transparent 14px 28px),
    linear-gradient(180deg, var(--bg-2), var(--bg-1));
  color: var(--neon);
  font-weight: 900;
  letter-spacing: 0.14em;
  text-align: center;
  box-shadow: var(--shadow);
}

.instructor-photo img {
  width: min(86%, 420px);
  height: auto;
  border-radius: 32px;
  filter: drop-shadow(0 0 38px rgba(170, 255, 0, 0.44));
}

.role {
  color: var(--text) !important;
  font-weight: 800;
}

.stat-box {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  padding: 16px;
}

.stat-box strong {
  display: block;
  color: var(--neon);
  font-size: 1.35rem;
}

.stat-box span {
  color: var(--muted);
  font-size: 0.88rem;
}

.stars {
  margin-bottom: 18px;
  color: var(--neon);
  letter-spacing: 0.08em;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--bg-1);
}

.faq-item h3 {
  margin: 0;
}

.faq-trigger {
  display: flex;
  width: 100%;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  background: transparent;
  color: var(--text);
  padding: 18px 20px;
  cursor: pointer;
  text-align: left;
  font-weight: 900;
}

.faq-trigger[aria-expanded="true"] span:last-child {
  transform: rotate(45deg);
}

.faq-trigger span:last-child {
  color: var(--neon);
  font-size: 1.6rem;
  transition: transform 0.2s;
}

.faq-panel {
  padding: 0 20px 20px;
  color: var(--muted);
}

.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green-live);
  box-shadow: 0 0 0 8px rgba(74, 222, 128, 0.12), 0 0 18px rgba(74, 222, 128, 0.8);
}

.site-footer {
  border-top: 1px solid var(--border);
  background: #020302;
  padding: 48px 0 28px;
}

.footer-disclaimer {
  max-width: 760px;
  margin-top: 18px;
  color: var(--muted-deep);
  font-size: 0.9rem;
}

.footer-links {
  display: grid;
  gap: 12px;
  color: var(--muted);
  font-weight: 800;
}

.copyright {
  margin-top: 30px;
  color: var(--muted-deep);
  font-size: 0.86rem;
}

.hero-phone-wrap {
  position: relative;
  display: grid;
  width: min(100%, 470px);
  min-height: 560px;
  place-items: center;
}

.hero-image-frame {
  width: min(100%, 360px);
  border: 0;
  background: transparent;
  padding: 0;
}

.hero-image-frame img {
  width: 100%;
  height: auto;
  border-radius: 28px;
  filter: drop-shadow(0 30px 80px rgba(0, 0, 0, 0.55));
}

.hero-feature-pill {
  position: absolute;
  z-index: 2;
  width: 132px;
  border: 1px solid rgba(170, 255, 0, 0.22);
  border-radius: 14px;
  background: rgba(7, 16, 10, 0.9);
  padding: 12px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hero-feature-pill strong {
  display: block;
  color: var(--neon);
  font-size: 0.8rem;
}

.hero-feature-pill span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.pill-1 { left: 0; top: 94px; }
.pill-2 { right: 0; top: 94px; }
.pill-3 { left: 6px; top: 230px; }
.pill-4 { right: 6px; top: 230px; }
.pill-5 { left: 0; bottom: 92px; }
.pill-6 { right: 0; bottom: 92px; }

.locale-en .bundle-grid {
  grid-template-columns: repeat(6, 1fr);
}

.locale-en .bundle-card {
  padding: 18px;
}

.locale-en .bundle-card h3 {
  font-size: 0.98rem;
}

.locale-en .bundle-card p {
  font-size: 0.84rem;
  line-height: 1.55;
}

.locale-en .bundle-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 13px;
}

.locale-en .bundle-icon svg {
  width: 21px;
  height: 21px;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.preview-card {
  overflow: hidden;
  min-height: 420px;
  border-color: rgba(170, 255, 0, 0.18);
  padding: 0;
  background: #030503;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.36);
}

.preview-image-link {
  position: relative;
  display: block;
  width: 100%;
  min-height: 420px;
  overflow: hidden;
  border: 0;
  border-radius: inherit;
  background: transparent;
  color: inherit;
  cursor: pointer;
  padding: 0;
  text-align: left;
}

.preview-image-link img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.24s ease, filter 0.24s ease;
}

.preview-image-link:hover img,
.preview-image-link:focus-visible img {
  transform: scale(1.035);
  filter: brightness(1.08);
}

.preview-overlay {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  gap: 7px;
  min-height: 42%;
  align-content: end;
  padding: 86px 18px 18px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.74) 42%, rgba(0, 0, 0, 0.94));
}

.preview-overlay strong {
  color: #F4FFF0;
  font-size: 1.1rem;
  line-height: 1.15;
}

.preview-overlay span:last-child {
  color: #CFE3C8;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.45;
}

.preview-open {
  width: max-content;
  max-width: 100%;
  border: 1px solid rgba(170, 255, 0, 0.22);
  border-radius: 999px;
  background: rgba(170, 255, 0, 0.12);
  color: var(--neon);
  padding: 5px 9px;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.community-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  place-items: center;
  padding: 18px;
}

.community-modal[hidden] {
  display: none;
}

.community-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.community-modal-card {
  position: relative;
  display: grid;
  gap: 16px;
  width: min(100%, 780px);
  max-height: calc(100vh - 36px);
  overflow: auto;
  border: 1px solid rgba(170, 255, 0, 0.26);
  border-radius: 26px;
  background:
    radial-gradient(circle at 80% 10%, rgba(170, 255, 0, 0.14), transparent 16rem),
    linear-gradient(180deg, rgba(9, 22, 12, 0.98), rgba(3, 8, 5, 0.98));
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.66), 0 0 54px rgba(170, 255, 0, 0.13);
  padding: clamp(18px, 3vw, 26px);
}

.community-modal-card h2 {
  margin: 0;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
}

.community-modal-card img {
  width: 100%;
  max-height: min(72vh, 860px);
  object-fit: contain;
  border: 1px solid rgba(170, 255, 0, 0.16);
  border-radius: 18px;
  background: #000;
}

.community-modal-card .btn-primary {
  width: max-content;
  max-width: 100%;
  justify-self: center;
}

.community-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.48);
  color: var(--text);
  cursor: pointer;
  font-size: 1.7rem;
  line-height: 1;
}

.founder-card {
  display: grid;
  gap: 18px;
  border: 1px solid var(--neon-border);
  border-radius: 28px;
  background:
    radial-gradient(circle at 28% 18%, rgba(170, 255, 0, 0.18), transparent 12rem),
    linear-gradient(180deg, rgba(10, 24, 13, 0.96), rgba(4, 9, 5, 0.98));
  padding: clamp(22px, 4vw, 34px);
  box-shadow: var(--shadow);
}

.founder-emblem {
  display: grid;
  width: min(100%, 220px);
  place-items: center;
}

.founder-emblem img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 24px;
  filter: drop-shadow(0 0 32px rgba(170, 255, 0, 0.42));
}

.founder-card h3 {
  margin-bottom: 4px;
  font-size: 1.6rem;
}

.founder-card p,
.founder-card li {
  color: var(--muted);
}

.founder-card ul,
.benefits-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.founder-card li,
.benefits-list li {
  position: relative;
  padding-left: 24px;
  font-weight: 800;
}

.founder-card li::before,
.benefits-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 14px rgba(170, 255, 0, 0.55);
}

.weekly-benefits {
  padding-top: 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 22px;
}

.benefits-card h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.benefits-gift-card {
  display: grid;
  min-height: 300px;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 58%, rgba(170, 255, 0, 0.24), transparent 12rem),
    linear-gradient(180deg, rgba(12, 24, 16, 0.92), var(--bg-1));
}

.gift-box {
  position: relative;
  width: 160px;
  height: 130px;
  border-radius: 18px;
  background: linear-gradient(135deg, #6E9400, #AAFF00);
  box-shadow: 0 0 70px rgba(170, 255, 0, 0.35);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.gift-box::before,
.gift-box::after,
.gift-box span {
  content: "";
  position: absolute;
  background: rgba(5, 12, 5, 0.5);
}

.gift-box::before {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 22px;
  transform: translateX(-50%);
  transition: transform 0.22s ease;
}

.benefits-gift-card:hover .gift-box {
  transform: translateY(-8px) rotate(-2deg);
  box-shadow: 0 0 90px rgba(170, 255, 0, 0.48);
}

.benefits-gift-card:hover .gift-box span {
  transform: translateX(-50%) translateY(-8px) rotate(-8deg);
}

.gift-box::after {
  left: -14px;
  right: -14px;
  top: 28px;
  height: 24px;
  border-radius: 10px;
}

.gift-box span {
  left: 50%;
  top: -58px;
  width: 92px;
  height: 74px;
  border: 18px solid #AAFF00;
  border-bottom: 0;
  border-radius: 70px 70px 0 0;
  background: transparent;
  transform: translateX(-50%);
}

.cta-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.cta-benefits span {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: #DDEED8;
  padding: 8px 12px;
  font-size: 0.84rem;
  font-weight: 800;
}
