/* === VARIABLES & FONTS === */
:root {
  --primary: #4f46e5; /* Indigo */
  --secondary: #ec4899; /* Pink */
  --dark: #0f172a;
  --light: #f8fafc;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.5);
  --text-main: #334155;
  --text-head: #1e293b;
  --radius: 16px;
  --font-head: "Plus Jakarta Sans", sans-serif;
  --font-body: "Outfit", sans-serif;
  --container: 1200px;
}

/* === RESET === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  background-color: var(--light);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}

/* === UTILS === */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  padding: 100px 0;
  position: relative;
  z-index: 2;
}
.section.bg-dark {
  background: var(--dark);
  color: #cbd5e1;
}
.section.bg-dark h2 {
  color: var(--white);
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--text-head);
  line-height: 1.2;
}
h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: -1px;
  margin-bottom: 25px;
}
h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}
p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}
.center {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}
.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* === BUTTONS === */
.btn-gradient {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: 0.3s;
  box-shadow: 0 10px 20px rgba(79, 70, 229, 0.2);
}
.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(79, 70, 229, 0.3);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--white);
  color: var(--text-head);
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid #e2e8f0;
}
.btn-white:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-sm-outline {
  padding: 8px 20px;
  border: 1px solid var(--text-main);
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.9rem;
}
.btn-sm-outline:hover {
  background: var(--text-head);
  color: var(--white);
  border-color: var(--text-head);
}

.full {
  width: 100%;
}

/* === HEADER === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding: 15px 0;
}
.h-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-txt {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.5px;
}
.desk-nav {
  display: flex;
  gap: 30px;
}
.desk-nav a {
  font-weight: 500;
  font-size: 0.95rem;
}
.desk-nav a:hover,
.desk-nav a.active {
  color: var(--primary);
}
.h-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.link-clean {
  font-weight: 500;
  font-size: 0.9rem;
}
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

/* === MOBILE MENU === */
.glass-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 2000;
  padding: 25px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.glass-menu.open {
  transform: translateX(0);
}
.gm-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.gm-logo {
  font-weight: 800;
  font-size: 1.4rem;
  font-family: var(--font-head);
}
.icon-btn {
  background: none;
  border: none;
  cursor: pointer;
}
.gm-nav {
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: center;
  margin-bottom: auto;
}
.gm-nav a {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-head);
}

/* === HERO SECTION === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}
/* Blobs */
.blob {
  position: absolute;
  filter: blur(80px);
  opacity: 0.4;
  z-index: 0;
}
.blob-1 {
  top: -10%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: var(--primary);
  border-radius: 50%;
}
.blob-2 {
  bottom: -10%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: var(--secondary);
  border-radius: 50%;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 25px;
}
.dot {
  width: 8px;
  height: 8px;
  background: var(--secondary);
  border-radius: 50%;
}
.hero-lead {
  font-size: 1.25rem;
  color: #475569;
  margin-bottom: 40px;
}
.hero-btns {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
}

/* Trust Avatars */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
}
.avatars {
  display: flex;
  margin-right: 10px;
}
.avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid var(--white);
  margin-left: -10px;
}
.avatars img:first-child {
  margin-left: 0;
}
.hero-trust p {
  margin: 0;
  font-size: 0.9rem;
}

/* Visual Cards */
.glass-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid var(--white);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}
.main-card {
  position: relative;
  transform: rotate(-2deg);
}
.card-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  opacity: 0.6;
  font-size: 0.8rem;
}
.btns span {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  margin-right: 5px;
}
.progress-bar {
  height: 8px;
  background: #e2e8f0;
  border-radius: 4px;
  margin-bottom: 20px;
  overflow: hidden;
}
.fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}
.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  font-weight: 700;
}
.badge {
  background: #dcfce7;
  color: #166534;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.8rem;
}

.small-card {
  position: absolute;
  bottom: -30px;
  right: -20px;
  padding: 15px 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--text-head);
  animation: float 4s ease-in-out infinite;
}
.small-card i {
  color: #eab308;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* === BENTO GRID === */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.bento-box {
  background: var(--white);
  padding: 30px;
  border-radius: 24px;
  border: 1px solid #f1f5f9;
  transition: 0.3s;
}
.bento-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}
.bento-box.large {
  grid-column: 1 / 3;
}
.icon-wrap {
  width: 50px;
  height: 50px;
  background: #e0e7ff;
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.icon-wrap.color-2 {
  background: #fce7f3;
  color: var(--secondary);
}
.icon-wrap.color-3 {
  background: #dcfce7;
  color: #16a34a;
}

/* === PROGRAMS SLIDER === */
.bg-gradient-light {
  background: linear-gradient(180deg, var(--light), #eff6ff);
}
.programs-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.sec-head {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 50px;
}
.link-u {
  text-decoration: underline;
  font-weight: 600;
  color: var(--text-head);
}

.prog-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: 0.3s;
}
.prog-card:hover {
  transform: translateY(-8px);
}
.pc-img {
  height: 220px;
  position: relative;
}
.pc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pc-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.9);
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}
.pc-badge.new {
  background: var(--secondary);
  color: var(--white);
}
.pc-body {
  padding: 25px;
}
.pc-meta {
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 10px;
  font-weight: 500;
}
.btn-text {
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 15px;
}
.btn-text:hover {
  gap: 10px;
}

