/* Lakshmi Education — navy + gold theme */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Source+Sans+3:wght@400;500;600;700&display=swap');

:root {
  --le-navy: #0b1f4a;
  --le-navy-deep: #071533;
  --le-navy-soft: #132a5c;
  --le-gold: #c9a227;
  --le-gold-bright: #e0b83d;
  --le-gold-dark: #a8871c;
  --le-bg: #f7f9fc;
  --le-white: #ffffff;
  --le-text: #1a2438;
  --le-muted: #5b657a;
  --le-line: #e4e9f2;
  --le-radius: 14px;
  --le-shadow: 0 18px 50px rgba(11, 31, 74, 0.12);
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;
}

/* Override Corzo red accent */
.corzo-body a:hover,
.sf-menu > li > a:hover,
.sf-menu > li.current-menu-item > a,
.sf-menu > li.current-menu-ancestor > a,
.corzo-top-bar a:hover,
.corzo-navigation .corzo-navigation-slide-bar,
.gdlr-core-button,
.rev-btn {
  --accent: var(--le-gold);
}

.sf-menu > li > a:hover,
.sf-menu > li.current-menu-item > a,
.sf-menu > li.current-menu-ancestor > a,
.corzo-top-bar a:hover {
  color: var(--le-gold) !important;
}

.corzo-navigation .corzo-navigation-slide-bar,
.corzo-navigation .corzo-navigation-slide-bar-style-dot:before,
.corzo-navigation .corzo-navigation-slide-bar:before {
  border-color: var(--le-gold) !important;
  border-bottom-color: var(--le-gold) !important;
}

.corzo-logo img,
.corzo-logo-inner img {
  max-height: 58px;
  width: auto;
  height: auto;
}

/* ===== Standalone Lakshmi page shell ===== */
body.le-body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--le-text);
  background: var(--le-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.le-body h1,
.le-body h2,
.le-body h3,
.le-body h4 {
  font-family: var(--font-display);
  color: var(--le-navy);
  line-height: 1.2;
  margin: 0 0 0.6em;
  font-weight: 700;
}

.le-container {
  width: calc(100% - 2.5rem);
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

.le-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.45rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}

.le-btn:hover {
  transform: translateY(-2px);
}

.le-btn-primary {
  background: var(--le-gold);
  color: var(--le-navy-deep);
  box-shadow: 0 10px 28px rgba(201, 162, 39, 0.35);
  position: relative;
  overflow: hidden;
}

.le-btn-shine::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-20deg);
  animation: leShine 3.2s ease-in-out infinite;
}

@keyframes leShine {
  0%, 55% { left: -120%; }
  75%, 100% { left: 160%; }
}

.le-btn-primary:hover {
  background: var(--le-gold-bright);
  color: var(--le-navy-deep);
}

.le-btn-ghost {
  background: transparent;
  color: var(--le-white);
  border-color: rgba(255, 255, 255, 0.45);
}

.le-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--le-white);
}

.le-btn-outline {
  background: transparent;
  color: var(--le-navy);
  border-color: var(--le-navy);
}

.le-btn-outline:hover {
  background: var(--le-navy);
  color: var(--le-white);
}

.le-btn-navy {
  background: var(--le-navy);
  color: var(--le-white);
}

.le-btn-navy:hover {
  background: var(--le-navy-soft);
  color: var(--le-white);
}

.le-btn-sm {
  padding: 0.45rem 0.9rem;
  font-size: 0.8rem;
  border-width: 1px;
}

/* Header */
.le-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--le-line);
  animation: leFadeDown 0.7s ease both;
}

.le-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 1rem;
  position: relative;
}

.le-logo img {
  display: block;
  height: 68px;
  width: auto;
  max-width: min(220px, 48vw);
  object-fit: contain;
}

.le-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.le-nav a {
  text-decoration: none;
  color: var(--le-navy);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
}

.le-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--le-gold);
  transition: width 0.25s ease;
}

.le-nav a:hover::after,
.le-nav a.is-active::after {
  width: 100%;
}

.le-nav a:hover {
  color: var(--le-gold-dark);
}

