/* --- VARIABLES --- */
:root {
  --bg-dark: #0a0a0c;
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --accent-primary: #8b5cf6; /* Violet */
  --accent-secondary: #06b6d4; /* Cyan */
  --accent-glow: rgba(139, 92, 246, 0.4);

  --font-ui: "Manrope", sans-serif;
  --font-heading: "Space Grotesk", sans-serif;

  --header-height: 80px;
  --container-width: 1240px;
  --border-radius-lg: 24px;
  --border-radius-btn: 50px;

  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-ui);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  position: relative;
  z-index: 1;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

ul {
  list-style: none;
}

/* --- AURORA BACKGROUND --- */
.aurora-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background:
    radial-gradient(
      circle at 15% 50%,
      rgba(76, 29, 149, 0.15),
      transparent 25%
    ),
    radial-gradient(circle at 85% 30%, rgba(6, 182, 212, 0.1), transparent 25%);
  pointer-events: none;
}

/* --- HEADER --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: var(--transition-smooth);
  background: rgba(10, 10, 12, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header__container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__logo-img {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 0 8px var(--accent-primary));
}

.header__logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, #fff, #9ca3af);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.header__menu {
  display: flex;
  gap: 32px;
}

.header__link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
}

.header__link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 100%;
  height: 2px;
  background: var(--accent-secondary);
  transition: var(--transition-smooth);
  border-radius: 2px;
}

.header__link:hover {
  color: #fff;
}

.header__link:hover::after {
  transform: translateX(-50%) scaleX(1);
}

/* Header CTA Button */
.header__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 24px;
  border-radius: var(--border-radius-btn);
  font-weight: 600;
  font-size: 0.9rem;
  color: #fff;
  overflow: hidden;
  position: relative;
  transition: var(--transition-smooth);
}

.header__cta:hover {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  box-shadow: 0 0 20px var(--accent-glow);
  transform: translateY(-2px);
}

.header__cta svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.header__cta:hover svg {
  transform: translate(2px, -2px);
}

/* Burger Menu Button */
.header__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
  z-index: 1001;
}

.header__burger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  transition: var(--transition-smooth);
}

.header__burger-line:first-child {
  top: 0;
}
.header__burger-line:last-child {
  bottom: 0;
  width: 70%;
  margin-left: auto;
}

/* Active Burger State */
.header__burger.active .header__burger-line:first-child {
  transform: rotate(45deg);
  top: 9px;
}
.header__burger.active .header__burger-line:last-child {
  transform: rotate(-45deg);
  bottom: 9px;
  width: 100%;
}

/* --- FOOTER --- */
.footer {
  background: #050507;
  padding: 80px 0 40px;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer__col--brand {
  padding-right: 40px;
}

.footer__logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
  display: block;
  margin-bottom: 20px;
}

.footer__desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 300px;
}

.footer__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 24px;
}

.footer__list li {
  margin-bottom: 12px;
}

.footer__link {
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.footer__link:hover {
  color: var(--accent-secondary);
  padding-left: 4px;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.footer__contact-item svg {
  color: var(--accent-primary);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
}

.footer__bottom {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 20px 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.85rem;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #0a0a0c;
    flex-direction: column;
    justify-content: center;
    transition: var(--transition-smooth);
    padding: 20px;
  }

  .header__nav.active {
    right: 0;
  }

  .header__menu {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
  }

  .header__link {
    font-size: 1.5rem;
    font-family: var(--font-heading);
  }

  .header__burger {
    display: block;
  }

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

@media (max-width: 600px) {
  .footer__container {
    grid-template-columns: 1fr;
  }

  .footer__col--brand {
    padding-right: 0;
  }
}

/* --- HERO SECTION --- */
.hero {
  position: relative;
  min-height: 100vh; /* Full screen */
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  overflow: hidden;
}

.hero__container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Background Blobs */
.hero__blobs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.6;
  animation: blob-float 10s infinite alternate;
}

.blob--1 {
  width: 500px;
  height: 500px;
  background: var(--accent-primary);
  top: -10%;
  right: -10%;
  animation-delay: 0s;
}

.blob--2 {
  width: 400px;
  height: 400px;
  background: var(--accent-secondary);
  bottom: 10%;
  left: -10%;
  animation-delay: -5s;
}

.blob--3 {
  width: 300px;
  height: 300px;
  background: #4f46e5;
  top: 40%;
  left: 40%;
  opacity: 0.4;
  animation: blob-float 15s infinite alternate-reverse;
}

@keyframes blob-float {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(20px, -40px) scale(1.1);
  }
}