/* === QUIZ BANNER === */
.cta-gradient-box {
  background: linear-gradient(120deg, var(--primary), #8b5cf6);
  border-radius: 30px;
  padding: 60px;
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 25px 50px rgba(79, 70, 229, 0.25);
}
.cgb-content {
  max-width: 600px;
}
.cgb-content h2 {
  color: var(--white);
  margin-bottom: 15px;
}
.cgb-content p {
  color: rgba(255, 255, 255, 0.9);
}
.stats-mini {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}
.sm-item strong {
  display: block;
  font-size: 1.5rem;
  font-family: var(--font-head);
}
.btn-white-glare {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 15px 40px;
  border-radius: 50px;
  color: var(--white);
  font-weight: 700;
  transition: 0.3s;
  display: inline-block;
}
.btn-white-glare:hover {
  background: var(--white);
  color: var(--primary);
}
.cgb-action {
  text-align: center;
}
.sub-note {
  display: block;
  margin-top: 10px;
  font-size: 0.8rem;
  opacity: 0.8;
}

/* === MENTORS (SPLIT) === */
.split-rev {
  display: flex;
  gap: 80px;
  align-items: center;
}
.sr-img {
  flex: 1;
  position: relative;
}
.sr-img img {
  border-radius: 30px;
  width: 100%;
}
.floating-quote {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background: var(--white);
  padding: 20px;
  border-radius: 16px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 250px;
  font-size: 0.95rem;
  font-style: italic;
}
.sr-txt {
  flex: 1;
}
.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 30px;
}
.cg-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
.cg-item i {
  width: 18px;
  height: 18px;
  color: var(--secondary);
}

/* === SIMPLE STATS === */
.simple-stats {
  display: flex;
  justify-content: space-around;
  text-align: center;
}
.ss-val {
  font-size: 3.5rem;
  font-weight: 800;
  font-family: var(--font-head);
  background: linear-gradient(to right, #fff, #94a3b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* === FAQ ACCORDION === */
.narrow-l {
  max-width: 900px;
}
.accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.acc-item {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid #f1f5f9;
  overflow: hidden;
}
.acc-head {
  width: 100%;
  padding: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-head);
  font-family: var(--font-head);
}
.icon-wrap {
  width: 32px;
  height: 32px;
  background: #f1f5f9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.acc-item.active .icon-wrap {
  background: var(--primary);
  color: var(--white);
  transform: rotate(45deg);
}
.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s ease;
  padding: 0 25px;
}
.acc-item.active .acc-body {
  padding-bottom: 25px;
  max-height: 200px;
}

/* === FORM === */
.section-form {
  background: #f0fdfa; /* Minty light */
}
.form-layout {
  display: flex;
  gap: 60px;
  align-items: center;
  flex-direction: column;
}
.fl-info {
  flex: 1;
}
.contacts-list {
  margin-top: 40px;
}
.cl-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  font-weight: 500;
}
.cl-item i {
  color: var(--primary);
}

.glass-form {
  flex: 1;
  background: var(--white);
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}
.input-wrap {
  margin-bottom: 20px;
}
.input-wrap label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 0.9rem;
}
.input-wrap input {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #f8fafc;
  font-size: 1rem;
  transition: 0.3s;
}
.input-wrap input:focus {
  background: var(--white);
  border-color: var(--primary);
  outline: none;
}
.chk-wrap {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  font-size: 0.85rem;
  color: #64748b;
}
.chk-wrap a {
  text-decoration: underline;
  color: var(--primary);
}

/* === FOOTER === */
.footer {
  background: var(--white);
  padding: 80px 0 20px;
  border-top: 1px solid #f1f5f9;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
.foot-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: 20px;
}
.foot-cta {
  font-weight: 700;
  color: var(--primary);
  margin-top: 20px;
  display: block;
}
.fc h5 {
  margin-bottom: 20px;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: #94a3b8;
}
.fc a {
  display: block;
  margin-bottom: 12px;
  font-weight: 500;
}
.fc a:hover {
  color: var(--primary);
}
.foot-btm {
  text-align: center;
  color: #94a3b8;
  font-size: 0.85rem;
}

