﻿:root {
  --bg: #0c1116;
  --bg-soft: #111a24;
  --card: #141f2b;
  --accent: #20d489;
  --accent-strong: #19b874;
  --primary: #5aa3ff;
  --text: #f2f5f9;
  --muted: #b9c3cf;
  --shadow: 0 18px 40px rgba(5, 10, 20, 0.45);
}

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;600;700&family=Sora:wght@400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Manrope', sans-serif;
  background: radial-gradient(circle at top, #162231 0%, #0c1116 45%, #090d12 100%);
  color: var(--text);
  line-height: 1.6;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(12, 17, 22, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(90, 163, 255, 0.12);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.brand img {
  width: 150px;
}

.top-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #2f6cff);
  color: #0b1118;
  box-shadow: 0 12px 26px rgba(47, 108, 255, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #06140b;
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text);
}

.btn-outline {
  border: 1px solid rgba(90, 163, 255, 0.4);
  color: var(--text);
}

.hero {
  padding: 4rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.hero-copy h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.9rem, 3vw, 3.1rem);
  line-height: 1.15;
  margin: 1rem 0;
  max-width: 20ch;
}

.hero-copy h1 span {
  color: var(--primary);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
}

.lead {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.5rem 0;
  align-items: center;
}

.trust {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.trust-item {
  display: flex;
  gap: 0.75rem;
  background: var(--card);
  padding: 0.9rem;
  border-radius: 16px;
  border: 1px solid rgba(90, 163, 255, 0.15);
}

.trust-item i {
  color: var(--accent);
  font-size: 1.4rem;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.85rem;
}

.hero-visual {
  display: grid;
  gap: 1rem;
  width: 100%;
}

.hero-card {
  background: var(--card);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  width: 100%;
}

.hero-card-info {
  padding: 1rem;
}

.hero-card-info span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-card.wide {
  grid-column: span 2;
}

.strip {
  padding: 1.2rem 0;
  background: rgba(20, 31, 43, 0.75);
  border-top: 1px solid rgba(90, 163, 255, 0.12);
  border-bottom: 1px solid rgba(90, 163, 255, 0.12);
}

.strip-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  align-items: center;
}

.strip-item {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  color: var(--muted);
}

.section-head {
  text-align: center;
  margin-bottom: 2rem;
}

.section-head h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
}

.section-head p {
  color: var(--muted);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.plans .grid-4 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.plans .plans-dots {
  display: none;
}

.card,
.plan,
.quote {
  background: var(--card);
  border-radius: 18px;
  padding: 1.5rem;
  border: 1px solid rgba(90, 163, 255, 0.12);
}

.card h3,
.plan h3 {
  font-family: 'Sora', sans-serif;
  margin-bottom: 0.75rem;
}

.card p,
.plan ul,
.quote p {
  color: var(--muted);
}

.plan ul {
  list-style: none;
  display: grid;
  gap: 0.5rem;
  margin: 1rem 0 1.5rem;
}

.plan li::before {
  content: '✔';
  color: var(--accent);
  margin-right: 0.5rem;
}

.plan.featured {
  border: 1px solid rgba(32, 212, 137, 0.6);
  box-shadow: 0 16px 40px rgba(32, 212, 137, 0.2);
}

.plans .plan {
  position: relative;
  padding: 1.25rem 1.6rem 1.25rem 2.8rem;
}

.plans .plan::before {
  content: '';
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(32, 212, 137, 0.15);
}

.plans .plan h3 {
  margin: 0;
  font-size: 1.1rem;
}

.tag {
  display: inline-block;
  background: rgba(32, 212, 137, 0.15);
  color: var(--accent);
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.8rem;
}

.social-proof .quote span {
  display: block;
  margin-top: 1rem;
  color: var(--accent);
  font-weight: 600;
}

.trainer {
  padding: 4rem 0;
}

.trainer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  align-items: center;
}

.trainer-image img {
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.trainer-info h2 {
  font-family: 'Sora', sans-serif;
  margin: 0.7rem 0;
}

.trainer-list {
  list-style: none;
  display: grid;
  gap: 0.5rem;
  margin: 1rem 0 1.5rem;
  color: var(--muted);
}

.trainer-list li::before {
  content: '•';
  color: var(--accent);
  margin-right: 0.5rem;
}

.gallery img {
  border-radius: 16px;
  border: 1px solid rgba(90, 163, 255, 0.12);
  height: 100%;
  object-fit: cover;
}

.faq {
  padding: 4rem 0;
}

.faq-grid {
  display: grid;
  gap: 1rem;
}

details {
  background: var(--card);
  padding: 1rem 1.2rem;
  border-radius: 16px;
  border: 1px solid rgba(90, 163, 255, 0.12);
}

summary {
  cursor: pointer;
  font-weight: 600;
}

details p {
  color: var(--muted);
  margin-top: 0.75rem;
}

.cta-final {
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(90, 163, 255, 0.18), rgba(32, 212, 137, 0.12));
}

