/* ===== CSS RESET & VARIABLES ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Core palette */
  --mint: #7FFFD4;
  --mint-dim: #5adcb3;
  --iris: #634392;
  --iris-deep: #583887;
  --void: #0D0D0D;
  --void-surface: #170e2a;
  --lavender: #A194B8;
  --surface-low: #201633;
  --surface-mid: #241a37;
  --surface-high: #2f2542;
  --surface-highest: #3a304e;
  --on-surface: #eaddff;
  --outline: #86948d;
  --outline-dim: #3d4a44;

  /* Typography */
  --ff-display: 'Anybody', sans-serif;
  --ff-label: 'Space Grotesk', sans-serif;
  --ff-body: 'Manrope', sans-serif;

  /* Spacing */
  --unit: 8px;
  --container-max: 1200px;
  --gutter: 24px;
  --margin-mobile: 20px;
  --margin-desktop: 64px;
}

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

body {
  font-family: var(--ff-body);
  background-color: var(--void);
  color: var(--lavender);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

ul {
  list-style: none;
}

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

/* ===== UTILITY CLASSES ===== */
.section-title {
  font-family: var(--ff-display);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.section-title--left {
  text-align: left;
}

.chip {
  display: inline-block;
  font-family: var(--ff-label);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  padding: 6px 16px;
  text-transform: uppercase;
}

.chip--mint {
  background: rgba(127, 255, 212, 0.12);
  color: var(--mint);
  border: 1px solid rgba(127, 255, 212, 0.3);
}

.chip--iris {
  background: var(--iris-deep);
  color: var(--lavender);
  border: 1px solid var(--iris);
}

.chip--sm {
  font-size: 10px;
  padding: 4px 10px;
}

.btn {
  display: inline-block;
  font-family: var(--ff-label);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  padding: 14px 28px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
}

.btn--primary {
  background: var(--mint);
  color: var(--void);
}

.btn--primary:hover {
  background: var(--mint-dim);
  box-shadow: 0 0 24px rgba(127, 255, 212, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--mint);
  border: 1px solid var(--mint);
}

.btn--outline:hover {
  background: rgba(127, 255, 212, 0.08);
  box-shadow: 0 0 20px rgba(127, 255, 212, 0.15);
}

.btn--full {
  width: 100%;
}

/* ===== TOP NAV ===== */
.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px var(--margin-desktop);
  background: rgba(13, 13, 13, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(127, 255, 212, 0.06);
}

.top-nav__accent {
  width: 28px;
  height: 3px;
  background: var(--mint);
}

.top-nav__links {
  display: flex;
  gap: 40px;
}

.top-nav__links a {
  font-family: var(--ff-label);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--lavender);
  transition: color 0.3s ease;
}

.top-nav__links a:hover {
  color: var(--mint);
}

.top-nav__settings {
  background: none;
  border: none;
  color: var(--lavender);
  cursor: pointer;
  padding: 4px;
  transition: color 0.3s ease;
}

.top-nav__settings:hover {
  color: var(--mint);
}

/* ===== HERO ===== */
.hero {
  display: grid;
  grid-template-columns: 200px 1fr 1fr;
  gap: var(--gutter);
  min-height: 100vh;
  padding: 100px var(--margin-desktop) 80px;
  align-items: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(99, 67, 146, 0.15) 50%, rgba(99, 67, 146, 0.25) 100%);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
  pointer-events: none;
}

.hero__sidebar {
  align-self: start;
  padding-top: 20px;
}

.hero__brand {
  margin-bottom: 12px;
}

.hero__brand-name {
  display: block;
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.02em;
}

.hero__brand-sub {
  display: block;
  font-family: var(--ff-label);
  font-size: 10px;
  font-weight: 600;
  color: var(--lavender);
  letter-spacing: 0.25em;
  margin-top: 2px;
}

.hero__brand-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--lavender);
  margin-bottom: 32px;
  opacity: 0.8;
}

.hero__side-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero__side-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--lavender);
  transition: all 0.3s ease;
  border-left: 2px solid transparent;
}

.hero__side-nav-item:hover {
  color: var(--mint);
  border-left-color: var(--mint);
}

.hero__side-nav-item--active {
  background: rgba(127, 255, 212, 0.1);
  color: var(--mint);
  border-left-color: var(--mint);
}

.hero__side-nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  opacity: 0.7;
}

.hero__side-nav-item--active .hero__side-nav-icon {
  opacity: 1;
}

.hero__content {
  padding-left: 20px;
  position: relative;
  z-index: 2;
}

.hero__title {
  font-family: var(--ff-display);
  font-size: 76px;
  font-weight: 800;
  line-height: 0.95;
  color: #fff;
  margin: 24px 0 28px;
  letter-spacing: -0.02em;
}

