/* ================================================================
   ROAS SCHOOL OF MARKETING — Landing Page Styles
   ================================================================ */

/* ── Reset & Base ── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Montserrat", sans-serif;
  color: #000000;
  background: #ffffff;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  width: 100%;
}

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

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

/* ================================================================
   HERO WRAPPER
   ================================================================ */
.hero-wrapper {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  overflow: hidden;
  background: #ffffff;
}

/* ================================================================
   NAVBAR
   ================================================================ */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 60px;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 900;
  background: #fff;
  box-sizing: border-box;
}

/* Logo */
.navbar-logo img {
  width: 110px;
  height: 80px;
  object-fit: contain;
}

/* Nav links */
.navbar-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 42px;
}

.navbar-links a {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  color: #000000;
  white-space: nowrap;
  transition: color 0.2s;
}

.navbar-links a:hover {
  color: #0076ff;
}

/* Actions (cart + login) */
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cart-icon {
  cursor: pointer;
}

.cart-icon svg {
  width: 33px;
  height: 33px;
}

/* Login / Enroll button */
.login-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  background: linear-gradient(90deg, #1acfff 0%, #0076ff 100%);
  border-radius: 5px;
  border: none;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: #ffffff;
  transition: opacity 0.2s;
}

.login-btn:hover {
  opacity: 0.9;
}

/* Hamburger menu — hidden on desktop */
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 24px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger-menu span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #374957;
  border-radius: 2px;
  transition: all 0.3s ease;
}

@media (max-width: 1024px) {
  .navbar {
    padding: 20px 30px;
  }

  .navbar-links {
    gap: 24px;
  }

  .navbar-links a {
    font-size: 16px;
  }

  .login-btn {
    font-size: 16px;
    padding: 8px 16px;
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
  }

  .navbar-logo {
    width: 100%;
    text-align: center;
  }

  .navbar-links {
    gap: 16px;
  }

  .navbar-links a {
    font-size: 14px;
  }
}

/* ── Mobile Navbar (≤480px) — matches Figma Frame 67 ── */
@media (max-width: 480px) {
  .navbar {
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 8px 20px;
    gap: 0;
    background: #ffffff;
    box-shadow: 0px 4px 12.3px rgba(8, 164, 255, 0.51);
    height: 53px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 900;
    box-sizing: border-box;
  }

  .navbar-logo {
    width: auto;
    text-align: left;
  }

  .navbar-logo img {
    width: 74px;
    height: 60px;
    object-fit: contain;
  }

  .navbar-links {
    display: none;
  }

  .navbar-actions {
    gap: 10px;
    align-items: center;
  }

  .cart-icon {
    width: 17px;
    height: 17px;
  }

  .cart-icon svg {
    width: 17px;
    height: 17px;
  }

  .login-btn {
    font-family: "Lexend", sans-serif;
    font-weight: 600;
    font-size: 8px;
    line-height: 10px;
    padding: 5px 10px;
    border-radius: 31px;
  }

  .hamburger-menu {
    display: flex;
  }

  .hamburger-menu span {
    width: 20px;
    height: 2px;
  }
}

/* ── Mobile Menu Overlay & Drawer ── */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.open {
  display: block;
  opacity: 1;
}

.mobile-menu-drawer {
  display: none;
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100%;
  background: #ffffff;
  z-index: 1000;
  flex-direction: column;
  padding: 70px 30px 30px;
  gap: 0;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  transition: right 0.3s ease;
}

.mobile-menu-drawer.open {
  right: 0;
}

.mobile-menu-drawer a {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #000000;
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
  text-decoration: none;
  transition: color 0.2s;
}

.mobile-menu-drawer a:hover {
  color: #0076ff;
}

.mobile-menu-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  color: #374957;
  cursor: pointer;
  line-height: 1;
  padding: 5px;
}

/* Hamburger active state (X animation) */
.hamburger-menu.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

@media (max-width: 480px) {
  .mobile-menu-drawer {
    display: flex;
  }
}

/* ================================================================
   HERO CONTENT (centred heading + feature tags)
   ================================================================ */
.hero-content {
  position: relative;
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
}

/* Heading */
.hero-heading {
  margin-top: 5vw;
  width: 100%;
  max-width: 1024px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 48.57px;
  line-height: 58px;
  text-align: center;
  color: #000000;
  margin-bottom: 24px;
}

/* Colored keyword highlights */
.hero-highlight-pink {
  color: #FF69B4;
  font-style: italic;
}

.hero-highlight-purple {
  color: #C77DFF;
  font-style: italic;
}

.hero-highlight-cyan {
  color: #00D4FF;
  font-style: italic;
}

/* Feature row */
.hero-features {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 0;
}

.feature-item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 6px;
}

.feature-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon img {
  width: 20px;
  height: 20px;
  display: block;
}

.feature-text {
  font-family: "Bricolage Grotesque", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 146%;
  letter-spacing: -0.04em;
  color: #000000;
  white-space: nowrap;
}

/* ================================================================
   HERO IMAGES ROW — 3 person cards with colored backgrounds
   ================================================================ */
.hero-images-row {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 20px;
  overflow: visible;
}

/* Each person card: stacked bg rect + person photo */
.hero-person {
  position: relative;
  flex: 0 0 auto;
}

/* Person photos */
.hero-person__img {
  position: relative;
  z-index: 2;
  display: block;
  object-fit: cover;
}

/* ── Person 1 — Left (pink bg, rounded corners, slight skew) ── */
.hero-person--left {
  width: 320px;
  height: 420px;
}