.cta-final-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer {
  padding: 3rem 0 2rem;
  background: #080c11;
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  width: 140px;
  margin-bottom: 1rem;
}

.copyright {
  text-align: center;
  color: #5d6a78;
}

.sticky-cta {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.7rem;
  background: rgba(12, 17, 22, 0.9);
  padding: 0.6rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(90, 163, 255, 0.2);
  z-index: 20;
}

.whatsapp-support {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #06140b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 12px 28px rgba(32, 212, 137, 0.35);
  z-index: 30;
}

.whatsapp-support:hover {
  transform: translateY(-2px);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 10, 14, 0.75);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 40;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  background: #0f1721;
  border: 1px solid rgba(90, 163, 255, 0.25);
  border-radius: 18px;
  padding: 2rem;
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow);
  position: relative;
  text-align: center;
}

.modal h3 {
  font-family: 'Sora', sans-serif;
  margin-bottom: 0.75rem;
}

.modal p {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.modal-actions .btn {
  flex: 1 1 200px;
}

.modal-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 1.5rem;
  cursor: pointer;
}

@media (min-width: 900px) {
  .sticky-cta {
    display: none;
  }
}

@media (max-width: 768px) {
  .top-actions {
    display: none;
  }

  .hero {
    padding: 3rem 0 2rem;
  }

  .hero-grid {
    gap: 1.6rem;
  }

  .hero-copy h1 {
    font-size: clamp(1.7rem, 7vw, 2.6rem);
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-copy .lead {
    text-align: center;
    font-size: 1rem;
  }

  .eyebrow {
    display: block;
    text-align: center;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .mini-note {
    text-align: center;
  }

  .hero-card.wide {
    grid-column: span 1;
  }

  .cta-final-inner {
    align-items: stretch;
  }

  .section-head {
    text-align: center;
  }

  .grid-3 {
    gap: 1.2rem;
  }

  .grid-4 {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 85%;
    overflow-x: auto;
    gap: 1rem;
    padding-bottom: 0.5rem;
    scroll-snap-type: x mandatory;
    scroll-padding: 1rem;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
  }

  .grid-4 .plan {
    scroll-snap-align: center;
  }

  .plans .grid-4 {
    grid-auto-flow: row;
    grid-auto-columns: unset;
    overflow-x: visible;
    scroll-snap-type: none;
    grid-template-columns: 1fr;
  }

  .plans-dots {
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 0.8rem;
  }

  .plans-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.25);
    transition: all 0.2s ease;
  }

  .plans-dots .dot.active {
    width: 18px;
    background: var(--primary);
  }

  .plans .plans-dots {
    display: none;
  }

  .sticky-cta {
    display: none;
  }

  .card,
  .plan,
  .quote {
    padding: 1.3rem;
  }

  .strip-inner {
    gap: 0.6rem;
  }

  .strip-item {
    justify-content: center;
    font-size: 0.9rem;
  }

  .trainer {
    padding: 3rem 0;
  }

  .trainer-grid {
    text-align: center;
  }

  .trainer-list {
    text-align: left;
    margin: 1rem auto 1.5rem;
    max-width: 320px;
  }

  .faq-grid details {
    font-size: 0.95rem;
  }

  .footer {
    padding: 2.5rem 0 2rem;
  }

  .footer-grid {
    gap: 1.5rem;
  }

  .whatsapp-support {
    bottom: 5.2rem;
    right: 1rem;
  }
}

@media (max-width: 1100px) and (min-width: 769px) {
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.hero-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.6rem;
  padding: 1rem 0 0;
  color: var(--muted);
}

.hero-list li::before {
  content: '•';
  color: var(--accent);
  margin-right: 0.5rem;
}

.hero-card.wide {
  padding: 1.5rem;
}

.hero-card.wide img {
  display: none;
}

.hero-card-info {
  padding: 0;
  margin-bottom: 0.8rem;
}

.mini-note {
  font-size: 0.85rem;
  color: var(--muted);
  display: block;
}
/* layout spacing refinements */
.benefits,
.plans,
.social-proof {
  padding: 3.5rem 0;
}

.section-head {
  margin-bottom: 2.5rem;
}

.grid-3 {
  gap: 2rem;
}

.card,
.plan,
.quote {
  padding: 1.8rem;
}

/* footer fixes */
.footer {
  margin-top: 3rem;
}

.footer-grid h4 {
  font-family: 'Sora', sans-serif;
  margin-bottom: 0.6rem;
  color: var(--text);
}

.footer p {
  margin: 0.35rem 0;
}

/* prevent sticky CTA overlap on small screens */
body {
  padding-bottom: 5rem;
}

@media (min-width: 900px) {
  body {
    padding-bottom: 0;
  }
}
.footer-grid {
  align-items: center;
  text-align: center;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

@media (max-width: 768px) {
  .hero-list {
    grid-template-columns: 1fr;
  }
}
