/* ═══════════════════════════════════════════════════
   EQTERS — styles.css
   Shared styles for all pages
═══════════════════════════════════════════════════ */

:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --blue: #2563eb;
  --blue-light: #eff6ff;
  --blue-mid: #93c5fd;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
  --serif: 'DM Serif Display', Georgia, serif;
  --sans: 'DM Sans', Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--black);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  padding: 0 40px;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center;
  cursor: pointer; text-decoration: none;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 22px;
  color: var(--black); letter-spacing: -0.3px;
}
.logo-name {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 18px; font-weight: 700;
  color: var(--black); letter-spacing: -0.5px;
}
.logo-img { height: 30px; width: auto; display: block; }
.nav-links { display: flex; gap: 36px; list-style: none; align-items: center; }
.nav-links li a {
  font-size: 14px; font-weight: 500; color: var(--gray-600);
  text-decoration: none; letter-spacing: 0.2px; transition: color 0.2s;
}
.nav-links li a:hover, .nav-links li a.active { color: var(--black); }
.nav-cta {
  background: var(--black); color: var(--white) !important;
  padding: 10px 22px; border-radius: 6px;
  font-size: 13px !important; font-weight: 600 !important;
  letter-spacing: 0.3px; transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--blue) !important; }

/* ─── HAMBURGER ─── */
.hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 40px; height: 40px;
  cursor: pointer; border: none; background: none;
  padding: 4px; border-radius: 8px; transition: background 0.2s;
}
.hamburger:hover { background: var(--gray-100); }
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--black); border-radius: 2px;
  transition: all 0.3s; transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── MOBILE DRAWER ─── */
.mobile-menu {
  display: none; position: fixed;
  top: 68px; left: 0; right: 0; bottom: 0;
  background: white; z-index: 99;
  flex-direction: column; padding: 24px 24px 40px;
  overflow-y: auto; border-top: 1px solid var(--gray-200);
}
.mobile-menu.open { display: flex; animation: slideDown 0.25s ease both; }
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mobile-menu a {
  display: block; font-size: 22px; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: var(--black); text-decoration: none;
  padding: 18px 0; border-bottom: 1px solid var(--gray-100); transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--blue); }
.mobile-cta {
  margin-top: 28px; display: block !important;
  background: var(--black) !important; color: white !important;
  text-align: center; padding: 16px !important; border-radius: 10px;
  font-family: var(--sans) !important; font-size: 15px !important;
  font-weight: 600; border: none; cursor: pointer;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--black); color: var(--white);
  padding: 15px 32px; border-radius: 7px;
  font-family: var(--sans); font-size: 15px; font-weight: 600;
  text-decoration: none; border: none; cursor: pointer;
  letter-spacing: 0.2px; transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--blue); transform: translateY(-1px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--black);
  padding: 13px 28px; border-radius: 7px;
  font-family: var(--sans); font-size: 15px; font-weight: 500;
  text-decoration: none; border: 1.5px solid var(--gray-200);
  cursor: pointer; transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--black); }

/* ─── LAYOUT ─── */
section { padding: 100px 40px; }
.container { max-width: 1120px; margin: 0 auto; }
.container-narrow { max-width: 760px; margin: 0 auto; }
.divider { height: 1px; background: var(--gray-200); margin: 0; }