.hero-person--left .hero-person__img {
  width: 320px;
  height: 390px;
  border-radius: 20px;
  object-fit: cover;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* ── Person 2 — Center (purple bg, slight tilt) ── */
.hero-person--center {
  width: 320px;
  height: 460px;
  z-index: 3;
  margin-bottom: -30px;
}

.hero-person--center .hero-person__img {
  width: 320px;
  height: 430px;
  border-radius: 20px;
  object-fit: cover;
  position: absolute;
  bottom: 0;
}

/* ── Person 3 — Right (cyan bg, slight tilt) ── */
.hero-person--right {
  width: 320px;
  height: 420px;
}

.hero-person--right .hero-person__img {
  width: 320px;
  height: 400px;
  border-radius: 20px;
  object-fit: cover;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* ================================================================
   SHARED SECTION HELPERS
   ================================================================ */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ================================================================
   COURSES SECTION  (Figma-matched carousel design)
   ================================================================ */
.courses-section {
  padding: 80px 0 96px;
  background: #ffffff;
}

/* Section heading */
.courses-section-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  line-height: 146%;
  text-align: center;
  letter-spacing: -0.04em;
  color: #000000;
  margin-bottom: 48px;
}

/* ── 3-column static grid ── */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ── Individual card (Figma: 389 × 513px) ── */
.course-card-v2 {
  background: #ffffff;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.12);
  border-radius: 9.52px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}

.course-card-v2:hover {
  box-shadow: 0 0 28px rgba(0, 0, 0, 0.18);
  transform: translateY(-3px);
}

/* Thumbnail (Figma: 389 × 195px) */
.course-card-v2__thumb {
  width: 100%;
  aspect-ratio: 389 / 195;
  overflow: hidden;
  border-radius: 9.52px 9.52px 0 0;
  flex-shrink: 0;
}

.course-card-v2__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Body — padding mirrors Figma left offset (561-528 = 32px) */
.course-card-v2__body {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 22px 28px 28px;
  flex: 1;
}

.course-card-v2__top {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

/* Title (Figma: Segoe UI 600 27px -4% ls) */
.course-card-v2__title {
  font-family: "Segoe UI", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 22px;
  line-height: 146%;
  letter-spacing: -0.04em;
  color: #000000;
}

/* Meta row: clock + certificate */
.course-card-v2__meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
}

.course-card-v2__meta-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  font-family: "Segoe UI", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 146%;
  letter-spacing: -0.04em;
  color: #000000;
}

.course-card-v2__meta-item svg,
.course-card-v2__meta-item img {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

/* Description (Figma: Segoe UI 400 19px -4% ls) */
.course-card-v2__desc {
  font-family: "Segoe UI", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 146%;
  letter-spacing: -0.04em;
  color: #000000;
  flex: 1;
}

/* "Get Started" pill button (Figma: Rectangle 145 border-radius 66px) */
.course-card-v2__btn {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  padding: 7px 20px;
  border: 1px solid #000000;
  border-radius: 66px;
  font-family: "Segoe UI", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 146%;
  letter-spacing: -0.04em;
  color: #000000;
  text-decoration: none;
  width: fit-content;
  transition:
    background 0.2s,
    color 0.2s;
}

.course-card-v2__btn:hover {
  background: #000000;
  color: #ffffff;
}

.course-card-v2__btn:hover svg path {
  stroke: #ffffff;
}

.course-card-v2__btn:hover img {
  filter: brightness(0) invert(1);
}

.course-card-v2__btn img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: filter 0.2s;
}

/* ================================================================
   ABOUT SECTION  (Figma redesign)
   ================================================================ */
.about-section {
  padding: 80px 0 100px;
  background: #ffffff;
}

/* ── Section Title ── */
.about-section-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  line-height: 146%;
  text-align: center;
  letter-spacing: -0.04em;
  color: #000000;
  margin-bottom: 56px;
}

/* ── Top row: image left + text right ── */
.about-top {
  display: grid;
  grid-template-columns: 541fr 624fr;
  gap: 72px;
  align-items: flex-start;
  margin-bottom: 72px;
}

.about-top-image img {
  width: 100%;
  aspect-ratio: 541 / 317;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0px 4px 44px 19px rgba(55, 73, 87, 0.37);
  display: block;
}

.about-top-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-top-text p {
  font-family: "Segoe UI", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 146%;
  letter-spacing: -0.04em;
  color: #000000;
}

.about-top-text p strong {
  font-weight: 700;
}

/* ── Quote block ── */
.about-quote-outer {
  position: relative;
  max-width: 1034px;
  margin: 0 auto;
  padding: 40px 0;
}

.about-quote-open-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
  position: absolute;
  left: -18px;
  top: -10px;
  z-index: 2;
  background: #ffffff;
}

.about-quote-close-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
  position: absolute;
  right: -18px;
  bottom: -10px;
  z-index: 2;
  background: #ffffff;
}

.about-quote-box {
  border: 3px solid #000000;
  border-radius: 32px;
  padding: 36px 80px 36px 230px;
  display: flex;
  align-items: center;
  position: relative;
  min-height: 196px;
  background: #ffffff;
}

.about-quote-avatar {
  position: absolute;
  left: 70px;
  top: 50%;
  transform: translateY(-50%);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #d0d7e0;
}

.about-quote-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.about-quote-text {
  font-family: "Segoe UI", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 127%;
  letter-spacing: -0.04em;
  color: #000000;
}

/* ================================================================
   CONTACT SECTION  (Figma redesign)
   ================================================================ */
.contact-section {
  padding: 80px 0 96px;
  background: #ffffff;
}

/* Section heading — Bricolage Grotesque 600 40px */
.contact-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  line-height: 146%;
  text-align: center;
  letter-spacing: -0.04em;
  color: #000000;
  margin-bottom: 56px;
}

/* ── Two-column layout with divider ── */
.contact-columns {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 1052px;
  margin: 0 auto;
}

/* Each column */
.contact-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
  padding: 0 48px;
}

/* Column heading — Segoe UI 700 32px */
.contact-col-heading {
  font-family: "Segoe UI", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 146%;
  text-align: center;
  letter-spacing: -0.04em;
  color: #000000;
  margin: 0;
}

/* Column description — Segoe UI 400 24px */
.contact-col-desc {
  font-family: "Segoe UI", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 146%;
  text-align: center;
  letter-spacing: -0.04em;
  color: #000000;
  max-width: 376px;
  margin: 0;
}

