/* Learn and Upskill with AI - Main Stylesheet */

/* ===================== VARIABLES ===================== */
:root {
  --bg-main:           #0e0a0f;
  --bg-near-black:     #040301;
  --bg-navbar:         #040301;
  --bg-dark-grey:      #303030;
  --accent-orange:     #ff541f;
  --accent-orange2:    #fe541f;
  --accent-orange-dark:#c44800;
  --accent-orange-deep:#9f3b00;
  --accent-gold:       #ffb53e;
  --accent-red-text:   #ea6828;
  --accent-red:        #aa3535;
  --text-white:        #ffffff;
  --text-muted:        #888888;
  --text-light:        #e7e7e7;
  --text-pink:         #ffffff;
  --text-body:         rgba(255, 255, 255, 0.8);
  --navbar-border:     rgba(68, 49, 73, 0.6);
  --card-bg: linear-gradient(173.6deg, rgba(0,0,0,0) 12%, rgba(255,60,0,0.3) 115%),
             linear-gradient(90deg, rgba(39,40,41,0.7), rgba(39,40,41,0.7));
  --card-bg-tall: linear-gradient(166deg, rgba(0,0,0,0) 12%, rgba(255,60,0,0.3) 115%),
                  linear-gradient(90deg, rgba(39,40,41,0.7), rgba(39,40,41,0.7));
  --card-bg-wide: linear-gradient(177.6deg, rgba(0,0,0,0) 12%, rgba(255,60,0,0.3) 115%),
                  linear-gradient(90deg, rgba(39,40,41,0.7), rgba(39,40,41,0.7));
  --btn-shadow:        inset 0 0 9px 1px #c44800;
  --section-pad-x:     284px;
  --radius-card:       20px;
}

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

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg-main);
  color: var(--text-white);
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

details { list-style: none; }

/* ===================== TYPOGRAPHY UTILITIES ===================== */
.lau-text--gold    { color: var(--accent-gold); }
.lau-text--white   { color: var(--text-white); }
.lau-text--orange  { color: var(--accent-orange); }
.lau-text--orange-bold {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-style: italic;
  color: var(--accent-red-text);
  font-size: 32px;
  text-align: center;
  letter-spacing: -0.64px;
}

/* ===================== BUTTON ===================== */
.lau-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 6px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 28px;
  color: var(--text-white);
  white-space: nowrap;
  cursor: pointer;
  border: none;
  padding: 0 20px;
  position: relative;
  transition: opacity 0.2s;
}
.lau-btn:hover { opacity: 0.9; }

.lau-btn--orange {
  background: var(--accent-orange);
  box-shadow: var(--btn-shadow);
}

.lau-btn--nav {
  height: 46px;
}
.lau-nav-text--short { display: none; }

.lau-btn--large {
  height: 64px;
  min-width: 330px;
}

.lau-btn__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ===================== NAVBAR ===================== */
.lau-navbar {
  background: rgba(4, 3, 1, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--navbar-border);
  height: 100px;
  position: relative;
  z-index: 1001;
}

/* ===================== STICKY BOTTOM BAR ===================== */
.lau-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 300;
  background: rgba(14, 10, 15, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.lau-sticky-bar.is-visible {
  transform: translateY(0);
  pointer-events: auto;
}

.lau-sticky-bar__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 14px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.lau-sticky-bar__date {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: 40px;
  color: var(--text-white);
  white-space: nowrap;
  letter-spacing: -0.5px;
}

.lau-sticky-bar__countdown {
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.lau-sticky-bar__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.lau-sticky-bar__num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: 40px;
  color: var(--accent-gold);
  line-height: 1;
  letter-spacing: -1px;
}

.lau-sticky-bar__label {
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  font-style: italic;
  color: var(--accent-gold);
  line-height: 1;
  letter-spacing: 0.3px;
}

.lau-sticky-bar__sep {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: 40px;
  color: var(--accent-gold);
  line-height: 1;
  padding-bottom: 14px;
  align-self: flex-end;
}

.lau-sticky-bar__tagline {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.lau-sticky-bar__tagline-stat {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: 36px;
  color: var(--accent-gold);
  white-space: nowrap;
  letter-spacing: -0.5px;
}
.lau-sticky-bar__tagline-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-style: italic;
  font-size: 28px;
  color: var(--text-white);
  white-space: nowrap;
}

.lau-navbar__inner {
  max-width: 1440px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 80px;
}

.lau-navbar__logo {
  height: 60px;
  width: auto;
  display: block;
}
.lau-navbar__nav {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  margin: 0; padding: 0;
}
.lau-navbar__link {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  letter-spacing: 0.3px;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.lau-navbar__link:hover { color: #fff; }
.lau-navbar__link.is-active { color: #fff; border-bottom-color: var(--accent-gold); }
.lau-navbar__right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.lau-navbar__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  position: relative;
  z-index: 1000;
}
.lau-navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.25s;
}
.lau-navbar__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lau-navbar__hamburger.is-open span:nth-child(2) { opacity: 0; }
.lau-navbar__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.lau-navbar__mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(4,3,1,0.99);
  flex-direction: column;
  justify-content: center;
  padding: 40px 32px;
  gap: 0;
}
.lau-navbar__mobile-menu.is-open { display: flex; }
.lau-navbar__mobile-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 48px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s;
}
.lau-navbar__mobile-link:last-child { border-bottom: none; }
.lau-navbar__mobile-link:hover { color: #fff; }
.lau-navbar__mobile-link.is-active { color: var(--accent-gold); }

/* ===================== HERO ===================== */
.lau-hero {
  background: var(--bg-main);
  position: relative;
  overflow: hidden;
  min-height: 741px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lau-hero__bg-wrap {
  position: absolute;
  inset: 0;
  left: -41px;
  top: -568px;
  width: 1507px;
  height: 1381px;
  opacity: 0.6;
  pointer-events: none;
}

.lau-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lau-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1440px;
  padding: 65px 220px 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* Rating badge */
.lau-rating-badge {
  display: flex;
  align-items: center;
  gap: 13px;
  background: linear-gradient(to right, rgba(41,0,10,0.9), rgba(41,0,10,0.2));
  border: 0.943px solid rgba(255,255,255,0.15);
  border-radius: 50.9px;
  padding: 15px 24px;
}

.lau-rating-badge__avatars {
  display: flex;
  align-items: center;
}

.lau-rating-badge__avatars img {
  width: 41px;
  height: 41px;
  border-radius: 50%;
  border: 1.133px solid rgba(255,255,255,0.1);
  margin-left: -27px;
  object-fit: cover;
}

.lau-rating-badge__avatars img:first-child { margin-left: 0; }

.lau-rating-badge__info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.lau-rating-badge__stars {
  color: var(--accent-gold);
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 1;
}

.lau-rating-badge__count {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16.9px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.3px;
  white-space: nowrap;
}

/* Hero headline */
.lau-hero__headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: 80px;
  line-height: 88px;
  text-align: center;
  color: var(--text-white);
  letter-spacing: 0.3px;
  width: 100%;
}

/* Hero subtexts */
.lau-hero__subtext1 {
  font-family: 'Open Sans', sans-serif;
  font-size: 20px;
  line-height: 28px;
  text-align: center;
  color: var(--text-white);
  letter-spacing: 0.2px;
  max-width: 860px;
}

.lau-hero__subtext1 strong em {
  font-weight: 800;
  font-style: italic;
}

.lau-hero__subtext2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: center;
  color: var(--text-white);
  letter-spacing: 0.64px;
  max-width: 1000px;
}

.lau-hero__cta { margin: 4px 0; }

/* Stats row */
.lau-hero__stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 285px;
  width: 100%;
  margin-top: 8px;
}

.lau-hero__ratings {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 26px;
}

.lau-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.lau-stat__number {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: 40px;
  line-height: 1.6;
  color: var(--accent-gold);
}

.lau-stat__label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
  letter-spacing: 0.8px;
}

.lau-best-tool {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--bg-near-black);
  border: 1px solid rgba(255,181,62,0.3);
  border-radius: 16px;
  padding: 18px;
  box-shadow: inset 0 0 20px -5px black;
  position: relative;
}

.lau-best-tool__icon {
  width: 43px;
  height: 44px;
  flex-shrink: 0;
}