/* === COOKIE === */
.cookie-popup {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 5000;
  background: var(--white);
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border: 1px solid #f1f5f9;
  display: none;
  width: 300px;
}
.btn-sm {
  padding: 8px 20px;
  background: var(--text-head);
  color: var(--white);
  border-radius: 8px;
  border: none;
  cursor: pointer;
  margin-top: 10px;
  font-size: 0.85rem;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero-layout,
  .split-rev,
  .form-layout,
  .foot-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .hero-layout {
    text-align: center;
    margin-bottom: 100px;
  }
  .hero-txt {
    order: -1;
  }
  .hero-btns {
    justify-content: center;
  }
  .hero-trust {
    justify-content: center;
  }
  .hero-visual {
    order: -1;
  }
  .desk-nav,
  .h-actions .link-clean,
  .h-actions .btn-sm-outline {
    display: none;
  }
  .burger {
    display: block;
  }
  .bento-grid,
  .programs-slider {
    grid-template-columns: 1fr;
  }
  .small-card {
    right: 10px;
  }
  .bento-box.large {
    grid-column: auto;
  }
  .cta-gradient-box {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .stats-mini {
    justify-content: center;
  }
  .split-rev {
    flex-direction: column;
    text-align: center;
  }
  .sr-txt {
    display: flex;
    flex-direction: column;
  }
  h1 {
    font-size: 2.5rem;
  }
  .simple-stats {
    flex-direction: column;
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 60px 0;
  }
}

.pages {
  padding: 120px 0;
}

.pages-wrap {
  max-width: 1000px;
  padding: 0 10px;
  margin: 0 auto 20px;
}

.pages h1 {
  font-size: 40px;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 40px;
  text-align: center;
}

.text-wrapper {
  background: #f8fafc;
  padding: 50px 40px;
  border-radius: 20px;
  line-height: 1.8;
}

.text-wrapper h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
  margin-top: 40px;
  margin-bottom: 15px;
  border-bottom: 2px solid rgba(99, 102, 241, 0.2);
  padding-bottom: 5px;
}

.text-wrapper h3 {
  color: #000000;
  margin-bottom: 20px;
}

.text-wrapper p {
  color: #64748b;
  margin-bottom: 20px;
}

.text-wrapper ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.text-wrapper ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  color: #1e293b;
}

.text-wrapper ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  font-size: 20px;
  line-height: 1;
  color: var(--primary);
  top: 0;
}

.text-wrapper strong {
  color: var(--color-error);
}

.text-wrapper a {
  color: #001eff;
  text-decoration: underline;
  font-weight: 600;
}

.text-wrapper ol {
  display: flex;
  flex-direction: column;
  padding: 20px;
  color: #000000;
}

.margin {
  margin: 120px 0 50px;
  font-size: 40px;
  color: var(--accent);
}

@media (max-width: 768px) {
  .pages {
    padding: 100px 0 60px;
  }
  .pages h1 {
    font-size: 22px;
    margin-bottom: 30px;
  }
  .text-wrapper {
    padding: 30px 20px;
  }
  .text-wrapper h2 {
    font-size: 24px;
    margin-top: 30px;
  }
  .margin {
    font-size: 28px;
  }
}

/* --- CONTACT PAGE SPECIFIC STYLES --- */
.contact-page-main {
  padding-top: 180px;
  padding-bottom: 120px;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cp-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400;
  letter-spacing: -2px;
  color: var(--accent);
  margin-bottom: 30px;
  line-height: 1;
}

.cp-divider {
  width: 60px;
  height: 1px;
  background-color: var(--accent);
  margin: 0 auto 40px auto;
}

.cp-status {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--text-muted);
  border: 1px solid var(--line);
  display: inline-block;
  padding: 10px 20px;
  margin-bottom: 60px;
  background: #fcfcfc;
}

.cp-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.cp-label {
  font-family: var(--font-sans);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--text-muted);
}

.cp-phone-link {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--accent);
  line-height: 1.2;
  border-bottom: 2px solid transparent;
  transition: 0.3s;
  margin-bottom: 40px;
}

.cp-phone-link:hover {
  border-bottom-color: var(--accent);
  opacity: 0.8;
}

.cp-address-box {
  border-top: 1px solid var(--line);
  padding-top: 40px;
  width: 100%;
  max-width: 400px;
}

.cp-addr {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 10px;
}

.cp-email {
  font-family: var(--font-sans);
  color: var(--text-muted);
  font-size: 1rem;
}

.cp-email a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cp-email a:hover {
  color: var(--accent);
}

@media (max-width: 600px) {
  .contact-page-main {
    padding-top: 140px;
    text-align: center;
  }

  .cp-phone-link {
    font-size: 2rem;
  }
}