/* ── Vertical divider line ── */
.contact-divider {
  width: 2px;
  height: 234px;
  background: #000000;
  flex-shrink: 0;
  align-self: center;
}

/* ── CTA Buttons shared base ── */
.contact-btn {
  display: inline-flex;
  text-decoration: none;
  cursor: pointer;
  transition:
    opacity 0.2s,
    transform 0.15s;
}

.contact-btn:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

.contact-col--learners .contact-btn img {
  width: 404px;
  height: auto;
  max-width: 100%;
}

.contact-col--business .contact-btn img {
  width: 372px;
  height: auto;
  max-width: 100%;
}

/* Schedule-call button — desktop top offset (replaces former inline style) */
.contact-btn--schedule {
  margin-top: 1.65rem;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .contact-col--learners .contact-btn img {
    width: 340px;
  }

  .contact-col--business .contact-btn img {
    width: 320px;
  }

  .contact-col {
    padding: 0 32px;
  }
}

@media (max-width: 768px) {
  .contact-title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .contact-columns {
    flex-direction: column;
    align-items: center;
    gap: 48px;
  }

  .contact-divider {
    width: 234px;
    height: 2px;
    align-self: center;
  }

  .contact-col {
    padding: 0 16px;
    width: 100%;
  }

  .contact-col-heading {
    font-size: 26px;
  }

  .contact-col-desc {
    font-size: 18px;
  }

  .contact-col--learners .contact-btn img,
  .contact-col--business .contact-btn img {
    width: 100%;
    max-width: 380px;
  }
}

/* ================================================================
   MIND BEHIND ROAS SCHOOL OF MARKETING — SECTION
   ================================================================ */
.mind-behind-section {
  padding: 80px 0 96px;
  background: #ffffff;
}

/* Section heading */
.mind-behind-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  line-height: 146%;
  text-align: center;
  letter-spacing: -0.04em;
  color: #000000;
  margin-bottom: 16px;
}

/* Subtitle */
.mind-behind-subtitle {
  font-family: "Segoe UI", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 146%;
  text-align: center;
  letter-spacing: -0.04em;
  color: #000000;
  margin-bottom: 48px;
}

/* The grey rounded card container — Rectangle 163 */
.mind-behind-card {
  background: #f2f2f2;
  border-radius: 35px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 48px;
  padding: 48px 54px;
  max-width: 1232px;
  margin: 0 auto;
}

/* Left text column */
.mind-behind-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mind-behind-text p {
  font-family: "Segoe UI", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 146%;
  text-align: justify;
  letter-spacing: -0.04em;
  color: #000000;
}

.mind-behind-text p strong {
  font-weight: 700;
}

/* Right image column */
.mind-behind-image {
  flex-shrink: 0;
  width: 424px;
}

.mind-behind-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: top center;
  border-radius: 37px;
  display: block;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .mind-behind-card {
    flex-direction: column;
    padding: 40px 36px;
    gap: 36px;
  }

  .mind-behind-image {
    width: 100%;
  }

  .mind-behind-image img {
    height: 360px;
  }

  .mind-behind-title {
    font-size: 32px;
  }

  .mind-behind-subtitle {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .mind-behind-section {
    padding: 56px 0 64px;
  }

  .mind-behind-title {
    font-size: 26px;
  }

  .mind-behind-subtitle {
    font-size: 17px;
    margin-bottom: 32px;
  }

  .mind-behind-card {
    border-radius: 22px;
    padding: 28px 20px;
    gap: 28px;
  }

  .mind-behind-text p {
    font-size: 16px;
  }

  .mind-behind-image img {
    height: 280px;
  }
}

/* ================================================================
   MOVEMENT SECTION  (Group 11 — Figma)
   ================================================================ */
.movement-section {
  padding: 80px 0 88px;
  background: #ffffff;
}

/* ── Image wrapper — positions the blur overlay + text on top ── */
.movement-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 1225px;
  margin: 0 auto 48px;
  border-radius: 18px;
  overflow: hidden;
  line-height: 0; /* removes gap under inline img */
}

.movement-main-img {
  width: 100%;
  height: 681px;
  object-fit: cover;
  object-position: center top;
  border-radius: 18px;
  display: block;
}

/* ── Body text below the image ── */
.movement-body-text {
  max-width: 1226px;
  margin: 0 auto 40px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  line-height: 146%;
  text-align: center;
  letter-spacing: -0.04em;
  color: #000000;
}