.lau-best-tool__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.lau-best-tool__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: 20px;
  line-height: 1.6;
  color: var(--text-light);
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: 0.8px;
}

.lau-best-tool__desc {
  font-family: 'Open Sans', sans-serif;
  font-size: 10px;
  line-height: 1.6;
  color: var(--text-light);
  max-width: 190px;
}

/* ===================== AI TOOLS STRIP ===================== */
.lau-tools-strip {
  background: rgba(19, 0, 0, 0.1);
  padding: 48px 0 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 31px;
}

.lau-tools-strip__header {
  text-align: center;
}

.lau-tools-strip__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: 48px;
  line-height: 1.6;
  color: var(--text-white);
  white-space: nowrap;
}

.lau-tools-strip__subtitle {
  font-family: 'Open Sans', sans-serif;
  font-size: 24px;
  line-height: 1.6;
  color: var(--text-pink);
}

/* Marquee */
.lau-marquee-wrapper {
  background: var(--bg-dark-grey);
  width: 100%;
  overflow: hidden;
}

.lau-marquee {
  display: flex;
  width: max-content;
  animation: lau-scroll 30s linear infinite;
}

.lau-marquee:hover { animation-play-state: paused; }

.lau-marquee__strip {
  height: 73px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

@keyframes lau-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* ===================== SHARED SECTION STYLES ===================== */
.lau-section {
  padding: 65px 0 69px;
}

.lau-section__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--section-pad-x);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.lau-section__eyebrow {
  font-family: 'Open Sans', sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--text-pink);
  text-align: center;
  letter-spacing: 0.3px;
}

.lau-section__headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: 48px;
  line-height: 1.2;
  text-align: center;
  letter-spacing: 0.3px;
}

.lau-section__headline--split {
  font-size: 60px;
  line-height: 1.2;
  letter-spacing: 0.3px;
}

.lau-section__headline--large {
  font-size: 48px;
}

.lau-section__body {
  font-family: 'Open Sans', sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--text-pink);
  text-align: center;
  letter-spacing: 0.2px;
  max-width: 1088px;
  line-height: 1.5;
}

/* ===================== CARDS ===================== */
.lau-cards-grid {
  width: 100%;
  display: grid;
  gap: 32px;
  padding: 32px 0;
}

.lau-cards-grid--2col { grid-template-columns: repeat(2, 1fr); }
.lau-cards-grid--3col { grid-template-columns: repeat(3, 1fr); }

.lau-card {
  background: var(--card-bg);
  border-radius: var(--radius-card);
  overflow: hidden;
  min-height: 229px;
  padding: 34px 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.lau-card--icon {
  min-height: 300px;
  padding: 32px;
  gap: 0;
  justify-content: flex-start;
}

.lau-card__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

.lau-card__icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  flex-shrink: 0;
}

.lau-card__icon-wrap img {
  width: 20px;
  height: 20px;
}

.lau-card__icon-wrap--purple { background: rgba(68, 49, 73, 0.36); }
.lau-card__icon-wrap--red    { background: rgba(73, 49, 49, 0.36); }

.lau-card__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: 32px;
  line-height: 1.3;
  color: var(--text-white);
  letter-spacing: -0.64px;
  white-space: nowrap;
}

.lau-card__title--gold { color: var(--accent-gold); }

.lau-card__body {
  font-family: 'Open Sans', sans-serif;
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
  color: var(--text-white);
  line-height: 1.5;
  letter-spacing: -0.4px;
}

/* ===================== TARGET AUDIENCE SECTION ===================== */
.lau-target-audience .lau-section__inner {
  gap: 4px;
  padding: 0 144px;
}

.lau-target-audience .lau-cards-grid {
  gap: 30px;
  max-width: 1152px;
}

/* ===================== PROBLEM SECTION ===================== */
.lau-problem-section .lau-section__inner {
  padding: 0 56px;
}

.lau-problem-section .lau-cards-grid--3col {
  grid-template-columns: repeat(3, 420px);
  gap: 32px;
}

.lau-problem-section .lau-cards-grid--3col .lau-card__body {
  font-size: 18px;
  font-style: normal;
  letter-spacing: -0.36px;
}

/* ===================== CHATGPT BANNER ===================== */
.lau-banner-image {
  width: 100%;
}

.lau-banner-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===================== QUOTE SECTION ===================== */
.lau-quote-section {
  position: relative;
  overflow: hidden;
  min-height: 463px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 220px;
}

.lau-quote-section__blur {
  position: absolute;
  left: 50%;
  top: calc(50% - 47px);
  transform: translate(-50%, -50%);
  width: 1094px;
  pointer-events: none;
  z-index: 1;
}

.lau-quote-section__blur img {
  width: 120%;
  margin-left: -10%;
}

.lau-quote-section__grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.lau-quote-section__grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lau-quote-section__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 852px;
  text-align: center;
}

.lau-quote-section__headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: 64px;
  line-height: 60px;
  letter-spacing: 0.3px;
  text-align: center;
}

.lau-quote-section__body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 720px;
}

/* ===================== TOOLS DEEP DIVE ===================== */
.lau-tools-deepdive .lau-section__inner {
  gap: 16px;
  padding: 0 56px;
}

.lau-tools-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  max-width: 1328px;
  padding: 32px 0;
}

.lau-tool-card {
  background: var(--card-bg-tall);
  border-radius: var(--radius-card);
  overflow: hidden;
  min-height: 360px;
  width: 420px;
  flex-shrink: 0;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 8px;
}

.lau-tool-card__icon {
  width: 88px;
  height: 88px;
  border-radius: 20px;
  object-fit: cover;
  flex-shrink: 0;
  margin-bottom: 4px;
}

.lau-tool-card__name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: 28px;
  color: var(--text-white);
  letter-spacing: -0.1px;
  line-height: 1.2;
}

.lau-tool-card__role {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 24px;
  color: var(--text-white);
  letter-spacing: -0.48px;
  line-height: 1.2;
}

.lau-tool-card__desc {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-white);
  line-height: 1.6;
  letter-spacing: -0.32px;
  margin-top: 4px;
}

/* ===================== AGENDA ===================== */
.lau-agenda .lau-section__inner { gap: 16px; }

.lau-agenda-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 1048px;
  padding: 20px 0 32px;
}

.lau-agenda-item {
  background: var(--card-bg-wide);
  border-radius: var(--radius-card);
  overflow: hidden;
  min-height: 158px;
  padding: 31px 31px 31px 31px;
  display: flex;
  align-items: center;
}

.lau-agenda-item__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.lau-agenda-item__time {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: 32px;
  line-height: 1.3;
  letter-spacing: -0.64px;
  white-space: nowrap;
}

.lau-agenda-item__pipe {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 300;
  font-style: normal;
  color: var(--text-muted);
  margin: 0 12px;
}

.lau-agenda-item__desc {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--text-white);
  line-height: 1.5;
  letter-spacing: -0.36px;
}

/* ===================== SALE / CTA ===================== */
.lau-sale-cta {
  padding: 59px 110px 69px;
  display: flex;
  justify-content: center;
}

.lau-sale-cta__box {
  position: relative;
  width: 100%;
  max-width: 1220px;
  min-height: 540px;
  border-radius: 30px;
  border: 1px solid rgba(255, 84, 31, 0.5);
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(255, 60, 0, 0.45) 0%, rgba(14, 10, 15, 0) 70%),
              #0e0a0f;
  overflow: hidden;
  padding: 56px 181px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.lau-sale-cta__bg-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
}

.lau-sale-cta__bg-pattern img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.lau-sale-cta__headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: 64px;
  line-height: 1.2;
  text-align: center;
  color: var(--text-white);
  position: relative;
  z-index: 1;
}

.lau-sale-cta__steps {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-top: 16px;
  position: relative;
  z-index: 1;
}

.lau-step {
  width: 262px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.lau-step__num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: 64px;
  color: rgba(255, 255, 255, 0.25);
  line-height: 1;
  text-align: center;
}

.lau-step__text {
  font-family: 'Open Sans', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  line-height: 30px;
  text-align: center;
}

.lau-step__text strong { font-weight: 700; }

.lau-sale-cta__btn-wrap {
  margin-top: 24px;
  position: relative;
  z-index: 1;
}