/* Typography & Content */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--accent-secondary);
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-secondary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-secondary);
}

.hero__title {
  font-family: var(--font-heading);
  font-size: 4.5rem; /* Huge Typography */
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.text-gradient {
  background: linear-gradient(135deg, #fff 30%, var(--accent-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 40px;
}

/* Actions */
.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--border-radius-btn);
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent-primary), #6d28d9);
  color: #fff;
  box-shadow: 0 10px 30px -10px var(--accent-primary);
}

.btn--primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 40px -10px var(--accent-primary);
}

.hero__note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  opacity: 0.8;
}

.hero__note svg {
  width: 16px;
  height: 16px;
}

/* Visual: Glassmorphism Card */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero__glass-card {
  width: 100%;
  max-width: 400px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 30px;
  padding: 30px;
  transform: rotate(-5deg);
  transition: transform 0.5s ease;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.hero__glass-card:hover {
  transform: rotate(0deg) scale(1.05);
}

.glass-card__row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
}

.glass-card__icon {
  width: 50px;
  height: 50px;
  background: rgba(6, 182, 212, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-secondary);
}

.glass-card__info {
  display: flex;
  flex-direction: column;
}

.glass-card__info span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.glass-card__info strong {
  font-size: 1.2rem;
  color: #fff;
}

.glass-card__chart {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 120px;
  gap: 10px;
}

.chart-bar {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: height 1s ease;
}

.chart-bar.active {
  background: linear-gradient(
    to top,
    var(--accent-secondary),
    var(--accent-primary)
  );
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.3);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero__container {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 40px;
  }

  .hero__title {
    font-size: 3rem;
  }

  .hero__subtitle {
    margin: 0 auto 40px;
  }

  .hero__actions {
    align-items: center;
  }

  .hero__visual {
    margin-top: 40px;
  }
}

/* --- SECTION UTILS --- */
.section {
  padding: 100px 0;
  position: relative;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 20px;
  background: linear-gradient(to right, #fff, #9ca3af);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.text-highlight {
  color: var(--accent-secondary);
  font-weight: 600;
}

/* --- BENTO GRID --- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, minmax(280px, auto));
  gap: 24px;
}

.bento-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px; /* Fluid style corners */
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.bento-item:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

/* Grid Layout Logic */
.bento-item--large {
  grid-column: span 2;
}

.bento-item--tall {
  grid-row: span 2;
  background: linear-gradient(
    to bottom right,
    rgba(255, 255, 255, 0.03),
    rgba(6, 182, 212, 0.05)
  );
}

.bento-item--wide {
  grid-column: span 2;
}

/* Content Styling */
.bento-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.bento-content--row {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.icon-box {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 24px;
}

.icon-box--primary {
  background: rgba(139, 92, 246, 0.2);
  color: var(--accent-primary);
}

.icon-box--secondary {
  background: rgba(6, 182, 212, 0.2);
  color: var(--accent-secondary);
}

.icon-box--accent {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.bento-item h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: #fff;
}

.bento-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Decor for Large Item */
.bento-bg {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    var(--accent-primary) 0%,
    transparent 70%
  );
  opacity: 0.2;
  filter: blur(60px);
  z-index: 1;
}

/* Decor for Tall Item */
.stat-badge {
  margin-top: auto;
  display: inline-flex;
  padding: 8px 16px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--accent-secondary);
  font-weight: 600;
  font-size: 0.9rem;
}

.stat-badge span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.stat-badge svg {
  width: 14px;
  height: 14px;
}

/* Decor for Wide Item (Dummy UI) */
.dummy-ui {
  width: 160px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 12px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.dummy-line {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  margin-bottom: 8px;
  width: 100%;
}

.dummy-line.short {
  width: 60%;
}

.dummy-btn {
  height: 24px;
  width: 100%;
  background: var(--accent-secondary);
  border-radius: 6px;
  margin-top: 12px;
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 900px) {
  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .bento-item--large,
  .bento-item--tall,
  .bento-item--wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .bento-content--row {
    flex-direction: column;
    align-items: flex-start;
  }

  .visual-col {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-top: -40px;
  }
}

/* --- METHODS / TIMELINE --- */
.methods {
  overflow: hidden;
}

.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0;
}

/* The Glowing Line */
.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(
    to bottom,
    rgba(139, 92, 246, 0) 0%,
    var(--accent-secondary) 20%,
    var(--accent-primary) 80%,
    rgba(139, 92, 246, 0) 100%
  );
  transform: translateX(-50%);
  box-shadow: 0 0 15px var(--accent-glow);
}

