:root {
  --bg: #eaf1ff;
  --surface: #f6f8ff;
  --muted: #5a6273;
  --text: #0e1426;
  --card: #ffffff;
  --card-border: rgba(14, 20, 38, 0.08);
  --accent: #ff7f47;
  --accent-strong: #116dff;
  --accent-soft: #c5dbff;
  --accent-warm: #ffe6d2;
  --radius: 18px;
  --container: 1200px;
  --shadow: 0 16px 60px rgba(16, 24, 40, 0.18);
  --title-size: clamp(2rem, 3vw, 2.75rem);
  --card-title-size: 1.05rem;
  --body-size: 1rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background: #9bc8dc;
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: inherit;
  letter-spacing: -0.01em;
}

p {
  margin: 0;
}

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

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius);
}

.nowrap {
  white-space: nowrap;
}

.container {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 0 22px;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 10;
  background: transparent;
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 58px;
  gap: 12px;
  background: #ffffff;
  border-radius: 999px;
  border: 1px solid rgba(14, 20, 38, 0.06);
  box-shadow: 0 8px 30px rgba(14, 20, 38, 0.08);
  padding: 0 16px 0 18px;
}

.logo {
  display: inline-block;
  font-family: 'Aileron', 'Space Grotesk', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.12em;
  word-spacing: 0.18em;
  font-size: 2.12rem;
  line-height: 0.9;
  text-transform: uppercase;
  color: #0d0d0d;
}

.site-nav {
  display: flex;
  gap: 26px;
  justify-content: center;
}

.site-nav a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.site-nav a:hover {
  color: var(--accent-strong);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid rgba(14, 20, 38, 0.15);
  border-radius: 12px;
  color: var(--text);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  border: none;
}

.pill {
  border-radius: 999px;
  padding: 12px 20px;
}

.small {
  padding: 10px 16px;
}

.primary {
  background: var(--accent);
  color: #f7f2ed;
  box-shadow: 0 10px 30px rgba(255, 127, 71, 0.28);
}

.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(255, 127, 71, 0.4);
}

.outline {
  border: 1px solid rgba(17, 109, 255, 0.25);
  color: var(--accent-strong);
  background: transparent;
}

.outline:hover {
  border-color: var(--accent-strong);
  color: #0c1a36;
}

.ghost {
  border: 1px solid rgba(14, 20, 38, 0.12);
  background: transparent;
  color: var(--text);
}

.ghost:hover {
  border-color: var(--accent-strong);
  color: var(--accent-strong);
}

.dark {
  background: #0f1f46;
  color: #f7f9ff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 16px;
  border-radius: 999px;
}

.chip-soft {
  background: rgba(17, 109, 255, 0.12);
  color: #0f275f;
  border: 1px solid rgba(17, 109, 255, 0.3);
}

.chip-ghost {
  background: rgba(255, 255, 255, 0.7);
  color: var(--text);
  border: 1px solid rgba(14, 20, 38, 0.08);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.84rem;
  color: #3f4756;
  font-weight: 700;
}

.section-header {
  display: grid;
  gap: 14px;
  text-align: left;
  margin-bottom: 44px;
}