/* ===================== INSTRUCTOR ===================== */
.lau-instructor {
  padding: 65px 0;
  background: var(--bg-main);
}

.lau-instructor__header {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 48px;
}

.lau-instructor__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 110px;
  display: flex;
  align-items: stretch;
  gap: 40px;
}

.lau-instructor__photo-wrap {
  flex: 1;
  min-width: 0;
}

.lau-instructor__photo {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.lau-instructor__card {
  flex: 1;
  min-width: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.lau-instructor__name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: 32px;
  color: var(--text-white);
  letter-spacing: -0.64px;
}

.lau-instructor__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 24px;
  color: var(--accent-gold);
  letter-spacing: -0.48px;
  margin-top: -8px;
}

.lau-instructor__bio {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.lau-instructor__stats {
  display: flex;
  gap: 40px;
  margin-top: 8px;
}

.lau-stat--inline { align-items: center; }

/* ===================== TESTIMONIALS ===================== */
.lau-testimonials .lau-section__inner { gap: 8px; }

.lau-reviews-marquee-wrap {
  overflow: hidden;
  width: 100%;
  padding: 24px 0;
}

.lau-reviews-marquee {
  display: flex;
  width: max-content;
  animation: lau-reviews-scroll 21s linear infinite;
}

.lau-reviews-marquee:hover { animation-play-state: paused; }

@keyframes lau-reviews-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.lau-review {
  background: var(--card-bg);
  border-radius: var(--radius-card);
  padding: 32px;
  min-width: 420px;
  flex: 0 0 420px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-right: 32px;
}

.lau-review__stars-badge {
  display: inline-flex;
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  padding: 6px 14px;
  color: var(--accent-gold);
  font-size: 18px;
  letter-spacing: 3px;
}

.lau-review__text {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  flex: 1;
}

.lau-review__author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
  margin-top: auto;
}

.lau-review__name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: 20px;
  color: var(--accent-gold);
  letter-spacing: 0.2px;
}

.lau-review__branch {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  color: var(--text-white);
}


/* ===================== FAQ ===================== */
.lau-faq {
  padding: 65px 110px;
}

.lau-faq__inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.lau-faq__left {
  flex: 0 0 380px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 8px;
}

.lau-faq__headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: 48px;
  line-height: 1.1;
  color: var(--text-white);
  letter-spacing: 0.3px;
}

.lau-faq__desc {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}

.lau-faq__right {
  flex: 1;
  min-width: 0;
}

.lau-faq-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lau-faq-item {
  background: linear-gradient(173.6deg, rgba(0,0,0,0) 12%, rgba(255,60,0,0.12) 115%),
              linear-gradient(90deg, rgba(39,40,41,0.7), rgba(39,40,41,0.7));
  border-radius: 16px;
  overflow: hidden;
}

.lau-faq-item__q {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 22px;
  color: var(--accent-gold);
  padding: 20px 28px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  line-height: 1.4;
}

.lau-faq-item__q::-webkit-details-marker { display: none; }

.lau-faq-item__q::after {
  content: '+';
  font-size: 28px;
  font-style: normal;
  font-weight: 300;
  color: var(--accent-gold);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.lau-faq-item[open] .lau-faq-item__q::after {
  content: '−';
}

.lau-faq-item__a {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  padding: 0 28px 20px;
  line-height: 1.7;
}

/* ===================== FOOTER ===================== */
.lau-footer {
  background: var(--bg-main);
  border-top: 1px solid var(--navbar-border);
  overflow: hidden;
}

.lau-footer__grid {
  max-width: 1440px;
  margin: 0 auto;
  padding: 72px 80px 56px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.lau-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.lau-footer__logo {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.lau-footer__tagline {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  max-width: 280px;
}

.lau-footer__col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lau-footer__link {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--text-white);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
}

.lau-footer__link:hover { color: var(--accent-gold); }

.lau-footer__link span { font-size: 11px; opacity: 0.6; }

.lau-footer__contact {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--text-white);
  line-height: 1.6;
}

.lau-footer__big-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 40px;
  line-height: 0.82;
  pointer-events: none;
  margin-top: -10px;
}

.lau-footer__big-text span {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(80px, 14vw, 200px);
  background: linear-gradient(180deg, rgba(255,84,31,0.55) 0%, rgba(100,30,0,0.32) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: -2px;
}

.lau-footer__bottom {
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px 80px 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lau-footer__copy {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  color: var(--text-muted);
}

.lau-footer__legal {
  display: flex;
  gap: 32px;
}

.lau-footer__legal-link {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  transition: color 0.2s;
}

.lau-footer__legal-link:hover { color: var(--text-white); }

.lau-footer__legal-link span { font-size: 10px; }

/* ===================== FOOTER BOTTOM PADDING (clears sticky bar) ===================== */
.lau-footer { padding-bottom: 80px; }

/* ===================== WHATSAPP FLOAT BUTTON ===================== */
.lau-wa-btn {
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 290;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  animation: lau-wa-pulse 2.4s ease-in-out infinite;
  transition: transform 0.2s;
}
.lau-wa-btn:hover { transform: scale(1.1); animation-play-state: paused; }

@keyframes lau-wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50%       { box-shadow: 0 4px 32px rgba(37,211,102,0.75); }
}

/* ===================== SCROLL TO TOP ===================== */
.lau-scroll-top {
  position: fixed;
  bottom: 168px;
  right: 24px;
  z-index: 290;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
}
.lau-scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.lau-scroll-top:hover { background: rgba(255,255,255,0.18); }

/* ===================== REGISTRATION MODAL ===================== */
.lau-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lau-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.lau-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.lau-modal__box {
  position: relative;
  z-index: 1;
  background: #1a1220;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 48px 48px 40px;
  width: 100%;
  max-width: 520px;
  transform: translateY(24px);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
}
.lau-modal.is-open .lau-modal__box { transform: translateY(0); }

.lau-modal__close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  transition: color 0.2s;
}
.lau-modal__close:hover { color: var(--text-white); }

.lau-modal__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: 36px;
  color: var(--text-white);
  letter-spacing: -0.72px;
  margin-bottom: 6px;
}
.lau-modal__sub {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 28px;
  line-height: 1.6;
}
.lau-modal__form { display: flex; flex-direction: column; gap: 16px; }

.lau-form__group { display: flex; flex-direction: column; gap: 6px; }

.lau-form__label {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.2px;
}
.lau-form__input,
.lau-form__select {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 12px 16px;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  color: var(--text-white);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.lau-form__input::placeholder { color: rgba(255,255,255,0.3); }
.lau-form__input:focus,
.lau-form__select:focus { border-color: var(--accent-gold); }
.lau-form__select { cursor: pointer; appearance: auto; }
.lau-form__select option { background: #1a1220; color: var(--text-white); }

.lau-form__error {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  color: var(--accent-red);
  min-height: 18px;
  display: none;
}
.lau-form__error.is-visible { display: block; }

.lau-modal__submit {
  width: 100%;
  height: 56px;
  font-size: 22px;
  margin-top: 4px;
  justify-content: center;
}
.lau-modal__submit:disabled { opacity: 0.6; cursor: not-allowed; }

.lau-form__group--check { margin-top: 4px; }

.lau-form__check-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.lau-form__checkbox {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--accent-orange);
  cursor: pointer;
}

.lau-form__check-label span {
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

.lau-modal__note {
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  text-align: center;
  margin-top: 4px;
}

.lau-col-gets .lau-section__inner { padding: 0 144px; }
.lau-col-courses .lau-section__inner { padding: 0 144px; }
.lau-col-colleges .lau-section__inner { padding: 0 144px; }

/* ===================== COURSES PAGE ===================== */

.lau-crs-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
}
.lau-crs-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.lau-crs-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(14,10,15,0.45) 0%, rgba(14,10,15,0.75) 100%);
}
.lau-crs-hero__content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  padding: 80px 110px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.lau-crs-hero__headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: 72px;
  line-height: 1.05;
  color: var(--text-white);
  letter-spacing: 0.3px;
}
.lau-crs-hero__body {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  max-width: 600px;
}
.lau-crs-hero .lau-section__eyebrow { text-align: left; }