/* Gradient "MOVEMENT" highlight */
.movement-highlight {
  background: linear-gradient(90deg, #1acfff 0%, #0076ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

/* ── CTA button row ── */
.movement-cta {
  display: flex;
  justify-content: center;
}

.movement-btn {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 8px 25px;
  gap: 10px;
  background: linear-gradient(90deg, #1acfff 0%, #0076ff 100%);
  border-radius: 9.67px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 28px;
  line-height: 146%;
  text-align: center;
  letter-spacing: -0.04em;
  text-transform: capitalize;
  color: #ffffff;
  text-decoration: none;
  transition:
    opacity 0.2s,
    transform 0.15s;
}

.movement-btn:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .movement-main-img {
    height: 480px;
  }

  .movement-body-text {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .movement-section {
    padding: 56px 0 64px;
  }

  .movement-main-img {
    height: 320px;
  }

  .movement-body-text {
    font-size: 24px;
    margin-bottom: 32px;
  }

  .movement-btn {
    font-size: 20px;
    padding: 8px 20px;
  }
}

@media (max-width: 480px) {
  .movement-main-img {
    height: 220px;
  }

  .movement-body-text {
    font-size: 20px;
  }

  .movement-btn {
    font-size: 18px;
  }
}

/* ================================================================
   SITE FOOTER
   ================================================================ */

.site-footer {
  width: 100%;
  background: #ffffff;
  padding: 60px 8vw 100px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 300px;
}

.footer-logo {
  height: 60px;
  scale: 3.5;
  width: auto;
  object-fit: contain;
}

.footer-logo.logo-light {
  display: block;
}

.footer-logo.logo-dark {
  display: none;
}

.footer-tagline {
  font-family: 'Lexend', sans-serif;
  font-size: 14px;
  color: #000000;
  opacity: 0.8;
  margin-top: 30px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links-title,
.footer-contact-title {
  font-family: 'Lexend', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 8px;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-list li a {
  font-family: 'Lexend', sans-serif;
  font-size: 16px;
  color: #000000;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links-list li a:hover {
  color: #08A4FF;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-phone,
.footer-contact-email {
  font-family: 'Lexend', sans-serif;
  font-size: 14px;
  color: #000000;
}

.footer-contact-email a {
  color: #08A4FF;
  text-decoration: none;
}

.footer-contact-email a:hover {
  text-decoration: underline;
}

.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(8, 164, 255, 0.2);
  text-align: center;
}

.footer-bottom p {
  font-family: 'Lexend', sans-serif;
  font-size: 14px;
  color: #000000;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .site-footer {
    padding: 40px 5vw 20px;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .footer-brand {
    align-items: center;
  }

  .footer-links {
    align-items: center;
  }

  .footer-links-list {
    align-items: center;
  }

  .footer-contact {
    align-items: center;
  }
}

@media (max-width: 480px) {
  .site-footer {
    padding: 30px 5vw 100px;
  }

  .footer-logo {
    height: 50px;
  }

  .footer-links-title,
  .footer-contact-title {
    font-size: 16px;
  }

  .footer-links-list li a {
    font-size: 14px;
  }

  .footer-bottom {
    margin-top: 25px;
  }

}

/* ================================================================
   RESPONSIVE — basic 1024px breakpoint
   ================================================================ */
@media (max-width: 1100px) {
  .hero-wrapper {
    padding-bottom: 20px;
  }

  .hero-images-row {
    gap: 15px;
  }

  .hero-person--left {
    width: 260px;
    height: 340px;
  }
  .hero-person--left .hero-person__img {
    width: 260px;
    height: 310px;
  }

  .hero-person--center {
    width: 260px;
    height: 370px;
  }
  .hero-person--center .hero-person__img {
    width: 260px;
    height: 340px;
  }

  .hero-person--right {
    width: 260px;
    height: 340px;
  }
  .hero-person--right .hero-person__img {
    width: 260px;
    height: 310px;
  }

  .hero-heading {
    font-size: 36px;
    line-height: 44px;
  }

  .feature-text {
    font-size: 17px;
  }

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

  .about-top-image img {
    aspect-ratio: auto;
    height: 280px;
  }

  .about-quote-box {
    padding: 32px 40px 32px 180px;
  }

  /* Grid: show 2 cards on tablet */
  .courses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ================================================================
   SO WHAT MAKES US DIFFERENT — SECTION
   ================================================================ */
.differences-section {
  padding: 80px 0 60px;
  background: #ffffff;
}

.differences-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 146%;
  letter-spacing: -0.04em;
  text-align: center;
  color: #000000;
  margin-bottom: 80px;
}

.differences-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 80px;
  column-gap: 40px;
  max-width: 1052px;
  margin: 0 auto;
}

.diff-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.diff-card img {
  height: 180px;
  width: auto;
  object-fit: contain;
}

.diff-text {
  font-family: "Segoe UI", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 146%;
  text-align: center;
  letter-spacing: -0.04em;
  color: #000000;
  max-width: 320px;
  margin: 0;
}

.diff-text strong {
  font-weight: 700;
}

/* ================================================================
   WHO IS ROAS SCHOOL FOR — SECTION
   ================================================================ */
.who-for-section {
  padding: 80px 0 80px;
  background: #ffffff;
}

.who-for-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 146%;
  letter-spacing: -0.04em;
  text-align: center;
  color: #000000;
  margin-bottom: 56px;
}

.who-for-row {
  display: flex;
  justify-content: center;
  column-gap: 80px;
  row-gap: 60px;
  flex-wrap: wrap;
}

.who-for-row--top {
  margin-bottom: 80px;
}

/* 2 cards centered - .who-for-row--bottom */

.who-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  width: 320px;
}

.who-card img {
  height: 200px;
  width: auto;
  object-fit: contain;
}

.who-card-title {
  font-family: "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 146%;
  letter-spacing: -0.04em;
  color: #000000;
  margin: 0;
}

.who-card-text {
  font-family: "Segoe UI", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 146%;
  letter-spacing: -0.04em;
  text-align: center;
  color: #000000;
  max-width: 320px;
  margin: 0;
}

/* ================================================================
   WHY ROAS SCHOOL OF MARKETING — SECTION
   ================================================================ */
.why-roas-section {
  padding: 80px 0 88px;
  background: #ffffff;
}

.why-roas-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  line-height: 146%;
  text-align: center;
  letter-spacing: -0.04em;
  color: #000000;
  margin-bottom: 16px;
}

.why-roas-subtitle {
  font-family: "Segoe UI", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 146%;
  text-align: center;
  letter-spacing: -0.04em;
  color: #000000;
  margin-bottom: 64px;
}

.why-roas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 64px;
  max-width: 1100px;
  margin: 0 auto;
}

.why-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.why-card__icon {
  width: 94px;
  height: 94px;
  flex-shrink: 0;
}

.why-card__title {
  font-family: "Segoe UI", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 146%;
  letter-spacing: -0.04em;
  color: #000000;
  margin: 0;
}

.why-card__text {
  font-family: "Segoe UI", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 146%;
  letter-spacing: -0.04em;
  color: #000000;
  margin: 0;
}

/* ================================================================
   RESPONSIVE — DIFFERENCES & WHO-FOR
   ================================================================ */