/* ─── LABELS ─── */
.eyebrow {
  display: inline-block; font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--blue); margin-bottom: 18px;
}
.section-title {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: clamp(30px, 4vw, 46px);
  font-weight: 700; letter-spacing: -1px; line-height: 1.12; margin-bottom: 16px; color: var(--black);
}
.section-title.white { color: white; }
.section-sub { font-size: 16px; color: var(--gray-400); max-width: 540px; font-weight: 300; line-height: 1.7; }
.section-sub.white { color: #888; }

/* ─── PAGE HEADERS ─── */
.page-header {
  padding: 140px 40px 80px;
  background: linear-gradient(160deg, #fff 0%, var(--blue-light) 100%);
  text-align: center;
}
.page-header h1 {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif !important; font-size: clamp(36px, 5vw, 60px);
  letter-spacing: -1.5px; line-height: 1.1; margin-bottom: 16px;
}
.page-header p {
  font-size: 18px; color: var(--gray-600);
  max-width: 560px; margin: 0 auto; font-weight: 300; line-height: 1.7;
}

/* ─── FOOTER ─── */
footer {
  background: #050505; color: #555;
  padding: 48px 40px; text-align: center;
  font-size: 13px; border-top: 1px solid #1a1a1a;
}
footer .footer-logo { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 20px; color: white; margin-bottom: 16px; }
footer .footer-logo span { color: var(--blue); }
footer .footer-links { display: flex; gap: 28px; justify-content: center; margin-bottom: 24px; flex-wrap: wrap; }
footer .footer-links a { color: #555; text-decoration: none; font-size: 13px; transition: color 0.2s; }
footer .footer-links a:hover { color: white; }

.page-header .hero-small-pill {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}

/* ─── HERO CENTERED VARIANT ─── */
.hero-centered .hero-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-centered h1,
.hero.hero-centered .hero-inner h1 {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(36px, 5vw, 60px);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  font-weight: 700;
  letter-spacing: -2px;
}
.hero-centered .hero-sub {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.hero-centered .hero-actions {
  justify-content: center;
}
.hero-centered .hero-small-pill {
  margin-left: auto;
  margin-right: auto;
}
.hero-centered::before {
  left: 50%;
  transform: translateX(-50%);
  top: -60px;
  right: auto;
}

/* ─── HERO SMALL PILL ─── */
.hero-small-pill {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  padding: 8px 20px;
  margin-bottom: 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  max-width: 100%;
}
.hero-small-pill .hero-small {
  margin-bottom: 0;
  white-space: normal;
  word-break: break-word;
  font-size: 11px;
}

.hero-small-pill .hero-small::before {
  display: none;
}

/* ─── HERO BADGE (Pre-Sale pill) ─── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  padding: 10px 22px;
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-800);
  margin-bottom: 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  width: fit-content;
}
.hero-badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.18);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(37,99,235,0.18); }
  50%       { box-shadow: 0 0 0 6px rgba(37,99,235,0.08); }
}


.hero {
  padding: 180px 40px 120px;
  background: linear-gradient(170deg, #fff 0%, var(--blue-light) 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(37,99,235,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-inner { max-width: 1120px; margin: 0 auto; position: relative; }
.hero-small {
  font-size: 13px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--blue); margin-bottom: 24px;
  display: flex; align-items: center; gap: 10px;
}
.hero-small::before {
  content: ''; display: inline-block; width: 28px; height: 2px; background: var(--blue);
}
.hero h1 {
  font-size: clamp(42px, 6vw, 74px);
  line-height: 1.08; letter-spacing: -1.5px;
  color: var(--black); max-width: 820px; margin-bottom: 28px;
}
.hero-highlight { color: var(--blue); font-style: italic; }
.hero-sub {
  font-size: 18px; color: var(--gray-600); max-width: 520px;
  line-height: 1.7; margin-bottom: 44px; font-weight: 300;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero-trust { margin-top: 64px; display: flex; gap: 48px; flex-wrap: wrap; }
.hero-stat .num { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 36px; color: var(--black); letter-spacing: -1px; }
.hero-stat .label { font-size: 13px; color: var(--gray-400); font-weight: 400; margin-top: 2px; }

/* ─── LETTER FROM CEO ─── */
.letter-section { background: var(--gray-50); color: var(--black); }
.letter-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: 16px; padding: 64px;
  max-width: 820px; margin: 0 auto; position: relative;
}
.letter-card::before {
  content: '"'; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 160px;
  color: rgba(37,99,235,0.08); position: absolute; top: 20px; left: 40px; line-height: 1;
}
.letter-card p {
  font-size: 17px; line-height: 1.9; color: var(--gray-600);
  margin-bottom: 24px; font-weight: 300; position: relative;
}
.letter-sig { margin-top: 40px; display: flex; align-items: center; gap: 18px; }
.sig-avatar {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, var(--blue) 0%, #1d4ed8 100%);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 20px; color: white;
}
.sig-name { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 18px; font-weight: 700; color: var(--black); }
.sig-title { font-size: 13px; color: var(--gray-400); margin-top: 2px; }

/* ─── BLOG HIGHLIGHT ─── */
.blog-highlight { background: var(--gray-50); }
.blog-card {
  background: white; border: 1px solid var(--gray-200);
  border-radius: 14px; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr;
  max-width: 900px; margin: 0 auto; transition: box-shadow 0.2s;
}
.blog-card:hover { box-shadow: 0 20px 60px rgba(0,0,0,0.08); }
.blog-card-visual {
  background: linear-gradient(135deg, var(--blue) 0%, #1e40af 100%);
  min-height: 320px; display: flex; flex-direction: column;
  justify-content: flex-end; padding: 40px; color: white;
}
.blog-card-visual .tag {
  background: rgba(255,255,255,0.15); color: white;
  padding: 4px 12px; border-radius: 100px;
  font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  display: inline-block; margin-bottom: 16px; width: fit-content;
}
.blog-card-visual h3 { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 32px; font-weight: 700; line-height: 1.1; letter-spacing: -0.5px; }
.blog-card-body { padding: 48px; display: flex; flex-direction: column; justify-content: center; }
.blog-card-body p { color: var(--gray-600); line-height: 1.8; font-size: 15px; margin-bottom: 28px; font-weight: 300; }

/* ─── WHY TRADING ─── */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.why-card {
  padding: 36px 32px; border: 1px solid var(--gray-200);
  border-radius: 12px; transition: border-color 0.2s, box-shadow 0.2s; background: white;
  display: flex; flex-direction: column;
}
.why-card:hover { border-color: var(--blue-mid); box-shadow: 0 8px 32px rgba(37,99,235,0.08); }
.why-icon {
  width: 44px; height: 44px; background: var(--blue-light); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-size: 20px;
}
.why-card h4 { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 19px; font-weight: 700; margin-bottom: 10px; color: var(--black); }
.why-card p { font-size: 14px; color: var(--gray-600); line-height: 1.7; font-weight: 300; flex: 1; }
.why-cta-line {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--gray-100);
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.1px;
}

/* ─── VISION ─── */
.vision-section { background: var(--blue-light); }
.vision-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.vision-text h2 {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: clamp(32px, 4vw, 48px);
  font-weight: 700; letter-spacing: -1px; line-height: 1.15; margin-bottom: 24px;
}
.vision-text p { color: var(--gray-600); font-size: 16px; line-height: 1.8; margin-bottom: 18px; font-weight: 300; }
.vision-sub-block {
  margin-top: 32px; padding: 24px 28px;
  background: white; border-radius: 12px;
  border: 1px solid var(--gray-200);
}
.vision-sub-block h4 {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 16px; font-weight: 700; color: var(--black);
  margin-bottom: 10px;
}
.vision-sub-block p { font-size: 14px; color: var(--gray-600); line-height: 1.8; margin-bottom: 10px; font-weight: 300; }
.vision-sub-block p:last-of-type { margin-bottom: 0; }
.vision-cta-line {
  margin-top: 14px; padding-top: 12px;
  border-top: 1px solid var(--gray-100);
  font-size: 12px; font-weight: 700; color: var(--blue);
}
.vision-card { background: white; border-radius: 14px; padding: 40px; border: 1px solid var(--gray-200); }
.vision-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue); color: white;
  padding: 6px 16px; border-radius: 100px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.5px; margin-bottom: 20px;
}
.vision-card h3 { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 24px; font-weight: 700; margin-bottom: 16px; color: var(--black); }
.vision-card p { color: var(--gray-600); font-size: 15px; line-height: 1.8; font-weight: 300; }
.vision-list { list-style: none; margin-top: 24px; }
.vision-list li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 0; font-size: 14px; color: var(--gray-600);
  border-bottom: 1px solid var(--gray-100);
}
.vision-list li:last-child { border-bottom: none; }
.vision-list li::before { content: '→'; color: var(--blue); font-weight: 600; flex-shrink: 0; margin-top: 1px; }