.le-nav-cta {
  padding: 0.55rem 1.1rem !important;
  background: var(--le-navy);
  color: var(--le-white) !important;
  border-radius: 999px;
}

.le-nav-cta::after {
  display: none !important;
}

.le-nav-cta:hover {
  background: var(--le-gold);
  color: var(--le-navy-deep) !important;
}

.le-menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.le-menu-toggle span {
  display: block;
  height: 2px;
  margin: 7px 8px;
  background: var(--le-navy);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.le-menu-toggle.is-open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.le-menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.le-menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Hero */
.le-hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: flex;
  align-items: center;
  color: var(--le-white);
  overflow: hidden;
  background-color: var(--le-navy-deep);
  background-image:
    linear-gradient(115deg, rgba(7, 21, 51, 0.88) 0%, rgba(11, 31, 74, 0.72) 45%, rgba(11, 31, 74, 0.55) 100%),
    url('../upload/forex-trading-workplace.jpg');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.le-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 85% 20%, rgba(201, 162, 39, 0.18), transparent 45%);
  pointer-events: none;
  z-index: 1;
}

.le-hero-web {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.85;
}

.le-hero-inner {
  position: relative;
  z-index: 2;
  padding: 4.5rem 0 4rem;
  max-width: 720px;
  animation: leRise 0.9s ease 0.1s both;
}

.le-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--le-gold-bright);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 1.1rem;
}

.le-eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--le-gold);
}

.le-hero h1 {
  color: var(--le-white);
  font-size: clamp(2.2rem, 5vw, 3.55rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.le-hero p {
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 34rem;
  margin: 0 0 1.75rem;
}

.le-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.le-accent {
  color: var(--le-gold-bright);
  position: relative;
}

.le-hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.6rem;
}

.le-hero-chips span {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  backdrop-filter: blur(6px);
}

.le-kicker {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--le-gold-dark);
  margin-bottom: 0.7rem;
}

.le-kicker-light {
  color: var(--le-gold-bright);
}

/* Stats */
.le-stats {
  margin-top: -2.5rem;
  position: relative;
  z-index: 2;
}

.le-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  background: var(--le-white);
  border-radius: var(--le-radius);
  box-shadow: var(--le-shadow);
  padding: 1.5rem;
  border: 1px solid var(--le-line);
  position: relative;
  overflow: hidden;
}

.le-stats-grid::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--le-navy), var(--le-gold), var(--le-navy));
}

.le-stat {
  text-align: center;
  padding: 0.5rem;
}

.le-stat-mark {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--le-gold-dark);
  margin-bottom: 0.35rem;
}

.le-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--le-navy);
  font-weight: 800;
}

.le-stat span {
  color: var(--le-muted);
  font-size: 0.95rem;
}

/* Sections */
.le-section {
  padding: 5rem 0;
}

.le-section-head {
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.le-section-head h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.4rem);
}

.le-section-head p {
  color: var(--le-muted);
  margin: 0;
  font-size: 1.05rem;
}

.le-section-alt {
  background: var(--le-white);
}

.le-section-navy {
  background: linear-gradient(145deg, var(--le-navy-deep), var(--le-navy-soft));
  color: rgba(255, 255, 255, 0.88);
}

.le-section-navy h2,
.le-section-navy h3 {
  color: var(--le-white);
}

.le-section-navy .le-section-head p {
  color: rgba(255, 255, 255, 0.72);
}

/* Courses */
.le-courses {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.le-course {
  display: grid;
  grid-template-columns: 48px 110px 1fr auto;
  gap: 1.1rem;
  align-items: center;
  background: var(--le-white);
  border: 1px solid var(--le-line);
  border-radius: var(--le-radius);
  padding: 1.35rem 1.5rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  position: relative;
  overflow: hidden;
}

.le-course::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--le-gold), var(--le-navy));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.le-course:hover::before {
  opacity: 1;
}

.le-course-step {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--le-navy);
  background: linear-gradient(145deg, #fff7df, #f0e2a8);
  border: 1px solid rgba(201, 162, 39, 0.45);
  box-shadow: 0 8px 18px rgba(201, 162, 39, 0.18);
}