.lau-crs-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px;
}
.lau-crs-inner .lau-section__eyebrow,
.lau-crs-inner .lau-section__headline,
.lau-crs-inner .lau-section__body { max-width: 760px; margin-left: auto; margin-right: auto; }

/* Course Cards */
.lau-crs-cards__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px;
}
.lau-crs-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.lau-crs-card--orange { border-color: rgba(255,60,0,0.35); }
.lau-crs-card--teal   { border-color: rgba(10,163,127,0.35); }

.lau-crs-card__tags { display: flex; gap: 8px; flex-wrap: wrap; }
.lau-crs-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 13px;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.3px;
  display: inline-block;
}
.lau-crs-tag--orange { background: rgba(255,60,0,0.12); color: #FF3C00; border: 1px solid rgba(255,60,0,0.25); }
.lau-crs-tag--teal   { background: rgba(10,163,127,0.12); color: #0AA37F; border: 1px solid rgba(10,163,127,0.25); }
.lau-crs-tag--grey   { background: rgba(255,255,255,0.05); color: #888; border: 1px solid rgba(255,255,255,0.1); }

.lau-crs-card__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: 34px;
  color: var(--text-white);
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin: 0;
}
.lau-crs-card__sub {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin: 0;
}
.lau-crs-card__meta { display: flex; flex-wrap: wrap; gap: 8px; }
.lau-crs-meta-item {
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 4px 10px;
  white-space: nowrap;
}

.lau-crs-curriculum {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  overflow: hidden;
}
.lau-crs-curriculum__toggle {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 16px;
  color: var(--accent-gold);
  padding: 14px 20px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,181,62,0.05);
  user-select: none;
}
.lau-crs-curriculum__toggle::-webkit-details-marker { display: none; }
.lau-crs-curriculum__list { display: flex; flex-direction: column; }
.lau-crs-day {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.lau-crs-day__num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  min-width: 40px;
  padding-top: 2px;
}
.lau-crs-day__icon { font-size: 15px; min-width: 20px; }
.lau-crs-day__info { display: flex; flex-direction: column; gap: 2px; }
.lau-crs-day__info strong {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
}
.lau-crs-day__meta {
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.38);
}

.lau-crs-card__footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.lau-crs-card__price {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: 22px;
  color: var(--text-white);
  margin: 0;
}
.lau-crs-card__price-note {
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin: 0;
}
.lau-btn--teal {
  background: #0AA37F;
  color: #fff;
  border: none;
  box-shadow: none;
}
.lau-btn--teal:hover { background: #089070; }

/* Journey */
.lau-crs-journey .lau-crs-inner { text-align: center; }
.lau-crs-journey .lau-section__headline,
.lau-crs-journey .lau-section__body { margin-left: auto; margin-right: auto; }
.lau-crs-journey__boxes {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 56px;
  text-align: left;
}
.lau-crs-journey__box {
  flex: 1;
  background:
    linear-gradient(173.6deg, rgba(0,0,0,0) 12%, rgba(255,60,0,0.22) 115%),
    #272829;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.lau-crs-journey__box--orange {
  background:
    linear-gradient(173.6deg, rgba(0,0,0,0) 12%, rgba(255,60,0,0.28) 115%),
    #272829;
  border-color: rgba(255,60,0,0.25);
}
.lau-crs-journey__box--teal {
  background:
    linear-gradient(173.6deg, rgba(0,0,0,0) 12%, rgba(10,163,127,0.28) 115%),
    #272829;
  border-color: rgba(10,163,127,0.25);
}
.lau-crs-journey__box-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: 36px;
  color: var(--text-white);
  margin: 0;
}
.lau-crs-journey__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  flex-shrink: 0;
}
.lau-crs-journey__arrow-icon {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: var(--accent-gold);
}
.lau-crs-checklist { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.lau-crs-checklist__item {
  font-family: 'Open Sans', sans-serif;
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Skills */
.lau-crs-skills__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
}
.lau-crs-skills__col {
  background:
    linear-gradient(173.6deg, rgba(0,0,0,0) 12%, rgba(255,60,0,0.22) 115%),
    #272829;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 44px 40px;
}
.lau-crs-skills__col-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: 28px;
  color: var(--accent-gold);
  margin: 0 0 24px;
}
.lau-crs-skill-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0; }
.lau-crs-skill-item {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.lau-crs-skill-item:last-child { border-bottom: none; }
.lau-crs-skill-check { color: var(--accent-gold); font-weight: 700; }
.lau-crs-card-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,181,62,0.12);
  border: 1px solid rgba(255,181,62,0.25);
  color: var(--accent-gold);
}

/* Projects */
.lau-crs-projects__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.lau-crs-project-card {
  background:
    linear-gradient(173.6deg, rgba(0,0,0,0) 12%, rgba(255,60,0,0.22) 115%),
    #272829;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lau-crs-project-card__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: 22px;
  color: var(--text-white);
  margin: 0;
  line-height: 1.2;
}
.lau-crs-project-card__desc {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.lau-crs-project-card__by {
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  color: var(--accent-gold);
  margin: 0;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.lau-crs-stats-row {
  display: flex;
  justify-content: center;
  gap: 64px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.lau-crs-stat { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.lau-crs-stat__num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: 56px;
  color: var(--accent-gold);
  line-height: 1;
  letter-spacing: -1px;
}
.lau-crs-stat__label {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Final CTA */
.lau-crs-final-cta {
  background: linear-gradient(173.6deg, rgba(0,0,0,0) 12%, rgba(255,60,0,0.3) 115%), #272829;
  padding: 96px 80px;
  text-align: center;
}
.lau-crs-final-cta__inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.lau-crs-final-cta__headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: 72px;
  color: var(--text-white);
  letter-spacing: 0.3px;
  line-height: 1;
  margin: 0;
}
.lau-crs-final-cta__sub {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin: 0;
}

/* Courses page responsive */
@media (max-width: 900px) {
  .lau-crs-hero__content { padding: 60px 24px; }
  .lau-crs-hero__headline { font-size: 48px; }
  .lau-crs-cards__grid { grid-template-columns: 1fr; padding: 0 20px; }
  .lau-crs-inner { padding: 0 20px; }
  .lau-crs-journey__boxes { flex-direction: column; }
  .lau-crs-journey__arrow { padding: 8px 0; transform: rotate(90deg); }
  .lau-crs-skills__grid { grid-template-columns: 1fr; gap: 24px; }
  .lau-crs-projects__grid { grid-template-columns: 1fr 1fr; }
  .lau-crs-stats-row { gap: 32px; flex-wrap: wrap; }
  .lau-crs-final-cta { padding: 64px 24px; }
  .lau-crs-final-cta__headline { font-size: 52px; }
}
@media (max-width: 600px) {
  .lau-crs-projects__grid { grid-template-columns: 1fr; }
  .lau-crs-stat__num { font-size: 40px; }
}

/* ===================== LEGAL PAGES (Terms & Privacy) ===================== */
.lau-legal-hero {
  padding: 80px 110px 60px;
  background: var(--bg-dark);
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.lau-legal-hero__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-style: italic;
  font-size: 64px; line-height: 1.1;
  color: var(--text-white);
  letter-spacing: -1px; margin: 12px 0 8px;
}
.lau-legal-hero__meta {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px; color: var(--text-muted); margin: 0;
}
.lau-legal-body {
  max-width: 820px; margin: 0 auto;
  padding: 60px 24px 80px;
}
.lau-legal-intro {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px; color: rgba(255,255,255,0.85);
  line-height: 1.75; margin-bottom: 48px;
}
.lau-legal-section { margin-bottom: 40px; }
.lau-legal-section__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 28px;
  color: var(--text-white); margin-bottom: 12px;
}
.lau-legal-section__sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 20px;
  color: var(--accent-gold); margin: 16px 0 8px;
}
.lau-legal-section p {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px; color: rgba(255,255,255,0.75);
  line-height: 1.75; margin-bottom: 12px;
}
.lau-legal-list {
  list-style: none; padding: 0; margin: 12px 0 16px;
  display: flex; flex-direction: column; gap: 8px;
}
.lau-legal-list li {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px; color: rgba(255,255,255,0.75);
  line-height: 1.6; padding-left: 20px; position: relative;
}
.lau-legal-list li::before {
  content: '→'; position: absolute; left: 0;
  color: var(--accent-gold); font-weight: 700;
}
.lau-legal-link { color: var(--accent-gold); text-decoration: none; }
.lau-legal-link:hover { text-decoration: underline; }

/* ===================== CONTACT PAGE ===================== */
.lau-con-hero-combined {
  min-height: unset;
  align-items: flex-start;
}
.lau-con-hero-combined__overlay {
  background: linear-gradient(to bottom, rgba(14,10,15,0.5) 0%, rgba(14,10,15,0.88) 55%, rgba(14,10,15,0.97) 100%);
}
.lau-con-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 80px 110px 96px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.lau-con-hero-top {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 820px;
}
.lau-con-hero-top .lau-section__eyebrow { text-align: left; }
.lau-con-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 64px; align-items: start;
}
.lau-con-cards { display: flex; flex-direction: column; gap: 24px; }
.lau-con-card {
  display: flex; flex-direction: column; gap: 0; align-items: flex-start;
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-card); padding: 32px 35px;
}
.lau-con-card__icon {
  flex-shrink: 0; width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,181,62,0.12);
  border: 1px solid rgba(255,181,62,0.25);
  color: var(--accent-gold);
  margin-bottom: 16px;
}
.lau-con-card__text { display: flex; flex-direction: column; gap: 8px; width: 100%; }
.lau-con-card__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-style: italic; font-size: 28px;
  color: var(--text-white); margin: 0;
  letter-spacing: 0.3px; line-height: 1.2;
}
.lau-con-card__detail {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 20px;
  color: var(--accent-gold); margin: 0; letter-spacing: 0.2px;
}
.lau-con-card__note {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px; color: rgba(255,255,255,0.7);
  line-height: 1.5; margin: 0;
}
.lau-con-card .lau-btn { margin-top: 8px; }
.lau-con-form-wrap { display: flex; flex-direction: column; gap: 24px; }
.lau-con-form-wrap__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-style: italic;
  font-size: 40px; color: var(--text-white); line-height: 1.1; margin: 0;
}
.lau-con-form { display: flex; flex-direction: column; gap: 20px; }
.lau-form__success {
  display: none;
  background: rgba(10,163,127,0.12);
  border: 1px solid rgba(10,163,127,0.35);
  border-radius: 10px; padding: 16px 20px;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px; color: #0AA37F;
}
.lau-form__success.is-visible { display: block; }
.lau-con-faq-cta {
  background: rgba(255,255,255,0.03);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 64px 110px;
}
.lau-con-faq-cta__inner {
  max-width: 600px; margin: 0 auto;
  display: flex; flex-direction: column;
  align-items: center; gap: 16px; text-align: center;
}
.lau-con-faq-cta__headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-style: italic;
  font-size: 40px; color: var(--text-white); line-height: 1.1; margin: 0;
}
.lau-con-faq-cta__sub {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px; color: var(--text-muted); margin: 0;
}