/* ─── WHY US ─── */
.why-us-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 56px; }
.us-card {
  padding: 36px; border-radius: 12px; background: var(--gray-50);
  border: 1px solid var(--gray-200); transition: background 0.2s; display: flex; gap: 24px;
}
.us-card:hover { background: white; box-shadow: 0 8px 32px rgba(0,0,0,0.06); }
.us-num { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 32px; color: var(--blue); line-height: 1; flex-shrink: 0; margin-top: 2px; }
.us-card h4 { font-size: 17px; font-weight: 600; margin-bottom: 8px; color: var(--black); }
.us-card p { font-size: 14px; color: var(--gray-600); line-height: 1.7; font-weight: 300; }

/* ─── COURSE FEATURES ─── */
.features-section { background: var(--gray-50); color: var(--black); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.feat-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: 12px; padding: 36px 30px; transition: border-color 0.2s, box-shadow 0.2s;
}
.feat-card:hover { border-color: var(--blue-mid); box-shadow: 0 8px 32px rgba(37,99,235,0.08); }
.feat-num { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 48px; font-weight: 700; color: var(--gray-200); line-height: 1; margin-bottom: 16px; }
.feat-card h4 { font-size: 17px; font-weight: 600; color: var(--black); margin-bottom: 10px; }
.feat-card p { font-size: 14px; color: var(--gray-600); line-height: 1.7; font-weight: 300; }

