:root {
  --bg: #f7f4fb;
  --bg-soft: #faf7ff;
  --surface: #ffffff;
  --surface-2: #f2ecfb;
  --ink: #1e1630;
  --muted: #645d76;
  --border: rgba(30, 22, 48, 0.10);
  --line: rgba(30, 22, 48, 0.14);
  --purple: #7135c9;
  --purple-2: #4e55d9;
  --magenta: #d62e93;
  --shadow: 0 18px 46px rgba(48, 26, 83, 0.10);
  --shadow-soft: 0 12px 28px rgba(48, 26, 83, 0.08);
  --radius: 26px;
  --radius-sm: 18px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, var(--bg) 0%, #ffffff 22%, var(--bg) 100%);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 28px;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(30, 22, 48, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  min-width: 0;
}
.brand-mark {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand-text strong { font-size: 1.02rem; }
.brand-text span { font-size: 0.83rem; color: var(--muted); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.site-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
}
.site-nav a:hover,
.site-nav .nav-current { color: var(--ink); }
.nav-cta {
  padding: 11px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--magenta), var(--purple) 55%, var(--purple-2));
  color: #fff !important;
  box-shadow: 0 10px 24px rgba(113, 53, 201, 0.24);
}

.section-shell {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}
.section { padding: 72px 0; }

.hero-simple {
  padding: 96px 0 52px;
  text-align: center;
}
.hero-centered {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}
.hero-centered::before,
.hero-centered::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(40px);
  opacity: 0.55;
  z-index: -1;
}
.hero-centered::before {
  width: 240px;
  height: 240px;
  background: rgba(214, 46, 147, 0.12);
  left: -40px;
  top: -20px;
}
.hero-centered::after {
  width: 300px;
  height: 300px;
  background: rgba(78, 85, 217, 0.10);
  right: -80px;
  top: 20px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,0.86);
  border: 1px solid var(--border);
  font-size: 0.84rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--purple);
  font-weight: 800;
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--magenta), var(--purple-2));
}
.eyebrow.light {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.20);
  color: #fff;
}
.eyebrow.light::before { background: #fff; }

h1, h2, h3, h4, p { margin-top: 0; }
h1 {
  font-size: clamp(2.7rem, 6vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  margin: 18px 0 18px;
}
h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.42rem;
  line-height: 1.16;
  letter-spacing: -0.02em;
}
p { color: var(--muted); }
.hero-lede {
  font-size: 1.18rem;
  max-width: 760px;
  margin: 0 auto 18px;
}
.hero-trust {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 28px;
}
.narrow { max-width: 760px; }

.hero-actions,
.hero-actions-center {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--magenta), var(--purple) 52%, var(--purple-2));
  box-shadow: 0 14px 32px rgba(113, 53, 201, 0.22);
}
.button-secondary {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.section-heading {
  max-width: 770px;
  margin-bottom: 32px;
}
.section-heading.left-align { max-width: none; }
.card-grid {
  display: grid;
  gap: 22px;
}
.card-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.card,
.booking-panel,
.team-card,
.side-card {
  background: rgba(255,255,255,0.90);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.card,
.side-card { padding: 28px; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 11px;
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--purple);
  font-weight: 800;
  font-size: 0.82rem;
  margin-bottom: 14px;
}
.pricing-grid { align-items: stretch; }
.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.featured-pricing {
  border-color: rgba(113, 53, 201, 0.24);
  box-shadow: var(--shadow);
}
.price-tag,
.booking-price {
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.pricing-intro {
  margin-bottom: 0;
}
.feature-list {
  margin: 4px 0 2px 0;
  padding-left: 1.15rem;
  color: var(--ink);
}
.feature-list li { margin-bottom: 10px; }
.compact-list li { margin-bottom: 8px; }
.note-text {
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--bg-soft);
  margin: 4px 0 0;
}
.microcopy {
  font-size: 0.9rem;
  color: var(--muted);
}
.microcopy.left { text-align: left; }
.pricing-card .button { margin-top: auto; }

.booking-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.booking-panel { overflow: hidden; }
.booking-intro {
  padding: 28px 28px 16px;
}
.booking-intro h3 { margin-bottom: 10px; }
.calendly-wrap {
  padding: 0 14px 14px;
}
.calendly-wrap .calendly-inline-widget {
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg-soft);
}
.text-link {
  color: var(--purple);
  text-decoration-thickness: 1.5px;
  font-weight: 700;
}
.strong-link { font-size: 1rem; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.team-card {
  overflow: hidden;
}
.team-photo {
  width: 100%;
  aspect-ratio: 4 / 4.3;
  object-fit: cover;
}
.team-body {
  padding: 24px;
}
.role {
  color: var(--purple);
  font-weight: 800;
  margin-bottom: 14px;
}
.center-link-wrap {
  text-align: center;
  margin-top: 18px;
}

.course-panel {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
  padding: 36px;
  border-radius: 34px;
  background: linear-gradient(135deg, #2b1b45 0%, #52288c 58%, #4c54d8 100%);
  color: #fff;
  box-shadow: var(--shadow);
}
.course-panel h2, .course-panel h3 { color: #fff; }
.course-panel p { color: rgba(255,255,255,0.84); }
.interest-box {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 24px;
  padding: 22px;
}
.interest-box .microcopy { color: rgba(255,255,255,0.72); }

.disclaimer {
  padding: 22px 24px;
  background: rgba(30, 22, 48, 0.04);
  border: 1px solid var(--border);
  border-radius: 20px;
}
.disclaimer strong { color: var(--ink); }

.page-hero {
  padding: 90px 0 18px;
}
.split-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: start;
}
.side-card h3 { margin-bottom: 12px; }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 26px 32px 40px;
  color: var(--muted);
}
.site-footer > div {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-mark {
  width: 34px;
  height: 34px;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-header {
    position: static;
    flex-direction: column;
    align-items: flex-start;
  }
  .card-grid.two,
  .booking-grid,
  .team-grid,
  .course-panel,
  .split-panel {
    grid-template-columns: 1fr;
  }
  .course-panel {
    padding: 28px;
  }
}

@media (max-width: 720px) {
  .site-nav { gap: 12px; }
  .section { padding: 58px 0; }
  .hero-simple { padding: 70px 0 24px; }
  h1 { font-size: clamp(2.3rem, 10vw, 3.4rem); }
  h2 { font-size: clamp(1.75rem, 7vw, 2.5rem); }
  .hero-actions,
  .hero-actions-center { flex-direction: column; }
  .button { width: 100%; }
  .booking-intro { padding: 24px 20px 12px; }
  .calendly-wrap { padding: 0 8px 8px; }
  .card, .side-card { padding: 22px; }
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px 34px;
  }
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,0.80);
  border: 1px solid var(--border);
}

