@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@600;700;800&display=swap');

:root {
  color-scheme: light;
  --bg: #0b0d10;
  --bg-light: #11151b;
  --card: #ffffff;
  --text: #f5f7fb;
  --text-dark: #11151b;
  --muted: #9aa3b2;
  --primary: #4f7cff;
  --primary-dark: #3b60d4;
  --accent: #f4b860;
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 60px rgba(10, 20, 40, 0.2);
  --bg-glow-1: rgba(79, 124, 255, 0.25);
  --bg-glow-2: rgba(244, 184, 96, 0.18);
  --bg-glow-3: rgba(47, 179, 124, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(600px 420px at 10% 10%, var(--bg-glow-1), transparent 70%),
    radial-gradient(540px 360px at 85% 15%, var(--bg-glow-2), transparent 70%),
    radial-gradient(700px 480px at 70% 80%, var(--bg-glow-3), transparent 70%),
    linear-gradient(180deg, rgba(11, 13, 16, 0.9), rgba(11, 13, 16, 0.95));
  pointer-events: none;
}

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

.container {
  width: min(1120px, 90vw);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 20;
  color: var(--text-dark);
}

.topbar__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
}

.topbar__nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-weight: 500;
}

.topbar__nav-divider {
  width: 1px;
  height: 16px;
  background: rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

.topbar__nav .nav-secondary {
  font-size: 0.85rem;
  opacity: 0.6;
}

.topbar__nav .nav-secondary:hover {
  opacity: 1;
}

.nav-dropdown-wrapper {
  position: relative;
  padding-bottom: 0.5rem;
  margin-bottom: -0.5rem;
}

.nav-dropdown-wrapper .nav-dropdown-trigger {
  cursor: pointer;
}

.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
  padding: 0.5rem 0;
  min-width: 220px;
  z-index: 30;
}

.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
  background: transparent;
}

.nav-dropdown::after {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #fff;
}

.nav-dropdown a {
  display: block;
  padding: 0.55rem 1.2rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dark);
  white-space: nowrap;
  transition: background 0.15s ease;
}

.nav-dropdown a:hover {
  background: rgba(79, 124, 255, 0.06);
  color: var(--primary);
}

.nav-dropdown-wrapper:hover .nav-dropdown {
  display: block;
}

.topbar__nav .button {
  white-space: nowrap;
}

.topbar__nav .button--ghost {
  color: var(--text-dark);
  border-color: var(--text-dark);
}

.topbar__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}

.topbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.topbar__hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.topbar__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.topbar__hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Outfit', 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: var(--text-dark);
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.brand:hover {
  opacity: 0.85;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand__text-main {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--text-dark);
}

.brand__text-sub {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand__mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary) 0%, #6366f1 100%);
  color: white;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(79, 124, 255, 0.3);
}

.brand__logo {
  height: 42px;
  width: auto;
  display: block;
  border-radius: 8px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  background: var(--primary);
  color: white;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(79, 124, 255, 0.3);
}

.button--ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}

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

.hero {
  padding: 3rem 0 3rem;
}

.hero__grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.hero__copy h1 {
  font-size: clamp(2.6rem, 3vw, 3.5rem);
  margin-bottom: 1.2rem;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

.eyebrow {
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  margin-bottom: 0.8rem;
}

.hero__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  align-items: center;
}