/* ===================== STUDENT PROJECTS PAGE ===================== */
.lau-proj-section { padding: 80px 0; }
.lau-proj-card--soon { position: relative; opacity: 0.72; }
.lau-proj-card__coming-badge {
  position: absolute; top: 12px; right: 12px;
  background: rgba(255,181,62,0.15);
  border: 1px solid rgba(255,181,62,0.4);
  color: var(--accent-gold);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 13px;
  padding: 4px 10px; border-radius: 20px;
  letter-spacing: 0.5px;
}

/* Legal + Contact + Projects responsive */
@media (max-width: 900px) {
  .lau-legal-hero { padding: 60px 24px 40px; }
  .lau-legal-hero__title { font-size: 40px; }
  .lau-legal-body { padding: 40px 24px 60px; }
  .lau-con-hero-inner { padding: 60px 24px 72px; gap: 48px; }
  .lau-con-grid { grid-template-columns: 1fr; gap: 40px; }
  .lau-con-faq-cta { padding: 48px 24px; }
}
@media (max-width: 600px) {
  .lau-legal-hero__title { font-size: 32px; }
  .lau-con-faq-cta__headline { font-size: 30px; }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1280px) {
  :root { --section-pad-x: 80px; }

  .lau-target-audience .lau-section__inner { padding: 0 40px; }
  .lau-col-gets .lau-section__inner { padding: 0 40px; }
  .lau-col-courses .lau-section__inner { padding: 0 40px; }
  .lau-col-colleges .lau-section__inner { padding: 0 40px; }
  .lau-problem-section .lau-section__inner { padding: 0 20px; }
  .lau-problem-section .lau-cards-grid--3col { grid-template-columns: repeat(3, 1fr); }

  .lau-navbar__inner { padding: 0 40px; }

  .lau-hero__content { padding: 60px 80px; }

  .lau-hero__stats-row { gap: 60px; flex-wrap: wrap; }

  .lau-tool-card { width: calc(50% - 16px); }
  .lau-tools-deepdive .lau-section__inner { padding: 0 40px; }

  .lau-agenda-list { width: 100%; }
  .lau-agenda-item__time { white-space: normal; font-size: 26px; }
  .lau-agenda-item__pipe { margin: 0 8px; }
  .lau-agenda-item { min-height: unset; padding: 24px; }

  .lau-sale-cta { padding: 40px; }
  .lau-sale-cta__box { width: 100%; padding: 48px 60px; }

  .lau-instructor__header { padding: 0 80px; }
  .lau-instructor__inner { padding: 0 80px; gap: 24px; }

  .lau-faq { padding: 65px 60px; }
  .lau-faq__inner { gap: 48px; }
  .lau-faq__left { flex: 0 0 300px; }

  .lau-footer__grid { padding: 60px 40px 48px; gap: 32px; }
  .lau-footer__bottom { padding: 20px 40px 32px; }
  .lau-footer__big-text { padding-left: 24px; }
}