/* ─── HOW WE TEACH ─── */
.teach-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 64px; position: relative;
}
.teach-steps::before {
  content: ''; position: absolute; top: 28px; left: calc(12.5%);
  width: 75%; height: 1px; background: var(--gray-200); z-index: 0;
}
.step {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 0 20px; position: relative; z-index: 1;
}
.step-dot {
  width: 56px; height: 56px; background: white;
  border: 2px solid var(--gray-200); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 20px; font-weight: 700; color: var(--blue);
  margin-bottom: 20px; transition: border-color 0.2s, background 0.2s;
}
.step:hover .step-dot { border-color: var(--blue); background: var(--blue-light); }
.step h4 { font-size: 15px; font-weight: 600; margin-bottom: 8px; color: var(--black); }
.step p { font-size: 13px; color: var(--gray-400); line-height: 1.6; font-weight: 300; }

/* ─── TESTIMONIALS ─── */
.testimonials-section { background: var(--gray-50); display:none;}
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.testimonial-card {
  background: white; border: 1px solid var(--gray-200);
  border-radius: 12px; padding: 32px; transition: box-shadow 0.2s;
}
.testimonial-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.06); }
.stars { color: #f59e0b; font-size: 14px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card p {
  font-size: 15px; color: var(--gray-600); line-height: 1.8;
  margin-bottom: 24px; font-weight: 300; font-style: italic;
}
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 16px; color: white;
}
.t-name { font-size: 14px; font-weight: 600; color: var(--black); }
.t-role { font-size: 12px; color: var(--gray-400); }

/* ─── CTA BANNER ─── */
.contact-mini {
  background: var(--black); color: white; padding: 100px 40px; text-align: center;
}
.contact-mini h2 {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: clamp(32px, 5vw, 54px);
  font-weight: 700; letter-spacing: -1px; margin-bottom: 20px;
  max-width: 600px; margin-left: auto; margin-right: auto;
}
.contact-mini p { color: #888; margin-bottom: 36px; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ─── ABOUT PAGE ─── */
/* ═══════════════════════════════════════════════════
   EQTERS — about.css
   Page-specific styles for about.html
═══════════════════════════════════════════════════ */

/* ─── SECTION HEADER ─── */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

/* ─── MVP SECTION BACKGROUND ─── */
.mvp-section {
  background: var(--gray-50);
}

/* ─── OUR STORY — LIST ─── */
.story-list {
  list-style: none;
  margin: 16px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.story-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--gray-600);
  font-weight: 400;
}

.story-list li::before {
  content: '→';
  color: var(--blue);
  font-weight: 600;
  flex-shrink: 0;
}

/* ─── OUR STORY — PHILOSOPHY BOX ─── */
.story-philosophy {
  margin-top: 28px;
  padding: 24px 28px;
  background: var(--gray-50);
  border-radius: 12px;
  border: 1px solid var(--gray-200);
}

.philosophy-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 12px;
}

.philosophy-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.philosophy-items span {
  font-size: 14px;
  color: var(--gray-600);
  font-weight: 400;
}