.section-header h2 {
  margin: 0;
  font-size: clamp(1.6rem, 2.15vw, 2.15rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.section-lede,
.lede {
  margin: 0;
  color: var(--muted);
  max-width: 620px;
  font-size: var(--body-size);
  line-height: 1.65;
}

main section {
  padding: 96px 0;
}

.hero {
  padding: 118px 0 156px;
  background: linear-gradient(180deg, #9bc8dc 0%, #eef3f7 70%, #ffe9cf 100%);
  color: #0f1f1f;
  text-align: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 88px;
  align-items: center;
  justify-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.1rem, 3vw, 2.85rem);
  line-height: 1.05;
  margin: 22px 0 22px;
  letter-spacing: -0.03em;
}

.hero-copy p {
  color: #2f3542;
  margin-bottom: 30px;
  font-size: clamp(0.88rem, 1vw, 0.95rem);
  line-height: 1.65;
  white-space: nowrap;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffae53 0%, #ff7f47 50%, #ffae53 100%);
  color: #1f120b;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 10px 30px rgba(255, 127, 71, 0.35);
  margin-top: 14px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 40px 0 24px;
  justify-content: center;
}

.hero-actions.single {
  justify-content: center;
}

.hero-links {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.chip-icon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-inline: 14px;
}

.chip-icon .icon-img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.stat {
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(14, 20, 38, 0.08);
}

.stat-value {
  font-size: 1.6rem;
  font-weight: 700;
  display: block;
}

.stat-label {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-card {
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid rgba(14, 20, 38, 0.08);
  padding: 14px;
  box-shadow: 0 18px 36px rgba(14, 20, 38, 0.16);
  display: grid;
  gap: 10px;
  max-width: 580px;
}

.hero-input {
  background: #ffffff;
  border: 1px solid rgba(14, 20, 38, 0.08);
  box-shadow: 0 14px 30px rgba(14, 20, 38, 0.08);
  border-radius: 18px;
  padding: 16px;
  max-width: 600px;
  margin: 22px auto 12px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}

.hero-input input {
  border: none;
  padding: 10px 12px;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  background: transparent;
  color: var(--text);
}

.hero-input button {
  border: none;
  background: var(--accent);
  color: #1f120b;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(255, 127, 71, 0.35);
}

.hero-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 12px;
}

.tag-pill {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(14, 20, 38, 0.1);
  background: #ffffff;
  color: #2c3242;
  font-weight: 600;
}

.hero-card img {
  border-radius: 18px;
  border: 1px solid rgba(14, 20, 38, 0.06);
  width: 100%;
  height: auto;
  object-fit: cover;
}

.photo-card {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.photo-card img {
  border: none;
  border-radius: 18px;
  aspect-ratio: 0.9 / 1.25;
  max-height: 640px;
  width: 100%;
  object-fit: cover;
  object-position: center top;
}


.card-copy h3 {
  margin-bottom: 6px;
}

.card-copy ul {
  margin: 0;
  padding-left: 18px;
  color: #c6d1e8;
}

.band {
  background: #fefefe;
  padding: 18px 0;
}

.band-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
  color: #333a4a;
  font-weight: 600;
  font-size: 0.95rem;
}

.band-item {
  padding: 10px 12px;
  background: rgba(17, 109, 255, 0.06);
  border-radius: 12px;
  border: 1px solid rgba(17, 109, 255, 0.12);
}

.coach {
  background: #ffffff;
}

.coach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  align-items: start;
}

.coach-copy {
  display: grid;
  gap: 12px;
}

.coach-stat {
  display: grid;
  gap: 2px;
  margin: 2px 0 10px;
}

.coach-stat-value {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  font-weight: 800;
  color: var(--text);
}

.coach-stat-label {
  font-size: 0.85rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent-strong);
  font-weight: 700;
}

.coach-photo-only img {
  border-radius: 16px;
  border: 1px solid rgba(14, 20, 38, 0.08);
}

.coach-story {
  display: grid;
  gap: 12px;
}

.coach-story p {
  color: var(--muted);
}

.coach-photo img {
  margin-top: 8px;
  border-radius: 16px;
  border: 1px solid rgba(14, 20, 38, 0.08);
}