.timeline__item {
  display: flex;
  justify-content: flex-end; /* Default for left items effectively */
  padding-bottom: 80px;
  width: 50%;
  position: relative;
}

.timeline__item--left {
  padding-right: 50px;
  text-align: right;
  margin-right: auto; /* Push to left side */
}

.timeline__item--right {
  padding-left: 50px;
  text-align: left;
  margin-left: auto; /* Push to right side */
  justify-content: flex-start;
}

/* Markers (The circles on the line) */
.timeline__marker {
  position: absolute;
  top: 0;
  width: 50px;
  height: 50px;
  background: var(--bg-dark);
  border: 2px solid var(--accent-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: #fff;
  z-index: 2;
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.3);
  transition: var(--transition-smooth);
}

/* Positioning Markers specifically */
.timeline__item--left .timeline__marker {
  right: -25px; /* Half of width */
}

.timeline__item--right .timeline__marker {
  left: -25px;
}

/* Cards Content */
.timeline__content {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 30px;
  position: relative;
  transition: var(--transition-smooth);
  width: 100%;
}

.timeline__content:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: scale(1.02);
  border-color: rgba(255, 255, 255, 0.15);
}

/* Connecting lines from card to marker (Optional visual link) */
.timeline__content::after {
  content: "";
  position: absolute;
  top: 25px;
  width: 20px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.timeline__item--left .timeline__content::after {
  right: -20px;
}

.timeline__item--right .timeline__content::after {
  left: -20px;
}

.timeline__content h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: #fff;
}

.timeline__content p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-secondary);
  font-weight: 600;
  transition: gap 0.3s ease;
}

.btn-link:hover {
  gap: 12px;
  color: #fff;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .timeline::before {
    left: 20px; /* Move line to left */
  }

  .timeline__item {
    width: 100%;
    padding-left: 60px; /* Space for line */
    padding-right: 0;
    margin-bottom: 40px;
    padding-bottom: 0;
    text-align: left;
  }

  .timeline__item--left,
  .timeline__item--right {
    margin-left: 0;
    margin-right: 0;
    justify-content: flex-start;
  }

  .timeline__marker {
    left: -5px !important; /* Center on the new line position (20px - 25px) */
    right: auto !important;
  }

  .timeline__content::after {
    left: -20px !important;
    right: auto !important;
    width: 15px;
  }
}

/* --- MENTORS SECTION --- */
.mentors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  align-items: start;
}

.mentor-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Organic Shapes for Images */
.mentor-image-wrapper {
  position: relative;
  width: 200px;
  height: 200px;
  margin-bottom: 24px;
  transition: transform 0.4s ease;
}

.mentor-card:hover .mentor-image-wrapper {
  transform: scale(1.05) rotate(2deg);
}

.mentor-blob {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.mentor-blob img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.mentor-card:hover .mentor-blob img {
  transform: scale(1.1);
}

/* Different blob shapes using border-radius */
.blob-shape-1 {
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation: morph 8s ease-in-out infinite;
}

.blob-shape-2 {
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: morph 8s ease-in-out infinite reverse;
}

@keyframes morph {
  0% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
  50% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }
  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
}

/* Info Text */
.mentor-info h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 4px;
  color: #fff;
}

.mentor-role {
  display: block;
  font-size: 0.9rem;
  color: var(--accent-secondary);
  margin-bottom: 16px;
  font-weight: 500;
}

.mentor-info p {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 300px;
  margin: 0 auto;
}

/* CTA Card Special Styling */
.mentor-cta {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.01)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  padding: 32px;
  text-align: left;
  align-items: flex-start;
  height: 100%; /* Stretch to fill grid if needed */
}

.mentor-cta-content h3 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  background: linear-gradient(90deg, #fff, var(--accent-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mentor-features {
  margin: 24px 0 32px;
}

.mentor-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.mentor-features li svg {
  width: 18px;
  height: 18px;
  color: var(--accent-secondary);
  flex-shrink: 0;
  margin-top: 3px;
}

.mentor-features li strong {
  color: #fff;
}

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

/* --- CONTACT SECTION --- */
.contact__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Contact Info Side */
.contact__direct {
  margin-top: 40px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact__mail-link {
  font-size: 1.2rem;
  color: var(--accent-secondary);
  font-weight: 600;
}

/* Form Wrapper (Capsule) */
.contact__form-wrapper {
  background: rgba(20, 20, 25, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 40px; /* Large organic radius */
  padding: 40px;
  position: relative;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.6);
}

/* Inputs */
.form__group {
  margin-bottom: 24px;
  position: relative;
}

.form__label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-left: 12px;
}