.language-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 30px;
  padding: 0 9px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--muted);
}

.language-switch a.active {
  color: #fff;
  background: linear-gradient(135deg, var(--magenta), var(--purple) 52%, var(--purple-2));
}

@media (max-width: 980px) {
  .language-switch {
    align-self: flex-start;
  }
}


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

.footer-links a{
  color:rgba(255,255,255,0.82);
  text-decoration:none;
  font-size:0.92rem;
}

.footer-links a:hover{
  color:#fff;
}

.contact-strip{
  margin-top:18px;
  color:rgba(255,255,255,0.82);
  font-size:0.92rem;
  line-height:1.6;
}


/* Contact and privacy update */
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  align-items: start;
}

.footer-column h4 {
  color: var(--ink);
  margin: 0 0 10px;
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.footer-column p,
.footer-column a {
  color: var(--muted);
  font-size: 0.94rem;
}

.footer-column a {
  text-decoration: none;
  font-weight: 650;
}

.footer-column a:hover {
  color: var(--purple);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact-line {
  margin: 0 0 7px;
}

.privacy-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}

.privacy-sidebar {
  position: sticky;
  top: 96px;
  background: rgba(255,255,255,0.86);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px;
  box-shadow: var(--shadow-soft);
}

.privacy-sidebar h3 {
  font-size: 1rem;
  margin-bottom: 12px;
}

.privacy-sidebar a {
  display: block;
  color: var(--muted);
  text-decoration: none;
  font-weight: 650;
  padding: 7px 0;
  border-bottom: 1px solid rgba(30,22,48,0.06);
}

.privacy-sidebar a:hover {
  color: var(--purple);
}

.privacy-content {
  display: grid;
  gap: 18px;
}

.privacy-card {
  background: rgba(255,255,255,0.90);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.privacy-card h2 {
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  margin-bottom: 12px;
}

.privacy-card p:last-child,
.privacy-card ul:last-child {
  margin-bottom: 0;
}

.privacy-meta {
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.privacy-meta span {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--purple);
  font-size: 0.84rem;
  font-weight: 800;
}

.contact-card {
  background: linear-gradient(135deg, rgba(214,46,147,0.08), rgba(113,53,201,0.08));
  border: 1px solid rgba(113,53,201,0.16);
}

@media (max-width: 980px) {
  .footer-grid,
  .privacy-layout {
    grid-template-columns: 1fr;
  }

  .privacy-sidebar {
    position: static;
  }
}



/* Footer and privacy refinement */
.site-footer {
  padding: 54px 0 50px;
  background:
    radial-gradient(circle at 18% 0%, rgba(214,46,147,0.08), transparent 34%),
    radial-gradient(circle at 92% 22%, rgba(78,85,217,0.08), transparent 34%),
    rgba(247,244,251,0.78);
  border-top: 1px solid rgba(30,22,48,0.08);
}

.site-footer .footer-grid {
  width: min(1240px, calc(100% - 56px));
  display: grid;
  grid-template-columns: minmax(360px, 1.6fr) minmax(240px, 0.75fr) minmax(220px, 0.65fr);
  gap: clamp(44px, 6vw, 96px);
  align-items: start;
}

.site-footer .footer-column:first-child {
  max-width: 560px;
}

.site-footer .footer-mark {
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
}

.site-footer .footer-column h4 {
  margin: 4px 0 18px;
  font-size: 0.98rem;
  color: var(--ink);
}

.site-footer .footer-column p {
  margin: 0 0 10px;
  color: var(--muted);
}

.site-footer .footer-links {
  gap: 12px;
}

.site-footer .footer-links a,
.site-footer .footer-column a {
  color: var(--muted);
  font-weight: 700;
}

.site-footer .footer-links a:hover,
.site-footer .footer-column a:hover {
  color: var(--purple);
}

.site-footer .footer-contact-line {
  margin-bottom: 11px;
}

/* Cleaner privacy hero */
.privacy-page .page-hero {
  padding-top: 82px;
  padding-bottom: 40px;
}

.privacy-page .page-hero h1 {
  display: none;
}

.privacy-page .page-hero .hero-lede {
  max-width: 900px;
  margin: 24px 0 0;
  font-size: clamp(1.15rem, 1.65vw, 1.32rem);
  line-height: 1.58;
}

.privacy-page .privacy-meta {
  margin-top: 24px;
}

.privacy-page .privacy-meta span:last-child {
  background: transparent;
  color: var(--muted);
  padding-left: 0;
  font-weight: 650;
}

.privacy-page .section {
  padding-top: 34px;
}

.privacy-page .privacy-layout {
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 36px;
  width: min(1240px, calc(100vw - 56px));
  margin-left: 50%;
  transform: translateX(-50%);
}

.privacy-page .privacy-sidebar {
  border-radius: 22px;
  padding: 20px;
}

.privacy-page .privacy-content {
  gap: 20px;
}

.privacy-page .privacy-card {
  padding: clamp(26px, 3vw, 38px);
  border-radius: 28px;
}

.privacy-page .privacy-card h2 {
  margin-bottom: 14px;
}

@media (max-width: 980px) {
  .site-footer .footer-grid,
  .privacy-page .privacy-layout {
    width: min(100% - 32px, 720px);
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .privacy-page .privacy-layout {
    transform: none;
    margin-left: auto;
    margin-right: auto;
  }

  .site-footer {
    padding: 42px 0;
  }
}



/* Privacy content rewrite */
.privacy-page .page-hero {
  padding-top: 86px;
  padding-bottom: 12px;
}

.privacy-page .section {
  padding-top: 20px;
}

.privacy-page .eyebrow {
  font-size: 0.88rem;
}

.privacy-page .privacy-card ul {
  margin-top: 8px;
}



/* Footer brand lockup */
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 14px;
}

.footer-brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
}

.footer-brand-text {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.05;
}

.footer-brand-text strong {
  color: var(--ink);
  font-size: 1.7rem;
  letter-spacing: -0.02em;
}

.footer-brand-text span {
  color: var(--muted);
  font-size: 1rem;
}