@media (max-width: 1024px) {
  .differences-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 32px;
  }

  .differences-title,
  .who-for-title {
    font-size: 32px;
  }

  .why-roas-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 40px;
  }

  .why-roas-title {
    font-size: 32px;
  }

  .why-roas-subtitle {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .differences-section {
    padding: 56px 0 40px;
  }

  .differences-title,
  .who-for-title {
    font-size: 30px;
    margin-bottom: 36px;
  }

  .differences-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 48px;
    column-gap: 24px;
  }

  .diff-text {
    font-size: 25px;
  }

  .who-card-text {
    font-size: 22px;
  }

  .who-card {
    width: 280px;
  }

  .who-for-row {
    row-gap: 40px;
  }

  .why-roas-section {
    padding: 56px 0 60px;
  }

  .why-roas-title {
    font-size: 26px;
    margin-bottom: 12px;
  }

  .why-roas-subtitle {
    font-size: 17px;
    margin-bottom: 40px;
  }

  .why-roas-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 24px;
  }

  .why-card__title {
    font-size: 20px;
  }

  .why-card__text {
    font-size: 16px;
  }
}

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

  .who-for-row--top,
  .who-for-row--bottom {
    flex-direction: column;
    align-items: center;
  }

  .who-card {
    width: 100%;
    max-width: 280px;
  }

  .why-roas-grid {
    grid-template-columns: 1fr;
  }

  .why-roas-title {
    font-size: 22px;
  }

  .why-roas-subtitle {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .hero-features {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    width: fit-content;
    margin: 0 auto;
  }

  .hero-heading {
    font-size: 32px;
    line-height: 40px;
  }

  .hero-images-row {
    gap: 10px;
  }

  .hero-person--left {
    width: 200px;
    height: 280px;
  }
  .hero-person--left .hero-person__img {
    width: 200px;
    height: 250px;
    border-radius: 15px;
  }

  .hero-person--center {
    width: 200px;
    height: 310px;
  }
  .hero-person--center .hero-person__img {
    width: 200px;
    height: 280px;
  }

  .hero-person--right {
    width: 200px;
    height: 280px;
  }
  .hero-person--right .hero-person__img {
    width: 200px;
    height: 250px;
  }

  .about-quote-outer {
    padding: 30px 16px;
  }

  .about-quote-open-wrap {
    left: 0px;
    top: -20px;
  }

  .about-quote-close-wrap {
    right: 0px;
    bottom: -20px;
  }

  .about-quote-box {
    padding: 24px 24px 24px 100px;
    border-radius: 20px;
    min-height: auto;
  }

  .about-quote-avatar {
    width: 72px;
    height: 72px;
    left: 16px;
  }

  .about-quote-text {
    font-size: 18px;
  }

  .about-section-title {
    font-size: 33px;
    margin-bottom: 36px;
  }

  .hero-heading {
    font-size: 26px;
    line-height: 34px;
  }

  /* Grid: show 1 card on mobile */
  .courses-section-title {
    font-size: 24px;
  }

  .courses-grid {
    grid-template-columns: 1fr;
  }
}

/* ================================================================
   FAQ SECTION
   ================================================================ */
.faq-section {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 20px 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.faq-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  line-height: 146%;
  text-align: center;
  letter-spacing: -0.04em;
  color: #000000;
  margin-bottom: 48px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 925px;
}