@media (max-width: 900px) {
  :root { --section-pad-x: 32px; }

  .lau-navbar__inner { padding: 0 24px; }
  .lau-navbar__logo { height: 40px; }
  .lau-navbar__nav { display: none; }
  .lau-navbar__hamburger { display: flex; }

  .lau-hero__content { padding: 48px 32px; }
  .lau-hero__headline { font-size: 48px; line-height: 54px; }
  .lau-hero__subtext1 { font-size: 16px; }
  .lau-hero__subtext2 { font-size: 14px; }
  .lau-hero__stats-row { gap: 24px; flex-direction: column; }

  .lau-cards-grid--2col,
  .lau-cards-grid--3col { grid-template-columns: 1fr; }

  .lau-target-audience .lau-section__inner { padding: 0 24px; }
  .lau-col-gets .lau-section__inner { padding: 0 16px; }
  .lau-col-courses .lau-section__inner { padding: 0 16px; }
  .lau-col-colleges .lau-section__inner { padding: 0 16px; }
  .lau-problem-section .lau-section__inner { padding: 0 24px; }
  .lau-problem-section .lau-cards-grid--3col { grid-template-columns: 1fr; }

  .lau-tool-card { width: calc(50% - 12px); }
  .lau-tools-deepdive .lau-section__inner { padding: 0 16px; }
  .lau-tools-grid { gap: 16px; }

  .lau-review { min-width: 280px; flex: 0 0 280px; }

  .lau-agenda-item { min-height: unset; padding: 20px; }
  .lau-agenda-item__time { font-size: 22px; white-space: normal; letter-spacing: 0px; }
  .lau-agenda-item__pipe { margin: 0 6px; }
  .lau-agenda-item__desc { font-size: 15px; }

  .lau-faq { padding: 48px 24px; }
  .lau-faq__inner { flex-direction: column; gap: 40px; align-items: stretch; }
  .lau-faq__left { flex: none; width: 100%; }
  .lau-faq__right { width: 100%; }
  .lau-faq-list { width: 100%; }
  .lau-faq-item { width: 100%; }
  .lau-faq__left .lau-btn { width: 100%; justify-content: center; }
  .lau-faq__headline { font-size: 36px; }

  .lau-footer__grid { grid-template-columns: 1fr 1fr; padding: 48px 24px 40px; gap: 40px; }
  .lau-footer__brand { grid-column: 1 / -1; }
  .lau-footer__bottom { flex-direction: column; gap: 16px; text-align: center; padding: 20px 24px 28px; }
  .lau-footer__legal { justify-content: center; }
  .lau-footer__big-text { padding-left: 16px; }

  .lau-sticky-bar__inner { padding: 10px 16px; gap: 12px; }
  .lau-sticky-bar__date { font-size: 20px; }
  .lau-sticky-bar__num { font-size: 36px; }
  .lau-sticky-bar__sep { font-size: 36px; padding-bottom: 14px; }
  .lau-sticky-bar__label { font-size: 11px; }
  .lau-sticky-bar__countdown { gap: 4px; }
  .lau-sticky-bar .lau-btn { font-size: 16px; padding: 0 14px; height: 48px; min-width: unset; white-space: nowrap; }
  .lau-sticky-bar .lau-btn__icon { display: none; }
  .lau-sticky-bar__tagline { gap: 2px; flex-direction: column; align-items: flex-start; }
  .lau-sticky-bar__tagline-stat { font-size: 24px; }
  .lau-sticky-bar__tagline-text { font-size: 18px; white-space: normal; line-height: 1.2; }
  .lau-sticky-bar--colleges .lau-btn { min-width: 200px; justify-content: center; font-size: 26px; height: 52px; }
  .lau-sticky-bar--colleges .lau-sticky-bar__inner { padding: 12px 24px; }

  .lau-wa-btn { width: 48px; height: 48px; bottom: 88px; right: 16px; }
  .lau-scroll-top { width: 40px; height: 40px; bottom: 148px; right: 16px; }
  .lau-modal__box { padding: 36px 24px 28px; }
  .lau-modal__title { font-size: 28px; }

  .lau-sale-cta { padding: 24px 16px; }
  .lau-sale-cta__box { padding: 36px 24px; }
  .lau-sale-cta__steps { flex-direction: column; align-items: center; }

  .lau-instructor__header { padding: 0 24px; }
  .lau-instructor__inner { flex-direction: column; padding: 0 24px; }
  .lau-instructor__photo-wrap { width: 100%; }
  .lau-instructor__photo { height: 300px; }
  .lau-instructor__card { padding: 28px 24px; }
  .lau-instructor__stats { justify-content: center; }

  .lau-btn--large { min-width: unset; width: 100%; max-width: 400px; font-size: 22px; }

  .lau-section__headline--split { font-size: 40px; }
  .lau-text--orange-bold { font-size: 22px; }
  .lau-quote-section { padding: 60px 32px; }
  .lau-quote-section__headline { font-size: 40px; line-height: 44px; }
}

/* ===================== COLLEGES PAGE ===================== */

/* Ghost button */
.lau-btn--ghost {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.35);
  color: var(--text-white);
  height: 64px;
}
.lau-btn--ghost:hover { border-color: var(--accent-gold); color: var(--accent-gold); opacity: 1; }

/* --- HERO --- */
.lau-col-hero {
  position: relative;
  padding: 0;
  min-height: 85vh;
  display: flex;
  align-items: center;
}
.lau-col-hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: 0;
}
.lau-col-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(14,10,15,0.25) 0%, rgba(14,10,15,0.45) 100%);
  z-index: 1;
}
.lau-col-hero__inner {
  position: relative; z-index: 2;
  max-width: 1440px; margin: 0 auto;
  padding: 60px 110px;
  display: flex; flex-direction: column;
  align-items: flex-start; gap: 16px;
  width: 100%;
}
.lau-col-hero__headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-style: italic;
  font-size: 80px; line-height: 1.05;
  color: var(--text-white);
  letter-spacing: -1.6px;
  max-width: 900px;
}
.lau-col-hero__body {
  font-family: 'Open Sans', sans-serif;
  font-size: 20px; line-height: 1.7;
  color: rgba(255,255,255,0.8);
  max-width: 680px;
}
.lau-col-hero__ctas {
  display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
  margin-top: 8px;
}
.lau-col-hero__tags {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px;
}
.lau-col-tag {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  padding: 6px 16px;
}

/* --- STATS BAR --- */
.lau-col-stats {
  background: rgba(255,255,255,0.03);
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 40px 0;
}
.lau-col-stats__inner {
  max-width: 1440px; margin: 0 auto;
  padding: 0 110px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 0;
}
.lau-col-stat {
  display: flex; flex-direction: column;
  align-items: center; gap: 6px; flex: 1;
}
.lau-col-stat__num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-style: italic;
  font-size: 48px; line-height: 1;
  color: var(--accent-gold);
  letter-spacing: -1px;
}
.lau-col-stat__label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 16px;
  color: var(--text-muted);
  letter-spacing: 0.6px;
  text-align: center;
}
.lau-col-stats__div {
  width: 1px; height: 56px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* --- WHAT COLLEGES GET --- */
.lau-col-gets__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px; width: 100%; margin-top: 16px;
}
.lau-col-card {
  background: var(--card-bg);
  border-radius: var(--radius-card);
  overflow: hidden;
  padding: 32px 35px;
  display: flex; flex-direction: column; gap: 0;
}
.lau-col-card__icon {
  width: 56px; height: 56px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,181,62,0.12);
  border: 1px solid rgba(255,181,62,0.25);
  color: var(--accent-gold);
  margin-bottom: 12px;
}
.lau-col-card__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-style: italic;
  font-size: 32px; color: var(--text-white);
  letter-spacing: -0.64px;
  line-height: 1.3;
  margin-top: 12px;
}
.lau-col-card__body {
  font-family: 'Open Sans', sans-serif;
  font-size: 20px; line-height: 1.5;
  font-style: italic;
  color: var(--text-white);
  letter-spacing: -0.4px;
  margin-top: 8px;
}

/* --- IMAGE STRIP --- */
.lau-col-image-strip { width: 100%; line-height: 0; }
.lau-col-image-strip__img { width: 100%; height: auto; display: block; object-fit: cover; }

/* --- COURSE OVERVIEW --- */
.lau-col-courses {
  position: relative;
}
.lau-col-courses__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: 0;
}
.lau-col-courses__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(14,10,15,0.82) 0%, rgba(14,10,15,0.92) 100%);
  z-index: 1;
}
.lau-col-courses .lau-section__inner { position: relative; z-index: 2; }
.lau-col-courses__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 32px; width: 100%; margin-top: 16px;
}
.lau-col-course-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; padding: 36px;
  display: flex; flex-direction: column; gap: 16px;
}
.lau-col-course-box--advanced {
  border-color: rgba(255,181,62,0.25);
  background: rgba(255,181,62,0.05);
}
.lau-col-course-box__tag {
  display: inline-block; align-self: flex-start;
  font-family: 'Open Sans', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--text-white);
  background: rgba(255,84,31,0.25);
  border: 1px solid rgba(255,84,31,0.4);
  border-radius: 100px; padding: 5px 14px;
}
.lau-col-course-box__tag--adv {
  background: rgba(255,181,62,0.2);
  border-color: rgba(255,181,62,0.4);
  color: var(--accent-gold);
}
.lau-col-course-box__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-style: italic;
  font-size: 40px; line-height: 1.1;
  color: var(--text-white); letter-spacing: -0.5px;
}
.lau-col-course-box__desc {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px; color: rgba(255,255,255,0.65);
  line-height: 1.6;
}
.lau-col-course-box__meta {
  display: flex; flex-wrap: wrap; gap: 8px 16px;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px; color: rgba(255,255,255,0.75);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 16px;
}
.lau-col-course-box__days {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 16px;
}
.lau-col-course-box__days--3col {
  grid-template-columns: 1fr 1fr 1fr;
}
.lau-col-course-box__days li {
  display: flex; flex-direction: column; gap: 2px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.lau-col-course-box__day-num {
  font-family: 'Open Sans', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--accent-gold);
}
.lau-col-course-box__days li span:last-child {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px; color: rgba(255,255,255,0.85);
  line-height: 1.4;
}
.lau-col-course-box__footer {
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px; margin-top: auto;
}
.lau-col-course-box__price {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-style: italic;
  font-size: 28px; color: var(--text-white);
  letter-spacing: -0.3px; line-height: 1;
}
.lau-col-course-box__price-note {
  font-family: 'Open Sans', sans-serif;
  font-size: 12px; color: rgba(255,255,255,0.45);
  margin-top: 4px;
}