.le-course:hover {
  border-color: rgba(201, 162, 39, 0.55);
  box-shadow: var(--le-shadow);
  transform: translateY(-3px);
}

.le-course-level {
  display: inline-flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: flex-start;
}

.le-badge {
  display: inline-block;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.le-badge-beginner {
  background: #e8f1ff;
  color: var(--le-navy);
}

.le-badge-intermediate {
  background: #fff4d6;
  color: #7a5f0d;
}

.le-badge-advanced {
  background: #efe8ff;
  color: #4a2f8a;
}

.le-course h3 {
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}

.le-course p {
  margin: 0;
  color: var(--le-muted);
  font-size: 0.98rem;
}

.le-course-meta {
  margin-top: 0.55rem;
  font-size: 0.88rem;
  color: var(--le-navy-soft);
  font-weight: 600;
}

.le-course-price {
  text-align: right;
  min-width: 140px;
}

.le-course-price .price {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--le-navy);
  margin-bottom: 0.55rem;
}

.le-course-price .price.free {
  color: #1f7a3f;
}

.le-course-note {
  margin-top: 1.25rem;
  color: var(--le-muted);
  font-size: 0.95rem;
}

/* Why */
.le-why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.le-why-card {
  padding: 1.5rem;
  border-radius: var(--le-radius);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.le-why-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.45rem;
}

.le-why-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.le-why-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(201, 162, 39, 0.18);
  color: var(--le-gold-bright);
  font-family: var(--font-display);
  font-weight: 800;
  margin-bottom: 0.9rem;
}

/* Mentor */
.le-mentor {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.le-mentor-panel {
  background: linear-gradient(160deg, var(--le-navy), var(--le-navy-soft));
  border-radius: calc(var(--le-radius) + 4px);
  min-height: 280px;
  padding: 2rem;
  color: var(--le-white);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: var(--le-shadow);
  position: relative;
  overflow: hidden;
}

.le-mentor-panel::after {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  right: -40px;
  top: -40px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.35), transparent 70%);
}

.le-mentor-panel h3 {
  position: relative;
  z-index: 1;
  color: var(--le-white);
  font-size: 1.6rem;
  margin-bottom: 0.35rem;
}

.le-mentor-panel p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
}

.le-mentor-list {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
}

.le-mentor-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.7rem;
  color: var(--le-muted);
}

.le-mentor-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--le-gold);
}

/* FAQ */
.le-faq {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.le-faq details {
  background: var(--le-white);
  border: 1px solid var(--le-line);
  border-radius: 12px;
  padding: 1rem 1.2rem;
}

.le-faq summary {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--le-navy);
  cursor: pointer;
  list-style: none;
}

.le-faq summary::-webkit-details-marker {
  display: none;
}

.le-faq summary::after {
  content: '+';
  float: right;
  color: var(--le-gold-dark);
  font-weight: 700;
}

.le-faq details[open] summary::after {
  content: '–';
}

.le-faq details p {
  margin: 0.85rem 0 0.2rem;
  color: var(--le-muted);
}

/* Enquire band */
.le-enquire {
  padding: 4rem 0 5rem;
}

.le-enquire-box {
  background: linear-gradient(120deg, var(--le-navy-deep), #16356f 55%, #1f4a8c);
  border-radius: calc(var(--le-radius) + 6px);
  padding: clamp(1.75rem, 4vw, 3rem);
  color: var(--le-white);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: var(--le-shadow);
  position: relative;
  overflow: hidden;
}

.le-enquire-box::before {
  content: '';
  position: absolute;
  inset: auto -20% -40% auto;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.35), transparent 70%);
}

.le-enquire-box h2 {
  color: var(--le-white);
  margin-bottom: 0.4rem;
}

.le-enquire-box p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  max-width: 34rem;
}