.philosophy-footer {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 0;
  padding-top: 12px;
  border-top: 1px solid var(--gray-200);
}

/* ─── ABOUT VISUAL CARD ─── */
.about-visual-title {
  font-size: 18px;
  margin-bottom: 4px;
}
.story-list {
      list-style: none;
      margin: 16px 0 24px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .story-list li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 15px;
      color: var(--gray-600);
      font-weight: 400;
    }
    .story-list li::before {
      content: '→';
      color: var(--blue);
      font-weight: 600;
      flex-shrink: 0;
    }
    .story-philosophy {
      margin-top: 28px;
      padding: 24px 28px;
      background: var(--gray-50);
      border-radius: 12px;
      border: 1px solid var(--gray-200);
    }
    .philosophy-label {
      font-size: 14px;
      font-weight: 600;
      color: var(--black);
      margin-bottom: 12px !important;
    }
    .philosophy-items {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 16px;
    }
    .philosophy-items span {
      font-size: 14px;
      color: var(--gray-600);
      font-weight: 400;
    }
    .philosophy-footer {
      font-size: 14px;
      color: var(--gray-600);
      line-height: 1.7;
      font-style: italic;
      margin-bottom: 0 !important;
      padding-top: 12px;
      border-top: 1px solid var(--gray-200);
    }
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-story-text h2 { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 38px; font-weight: 700; letter-spacing: -1px; margin-bottom: 20px; }
.about-story-text p { color: var(--gray-600); font-size: 16px; line-height: 1.8; margin-bottom: 16px; font-weight: 300; }
.about-visual {
  background: linear-gradient(135deg, var(--blue) 0%, #1e3a8a 100%);
  border-radius: 16px; min-height: 380px;
  display: flex; align-items: center; justify-content: center;
  padding: 48px; color: white; text-align: center;
}
.about-visual h3 { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 48px; font-weight: 700; margin-bottom: 8px; }
.about-visual p { font-size: 14px; color: rgba(255,255,255,0.7); }
.mvp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.mvp-card { padding: 40px 32px; border: 1px solid var(--gray-200); border-radius: 12px; }
.mvp-label { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--blue); margin-bottom: 16px; }
.mvp-card h3 { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 24px; font-weight: 700; margin-bottom: 12px; }
.mvp-card p { color: var(--gray-600); font-size: 14px; line-height: 1.8; font-weight: 300; }