.form__input {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid transparent;
  border-radius: 16px;
  padding: 16px 20px;
  color: #fff;
  font-family: var(--font-ui);
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.form__input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
}

.form__input::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

/* Validation Styles */
.form__input.error {
  border-color: #ef4444;
}

.form__error {
  display: none;
  color: #ef4444;
  font-size: 0.8rem;
  margin-top: 6px;
  margin-left: 12px;
}

.form__input.error + .form__error,
.captcha-box.error + .form__error {
  display: block;
}

/* Custom Captcha */
.captcha-box {
  background: #f9f9f9; /* Light bg like real captcha */
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  cursor: pointer;
  user-select: none;
  transition: var(--transition-smooth);
}

.captcha-box:hover {
  border-color: #9ca3af;
}

.captcha-box.checked {
  border-color: var(--accent-secondary);
  cursor: default;
}

.captcha-checkbox {
  width: 28px;
  height: 28px;
  border: 2px solid #c5c5c5;
  border-radius: 4px;
  background: #fff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.captcha-box.checked .captcha-checkbox {
  border-color: transparent;
}

.captcha-label {
  color: #333; /* Dark text for captcha specifically */
  font-size: 0.9rem;
  font-weight: 500;
}

/* Captcha Animations */
.captcha-spinner {
  position: absolute;
  width: 24px;
  height: 24px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid var(--accent-primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  display: none;
}

.captcha-check-icon {
  width: 32px; /* Bigger check */
  height: 32px;
  color: #10b981; /* Green */
  display: none;
  animation: scale-in 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes scale-in {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}

.captcha-box.loading .captcha-spinner {
  display: block;
}
.captcha-box.checked .captcha-check-icon {
  display: block;
}
.captcha-box.checked .captcha-spinner {
  display: none;
}

/* Privacy Checkbox */
.custom-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  position: relative;
  padding-left: 0;
}

.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: relative;
  height: 22px;
  width: 22px;
  min-width: 22px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.2s ease;
}

.custom-checkbox:hover .checkmark {
  background-color: rgba(255, 255, 255, 0.2);
}

.custom-checkbox input:checked ~ .checkmark {
  background-color: var(--accent-primary);
  border-color: var(--accent-primary);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 7px;
  top: 3px;
  width: 6px;
  height: 12px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.custom-checkbox input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.checkbox-text a {
  color: var(--accent-secondary);
  text-decoration: underline;
}

/* Submit Button Loader State */
.btn-loader {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 0.8s linear infinite;
}

.btn.loading .btn-text {
  display: none;
}
.btn.loading .btn-loader {
  display: block;
}

/* Success Message */
.success-message {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  min-height: 400px;
  animation: fade-in 0.5s ease;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: rgba(16, 185, 129, 0.1); /* Green tint */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10b981;
  margin-bottom: 24px;
}

.success-icon svg {
  width: 40px;
  height: 40px;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile */
@media (max-width: 900px) {
  .contact__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact__form-wrapper {
    padding: 30px 20px;
  }
}

/* --- TEXT PAGES (Privacy, Terms, etc.) --- */
.pages {
  padding: 120px 0 80px; /* Space for fixed header */
  min-height: 80vh;
}

.pages .container {
  max-width: 800px; /* Narrower for reading */
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 40px;
  backdrop-filter: blur(10px);
}

.pages h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 24px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 16px;
}

.pages h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--text-main);
}

.pages p {
  margin-bottom: 16px;
  color: var(--text-muted);
  font-size: 1rem;
  text-align: justify;
}

.pages ul {
  margin-bottom: 24px;
  padding-left: 20px;
  list-style: disc;
  color: var(--text-muted);
}

.pages li {
  margin-bottom: 8px;
}

.pages strong {
  color: #fff;
}

.pages a {
  color: var(--accent-secondary);
  text-decoration: underline;
}

.pages a:hover {
  color: var(--accent-primary);
}

/* --- COOKIE POPUP --- */
.cookie-popup {
  position: fixed;
  bottom: -100%; /* Hidden initially */
  left: 20px;
  right: 20px;
  max-width: 400px;
  background: rgba(10, 10, 12, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 24px;
  z-index: 9999;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: bottom 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-popup.active {
  bottom: 20px;
}

.cookie-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.cookie-text a {
  color: var(--accent-secondary);
  text-decoration: underline;
}

.cookie-btn {
  align-self: flex-end;
  padding: 10px 24px;
  font-size: 0.9rem;
}

html {
  scroll-behavior: smooth;
}