.le-enquire-actions {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* Footer */
.le-footer {
  background: var(--le-navy-deep);
  color: rgba(255, 255, 255, 0.75);
  padding: 3.5rem 0 1.5rem;
}

.le-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.le-footer img {
  height: 64px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  margin-bottom: 1rem;
  background: #fff;
  padding: 0.45rem 0.65rem;
  border-radius: 10px;
}

.le-footer h4 {
  color: var(--le-white);
  font-size: 1rem;
  margin-bottom: 0.9rem;
}

.le-footer a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  display: block;
  margin-bottom: 0.45rem;
}

.le-footer a:hover {
  color: var(--le-gold-bright);
}

.le-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.25rem;
  font-size: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
}

/* Motion */
@keyframes leFadeDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes leRise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.le-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.le-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Blog */
.le-blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.le-blog-card {
  background: var(--le-white);
  border: 1px solid var(--le-line);
  border-radius: var(--le-radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(11, 31, 74, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.le-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--le-shadow);
}

.le-blog-thumb {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e8eef8;
}

.le-blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.le-blog-body {
  padding: 1.25rem 1.35rem 1.5rem;
}

.le-blog-body h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.le-blog-body h3 a {
  color: var(--le-navy);
  text-decoration: none;
}

.le-blog-body h3 a:hover {
  color: var(--le-gold-dark);
}

.le-blog-body p {
  color: var(--le-muted);
  margin: 0 0 1rem;
}

.le-article {
  max-width: 800px;
}

.le-back {
  display: inline-block;
  color: var(--le-gold-dark);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: 1rem;
}

.le-article h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 1.25rem;
}

.le-article-cover {
  width: 100%;
  border-radius: var(--le-radius);
  margin-bottom: 1.5rem;
  display: block;
}

.le-article-content {
  color: var(--le-text);
  font-size: 1.05rem;
  line-height: 1.75;
}

.le-article-content img {
  max-width: 100%;
  height: auto;
}

/* Enquiry form */
.le-form-wrap {
  max-width: 560px;
}

.le-form {
  display: grid;
  gap: 1rem;
  background: var(--le-white);
  border: 1px solid var(--le-line);
  border-radius: var(--le-radius);
  padding: 1.5rem;
  box-shadow: var(--le-shadow);
}

.le-form label {
  display: grid;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--le-navy);
  font-size: 0.92rem;
}

.le-form input[type="text"],
.le-form input[type="email"],
.le-form input[type="tel"] {
  border: 1px solid var(--le-line);
  border-radius: 10px;
  padding: 0.8rem 0.95rem;
  font-family: var(--font-body);
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
  max-width: 100%;
}

.le-form .le-btn {
  width: 100%;
}

.le-form input:focus {
  outline: 2px solid rgba(201, 162, 39, 0.45);
  border-color: var(--le-gold);
}

.le-radio-group {
  border: 0;
  padding: 0;
  margin: 0;
}

.le-radio-group legend {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--le-navy);
  margin-bottom: 0.55rem;
}

.le-inline {
  display: inline-flex !important;
  align-items: center;
  gap: 0.4rem;
  margin-right: 1rem;
  font-weight: 500 !important;
}

.le-check {
  display: flex !important;
  align-items: flex-start;
  gap: 0.55rem;
  font-weight: 500 !important;
  color: var(--le-muted) !important;
}

/* Course detail */
.le-course-detail .le-detail-hero {
  margin: 0.5rem 0 2rem;
  max-width: 760px;
}

.le-course-detail .le-detail-hero h1 {
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  margin: 0.75rem 0 0.6rem;
}

.le-detail-tagline {
  color: var(--le-muted);
  font-size: 1.1rem;
  margin: 0 0 1.25rem;
}

.le-detail-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.le-detail-price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--le-navy);
}

.le-detail-grid {
  display: grid;
  gap: 1.1rem;
}

.le-detail-card {
  background: var(--le-white);
  border: 1px solid var(--le-line);
  border-radius: var(--le-radius);
  padding: 1.4rem 1.5rem;
  box-shadow: 0 10px 28px rgba(11, 31, 74, 0.05);
}

.le-detail-card h2 {
  font-size: 1.25rem;
  margin-bottom: 0.7rem;
}