.hero__desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--lavender);
  max-width: 460px;
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__image {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__image img {
  width: 100%;
  max-width: 480px;
  height: 360px;
  object-fit: cover;
}

.hero__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  background: rgba(13, 13, 13, 0.5);
  backdrop-filter: blur(6px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero__play-btn:hover {
  border-color: var(--mint);
  background: rgba(127, 255, 212, 0.15);
  box-shadow: 0 0 30px rgba(127, 255, 212, 0.3);
  color: var(--mint);
}

.hero__play-btn svg {
  margin-left: 3px;
}

/* ===== BOOK SESSION BUTTON ===== */
.book-session-btn {
  position: fixed;
  bottom: 40px;
  left: var(--margin-desktop);
  z-index: 90;
  font-family: var(--ff-label);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  padding: 12px 24px;
  background: var(--mint);
  color: var(--void);
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.book-session-btn:hover {
  background: var(--mint-dim);
  box-shadow: 0 0 24px rgba(127, 255, 212, 0.35);
}

/* ===== PRICING SECTION ===== */
.pricing-section {
  padding: 100px var(--margin-desktop) 60px;
  position: relative;
}

.pricing-section__container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.pricing-section__subtitle {
  text-align: center;
  font-size: 16px;
  color: var(--lavender);
  margin-top: 16px;
}

.pricing-section__note {
  text-align: center;
  font-family: var(--ff-label);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--mint);
  margin-top: 8px;
  margin-bottom: 48px;
}

/* ===== PRICING TABLE ===== */
.pricing-table {
  width: 100%;
  border: 1px solid var(--iris);
}

.pricing-table__header {
  display: grid;
  grid-template-columns: 1fr 180px 180px;
  border-bottom: 1px solid var(--iris);
}

.pricing-table__row {
  display: grid;
  grid-template-columns: 1fr 180px 180px;
  border-bottom: 1px solid rgba(99, 67, 146, 0.3);
  transition: background 0.3s ease;
}

.pricing-table__row:last-child {
  border-bottom: none;
}

.pricing-table__row:hover {
  background: rgba(99, 67, 146, 0.08);
}

.pricing-table__col {
  padding: 18px 24px;
  font-size: 15px;
  display: flex;
  align-items: center;
}

.pricing-table__header .pricing-table__col {
  font-family: var(--ff-label);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--lavender);
  padding: 16px 24px;
  text-transform: uppercase;
}

.pricing-table__col--service {
  color: var(--on-surface);
  font-weight: 500;
  flex-wrap: wrap;
}

.pricing-table__col--regular {
  justify-content: center;
  color: #fff;
  font-weight: 600;
  border-left: 1px solid rgba(99, 67, 146, 0.3);
}

.pricing-table__col--ultra {
  justify-content: center;
  font-weight: 600;
  border-left: 1px solid rgba(99, 67, 146, 0.3);
}

.pricing-table__header .pricing-table__col--ultra {
  color: var(--mint);
}

.pricing-table__col--highlight {
  color: var(--mint);
}

.pricing-table__num {
  color: var(--lavender);
  margin-right: 8px;
  opacity: 0.6;
}

.pricing-table__sub {
  width: 100%;
  font-size: 12px;
  color: var(--lavender);
  opacity: 0.6;
  margin-top: 2px;
}

/* ===== PLAN COMPARISON CARDS ===== */
.plans-section {
  padding: 60px var(--margin-desktop) 100px;
}

.plans-section__container {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gutter);
}

.plan-card {
  padding: 40px;
  background: var(--void);
  border: 1px solid var(--outline-dim);
  transition: border-color 0.3s ease;
}

.plan-card:hover {
  border-color: var(--iris);
}

.plan-card--ultra {
  background: linear-gradient(145deg, rgba(99, 67, 146, 0.2), rgba(88, 56, 135, 0.1));
  border-color: var(--mint);
}

.plan-card--ultra:hover {
  border-color: var(--mint);
  box-shadow: 0 0 30px rgba(127, 255, 212, 0.08);
}

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

.plan-card__title {
  font-family: var(--ff-display);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.plan-card__header .plan-card__title {
  margin-bottom: 0;
}

.plan-card__desc {
  font-size: 14px;
  color: var(--lavender);
  margin-bottom: 28px;
  margin-top: 8px;
}

.plan-card__features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.plan-card__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--on-surface);
}

.plan-card__check {
  flex-shrink: 0;
}

.plan-card__note {
  font-family: var(--ff-label);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--lavender);
  opacity: 0.6;
  margin-bottom: 24px;
  text-transform: uppercase;
  line-height: 1.6;
}

/* ===== COMPLIANCE SECTION ===== */
.compliance-section {
  padding: 60px var(--margin-desktop);
}

.compliance-section__container {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 40px;
  border: 1px solid var(--outline-dim);
  background: rgba(23, 14, 42, 0.5);
}

.compliance-section__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.compliance-section__title {
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.compliance-section__text {
  font-size: 14px;
  line-height: 1.8;
  color: var(--lavender);
}

.compliance-section__text strong {
  color: var(--on-surface);
}

/* ===== WORKFLOW / HOW TO ORDER ===== */
.workflow-section {
  padding: 100px var(--margin-desktop);
}

.workflow-section__container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.workflow-section__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 20px;
}