.services {
  background: linear-gradient(180deg, #f6f8ff 0%, #eaf1ff 100%);
  padding-top: 80px;
}

.services .card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.card {
  background: var(--card);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid var(--card-border);
  display: grid;
  gap: 10px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(17, 109, 255, 0.35);
  box-shadow: 0 18px 42px rgba(16, 24, 40, 0.18);
}

.process {
  background: linear-gradient(180deg, #eaf1ff 0%, #ffffff 100%);
}

.process .steps {
  display: grid;
  gap: 14px;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(14, 20, 38, 0.08);
  background: #eef4ff;
}

.step-number {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(17, 109, 255, 0.16);
  color: #0f275f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.plans {
  background: linear-gradient(135deg, #eaf1ff, #dfe8ff 50%, #fef7ee);
  color: #0d0d0d;
  padding-top: 80px;
}

.plans h2,
.plans .section-lede,
.plans .eyebrow {
  color: #0d0d0d;
}

.plans-title {
  margin: 0;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: clamp(1.7rem, 2.2vw, 2.1rem);
  line-height: 1.06;
  letter-spacing: -0.015em;
  font-weight: 600;
  text-align: left;
}

.results-title {
  margin: 0;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: clamp(1.7rem, 2.1vw, 2.05rem);
  line-height: 1;
  letter-spacing: -0.015em;
  font-weight: 600;
  text-align: left;
  color: #0d0d0d;
}

.plans-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.8fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 8px;
}

.plans-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.plan-feature {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(14, 20, 38, 0.08);
  border-radius: 18px;
  padding: 20px;
  display: grid;
  gap: 10px;
  box-shadow: 0 10px 28px rgba(14, 20, 38, 0.05);
}

.feature-intro {
  background: linear-gradient(180deg, #ffffff, #fff7f0);
}

.plan-feature h3 {
  font-size: var(--card-title-size);
  line-height: 1.2;
}

.plan-feature p {
  color: #4a4d52;
  font-size: var(--body-size);
  line-height: 1.6;
}

.plan-feature ul,
.plan-list {
  margin: 0;
  padding-left: 18px;
  color: #4a4d52;
  display: grid;
  gap: 6px;
}

.plan-card {
  display: grid;
  gap: 18px;
  height: 100%;
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  border: 1px solid #e6e6e6;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  color: #0d0d0d;
}

.plan-card-top {
  display: grid;
  gap: 18px;
}

.plan-card .chip {
  margin-bottom: 0;
}

.plan-card .chip-soft {
  display: flex;
  width: fit-content;
  margin: 0 auto;
}

.plan-card h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.2rem;
  line-height: 1.15;
}

.plan-list {
  margin-top: 4px;
}

.plan-meta {
  display: grid;
  align-content: center;
  gap: 10px;
  text-align: left;
  padding-top: 0;
  margin-top: auto;
}

.price {
  font-size: 1.45rem;
  font-weight: 700;
  margin: 0;
  color: #0d0d0d;
  text-align: center;
}

.plan-card .lede {
  color: #4a4d52;
}

.price-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(14, 20, 38, 0.05);
  color: #0e1426;
  font-weight: 600;
  font-size: 0.9rem;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2fbf71;
  box-shadow: 0 0 0 4px rgba(47, 191, 113, 0.14);
}

.results {
  background: linear-gradient(180deg, #f7f9ff 0%, #fff3e8 100%);
  color: var(--text);
  padding-top: 80px;
}

.results .section-header {
  margin-bottom: 48px;
  padding-top: 0;
  justify-items: start;
  text-align: left;
  gap: 36px;
}

.results-eyebrow {
  margin: 0 0 22px;
}

.results-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}

.results-next {
  appearance: none;
  border: 1px solid rgba(14, 20, 38, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: #0e1426;
  border-radius: 999px;
  padding: 10px 16px;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(14, 20, 38, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.results-next:hover {
  transform: translateY(-1px);
  border-color: rgba(14, 20, 38, 0.22);
  box-shadow: 0 12px 26px rgba(14, 20, 38, 0.1);
}

.results-carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 6px;
  scrollbar-width: none;
}

.results-carousel::-webkit-scrollbar {
  display: none;
}

.results-carousel-shell {
  position: relative;
  padding-inline: 60px;
}

.results-nav {
  position: absolute;
  top: 48%;
  transform: translateY(-50%);
  z-index: 2;
  appearance: none;
  -webkit-appearance: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(14, 20, 38, 0.12);
  background: rgba(255, 255, 255, 0.82);
  color: #0e1426;
  display: grid;
  place-items: center;
  font: inherit;
  font-size: 1.1rem;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(14, 20, 38, 0.08);
  cursor: pointer;
  transition: opacity 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}

.results-nav:disabled {
  opacity: 0;
  cursor: not-allowed;
  pointer-events: none;
}

.results-nav-prev {
  left: 8px;
}

.results-nav-next {
  right: 8px;
}

.results-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.results-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 0;
  background: rgba(14, 20, 38, 0.22);
  padding: 0;
  cursor: pointer;
  transition: transform 0.18s ease, width 0.18s ease, background-color 0.18s ease;
}

.results-dot.is-active {
  width: 28px;
  background: #0e1426;
}

.result-card {
  flex: 0 0 calc((100% - 8px) / 2);
  scroll-snap-align: start;
  background: var(--card);
  border-radius: 16px;
  padding: 18px;
  border: 1px solid var(--card-border);
  color: var(--text);
}

.result-card h3 {
  margin-bottom: 8px;
  font-size: var(--card-title-size);
  line-height: 1.15;
}

.result-card p {
  color: var(--muted);
  font-size: var(--body-size);
  line-height: 1.6;
}

.result-tag {
  margin: 0 0 8px;
  font-weight: 700;
  color: #0e1426;
}

.testimonial {
  position: relative;
}

.quote-mark {
  font-size: 2rem;
  color: var(--accent);
  line-height: 1;
}

.faq {
  background: #f5f7ff;
  padding-top: 80px;
}

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

details {
  background: #ffffff;
  border: 1px solid rgba(14, 20, 38, 0.08);
  border-radius: 14px;
  padding: 14px 16px;
}

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

details p {
  margin-top: 8px;
  color: var(--muted);
}

.contact {
  background: linear-gradient(135deg, #eaf1ff, #dfe8ff 50%, #fef7ee);
  padding-top: 64px;
  padding-bottom: 28px;
}

.contact-grid > div:first-child {
  display: grid;
  gap: 14px;
}

.contact-actions-top {
  display: grid;
  gap: 14px;
  margin-top: 6px;
  justify-items: start;
}

.contact-secondary {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 32ch;
  margin: 0;
}

.contact h2 {
  margin: 0;
  font-size: clamp(1.6rem, 2.15vw, 2.15rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.contact .section-lede {
  margin-top: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  align-items: start;
}

.contact-form {
  background: var(--card);
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--card-border);
  display: grid;
  gap: 14px;
  align-content: start;
}

.contact-form label {
  display: grid;
  gap: 7px;
  font-weight: 600;
  color: #0e1426;
  font-size: 0.98rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: 12px;
  border: 1px solid rgba(14, 20, 38, 0.12);
  background: #ffffff;
  color: var(--text);
  font-family: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-embed {
  display: grid;
  gap: 0;
}

.tally-embed {
  width: 100%;
  min-height: 0;
  height: auto;
  display: block;
  border: 0;
  border-radius: 16px;
  overflow: hidden;
  background: transparent;
}

.contact-actions {
  display: grid;
  gap: 6px;
  justify-items: start;
  margin-top: 0;
}

.contact-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #0e1426;
  font-weight: 800;
  font-size: 0.95rem;
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.25);
  box-shadow: none;
}

.contact-whatsapp:hover {
  color: #0e1426;
  border-color: rgba(37, 211, 102, 0.4);
  background: rgba(37, 211, 102, 0.14);
}

.whatsapp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
}

.whatsapp-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.site-footer {
  border-top: 1px solid rgba(14, 20, 38, 0.08);
  padding: 12px 0 18px;
  background: #f7f9ff;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.lang-links {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #0e1426;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 0.82rem;
}

.lang-link {
  color: #0e1426;
  opacity: 0.55;
  transition: opacity 0.15s ease;
}

.lang-link:hover {
  opacity: 0.9;
}

.lang-link.is-active {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 0.22em;
}

.lang-separator {
  color: rgba(14, 20, 38, 0.35);
}

.desktop-only {
  display: inline-flex;
}

@media (max-width: 900px) {
  .site-header .container {
    padding: 0;
  }

  .header-inner {
    position: relative;
    display: block;
    width: calc(100% - 48px);
    margin: 0 24px;
    height: 66px;
    padding: 0 58px 0 18px;
    overflow: hidden;
  }

  .logo {
    position: absolute;
    left: 18px;
    top: 50%;
    font-size: 1.7rem;
    letter-spacing: -0.1em;
    word-spacing: 0.16em;
    line-height: 1;
    transform: translateY(-50%);
    white-space: nowrap;
  }

  .site-nav {
    left: auto;
    right: 22px;
    inset: 76px 22px auto auto;
    width: auto;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(14, 20, 38, 0.18);
  }

  .site-nav {
    position: fixed;
    background: #0f1f46;
    color: #f5f7ff;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 18px 20px 22px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    display: none;
  }

  .site-nav a {
    color: #f5f7ff;
  }

  .site-nav.open {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
    position: absolute;
    right: 10px;
    top: 50%;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    transform: translateY(-50%);
  }

  .nav-toggle span {
    width: 20px;
    height: 2px;
    border-radius: 999px;
  }

  .desktop-only {
    display: none;
  }

  .plans-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .plans-features {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .plan-meta {
    text-align: left;
    align-content: start;
  }

  .plan-feature {
    padding: 16px;
    gap: 8px;
    border-radius: 16px;
  }

  .plan-feature h3 {
    font-size: 0.98rem;
    line-height: 1.18;
  }

  .plan-feature p {
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .plan-card {
    padding: 20px;
    gap: 18px;
    border-radius: 18px;
  }

  .plan-card .chip {
    margin-bottom: 10px;
  }

  .plan-card h3 {
    font-size: 1.05rem;
    margin-bottom: 6px;
  }

  .plan-list {
    margin-top: 10px;
    gap: 4px;
  }

  .plan-list li {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .plans-title {
    text-align: center;
    font-size: clamp(1.45rem, 5.2vw, 1.8rem);
  }

  .results-title {
    text-align: left;
    font-size: clamp(1.45rem, 5.2vw, 1.8rem);
  }

  .price {
    font-size: 1.25rem;
  }

  .price-status {
    font-size: 0.82rem;
    padding: 7px 10px;
  }

}

@media (max-width: 640px) {
  main section {
    padding: 72px 0;
  }

  .hero {
    padding: 28px 0 56px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
  }

  .hero-copy h1 {
    font-size: clamp(1.8rem, 8vw, 2.35rem);
    line-height: 1.08;
    margin: 10px 0 12px;
  }

  .hero-copy p {
    max-width: 34ch;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.95rem;
    line-height: 1.55;
    white-space: normal;
  }

  .hero-pill {
    padding: 9px 14px;
    font-size: 0.78rem;
    margin-top: 16px;
    margin-bottom: 28px;
  }

  .hero-actions {
    margin: 22px 0 14px;
    width: 100%;
  }

  .hero-actions .btn {
    width: min(100%, 320px);
  }

  .hero-links {
    margin-top: 18px;
    gap: 8px;
  }

  .chip-icon {
    padding-inline: 12px;
    font-size: 0.84rem;
  }

  .chip-icon .icon-img {
    width: 16px;
    height: 16px;
  }

  .hero-card {
    max-width: 360px;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    justify-self: center;
  }

  .hero-card img {
    border-radius: 20px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center top;
    max-height: 320px;
  }

  .coach {
    padding: 64px 0;
  }

  .coach-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .coach-copy {
    gap: 12px;
  }

  .coach-stat {
    gap: 1px;
    margin: 0 0 8px;
  }

  .coach-stat-value {
    font-size: clamp(1.7rem, 7vw, 2.4rem);
    line-height: 0.95;
  }

  .coach-stat-label {
    font-size: 0.72rem;
    letter-spacing: 0.26em;
  }

  .coach-copy p {
    font-size: 0.95rem;
    line-height: 1.62;
    max-width: 36ch;
  }

  .coach-photo-only img {
    width: 100%;
    max-height: none;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
  }

  .results .section-header {
    margin-bottom: 34px;
    padding-top: 0;
    justify-items: start;
    text-align: left;
    gap: 28px;
  }

  .results {
    padding-top: 72px;
  }

  .results-top {
    margin-bottom: 16px;
    align-items: flex-start;
  }

  .results-next {
    display: none;
  }

  .results-nav {
    display: none;
  }

  .results-carousel {
    gap: 12px;
    padding-inline: 3%;
    scroll-padding-inline: 3%;
  }

  .results-carousel-shell {
    padding-inline: 0;
  }

  .results-dots {
    margin-top: 14px;
    gap: 7px;
  }

  .result-card {
    flex-basis: 97%;
    scroll-snap-align: center;
  }

  .result-card {
    padding: 16px;
    border-radius: 15px;
  }

  .result-card h3 {
    font-size: 1rem;
    margin-bottom: 6px;
  }

  .result-tag {
    margin-bottom: 6px;
    font-size: 0.95rem;
    line-height: 1.45;
  }

  .result-card p {
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .contact {
    padding-top: 52px;
    padding-bottom: 18px;
  }

  .contact-grid {
    gap: 12px;
  }

  .contact-grid > div:first-child {
    gap: 12px;
  }

  .contact-actions-top {
    gap: 10px;
  }

  .contact-secondary {
    font-size: 0.9rem;
    max-width: 34ch;
  }

  .contact h2 {
    font-size: clamp(1.45rem, 6.4vw, 1.9rem);
  }

  .contact .section-lede {
    max-width: 36ch;
    font-size: 0.95rem;
    line-height: 1.56;
  }

  .contact-form {
    padding: 16px;
    gap: 10px;
    border-radius: 15px;
  }

  .contact-form label {
    gap: 6px;
    font-size: 0.94rem;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 12px 13px;
    border-radius: 11px;
    font-size: 0.96rem;
  }

  .contact-form button {
    width: 100%;
    min-height: 46px;
  }

  .contact-actions {
    gap: 4px;
  }

  .contact-whatsapp {
    font-size: 0.92rem;
    gap: 9px;
  }

  .whatsapp-icon {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
  }

  .site-footer {
    padding: 8px 0 12px;
  }

  .footer-inner {
    gap: 10px;
    font-size: 0.88rem;
  }
}


@media (max-width: 420px) {
  .hero-copy h1 {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .coach-stat-value {
    font-size: clamp(1.55rem, 6.6vw, 2rem);
  }

  .section-header h2 {
    font-size: clamp(1.35rem, 5.8vw, 1.75rem);
  }

  .contact h2 {
    font-size: clamp(1.3rem, 5.8vw, 1.65rem);
  }
}