.le-detail-card p {
  margin: 0;
  color: var(--le-muted);
  line-height: 1.7;
}

.le-detail-list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--le-muted);
}

.le-detail-list li {
  margin-bottom: 0.45rem;
  padding-left: 0.2rem;
}

.le-detail-list li::marker {
  color: var(--le-gold);
}

/* Responsive */
@media (max-width: 900px) {
  .le-container {
    width: calc(100% - 1.75rem);
    max-width: 1120px;
  }

  .le-menu-toggle {
    display: block;
  }

  .le-nav {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 50%;
    right: auto;
    width: 100vw;
    transform: translateX(-50%);
    background: var(--le-white);
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1.25rem 1.25rem;
    border-bottom: 1px solid var(--le-line);
    box-shadow: 0 16px 32px rgba(11, 31, 74, 0.12);
    gap: 0.35rem;
    z-index: 120;
  }

  .le-nav.is-open {
    display: flex;
  }

  .le-nav li {
    width: 100%;
  }

  .le-nav a {
    display: block;
    padding: 0.85rem 0.35rem;
    font-size: 1rem;
    border-bottom: 1px solid var(--le-line);
  }

  .le-nav a::after {
    display: none;
  }

  .le-nav-cta {
    margin-top: 0.5rem;
    text-align: center;
    border-bottom: 0 !important;
    padding: 0.85rem 1rem !important;
  }

  .le-hero {
    min-height: auto;
    background-position: center;
  }

  .le-hero-inner {
    padding: 3.25rem 0 3rem;
  }

  .le-hero h1 {
    font-size: clamp(1.85rem, 7vw, 2.6rem);
  }

  .le-hero p {
    font-size: 1.02rem;
  }

  .le-hero-actions .le-btn {
    width: 100%;
  }

  .le-stats {
    margin-top: -1.5rem;
  }

  .le-stats-grid,
  .le-why-grid,
  .le-mentor,
  .le-footer-grid,
  .le-blog-grid {
    grid-template-columns: 1fr;
  }

  .le-section {
    padding: 3.5rem 0;
  }

  .le-course {
    grid-template-columns: 42px 1fr;
    gap: 0.85rem 1rem;
    padding: 1.15rem 1.1rem;
    align-items: start;
  }

  .le-course-level,
  .le-course-price {
    grid-column: 2;
  }

  .le-course-price {
    text-align: left;
    min-width: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
  }

  .le-course-price .price {
    margin-bottom: 0;
  }

  .le-enquire-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .le-enquire-actions {
    width: 100%;
  }

  .le-enquire-actions .le-btn {
    flex: 1 1 auto;
    min-width: 140px;
    justify-content: center;
  }

  .le-footer-bottom {
    flex-direction: column;
  }

  .le-detail-price-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .le-detail-price-row .le-btn {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .le-container {
    width: calc(100% - 1.25rem);
    max-width: 1120px;
  }

  .le-header-inner {
    min-height: 72px;
  }

  .le-logo img {
    height: 52px;
    max-width: min(168px, 58vw);
  }

  .le-hero-inner {
    padding: 2.5rem 0 2.25rem;
  }

  .le-hero-chips {
    gap: 0.4rem;
  }

  .le-hero-chips span {
    font-size: 0.72rem;
    padding: 0.35rem 0.7rem;
  }

  .le-stats-grid {
    padding: 1rem 0.75rem;
    gap: 0.75rem;
  }

  .le-stat {
    padding: 0.65rem 0.4rem;
    border-bottom: 1px solid var(--le-line);
  }

  .le-stat:last-child {
    border-bottom: 0;
  }

  .le-stat strong {
    font-size: 1.35rem;
  }

  .le-section {
    padding: 2.75rem 0;
  }

  .le-section-head {
    margin-bottom: 1.75rem;
  }

  .le-course {
    grid-template-columns: 1fr;
  }

  .le-course-step {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }

  .le-course-level,
  .le-course-price {
    grid-column: 1;
  }

  .le-course-price .le-btn {
    width: 100%;
  }

  .le-btn {
    padding: 0.85rem 1.2rem;
    font-size: 0.92rem;
  }

  .le-enquire {
    padding: 2.5rem 0 3rem;
  }

  .le-enquire-actions .le-btn {
    width: 100%;
    flex: 1 1 100%;
  }

  .le-faq details {
    padding: 0.9rem 1rem;
  }

  .le-faq summary {
    font-size: 0.98rem;
    line-height: 1.45;
    padding-right: 1.5rem;
  }

  .le-form-wrap,
  .le-article {
    padding-inline: 0;
  }

  .le-article-cover {
    max-height: 220px;
    object-fit: cover;
  }

  .le-footer {
    padding: 2.5rem 0 1.25rem;
  }

  .le-footer img {
    height: 52px;
    max-width: 180px;
  }

  .le-mentor-panel {
    min-height: 200px;
    padding: 1.5rem;
  }
}

@media (max-width: 400px) {
  .le-hero h1 {
    font-size: 1.7rem;
  }

  .le-logo img {
    height: 46px;
    max-width: 140px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .le-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .le-btn-shine::after {
    animation: none;
    display: none;
  }
}

/* ===== Landing page ===== */
.le-landing .le-lp-top {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid var(--le-line);
}

.le-lp-top-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  min-height: 76px;
  gap: 1rem;
  width: 100%;
  box-sizing: border-box;
}

.le-lp-top-inner .le-logo {
  display: block;
  flex: 0 0 auto;
  line-height: 0;
}

.le-lp-top-inner .le-logo img {
  display: block;
  height: 56px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.le-lp-top-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.85rem;
  flex: 0 0 auto;
  margin-left: auto;
}

.le-lp-call {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--le-navy);
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.le-lp-call:hover {
  color: var(--le-gold-dark);
}

.le-lp-hero {
  min-height: 70vh;
}

.le-lp-brand {
  display: block;
  height: 72px !important;
  width: auto !important;
  max-width: 240px !important;
  object-fit: contain;
  margin: 0 0 1.25rem;
  background: #ffffff;
  padding: 0.4rem 0.65rem;
  border-radius: 12px;
  box-sizing: content-box;
}

.le-lp-path {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.le-lp-path-item {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.15rem 1.25rem;
  background: var(--le-white);
  border: 1px solid var(--le-line);
  border-radius: var(--le-radius);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.le-lp-path-item:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 162, 39, 0.5);
  box-shadow: var(--le-shadow);
}

.le-lp-step {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--le-navy);
  background: linear-gradient(145deg, #fff7df, #f0e2a8);
  border: 1px solid rgba(201, 162, 39, 0.45);
}

.le-lp-path-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.le-lp-path-item p {
  margin: 0;
  color: var(--le-muted);
  font-size: 0.95rem;
}

.le-lp-path-item strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--le-navy);
  white-space: nowrap;
}

.le-lp-why {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.le-lp-why h3 {
  font-size: 1.15rem;
  margin-bottom: 0.45rem;
}

.le-lp-why p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.le-lp-enquire {
  max-width: 560px;
}

.le-lp-contact {
  margin-top: 1.5rem;
  color: var(--le-muted);
  line-height: 1.7;
}

.le-lp-contact a {
  color: var(--le-navy);
  font-weight: 700;
  text-decoration: none;
}

.le-lp-contact a:hover {
  color: var(--le-gold-dark);
}

@media (max-width: 900px) {
  .le-lp-why {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .le-lp-path-item {
    grid-template-columns: 42px 1fr;
  }

  .le-lp-path-item strong {
    grid-column: 2;
  }
}

@media (max-width: 640px) {
  .le-lp-top-inner {
    min-height: 68px;
  }

  .le-lp-call {
    font-size: 0.88rem;
  }

  .le-lp-brand {
    height: 58px !important;
    max-width: 190px !important;
  }

  .le-lp-hero {
    min-height: auto;
  }

  .le-lp-path-item {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .le-lp-path-item strong {
    grid-column: 1;
  }

  .le-lp-top-actions .le-btn {
    padding: 0.55rem 0.9rem;
  }
}