/* --- COLLEGES LIST --- */
.lau-col-colleges__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; width: 100%; margin-top: 16px;
}
.lau-col-college-card {
  background: var(--card-bg);
  border-radius: var(--radius-card);
  overflow: hidden;
  padding: 36px 32px;
  display: flex; flex-direction: column; gap: 10px;
}
.lau-col-college-card__icon { font-size: 40px; line-height: 1; }
.lau-col-college-card__badge {
  display: inline-block; align-self: flex-start;
  font-family: 'Open Sans', sans-serif;
  font-size: 12px; font-weight: 700;
  color: #0AA37F;
  background: rgba(10,163,127,0.12);
  border: 1px solid rgba(10,163,127,0.3);
  border-radius: 100px; padding: 4px 12px;
}
.lau-col-college-card__name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-style: italic;
  font-size: 32px; line-height: 1.2;
  color: var(--text-white); letter-spacing: -0.64px;
  margin-top: 4px;
}
.lau-col-college-card__location {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px; color: rgba(255,255,255,0.45);
}
.lau-col-college-card__branches {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px; font-weight: 600;
  color: var(--accent-gold);
}

/* --- TESTIMONIALS --- */
.lau-col-reviews__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; width: 100%; margin-top: 16px;
}
.lau-col-review {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 32px;
  display: flex; flex-direction: column; gap: 16px;
}
.lau-col-review__stars {
  color: var(--accent-gold); font-size: 18px; letter-spacing: 3px;
}
.lau-col-review__text {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px; line-height: 1.75;
  color: rgba(255,255,255,0.8); flex: 1;
}
.lau-col-review__author {
  display: flex; flex-direction: column; gap: 4px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 16px; margin-top: auto;
}
.lau-col-review__name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-style: italic;
  font-size: 24px; color: var(--accent-gold);
  letter-spacing: 0.2px;
}
.lau-col-review__branch {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px; color: rgba(255,255,255,0.5);
}
.lau-col-review__verified {
  font-family: 'Open Sans', sans-serif;
  font-size: 12px; color: #0AA37F; font-weight: 600;
}

/* --- INQUIRY FORM --- */
.lau-col-inquiry .lau-section__inner { position: relative; z-index: 1; }

.lau-col-inquiry__wrap {
  display: grid; grid-template-columns: 280px 1fr;
  gap: 64px; width: 100%; margin-top: 24px;
  align-items: start;
}
.lau-col-inquiry__contact {
  display: flex; flex-direction: column; gap: 28px;
  padding-top: 8px;
}
.lau-col-contact-item {
  display: flex; align-items: center; gap: 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px; font-weight: 600;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
}
.lau-col-contact-item__icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,181,62,0.12);
  border: 1px solid rgba(255,181,62,0.25);
  color: var(--accent-gold);
}
.lau-col-form { display: flex; flex-direction: column; gap: 20px; }
.lau-col-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.lau-col-form__checks { display: flex; flex-direction: column; gap: 12px; margin-top: 4px; }
.lau-form__textarea { resize: vertical; min-height: 100px; font-family: 'Open Sans', sans-serif; }
.lau-form__select { cursor: pointer; }
.lau-col-form__success {
  display: none;
  background: rgba(10,163,127,0.12);
  border: 1px solid rgba(10,163,127,0.35);
  border-radius: 10px; padding: 16px 20px;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px; color: #0AA37F;
}
.lau-col-form__success.is-visible { display: block; }

/* --- FINAL CTA BANNER --- */
.lau-col-cta-banner {
  background:
    linear-gradient(173.6deg, rgba(0,0,0,0) 12%, rgba(255,60,0,0.3) 115%),
    #272829;
  padding: 80px 110px;
}
.lau-col-cta-banner__inner {
  max-width: 1440px; margin: 0 auto;
  display: flex; flex-direction: column;
  align-items: center; gap: 20px; text-align: center;
}
.lau-col-cta-banner__headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-style: italic;
  font-size: 64px; line-height: 1.1;
  color: #fff; letter-spacing: -1px;
}
.lau-col-cta-banner__sub {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px; color: rgba(255,255,255,0.85);
  max-width: 580px; line-height: 1.6;
}
.lau-col-cta-banner__btns {
  display: flex; gap: 16px; flex-wrap: wrap;
  justify-content: center; margin-top: 8px;
}
.lau-col-cta-banner .lau-btn--ghost { border-color: rgba(255,255,255,0.6); color: #fff; }
.lau-col-cta-banner .lau-btn--ghost:hover { border-color: #fff; opacity: 0.85; }

/* --- HERO WHATSAPP LINE (FIX 4) --- */
.lau-col-hero__wa-line {
  display: inline-block;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #888888;
  text-decoration: none;
  margin-top: 16px;
}
.lau-col-hero__wa-line:hover { color: #aaaaaa; }

/* --- HOW IT WORKS (FIX 3) --- */
.lau-col-hiw__eyebrow {
  font-family: 'Open Sans', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--accent-orange);
  text-align: center;
}
.lau-col-hiw__steps {
  display: flex; align-items: flex-start;
  gap: 0; width: 100%; margin-top: 40px;
}
.lau-col-hiw__step {
  flex: 1;
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  gap: 12px; padding: 0 24px;
}
.lau-col-hiw__num {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--accent-orange);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.lau-col-hiw__icon { font-size: 36px; line-height: 1; }
.lau-col-hiw__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-style: italic;
  font-size: 28px; color: var(--text-white);
  letter-spacing: -0.2px; line-height: 1.2;
}
.lau-col-hiw__body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px; color: var(--text-muted);
  line-height: 1.7;
}
.lau-col-hiw__connector {
  flex-shrink: 0; width: 80px;
  border-top: 2px dashed rgba(255,255,255,0.15);
  margin-top: 20px;
}
/* Colleges HIW overrides — wider box, smaller text, less height */
.lau-col-hiw .lau-sale-cta__box {
  max-width: 1400px;
  padding: 48px 80px;
}
.lau-col-hiw .lau-step__text { font-size: 15px; line-height: 1.6; }
.lau-col-hiw .lau-step { width: 300px; }

.lau-col-hiw__urgency {
  background: rgba(255,181,62,0.08);
  border: 1px solid rgba(255,181,62,0.2);
  border-radius: 8px; padding: 12px 24px;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px; color: var(--accent-gold);
  text-align: center; line-height: 1.6;
  max-width: 600px;
}

