:root {
  --navy: #0f172a;
  --blue: #1d4ed8;
  --sky: #06b6d4;
  --orange: #c2410c;
  --green: #15803d;
  --ink: #172033;
  --muted: #64748b;
  --line: #dbe3ef;
  --soft: #f8fafc;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.14);
  --radius: 8px;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:target {
  scroll-margin-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid #0e7490;
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(219, 227, 239, 0.82);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-mark {
  display: block;
  width: 46px;
  height: 46px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #334155;
  font-size: 14px;
  font-weight: 700;
}

.nav-cta {
  color: var(--white);
  background: var(--orange);
  padding: 10px 14px;
  border-radius: var(--radius);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
}

.section-band,
.section {
  padding: clamp(68px, 8vw, 112px) clamp(18px, 5vw, 72px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 75px);
  background:
    linear-gradient(135deg, rgba(248, 250, 252, 0.96), rgba(255, 255, 255, 0.88)),
    radial-gradient(circle at 86% 18%, rgba(6, 182, 212, 0.2), transparent 32%),
    linear-gradient(180deg, #ffffff, #f8fafc);
  padding-top: clamp(52px, 6vw, 78px);
  padding-bottom: clamp(52px, 6vw, 78px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 900px;
  margin-bottom: 22px;
  color: var(--navy);
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.06;
  letter-spacing: 0;
}

h2 {
  color: var(--navy);
  font-size: clamp(30px, 4.4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  color: var(--navy);
  font-size: 20px;
  line-height: 1.25;
}

.hero-copy {
  max-width: 690px;
  color: #475569;
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn-primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 14px 34px rgba(249, 115, 22, 0.25);
}

.btn-secondary {
  color: var(--navy);
  background: var(--white);
  border-color: var(--line);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  color: #334155;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 14px;
}

.hero-proof strong {
  color: var(--navy);
}

.mentor-visual {
  position: relative;
  min-height: 500px;
}

.portrait-card {
  position: absolute;
  inset: 28px 38px 34px 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(15, 23, 42, 0.08), rgba(29, 78, 216, 0.06)),
    #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.portrait-frame {
  display: grid;
  flex: 1;
  place-items: center;
  min-height: 350px;
  background:
    linear-gradient(135deg, rgba(29, 78, 216, 0.11), rgba(6, 182, 212, 0.11)),
    linear-gradient(180deg, #f8fafc, #ffffff);
}

.portrait-initials {
  display: grid;
  width: clamp(180px, 22vw, 260px);
  height: clamp(180px, 22vw, 260px);
  place-items: center;
  color: var(--white);
  background:
    linear-gradient(145deg, #0f172a, #1d4ed8 72%, #06b6d4);
  border: 10px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  font-size: clamp(42px, 7vw, 72px);
  font-weight: 800;
  box-shadow: 0 24px 62px rgba(15, 23, 42, 0.22);
}

.mentor-badge {
  padding: 22px;
  color: var(--white);
  background: var(--navy);
}

.mentor-badge span,
.mentor-badge strong {
  display: block;
}

.mentor-badge span {
  color: #cbd5e1;
  font-size: 13px;
}

.floating-result {
  position: absolute;
  width: 178px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.12);
}

.floating-result strong,
.floating-result span {
  display: block;
}

.floating-result strong {
  color: var(--navy);
  font-size: 26px;
}

.floating-result span {
  color: var(--muted);
  font-size: 13px;
}

.result-one {
  top: 74px;
  right: 0;
}

.result-two {
  left: 0;
  bottom: 86px;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  padding: 1px;
  background: var(--line);
}

.stats-strip div {
  min-height: 154px;
  padding: 28px;
  background: var(--white);
}

.stats-strip strong,
.stats-strip span {
  display: block;
}

.stats-strip strong {
  color: var(--navy);
  font-size: clamp(28px, 4vw, 42px);
}

.stats-strip span {
  max-width: 220px;
  color: var(--muted);
  font-weight: 700;
}

.section {
  max-width: 1280px;
  margin: 0 auto;
}

.section-muted {
  max-width: none;
  background: var(--soft);
}

.section-muted > * {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 38px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.mentor-grid,
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 24px;
}

.mentor-profile,
.contact-card,
.program-card,
.why-grid article,
blockquote,
details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.mentor-profile {
  padding: clamp(26px, 4vw, 42px);
}

.mentor-profile p {
  color: #475569;
  font-size: 18px;
}

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

.credential-list div {
  padding: 20px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #475569;
  font-weight: 700;
}

.credential-list span {
  display: block;
  color: var(--blue);
  font-size: 14px;
  text-transform: uppercase;
}

.program-grid,
.why-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

.program-card {
  padding: 24px;
}

.program-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border-radius: var(--radius);
  font-weight: 800;
}

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

.program-card li + li {
  margin-top: 8px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.timeline div {
  min-height: 118px;
  padding: 20px;
  color: var(--navy);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
}

.timeline span {
  display: block;
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 14px;
}

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

.why-grid article {
  padding: 26px;
}

.why-grid p {
  color: var(--muted);
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

blockquote {
  margin: 0;
  padding: 28px;
}

blockquote p {
  color: var(--navy);
  font-size: 19px;
  font-weight: 700;
}

blockquote cite {
  color: var(--muted);
  font-style: normal;
  font-weight: 700;
}

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

details {
  padding: 20px 22px;
}

summary {
  color: var(--navy);
  cursor: pointer;
  font-weight: 800;
}

details p {
  margin: 14px 0 0;
  color: var(--muted);
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 clamp(18px, 5vw, 72px);
  padding: clamp(34px, 5vw, 56px);
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), #1d4ed8);
  border-radius: var(--radius);
}

.final-cta h2 {
  margin-bottom: 0;
  color: var(--white);
}

.final-cta .eyebrow {
  color: #bfdbfe;
}

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

.contact-form label {
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 14px 13px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
}

.full-field {
  grid-column: 1 / -1;
}

.contact-card {
  align-self: start;
  padding: 28px;
  background: var(--navy);
  color: var(--white);
}

.contact-card h3 {
  color: var(--white);
}

.contact-card a {
  display: block;
  margin: 12px 0;
  color: #bfdbfe;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-card p {
  color: #cbd5e1;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-weight: 800;
}

.form-privacy,
.form-notice {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  padding: 34px clamp(18px, 5vw, 72px);
  color: #cbd5e1;
  background: #090f1d;
  font-size: 14px;
}

.site-footer a {
  color: var(--white);
  font-weight: 700;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 12px 16px;
  color: var(--white);
  background: var(--green);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(22, 163, 74, 0.34);
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 52px rgba(22, 163, 74, 0.42);
}

.whatsapp-icon {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: #16a34a;
  background: var(--white);
  border-radius: 50%;
  font-size: 18px;
  line-height: 1;
}

@media (max-width: 980px) {
  .site-nav {
    position: fixed;
    top: 75px;
    right: 18px;
    left: 18px;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .js .site-nav {
    display: none;
  }

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

  .no-js .site-header {
    flex-wrap: wrap;
  }

  .no-js .site-nav {
    position: static;
    display: flex;
    width: 100%;
    flex-flow: row wrap;
  }

  .nav-toggle {
    display: block;
  }

  .no-js .nav-toggle {
    display: none;
  }

  .hero,
  .mentor-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .mentor-visual {
    min-height: 460px;
  }

  .program-grid,
  .stats-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  h1 {
    font-size: 40px;
  }

  .hero-actions,
  .final-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .mentor-visual {
    min-height: 390px;
  }

  .portrait-card {
    inset: 0;
  }

  .floating-result {
    display: none;
  }

  .stats-strip,
  .program-grid,
  .why-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .stats-strip div {
    min-height: 118px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-height: 50px;
    padding: 10px 13px;
    font-size: 14px;
  }
}