.faq-card {
  width: 100%;
  background: #ffffff;
  box-shadow: 3px 4px 16px rgba(0, 0, 0, 0.65);
  border-radius: 16px;
  padding: 17px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.faq-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.faq-question {
  font-family: "Bricolage Grotesque", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 146%;
  letter-spacing: -0.04em;
  color: #000000;
}

.faq-answer {
  font-family: "Bricolage Grotesque", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 146%;
  letter-spacing: -0.04em;
  color: #000000;
}

@media (max-width: 768px) {
  .faq-title {
    font-size: 28px;
  }

  .faq-question {
    font-size: 18px;
  }

  .faq-answer {
    font-size: 16px;
  }

  .faq-card {
    padding: 14px 18px;
  }
}

/* ================================================================
   MOBILE HERO — ≤480px (placed last for cascade priority)
   Matches Figma Frame 67 / 402px canvas
   ================================================================ */
@media (max-width: 480px) {
  /* Hero wrapper */
  body {
    padding-top: 53px;
  }

  .hero-wrapper {
    max-width: 100%;
    overflow: hidden;
    padding-bottom: 0;
  }

  /* Ellipse 19 — large white circle with blue glow */
  .hero-wrapper::before {
    content: "";
    position: absolute;
    width: 956px;
    height: 763px;
    left: -280px;
    top: -258px;
    background: #ffffff;
    box-shadow: 0px 4px 10.2px rgba(6, 138, 255, 0.18);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
  }

  /* Hero content */
  .hero-content {
    width: 332px;
    max-width: 90%;
    padding-top: 10px;
    z-index: 10;
  }

  .hero-heading {
    width: 100%;
    font-family: "Bricolage Grotesque", sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 29px;
    text-align: center;
    margin-top: 34px;
    margin-bottom: 11px;
  }

  .hero-features {
    width: fit-content;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
    margin: 0 auto;
    gap: 6px;
    margin-bottom: 0;
  }

  .feature-item {
    gap: 4.38px;
  }

  .feature-icon {
    width: 13.23px;
    height: 13.23px;
  }

  .feature-icon svg,
  .feature-icon img {
    width: 13.23px;
    height: 13.23px;
  }

  .feature-text {
    font-family: "Bricolage Grotesque", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 146%;
    letter-spacing: -0.04em;
    white-space: nowrap;
  }

  /* Hero images row — mobile: overlapping layout */
  .hero-images-row {
    position: relative;
    width: 100%;
    max-width: 408px;
    height: 226px;
    margin: 12px auto 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 0;
    overflow: visible;
  }

  .hero-person {
    position: absolute;
  }

  /* ── Person 1 — Left (pink bg, girl with glasses) ── */
  .hero-person--left {
    width: 171px;
    height: 221px;
    left: -3px;
    bottom: 0;
    z-index: 2;
  }
  .hero-person--left .hero-person__img {
    width: 159px;
    height: 200px;
    border-radius: 122px;
    object-fit: cover;
    position: absolute;
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%) matrix(0.99, 0.13, -0.07, 1, 0, 0);
  }

  /* ── Person 2 — Center (purple bg, Indian guy) ── */
  .hero-person--center {
    width: 172px;
    height: 254px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    z-index: 3;
    margin-bottom: 0;
  }
  .hero-person--center .hero-person__img {
    width: 147px;
    height: 228px;
    border-radius: 20px;
    object-fit: cover;
    position: absolute;
    bottom: 0;
    transform: translateX(-50%);
  }

  /* ── Person 3 — Right (cyan bg, thumbs up girl) ── */
  .hero-person--right {
    width: 176px;
    height: 229px;
    right: -3px;
    left: auto;
    bottom: 0;
    z-index: 2;
  }

  .hero-person--right .hero-person__img {
    width: 176px;
    height: 229px;
    border-radius: 20px;
    object-fit: cover;
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%) matrix(1, -0.1, 0.07, 1, 0, 0);
  }

  /* ── About Section — mobile ── */
  .about-section {
    padding: 40px 0 50px;
  }

  .about-section-title {
    font-family: "Bricolage Grotesque", sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 115%;
    text-align: center;
    letter-spacing: -0.04em;
    color: #000000;
    margin-bottom: 24px;
    width: 234px;
    margin-left: auto;
    margin-right: auto;
  }

  .about-top {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
  }

  .about-top-image img {
    width: 334px;
    max-width: 100%;
    height: 195px;
    aspect-ratio: auto;
    object-fit: cover;
    border-radius: 2.2px;
    box-shadow: 0px 0.89px 9.88px 4.23px rgba(55, 73, 87, 0.37);
    margin: 0 auto;
    display: block;
  }

  .about-top-text {
    gap: 16px;
    padding: 0 20px;
  }

  .about-top-text p {
    font-family: "Segoe UI", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 146%;
    letter-spacing: -0.04em;
    color: #000000;
  }

  /* ── Quote block — mobile ── */
  .about-quote-outer {
    max-width: 335px;
    margin: 0 auto;
    padding: 20px 0;
  }

  .about-quote-open-wrap {
    left: -5px;
    top: -5px;
    padding: 3.2px;
    width: 40px;
    height: 40px;
  }

  .about-quote-close-wrap {
    right: -5px;
    bottom: -5px;
    padding: 3.2px;
    width: 40px;
    height: 40px;
  }

  .about-quote-box {
    border: 0.96px solid #000000;
    border-radius: 10.2px;
    padding: 20px 20px 20px 110px;
    min-height: 140px;
  }

  .about-quote-avatar {
    width: 80px;
    height: 80px;
    left: 16px;
  }

  .about-quote-text {
    font-size: 14px;
    line-height: 150%;
    letter-spacing: -0.02em;
  }

  /* ── Why Roas Section — mobile ── */
  .why-roas-section {
    padding: 40px 0 48px;
  }

  .why-roas-title {
    font-family: "Bricolage Grotesque", sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 146%;
    text-align: center;
    letter-spacing: -0.04em;
    color: #000000;
    margin-bottom: 0px;
    width: 344px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .why-roas-subtitle {
    font-family: "Segoe UI", sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 115%;
    text-align: center;
    letter-spacing: -0.04em;
    color: #000000;
    margin-bottom: 32px;
    width: 312px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .why-roas-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 341px;
    margin: 0 auto;
  }

  .why-card {
    align-items: flex-start;
    gap: 8px;
  }

  .why-card__icon {
    width: 94px;
    height: 94px;
  }

  .why-card__icon img {
    width: 94px;
    height: 94px;
    object-fit: contain;
  }

  .why-card__title {
    font-family: "Segoe UI", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 146%;
    letter-spacing: -0.04em;
    color: #000000;
  }

  .why-card__text {
    font-family: "Segoe UI", sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 146%;
    letter-spacing: -0.04em;
    color: #000000;
  }

  /* ── Mind Behind Section — mobile ── */
  .mind-behind-section {
    padding: 40px 0 48px;
  }

  .mind-behind-section .section-container {
    padding: 0;
  }

  .mind-behind-title {
    font-family: "Bricolage Grotesque", sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 115%;
    text-align: center;
    letter-spacing: -0.04em;
    color: #000000;
    margin-bottom: 10px;
    width: 306px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 16px;
  }

  .mind-behind-subtitle {
    font-family: "Segoe UI", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 115%;
    text-align: center;
    letter-spacing: -0.04em;
    color: #000000;
    margin-bottom: 35px;
    width: 306px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 16px;
  }

  .mind-behind-card {
    flex-direction: column-reverse;
    border-radius: 35px;
    padding: 36px 24px 41px 24px;
    gap: 32px;
    max-width: 100%;
    width: 100%;
    margin: 0;
  }

  .mind-behind-image {
    width: 100%;
    max-width: 305px;
    margin: 0 auto;
  }

  .mind-behind-image img {
    width: 100%;
    max-width: 305px;
    height: 342px;
    border-radius: 37px;
    object-fit: cover;
    object-position: top center;
  }

  .mind-behind-text {
    gap: 16px;
  }

  .mind-behind-text p {
    font-family: "Segoe UI", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 146%;
    text-align: justify;
    letter-spacing: -0.04em;
    color: #000000;
  }

  /* ── Movement Section — mobile ── */
  .movement-section {
    padding: 40px 0 48px;
  }

  .movement-section .section-container {
    padding: 0;
  }

  .movement-image-wrapper {
    max-width: 100%;
    margin: 0 auto 32px;
    border-radius: 18px;
  }

  .movement-main-img {
    width: 100%;
    height: 377px;
    object-fit: cover;
    object-position: center top;
    border-radius: 18px;
  }

  .movement-body-text {
    font-family: "Bricolage Grotesque", sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 146%;
    text-align: center;
    letter-spacing: -0.04em;
    color: #000000;
    margin: 0 auto 24px;
    max-width: 310px;
    padding: 0 16px;
  }

  .movement-btn {
    font-family: "Bricolage Grotesque", sans-serif;
    font-weight: 500;
    font-size: 28px;
    line-height: 146%;
    padding: 8px 25px;
    border-radius: 9.67px;
    width: 298px;
    max-width: calc(100% - 32px);
  }

  /* ── Contact Section — mobile ── */
  .contact-section {
    padding: 40px 0 48px;
  }

  .contact-title {
    font-family: "Bricolage Grotesque", sans-serif;
    font-weight: 600;
    font-size: 30px;
    line-height: 146%;
    text-align: center;
    letter-spacing: -0.04em;
    color: #000000;
    margin-bottom: 10px;
  }

  .contact-columns {
    flex-direction: column;
    align-items: center;
    gap: 60px;
    max-width: 315px;
    margin: 0 auto;
  }

  .contact-divider {
    display: none;
  }

  .contact-col {
    padding: 0;
    gap: 20px;
    width: 100%;
  }

  .contact-col-heading {
    font-family: "Segoe UI", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 146%;
    text-align: center;
    letter-spacing: -0.04em;
    color: #000000;
  }

  .contact-col-desc {
    font-family: "Segoe UI", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 146%;
    text-align: center;
    letter-spacing: -0.04em;
    color: #000000;
    max-width: 280px;
  }

  .contact-col--learners .contact-btn img {
    width: 301px;
    max-width: 100%;
    height: auto;
  }

  .contact-col--business .contact-btn img {
    width: 280px;
    max-width: 100%;
    height: auto;
  }

  /* ── FAQ Section — mobile ── */
  .faq-section {
    padding: 40px 0 48px;
  }

  .faq-title {
    font-family: "Bricolage Grotesque", sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 146%;
    text-align: center;
    letter-spacing: -0.04em;
    color: #000000;
    margin-bottom: 35px;
  }

  .faq-list {
    gap: 25px;
    max-width: 357px;
    padding: 0 16px;
  }

  .faq-card {
    box-shadow: 1.16px 1.54px 6.18px rgba(0, 0, 0, 0.65);
    border-radius: 6.18px;
    padding: 7px 10px;
  }

  .faq-inner {
    gap: 4px;
    padding: 0px !important;
  }

  /* Force all FAQs expanded on mobile — no accordion */
  .faq-question {
    font-family: "Bricolage Grotesque", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 146%;
    letter-spacing: -0.04em;
    color: #000000 !important;
  }

  /* Hide the + toggle on mobile */
  .faq-question::after {
    display: none !important;
  }

  /* Force answers always visible on mobile */
  .faq-answer {
    max-height: none !important;
    overflow: visible !important;
    padding: 0 !important;
    font-family: "Bricolage Grotesque", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 146%;
    letter-spacing: -0.04em;
    color: #000000 !important;
  }

  /* Disable hover color change on mobile */
  .faq-card:hover .faq-question {
    color: #000000 !important;
  }
}