.workflow-section__subtitle {
  font-size: 16px;
  color: var(--lavender);
  margin-top: 12px;
}

.workflow-section__badge {
  font-family: var(--ff-label);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--mint);
  white-space: nowrap;
  margin-top: 8px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gutter);
}

.step-card {
  padding: 32px 24px;
  border: 1px solid var(--outline-dim);
  border-top: 2px solid var(--mint);
  transition: all 0.3s ease;
}

.step-card:hover {
  border-color: var(--mint);
  background: rgba(127, 255, 212, 0.03);
}

.step-card__icon {
  margin-bottom: 20px;
}

.step-card__title {
  font-family: var(--ff-display);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.step-card__desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--lavender);
}

/* ===== POLICY SECTION ===== */
.policy-section {
  padding: 100px var(--margin-desktop);
  position: relative;
}

.policy-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(180deg, rgba(99, 67, 146, 0.1), transparent);
  pointer-events: none;
}

.policy-section__container {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.policy-section__left .section-title {
  margin-bottom: 20px;
}

.policy-section__right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.policy-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.policy-item__num {
  font-family: var(--ff-label);
  font-size: 14px;
  font-weight: 700;
  color: var(--mint);
  flex-shrink: 0;
  margin-top: 2px;
}

.policy-item__label {
  font-family: var(--ff-label);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy-item__text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--lavender);
}

/* ===== FOOTER ===== */
.footer {
  padding: 80px var(--margin-desktop) 40px;
  border-top: 1px solid rgba(99, 67, 146, 0.2);
}

.footer__container {
  max-width: var(--container-max);
  margin: 0 auto;
  text-align: center;
}

.footer__brand {
  margin-bottom: 32px;
}

.footer__brand-name {
  display: block;
  font-family: var(--ff-display);
  font-size: 28px;
  font-weight: 800;
  color: #fff;
}

.footer__brand-sub {
  display: block;
  font-family: var(--ff-label);
  font-size: 11px;
  font-weight: 600;
  color: var(--lavender);
  letter-spacing: 0.3em;
  margin-top: 4px;
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 36px;
  margin-bottom: 24px;
}

.footer__links a {
  font-family: var(--ff-label);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--lavender);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.3s ease;
}

.footer__links a:hover {
  color: var(--mint);
}

.footer__copy {
  font-size: 13px;
  color: var(--lavender);
  opacity: 0.6;
  margin-bottom: 16px;
}

.footer__tagline {
  font-family: var(--ff-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--mint);
  letter-spacing: 0.1em;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  animation: fadeInUp 0.7s ease forwards;
}

.fade-in--d1 { animation-delay: 0.1s; }
.fade-in--d2 { animation-delay: 0.2s; }
.fade-in--d3 { animation-delay: 0.3s; }
.fade-in--d4 { animation-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 100px var(--margin-mobile) 60px;
    gap: 40px;
  }

  .hero__sidebar {
    display: none;
  }

  .hero__content {
    padding-left: 0;
    text-align: center;
  }

  .hero__title {
    font-size: 52px;
  }

  .hero__desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__image {
    justify-content: center;
  }

  .hero__image img {
    max-width: 100%;
    height: 280px;
  }

  .hero::before {
    width: 100%;
    clip-path: polygon(0 40%, 100% 0, 100% 100%, 0% 100%);
  }

  .section-title {
    font-size: 36px;
  }

  .pricing-table__header,
  .pricing-table__row {
    grid-template-columns: 1fr 120px 120px;
  }

  .pricing-table__col {
    padding: 14px 16px;
    font-size: 13px;
  }

  .plans-section__container {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }

  .policy-section__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .policy-section__left .section-title {
    text-align: center;
  }

  .policy-section__left {
    text-align: center;
  }

  .book-session-btn {
    left: var(--margin-mobile);
  }

  :root {
    --margin-desktop: 24px;
  }
}

@media (max-width: 640px) {
  .top-nav {
    padding: 12px var(--margin-mobile);
  }

  .top-nav__links {
    gap: 20px;
  }

  .top-nav__links a {
    font-size: 10px;
  }

  .hero__title {
    font-size: 40px;
  }

  .section-title {
    font-size: 28px;
  }

  .pricing-table__header,
  .pricing-table__row {
    grid-template-columns: 1fr 90px 90px;
  }

  .pricing-table__col {
    padding: 12px 10px;
    font-size: 12px;
  }

  .pricing-table__header .pricing-table__col {
    font-size: 9px;
    letter-spacing: 0.1em;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .footer__links {
    flex-direction: column;
    gap: 16px;
  }

  .workflow-section__header {
    flex-direction: column;
  }

  .plan-card {
    padding: 28px 20px;
  }

  .book-session-btn {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
  }
}