.hero__quick-contact {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.hero__quick-contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.5rem 0.8rem;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.hero__quick-contact a:hover {
  background: rgba(0, 0, 0, 0.05);
}

.hero__quick-contact .quick-call {
  color: var(--primary);
}

.hero__quick-contact .quick-whatsapp {
  color: #25D366;
}

.hero__metrics {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero__metrics h3 {
  font-size: 1.6rem;
}

.hero__metrics p {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero__trust {
  color: var(--muted);
  font-weight: 600;
}

.hero__card {
  background: var(--card);
  color: var(--text-dark);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow);
  display: grid;
  gap: 1.5rem;
}

.hero__card ul {
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.hero__card li::before {
  content: "✓";
  color: var(--primary);
  margin-right: 0.5rem;
}

.hero__card-cta p {
  font-size: 0.85rem;
  color: #5b6373;
  margin-top: 0.8rem;
}

.logos {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
  background: var(--bg-light);
}

.logos__strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.logos__list {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-weight: 600;
}

.section {
  padding: 4rem 0;
}

.section--alt {
  background: var(--bg-light);
}

.section--highlight {
  background: linear-gradient(120deg, rgba(79, 124, 255, 0.15), rgba(244, 184, 96, 0.1));
}

.section__header {
  max-width: 680px;
  margin-bottom: 2.5rem;
}

.section__header h2 {
  font-size: clamp(2rem, 2.4vw, 2.8rem);
  margin-bottom: 1rem;
}

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

.section__note {
  margin-top: 2rem;
  color: var(--muted);
  font-weight: 600;
}

.section__cta {
  margin-top: 2rem;
  display: flex;
  justify-content: flex-start;
}

.cards {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  border: 1px solid var(--border);
  padding: 1.8rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
}

.card h3 {
  margin-bottom: 0.8rem;
}

.outcomes {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.outcome {
  background: rgba(255, 255, 255, 0.04);
  padding: 1.6rem;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.timeline {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.timeline__item {
  border-left: 3px solid var(--primary);
  padding-left: 1.2rem;
}

.highlight {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.mentor-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.mentor {
  background: rgba(255, 255, 255, 0.08);
  padding: 1.4rem;
  border-radius: 16px;
}

.pricing {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.price-card {
  background: var(--card);
  color: var(--text-dark);
  padding: 2rem;
  border-radius: 20px;
  display: grid;
  gap: 1.2rem;
  box-shadow: var(--shadow);
}

.price-card--featured {
  border: 2px solid var(--primary);
  transform: translateY(-10px);
}

.price {
  font-size: 2rem;
  font-weight: 700;
}

.price-card ul {
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.price-card li::before {
  content: "•";
  color: var(--primary);
  margin-right: 0.5rem;
}

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

.form {
  background: var(--card);
  color: var(--text-dark);
  padding: 2rem;
  border-radius: 20px;
  display: grid;
  gap: 1rem;
}

.form label {
  display: grid;
  gap: 0.4rem;
  font-weight: 600;
}

.form input,
.form textarea {
  border-radius: 12px;
  border: 1px solid #d9dee8;
  padding: 0.8rem 1rem;
  font-family: inherit;
}

.form__note {
  font-size: 0.85rem;
  color: #5b6373;
}

.contact-info {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  max-width: 800px;
}

.contact-card {
  background: var(--card);
  color: var(--text-dark);
  padding: 2.5rem;
  border-radius: 18px;
  box-shadow: var(--shadow);
  text-align: center;
}

.contact-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.contact-card a {
  font-size: 1.1rem;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-card a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.contact-form-wrapper {
  margin: 3rem 0 0;
  max-width: 100%;
  overflow: hidden;
}

.contact-form-wrapper h3 {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  text-align: center;
}

.contact-form {
  background: var(--card);
  color: var(--text-dark);
  padding: 2rem;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 1rem;
  text-align: left;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
  border-radius: 12px;
  border: 1px solid #d9dee8;
  padding: 1rem;
  font-family: inherit;
  font-size: 1rem;
  text-align: left;
  background: #fff;
  color: #11151b;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239aa3b2' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.contact-form select option[value=""] {
  color: #9aa3b2;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
  max-width: 100%;
  overflow-wrap: break-word;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.faq__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

details {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem 1.2rem;
  background: rgba(255, 255, 255, 0.02);
}

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

.footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0 1.5rem;
}

.footer__content {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.footer__links {
  display: grid;
  gap: 0.6rem;
  font-weight: 500;
}

.footer__bottom {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

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

  .topbar__nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 1rem 1.5rem 1.5rem;
    gap: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  }

  .topbar__nav.open {
    display: flex;
  }

  .topbar__nav a {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 1rem;
  }

  .topbar__nav-divider {
    display: none;
  }

  .topbar__nav .nav-secondary {
    font-size: 0.9rem;
    opacity: 0.5;
  }

  .nav-dropdown-wrapper {
    position: static;
  }

  .nav-dropdown {
    display: none;
    position: static;
    transform: none;
    margin-top: 0;
    box-shadow: none;
    border-radius: 0;
    padding: 0 0 0 1rem;
    min-width: unset;
    background: transparent;
  }

  .nav-dropdown::before {
    display: none;
  }

  .nav-dropdown a {
    padding: 0.75rem 0;
    font-size: 0.9rem;
    opacity: 0.8;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: block;
  }

  .nav-dropdown-wrapper.open .nav-dropdown {
    display: block;
  }

  .nav-dropdown-trigger::after {
    content: ' ▼';
    font-size: 0.7rem;
  }

  .nav-dropdown-wrapper.open .nav-dropdown-trigger::after {
    content: ' ▲';
  }

  .topbar__nav a:last-child {
    border-bottom: none;
    margin-top: 0.5rem;
  }

  .topbar__nav .button--ghost {
    text-align: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    margin-top: 0.5rem;
  }

  .topbar {
    position: relative;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero__cta {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero__cta .button {
    width: 100%;
    justify-content: center;
  }
}

/* Sticky Mobile CTA */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--primary) 0%, #6366f1 100%);
  padding: 0.875rem 1.25rem;
  box-shadow: 0 -4px 24px rgba(79, 124, 255, 0.35);
  z-index: 100;
}

.sticky-mobile-cta .button {
  width: 100%;
  justify-content: center;
  padding: 0.875rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  background: #fff;
  color: var(--primary);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.sticky-mobile-cta .button:hover {
  transform: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

@media (max-width: 760px) {
  .sticky-mobile-cta {
    display: block;
  }

  body {
    padding-bottom: 70px;
  }

  .contact-form {
    padding: 1.25rem;
  }

  .contact-form input[type="text"],
  .contact-form input[type="email"],
  .contact-form input[type="tel"],
  .contact-form select,
  .contact-form textarea {
    padding: 0.875rem;
    font-size: 16px; /* Prevents iOS zoom on focus */
  }

  .brand {
    font-size: 1.1rem;
  }
}
