:root {
  --bg: #0b0d12;
  --bg-soft: #11141b;
  --card: #151a23;
  --line: #272f3d;
  --text: #e9edf5;
  --muted: #a8b1c2;
  --green: #2dd881;
  --gold: #d7b76d;
  --red: #cc4c4c;
  --radius: 16px;
  --container: 1120px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 80% -20%, #1a2232 0%, transparent 30%),
    radial-gradient(circle at 10% 110%, #13261f 0%, transparent 35%),
    var(--bg);
  line-height: 1.65;
}

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

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

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: 5.5rem 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0));
}

.section-head {
  max-width: 760px;
  margin-bottom: 2rem;
}

.eyebrow {
  display: inline-block;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.7rem;
}

h1,
h2,
h3 {
  margin: 0 0 0.9rem;
  font-family: "Sora", "Manrope", sans-serif;
  letter-spacing: 0.01em;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
}

h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
}

h3 {
  font-size: 1.2rem;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--green);
  color: #09120e;
  padding: 0.5rem 0.8rem;
  border-radius: 0 0 10px 0;
}

.skip-link:focus {
  left: 0;
  z-index: 1000;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(10, 12, 18, 0.68);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-wrap {
  min-height: 4.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 800;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text {
  font-family: "Sora", sans-serif;
}

.main-nav {
  display: flex;
  gap: 1.2rem;
}

.main-nav a {
  color: #d8deea;
  font-size: 0.94rem;
  padding: 0.42rem 0.78rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: #eff4ff;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.main-nav a.nav-cta {
  color: #07140d;
  background: var(--green);
  border-color: transparent;
  padding: 0.42rem 0.78rem;
  border-radius: 999px;
  font-weight: 800;
}

.main-nav a.nav-cta:hover,
.main-nav a.nav-cta:focus-visible {
  color: #07140d;
  background: #38e693;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.menu-bars,
.menu-bars::before,
.menu-bars::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  position: relative;
  transition: transform 0.25s ease, top 0.25s ease, background 0.2s ease;
}

.menu-bars::before,
.menu-bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-bars::before {
  top: -6px;
}

.menu-bars::after {
  top: 6px;
}

.menu-toggle[aria-expanded="true"] .menu-bars {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-bars::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-bars::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(4, 6, 10, 0.78);
  backdrop-filter: blur(6px);
  pointer-events: none;
}

.nav-backdrop.is-visible {
  display: block;
  pointer-events: auto;
}

body.menu-open {
  overflow: hidden;
}

.hero {
  padding-top: 4.3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.lead {
  font-size: 1.1rem;
  max-width: 62ch;
}

.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 0.82rem 1.15rem;
  font-weight: 700;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

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

.btn-primary {
  background: var(--green);
  color: #08120d;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #38e693;
}

.btn-ghost {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--gold);
}

.hero-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
}

.hero-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: rgba(5, 7, 10, 0.76);
  border: 1px solid rgba(215, 183, 109, 0.34);
  color: #f1e4c6;
  border-radius: 999px;
  padding: 0.42rem 0.8rem;
  font-size: 0.78rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.card,
.service-card,
.social-card,
.partner-box,
.contact-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
}

.card {
  padding: 1.4rem;
}

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

.service-card {
  padding: 1.3rem;
}

.service-card h3 {
  margin-bottom: 0.5rem;
  color: #f5f8ff;
}

.section-cta {
  margin-top: 1.4rem;
}

.partner-box {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  align-items: center;
  padding: 1.4rem;
}

.partner-logo-wrap {
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  min-height: 180px;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.partner-logo-wrap img {
  max-height: 120px;
  object-fit: contain;
}

.partner-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  margin-top: 0.4rem;
}

.partner-offer {
  margin: 0;
  padding: 0.45rem 0.7rem;
  border-radius: 10px;
  border: 1px solid rgba(45, 216, 129, 0.35);
  background: rgba(45, 216, 129, 0.08);
  color: #d8f7e8;
  font-size: 0.92rem;
}

.partner-offer strong {
  color: #ffffff;
}

.social-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1rem;
}

.social-card {
  padding: 1.2rem;
}

.social-card.featured {
  border-color: rgba(45, 216, 129, 0.4);
}

.social-top {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 30px;
}

.social-top h3 {
  margin: 0;
  line-height: 1;
  display: flex;
  align-items: center;
}

.icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #08120d;
  background: var(--green);
  font-weight: 800;
}

.icon-brand {
  background: rgba(45, 216, 129, 0.12);
  border: 1px solid rgba(45, 216, 129, 0.35);
}

.icon-brand svg {
  width: 18px;
  height: 18px;
  fill: var(--green);
}

.social-card a {
  display: inline-block;
  margin-top: 0.45rem;
  color: #f4d389;
  font-weight: 700;
}

.social-card a:hover,
.social-card a:focus-visible {
  color: #ffe9b8;
}

.contact-box {
  padding: 1.6rem;
  text-align: center;
}

.contact-actions {
  margin-top: 1.2rem;
}

.contact-domain {
  margin-top: 0.85rem;
}