/* Moved from inline style */
/* ============================================================
         ANIMATION SYSTEM — internal, layered on top of landingPage.css
         ============================================================ */

/* ── Keyframes ── */
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-8px);
  }
  60% {
    transform: translateY(-4px);
  }
}
@keyframes wiggle {
  0%,
  100% {
    transform: rotate(0deg);
  }
  20% {
    transform: rotate(-12deg);
  }
  40% {
    transform: rotate(12deg);
  }
  60% {
    transform: rotate(-8deg);
  }
  80% {
    transform: rotate(8deg);
  }
}
@keyframes ripple {
  0% {
    transform: scale(0);
    opacity: 0.6;
  }
  100% {
    transform: scale(4);
    opacity: 0;
  }
}
/* ── Hero text fade-in ── */
@keyframes heroTextReveal {
  0% {
    opacity: 0;
    transform: scale(0.85);
  }
  60% {
    opacity: 1;
    transform: scale(1.03);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* ── Hero text reveal animations ── */
.hero-heading {
  opacity: 0;
  animation: heroTextReveal 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 0.15s;
}
.hero-features {
  opacity: 0;
  animation: heroTextReveal 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 0.3s;
}

/* ── Hero person images: fade-in + slide-up on load ── */
.hero-person {
  opacity: 0;
  transform: translateY(40px);
  animation: heroPersonReveal 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.hero-person--left {
  animation-delay: 0.4s;
}
.hero-person--center {
  animation-delay: 0.55s;
}
.hero-person--right {
  animation-delay: 0.7s;
}

@keyframes heroPersonReveal {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Course cards — scroll-triggered stagger ── */
.course-card-v2 {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease,
    box-shadow 0.35s ease;
}
.course-card-v2.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.course-card-v2:nth-child(1).animate-in {
  transition-delay: 0s;
}
.course-card-v2:nth-child(2).animate-in {
  transition-delay: 0.15s;
}
.course-card-v2:nth-child(3).animate-in {
  transition-delay: 0.3s;
}

.course-card-v2:hover {
  transform: translateY(-10px) !important;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18) !important;
}
.course-card-v2:hover .course-card-v2__thumb img {
  transform: scale(1.07);
  transition: transform 0.45s ease;
}
.course-card-v2__thumb img {
  transition: transform 0.45s ease;
}

/* "Get Started" button press */
.course-card-v2__btn:active {
  transform: scale(0.94) !important;
  transition: transform 0.1s ease !important;
}

/* ── About section: image from left, text from right ── */
.about-top-image {
  opacity: 0;
  transform: translateX(-50px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.about-top-image.animate-in {
  opacity: 1;
  transform: translateX(0);
}
.about-top-image:hover img {
  filter: drop-shadow(0 0 22px rgba(0, 118, 255, 0.4)) !important;
}
.about-top-text {
  opacity: 0;
  transform: translateX(50px);
  transition:
    opacity 0.7s ease 0.2s,
    transform 0.7s ease 0.2s;
}
.about-top-text.animate-in {
  opacity: 1;
  transform: translateX(0);
}
.about-quote-outer {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease 0.3s,
    transform 0.7s ease 0.3s;
}
.about-quote-outer.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* ── Differences grid icons pop-in + hover ── */
.diff-card {
  opacity: 0;
  transform: scale(0.8);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
  text-align: center;
}
.diff-card.animate-in {
  opacity: 1;
  transform: scale(1);
}
.diff-card:hover img {
  animation: bounce 0.6s ease forwards;
}
.diff-card:hover .diff-text {
  color: #3a4c66;
}
.diff-text {
  transition: color 0.3s ease;
}

/* ── Who-for grid fade bottom-up + image scale hover ── */
.who-card {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.who-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.who-card:hover img {
  transform: scale(1.05);
  transition: transform 0.35s ease;
}
.who-card img {
  transition: transform 0.35s ease;
}

/* ── Why-ROAS boxes: fade in + cyan border hover + number shift ── */
.why-card {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease,
    box-shadow 0.3s ease,
    border 0.3s ease;
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 28px 24px;
}
.why-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.why-card:hover {
  border-color: #1acfff;
  box-shadow: 0 0 0 3px rgba(26, 207, 255, 0.25);
}
/* ── Mind-Behind (Founder): fade-in, image colour on hover ── */
.mind-behind-card {
  opacity: 0;
  transition: opacity 0.8s ease;
}
.mind-behind-card.animate-in {
  opacity: 1;
}
.mind-behind-image img {
  transition: filter 0.5s ease;
  filter: saturate(0.6) brightness(0.95);
}
.mind-behind-section:hover .mind-behind-image img {
  filter: saturate(1) brightness(1);
}

/* ── Movement CTA: parallax zoom + glass hover ── */
.movement-main-img {
  animation-timeline: scroll();
  transition: transform 0.3s ease;
}
.movement-image-wrapper {
  overflow: hidden;
  border-radius: 24px;
}
.movement-image-wrapper:hover .movement-main-img {
  transform: scale(1.04);
}
.movement-btn {
  position: relative;
  overflow: hidden;
  transition:
    box-shadow 0.3s ease,
    transform 0.2s ease;
}
.movement-btn:hover {
  box-shadow:
    0 0 0 6px rgba(26, 207, 255, 0.35),
    0 8px 32px rgba(0, 118, 255, 0.35);
  transform: translateY(-2px);
}
.movement-btn:active {
  transform: scale(0.96) !important;
}
.movement-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transform: scale(0);
  pointer-events: none;
}
.movement-btn:active::after {
  animation: ripple 0.5s ease-out forwards;
}
.movement-section {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.movement-section.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* ── Contact: left slides left, right slides right ── */
.contact-col--learners {
  opacity: 0;
  transform: translateX(-50px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.contact-col--learners.animate-in {
  opacity: 1;
  transform: translateX(0);
}
.contact-col--business {
  opacity: 0;
  transform: translateX(50px);
  transition:
    opacity 0.65s ease 0.15s,
    transform 0.65s ease 0.15s;
}
.contact-col--business.animate-in {
  opacity: 1;
  transform: translateX(0);
}

/* WhatsApp button wiggle icon */
.contact-col--learners .contact-btn:hover img {
  animation: wiggle 0.5s ease;
}
.contact-col--business .contact-btn:hover img {
  filter: brightness(0.85);
  transition: filter 0.3s ease;
}

/* ── FAQ accordion ── */
.faq-card {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease,
    box-shadow 0.3s ease;
  border: 1px solid #e8ecf0;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
  background: #fff;
}
.faq-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.faq-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

/* FAQ toggle — replace static reveal with accordion behaviour */
.faq-inner {
  cursor: pointer;
  padding: 24px 28px;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Segoe UI", sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #000;
  transition: color 0.3s ease;
  user-select: none;
}
.faq-card:hover .faq-question {
  color: #0076ff;
}
.faq-question::after {
  content: "+";
  font-size: 24px;
  font-weight: 300;
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.4s ease;
  display: inline-block;
}
.faq-card.open .faq-question::after {
  transform: rotate(45deg);
}
.faq-answer {
  font-family: "Segoe UI", sans-serif;
  font-size: 16px;
  color: #444;
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.45s ease,
    padding 0.3s ease;
  padding: 0 28px;
}
.faq-card.open .faq-answer {
  max-height: 300px;
  padding: 0 28px 24px;
}

/* ── Stagger delays for repeated elements ── */
.diff-card:nth-child(1).animate-in {
  transition-delay: 0s;
}
.diff-card:nth-child(2).animate-in {
  transition-delay: 0.08s;
}
.diff-card:nth-child(3).animate-in {
  transition-delay: 0.16s;
}
.diff-card:nth-child(4).animate-in {
  transition-delay: 0.24s;
}
.diff-card:nth-child(5).animate-in {
  transition-delay: 0.32s;
}
.diff-card:nth-child(6).animate-in {
  transition-delay: 0.4s;
}

.who-card:nth-child(1).animate-in {
  transition-delay: 0s;
}
.who-card:nth-child(2).animate-in {
  transition-delay: 0.1s;
}
.who-card:nth-child(3).animate-in {
  transition-delay: 0.2s;
}

.why-card:nth-child(1).animate-in {
  transition-delay: 0s;
}
.why-card:nth-child(2).animate-in {
  transition-delay: 0.1s;
}
.why-card:nth-child(3).animate-in {
  transition-delay: 0.2s;
}
.why-card:nth-child(4).animate-in {
  transition-delay: 0.3s;
}
.why-card:nth-child(5).animate-in {
  transition-delay: 0.4s;
}
.why-card:nth-child(6).animate-in {
  transition-delay: 0.5s;
}

.faq-card:nth-child(1).animate-in {
  transition-delay: 0s;
}
.faq-card:nth-child(2).animate-in {
  transition-delay: 0.1s;
}
.faq-card:nth-child(3).animate-in {
  transition-delay: 0.2s;
}
.faq-card:nth-child(4).animate-in {
  transition-delay: 0.3s;
}
.faq-card:nth-child(5).animate-in {
  transition-delay: 0.4s;
}
.faq-card:nth-child(6).animate-in {
  transition-delay: 0.5s;
}