/* ─── COURSE PAGE ─── */
.course-overview { display: grid; grid-template-columns: 1.3fr 1fr; gap: 80px; align-items: start; }
.course-overview-text h2 { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 40px; font-weight: 700; letter-spacing: -1px; margin-bottom: 20px; }
.course-overview-text p { color: var(--gray-600); font-size: 16px; line-height: 1.8; margin-bottom: 16px; font-weight: 300; }
.course-card {
  background: var(--black); color: white;
  border-radius: 16px; padding: 40px; position: sticky; top: 88px;
}
.course-card h3 { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 24px; font-weight: 700; margin-bottom: 24px; }
.course-meta { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.meta-item {
  display: flex; align-items: center; gap: 12px;
  padding: 14px; background: #141414; border-radius: 8px; font-size: 14px; color: #ccc;
}
.meta-icon { font-size: 18px; }
.curriculum { margin-top: 56px; }
.curriculum h2 { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 36px; font-weight: 700; letter-spacing: -1px; margin-bottom: 36px; }
.module-list { display: flex; flex-direction: column; gap: 0; }
.module-item {
  display: flex; align-items: flex-start; gap: 24px;
  padding: 28px 0; border-bottom: 1px solid var(--gray-200);
}
.module-num { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 24px; color: var(--blue); width: 40px; flex-shrink: 0; }
.module-info h4 { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.module-info p { font-size: 14px; color: var(--gray-400); font-weight: 300; }
.for-whom { background: var(--gray-50); }
.for-whom-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.for-card {
  background: white; border: 1px solid var(--gray-200); border-radius: 12px; padding: 28px 24px;
  display: flex; align-items: flex-start; gap: 16px;
}
.for-check { color: var(--blue); font-size: 18px; flex-shrink: 0; }
.for-card p { font-size: 14px; color: var(--gray-600); line-height: 1.6; font-weight: 300; }

/* ─── BLOG PAGE ─── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.blog-article {
  border: 1px solid var(--gray-200); border-radius: 12px; overflow: hidden;
  cursor: pointer; transition: box-shadow 0.2s;
}
.blog-article:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.blog-article.featured { grid-column: span 2; }
.article-img { height: 200px; display: flex; align-items: flex-end; padding: 24px; color: white; }
.article-img.feat { height: 260px; }
.article-cat {
  font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  background: rgba(255,255,255,0.15); padding: 4px 10px; border-radius: 4px;
  color: white; display: inline-block; margin-bottom: 8px;
}
.article-img h3 { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 24px; font-weight: 700; line-height: 1.2; }
.article-body { padding: 24px; background: white; }
.article-body p { font-size: 14px; color: var(--gray-600); line-height: 1.7; margin-bottom: 16px; font-weight: 300; }
.article-body .meta { font-size: 12px; color: var(--gray-400); }
.categories { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.cat-pill {
  padding: 8px 20px; border-radius: 100px; font-size: 13px; font-weight: 500;
  border: 1.5px solid var(--gray-200); cursor: pointer; transition: all 0.2s;
  background: white; color: var(--gray-600);
}
.cat-pill:hover, .cat-pill.active { background: var(--black); color: white; border-color: var(--black); }

/* ─── CONTACT PAGE ─── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; }
.contact-info h2 { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 38px; font-weight: 700; letter-spacing: -1px; margin-bottom: 20px; }
.contact-info p { color: var(--gray-600); font-size: 15px; line-height: 1.8; margin-bottom: 36px; font-weight: 300; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-detail {
  display: flex; align-items: center; gap: 16px;
  padding: 18px; background: var(--gray-50); border-radius: 10px;
}
.contact-detail-icon {
  width: 40px; height: 40px; background: var(--blue-light); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0;
}
.contact-detail-text .label {
  font-size: 11px; color: var(--gray-400); font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 2px;
}
.contact-detail-text .val { font-size: 15px; color: var(--black); font-weight: 500; }
.contact-form {
  background: var(--gray-50); border-radius: 16px; padding: 48px; border: 1px solid var(--gray-200);
}
.contact-form h3 { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 24px; font-weight: 700; margin-bottom: 32px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 13px; font-weight: 600; color: var(--gray-800);
  margin-bottom: 8px; letter-spacing: 0.3px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--gray-200);
  border-radius: 8px; font-family: var(--sans); font-size: 15px;
  color: var(--black); background: white; transition: border-color 0.2s; outline: none; -webkit-appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blue); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ─── CONTACT PAGE — ANIMATIONS & THANK-YOU STATE ─── */
@keyframes fadeOutUp {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-16px); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.thankyou-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 56px 32px;
}
.thankyou-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 28px;
  animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.1s both;
}
.thankyou-icon svg {
  width: 100%;
  height: 100%;
}
@keyframes popIn {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.thankyou-inner h3 {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
  animation: fadeInUp 0.4s ease 0.2s both;
}
.thankyou-inner p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.8;
  max-width: 360px;
  font-weight: 300;
  margin-bottom: 0;
  animation: fadeInUp 0.4s ease 0.3s both;
}
.thankyou-detail {
  margin-top: 24px;
  padding: 14px 20px;
  background: var(--blue-light);
  border: 1px solid #bfdbfe;
  border-radius: 8px;
  font-size: 13px;
  color: var(--gray-600);
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: fadeInUp 0.4s ease 0.4s both;
}

/* ═══════════════════════════════════════
   RESPONSIVE — TABLET (768px – 1024px)
═══════════════════════════════════════ */
@media (min-width: 1025px) {
  .nav-links { display: flex !important; }
  .hamburger { display: none !important; }
  .mobile-menu { display: none !important; }
}

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { top: 68px; }
  section { padding: 80px 32px; }
  .hero { padding: 160px 32px 100px; }
  .page-header { padding: 130px 32px 72px; }
  .contact-mini { padding: 80px 32px; }
  footer { padding: 48px 32px; }
  .why-grid, .features-grid, .testimonials-grid,
  .mvp-grid, .for-whom-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-article.featured { grid-column: span 2; }
  .vision-inner, .about-story, .course-overview, .contact-layout { gap: 48px; }
  .teach-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .teach-steps::before { display: none; }
  .letter-card { padding: 52px; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 767px)