.site-footer {
  padding: 2.4rem 0 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(4, 6, 10, 0.9);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1rem;
  align-items: start;
}

.footer-brand {
  margin: 0;
  color: #f2f6ff;
  font-weight: 800;
}

.footer-text {
  margin-top: 0.4rem;
}

.footer-links,
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-links a,
.footer-social a {
  color: #d4dceb;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-links a:hover,
.footer-social a:hover {
  color: var(--green);
}

.footer-bottom {
  margin-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 0.9rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  color: #d4dceb;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: var(--green);
}

.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.page-hero {
  padding-top: 4.2rem;
}

.notice-card {
  border: 1px solid rgba(215, 183, 109, 0.35);
  border-radius: var(--radius);
  background: linear-gradient(165deg, rgba(215, 183, 109, 0.08), rgba(255, 255, 255, 0.01));
  padding: 1.2rem;
  display: flex;
  gap: 0.9rem;
  margin-bottom: 1.2rem;
}

.notice-emoji {
  margin: 0;
  font-size: 1.4rem;
}

.pricing-group {
  margin-top: 1.2rem;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.01);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.pricing-table th,
.pricing-table td {
  padding: 0.9rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-table th {
  color: #f2f6ff;
  background: rgba(255, 255, 255, 0.03);
  font-weight: 700;
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

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

.list-clean {
  margin: 0;
  padding-left: 1rem;
  color: var(--muted);
}

.list-clean li {
  margin-bottom: 0.65rem;
}

.list-clean li:last-child {
  margin-bottom: 0;
}

.ordered {
  display: inline-block;
  text-align: left;
  margin-bottom: 1rem;
}

.legal-page {
  padding-top: 2rem;
  padding-bottom: 3rem;
}

.legal-header {
  max-width: 760px;
  margin-bottom: 2rem;
}

.legal-updated {
  color: var(--muted);
  margin: 0;
}

.legal-content {
  max-width: 820px;
}

.legal-block {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.legal-block h2 {
  font-size: 1.15rem;
  color: #f2f6ff;
  margin-bottom: 0.85rem;
}

.legal-block p {
  margin-bottom: 0.85rem;
}

.legal-block ul {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
  color: var(--muted);
}

.legal-block li {
  margin-bottom: 0.5rem;
}

.legal-block a {
  color: #f4d389;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-block a:hover,
.legal-block a:focus-visible {
  color: #ffe9b8;
}

.legal-back {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.coaching-contact {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 1.2rem;
  text-align: left;
  align-items: stretch;
}

.coaching-contact-main {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact-intro,
.contact-availability {
  margin: 0;
}

.contact-priority-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: grid;
  gap: 0.65rem;
}

.contact-priority-list li {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
}

.contact-priority-list a {
  color: #eaf0ff;
  font-weight: 700;
}

.contact-priority-list a:hover,
.contact-priority-list a:focus-visible {
  color: #ffffff;
}

.contact-rank {
  min-width: 2rem;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  font-weight: 800;
}

.coaching-contact-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
}

.reviews-carousel {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem;
  align-items: center;
}

.carousel-viewport {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  touch-action: pan-y;
}

.carousel-track {
  display: flex;
  transition: transform 0.45s ease;
}

.review-card {
  min-width: 100%;
  padding: 1.5rem 1.6rem;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.review-author {
  margin: 0;
  color: #f2f6ff;
  font-weight: 800;
  font-family: "Sora", sans-serif;
}

.review-date {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
}

.review-text {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.7;
}

.carousel-btn {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: #eef3ff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.carousel-btn:hover,
.carousel-btn:focus-visible {
  border-color: var(--green);
  background: rgba(45, 216, 129, 0.12);
}

.carousel-dots {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.35rem;
}

.carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
}

.carousel-dot.is-active {
  background: var(--green);
  transform: scale(1.15);
}

@media (max-width: 980px) {
  .hero-grid,
  .partner-box,
  .social-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .about-grid,
  .include-grid,
  .coaching-contact {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3.2rem;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 45;
    width: min(calc(100% - 2.5rem), 320px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    padding: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    background: rgba(14, 18, 26, 0.96);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, calc(-50% + 12px)) scale(0.96);
    transition:
      opacity 0.28s ease,
      transform 0.28s ease,
      visibility 0.28s ease;
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
  }

  .main-nav a {
    width: 100%;
    text-align: center;
    padding: 0.72rem 1rem;
    font-size: 1rem;
    font-weight: 600;
  }

  .main-nav a.nav-cta {
    padding: 0.72rem 1rem;
  }

  .section {
    padding: 4.2rem 0;
  }

  .reviews-carousel {
    grid-template-columns: auto 1fr auto;
    gap: 0.5rem;
    align-items: stretch;
  }

  .carousel-btn {
    align-self: center;
    width: 38px;
    height: 38px;
    font-size: 1.35rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .carousel-track {
    transition: none;
  }

  .main-nav {
    transition: none;
  }

  .menu-bars,
  .menu-bars::before,
  .menu-bars::after {
    transition: none;
  }
}