/* --- INSTRUCTOR (FIX 2) --- */
.lau-col-instructor__card {
  display: flex; gap: 56px; align-items: flex-start;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 48px;
  width: 100%;
}
.lau-col-instructor__img-wrap { flex-shrink: 0; }
.lau-col-instructor__img {
  width: 280px; max-width: 280px;
  border-radius: 12px; object-fit: cover;
  display: block;
}
.lau-col-instructor__text {
  display: flex; flex-direction: column; gap: 14px;
}
.lau-col-instructor__label {
  font-family: 'Open Sans', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--accent-gold);
}
.lau-col-instructor__name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-style: italic;
  font-size: 40px; color: var(--text-white);
  letter-spacing: -0.5px; line-height: 1.1;
  margin: 0;
}
.lau-col-instructor__title {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px; color: var(--accent-gold);
  margin-top: -6px;
}
.lau-col-instructor__bio {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px; color: var(--text-light);
  line-height: 1.75;
}
.lau-col-instructor__tags {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.lau-col-instructor__wa {
  display: inline-block;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px; font-weight: 600;
  color: #25D366; text-decoration: none;
  margin-top: 4px;
}
.lau-col-instructor__wa:hover { opacity: 0.85; }

/* --- COLLEGES FAQ --- */
.lau-col-faq__list { width: 100%; max-width: 800px; display: flex; flex-direction: column; gap: 12px; }

/* --- FORM NOTE (FIX 1) --- */
.lau-col-form__note {
  font-family: 'Open Sans', sans-serif;
  font-size: 12px; color: var(--text-muted);
  line-height: 1.6; margin-top: 4px;
}

/* --- COLLEGES PAGE MOBILE (≤900px) --- */
@media (max-width: 900px) {
  .lau-col-hero__inner { padding: 80px 24px; }
  .lau-col-hero__headline { font-size: 48px; }
  .lau-col-hero__ctas { flex-direction: column; align-items: flex-start; }
  .lau-col-stats__inner { flex-wrap: wrap; padding: 0 24px; gap: 32px; justify-content: center; }
  .lau-col-stats__div { display: none; }
  .lau-col-stat { flex: 0 0 40%; }
  .lau-col-gets__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .lau-col-card { padding: 20px 18px; gap: 0; }
  .lau-col-card__icon { width: 48px; height: 48px; }
  .lau-col-card__title { font-size: 22px; margin-top: 8px; }
  .lau-col-card__body { font-size: 14px; }
  .lau-col-courses__grid { grid-template-columns: 1fr; }
  .lau-col-course-box__days { grid-template-columns: 1fr 1fr; }
  .lau-col-course-box__days--3col { grid-template-columns: 1fr 1fr; }
  .lau-col-course-box__footer { flex-direction: row; align-items: center; flex-wrap: wrap; gap: 12px; }
  .lau-col-colleges__grid { grid-template-columns: 1fr; }
  .lau-col-reviews__grid { grid-template-columns: 1fr; }
  .lau-col-inquiry__wrap { grid-template-columns: 1fr; gap: 40px; }
  .lau-col-form__row { grid-template-columns: 1fr; }
  .lau-col-cta-banner { padding: 56px 24px; }
  .lau-col-cta-banner__headline { font-size: 40px; }
  .lau-col-cta-banner__btns { flex-direction: column; align-items: center; }

  .lau-col-hiw__steps { flex-direction: column; align-items: center; gap: 32px; }
  .lau-col-hiw__connector { display: none; }
  .lau-col-hiw__step { padding: 0; width: 100%; max-width: 360px; }

  .lau-col-instructor__card { flex-direction: column; padding: 32px 24px; gap: 32px; }
  .lau-col-instructor__img { width: 100%; max-width: 100%; height: 280px; object-fit: cover; }
  .lau-col-instructor__name { font-size: 32px; }
}

/* ===================== MOBILE FIX (covers 360px–480px: all Android & iPhone) ===================== */
@media (max-width: 480px) {

  /* Prevent horizontal overflow globally */
  html, body { overflow-x: hidden; max-width: 100%; }

  /* --- NAVBAR: compact button + logo + hamburger --- */
  .lau-navbar__inner        { padding: 0 12px; }
  .lau-navbar__logo         { height: 30px; flex-shrink: 0; }
  .lau-navbar__right .lau-btn { font-size: 12px; padding: 0 10px; height: 34px; min-width: unset; }
  .lau-nav-text--full       { display: none; }
  .lau-nav-text--short      { display: inline; }
  .lau-icon--hide-mobile    { display: none; }
  .lau-navbar__hamburger    { display: flex; }

  /* --- SECTION INNER: tighter padding on all pages --- */
  .lau-section__inner { padding: 0 16px; }
  .lau-target-audience .lau-section__inner { padding: 0 16px; }
  .lau-problem-section .lau-section__inner { padding: 0 16px; }
  .lau-tools-deepdive .lau-section__inner { padding: 0 16px; }
  .lau-crs-inner { padding: 0 16px; }

  /* --- HERO (home) --- */
  .lau-hero__content { padding: 36px 20px; }
  .lau-hero__headline { font-size: 36px; line-height: 40px; }
  .lau-hero__stats-row { align-items: flex-start; gap: 16px; }
  .lau-stat__number { font-size: 36px; }
  .lau-stat__label { font-size: 13px; }

  /* --- CARDS: fix white-space nowrap overflow --- */
  .lau-card__title { white-space: normal; font-size: 20px; line-height: 1.2; }
  .lau-card__body  { font-size: 16px; }
  .lau-card        { padding: 24px 20px; min-height: unset; }

  /* --- TOOLS STRIP: fix nowrap overflow --- */
  .lau-tools-strip__header { padding: 0 20px; }
  .lau-tools-strip__title  { white-space: normal; font-size: 28px; line-height: 1.2; }
  .lau-tools-strip__subtitle { font-size: 15px; }

  /* --- SALE CTA: reduce huge headline --- */
  .lau-sale-cta__headline { font-size: 36px; }
  .lau-sale-cta__box      { padding: 32px 16px; }

  /* --- COLLEGES: hero & stats --- */
  .lau-col-hero__inner    { padding: 40px 16px; }
  .lau-col-hero__headline { font-size: 40px; }
  .lau-col-stats__inner   { padding: 0 16px; gap: 16px; }
  .lau-col-stat           { flex: 0 0 45%; }
  .lau-col-stat__num      { font-size: 32px; }
  .lau-col-stat__label    { font-size: 13px; }

  /* --- COLLEGES: what colleges get — single column at 360px --- */
  .lau-col-gets__grid  { grid-template-columns: 1fr; }
  .lau-col-card        { padding: 20px 16px; }
  .lau-col-card__title { font-size: 20px; }
  .lau-col-card__body  { font-size: 14px; }

  /* --- COURSE BOX --- */
  .lau-col-course-box { padding: 24px 16px; }

  /* --- COURSES PAGE --- */
  .lau-crs-hero__content    { padding: 40px 16px; }
  .lau-crs-hero__headline   { font-size: 36px; }
  .lau-crs-final-cta        { padding: 48px 16px; }
  .lau-crs-final-cta__headline { font-size: 36px; }

  /* --- CONTACT PAGE --- */
  .lau-con-hero-inner { padding: 40px 16px 60px; }

  /* --- STICKY BAR: date on row 1, countdown + button on row 2 --- */
  .lau-sticky-bar__inner     { flex-wrap: wrap; padding: 6px 12px; gap: 4px; align-items: center; }
  .lau-sticky-bar__date      { flex: 0 0 100%; display: flex; flex-direction: column; gap: 0; }
  .lau-sticky-bar__date-day  { font-size: 14px; font-weight: 700; color: var(--text-white); line-height: 1.3; }
  .lau-sticky-bar__date-time { font-size: 12px; color: rgba(255,255,255,0.75); line-height: 1.3; }
  .lau-sticky-bar__countdown { flex: 0 0 auto; gap: 2px; }
  .lau-sticky-bar__num       { font-size: 18px; }
  .lau-sticky-bar__sep       { font-size: 18px; padding-bottom: 6px; }
  .lau-sticky-bar__label     { font-size: 8px; }
  .lau-sticky-bar .lau-btn   { flex: 1; font-size: 14px; height: 38px; padding: 0 10px; min-width: unset; justify-content: center; }

  /* --- SECTION HEADLINES & BODY: reduce for 360px --- */
  .lau-section__headline         { font-size: 32px; }
  .lau-section__headline--split  { font-size: 36px; }
  .lau-section__headline--large  { font-size: 32px; }
  .lau-section__body             { font-size: 16px; }
  .lau-section__eyebrow          { font-size: 12px; }

  /* --- TOOL CARDS (home deepdive section): 1 column at 360px --- */
  .lau-tool-card        { width: 100%; min-height: unset; padding: 24px 20px; }
  .lau-tool-card__icon  { width: 64px; height: 64px; }
  .lau-tool-card__name  { font-size: 22px; }
  .lau-tool-card__role  { font-size: 18px; }
  .lau-tool-card__desc  { font-size: 14px; }
  .lau-tools-grid       { gap: 16px; padding: 16px 0; }

  /* --- REVIEWS MARQUEE: fix card width --- */
  .lau-review { min-width: 260px; flex: 0 0 260px; padding: 20px; }

  /* --- AGENDA (home session timeline) --- */
  .lau-agenda-item__time { font-size: 18px; }
  .lau-agenda-item__desc { font-size: 13px; }
  .lau-agenda-item       { padding: 16px; }

  /* --- MODAL: ensure fits 360px --- */
  .lau-modal__box   { padding: 28px 16px 24px; margin: 0 8px; }
  .lau-modal__title { font-size: 24px; }

  /* --- FOOTER --- */
  .lau-footer__grid     { padding: 40px 16px 32px; }
  .lau-footer__bottom   { padding: 16px 16px 24px; }
  .lau-footer__big-text { font-size: 38px; padding-left: 12px; }
}