═══════════════════════════════════════ */
@media (max-width: 767px) {
  nav { padding: 0 20px; height: 60px; }
  .mobile-menu { top: 60px; }
  section { padding: 60px 20px; }
  .hero { padding: 100px 20px 72px; }
  .page-header { padding: 100px 20px 60px; }
  .contact-mini { padding: 64px 20px; }
  footer { padding: 40px 20px; }
  .hero h1 { font-size: clamp(28px, 7.5vw, 38px); letter-spacing: -1px; }
  .hero-centered h1,
  .hero.hero-centered .hero-inner h1 { font-size: clamp(28px, 7.5vw, 38px); letter-spacing: -1px; }
  .hero-sub { font-size: 16px; }
  .section-title { font-size: clamp(26px, 7vw, 36px); }
  .page-header h1 { font-size: clamp(28px, 8vw, 42px); }
  .page-header p { font-size: 15px; }
  .hero-trust { gap: 28px; }
  .hero-stat .num { font-size: 28px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn-primary, .hero-actions .btn-outline { width: 100%; justify-content: center; }
  .hero-small-pill { display: inline-flex; max-width: 100%; }
  .hero-small-pill .hero-small { font-size: 10px; letter-spacing: 1.2px; }
  .why-grid, .features-grid, .testimonials-grid, .mvp-grid,
  .for-whom-grid, .why-us-grid, .teach-steps { grid-template-columns: 1fr; }
  .teach-steps { gap: 32px; }
  .teach-steps::before { display: none; }
  .vision-inner, .about-story, .course-overview, .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-article.featured { grid-column: span 1; }
  .blog-card { grid-template-columns: 1fr; }
  .blog-card-visual { min-height: 220px; }
  .us-card { flex-direction: column; gap: 12px; }
  .letter-card { padding: 32px 24px; }
  .letter-card::before { font-size: 100px; top: 10px; left: 20px; }
  .letter-card p { font-size: 15px; }
  .course-card { position: static; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
  .vision-card { padding: 28px 20px; }
  .about-visual { min-height: 220px; }
  footer .footer-links { gap: 16px; }
  .contact-mini h2 { font-size: clamp(26px, 8vw, 40px); }
  .step { padding: 0; }
}

@media (max-width: 380px) {
  .hero h1 { font-size: 30px; }
  section { padding: 48px 16px; }
  .hero { padding: 88px 16px 60px; }
  .letter-card { padding: 24px 16px; }
}

/* ─── WHATSAPP FLOATING BUTTON ─── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: wa-pop 0.4s cubic-bezier(0.175,0.885,0.32,1.275) both;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}
.whatsapp-float svg { width: 30px; height: 30px; fill: white; }
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.4);
  animation: wa-ring 2s ease-out infinite;
}
.whatsapp-float .wa-tooltip {
  position: absolute;
  right: 68px;
  background: #1a1a1a;
  color: white;
  font-size: 13px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.whatsapp-float .wa-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #1a1a1a;
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }
@keyframes wa-ring {
  0%   { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.5); opacity: 0; }
}
@keyframes wa-pop {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

/* ─── PHONE FLOATING BUTTON ─── */
.phone-float {
  position: fixed;
  bottom: 100px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,99,235,0.45);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: wa-pop 0.5s cubic-bezier(0.175,0.885,0.32,1.275) 0.15s both;
}
.phone-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,99,235,0.55);
}
.phone-float svg { width: 26px; height: 26px; fill: white; }
.phone-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,99,235,0.4);
  animation: wa-ring 2s ease-out infinite 0.5s;
}
.phone-float .phone-tooltip {
  position: absolute;
  right: 68px;
  background: #1a1a1a;
  color: white;
  font-size: 13px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.phone-float .phone-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #1a1a1a;
}
.phone-float:hover .phone-tooltip { opacity: 1; }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
