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

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  color: #000000;
  background: #ffffff;
  overflow-x: hidden;
}

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

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

/* ================================================================
   HERO WRAPPER  (navbar + scattered images share one canvas)
   Canvas reference: 1440 × ~1050px (matches Figma absolute coords)
   ================================================================ */
.hero-wrapper {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  height: 1050px;
  overflow: hidden;
  background: #ffffff;
}

/* ================================================================
   NAVBAR
   ================================================================ */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
  padding: 0px 60px;
}

/* 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 {
  width: 33px;
  height: 33px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.cart-icon:hover {
  opacity: 0.7;
}

/* Login / Enroll button */
.login-btn {
  display: flex;
  flex-direction: row;
  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-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  color: #ffffff;
  transition:
    opacity 0.2s,
    transform 0.15s;
}

.login-btn:hover {
  opacity: 0.9;
  transform: scale(1.03);
}

/* 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;
  }

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

  .navbar-logo img {
    width: 56px;
    height: 31px;
    object-fit: contain;
  }

  /* Hide nav links on mobile */
  .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;
  }

  /* Show hamburger on mobile */
  .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;
  }
}

/* ================================================================
   SCATTERED HERO IMAGES
   All positions are absolute within .hero-wrapper (1440px canvas)
   ================================================================ */
.hero-img {
  position: absolute;
  object-fit: cover;
  border-radius: 14px;
}

/* Rectangle 147 */
.rect-147 {
  width: 198px;
  height: 180px;
  left: 363px;
  top: 70px;
}

/* Rectangle 146 */
.rect-146 {
  width: 174px;
  height: 180px;
  left: 230px;
  top: 158px;
}

/* Rectangle 148 — has border */
.rect-148 {
  width: 151px;
  height: 156px;
  left: 1045px;
  top: 108px;
  border: 0.5px solid #000000;
}

/* Rectangle 150 — small, no radius */
.rect-150 {
  width: 84px;
  height: 58px;
  left: 1301px;
  top: 108px;
  border-radius: 6px;
}

/* Rectangle 149 — large right */
.rect-149 {
  width: 260px;
  height: 273px;
  left: 1133px;
  top: 345px;
}

/* Rectangle 153 — large left (partially off-screen) */
.rect-153 {
  width: 260px;
  height: 273px;
  left: -118px;
  top: 434px;
}

/* Rectangle 156 — center, with border */
.rect-156 {
  width: 126px;
  height: 117px;
  left: 531px;
  top: 648px;
  border: 0.5px solid #000000;
}

/* Rectangle 154 — lower left */
.rect-154 {
  width: 165px;
  height: 128px;
  left: 168px;
  top: 742px;
}

/* Rectangle 151 — lower far right */
.rect-151 {
  width: 168px;
  height: 145px;
  left: 1296px;
  top: 707px;
  border-radius: 0;
}

/* Rectangle 155 — lower center */
.rect-155 {
  width: 216px;
  height: 183px;
  left: 378px;
  top: 828px;
  border-radius: 0;
}

/* Rectangle 152 — lower right, wide */
.rect-152 {
  width: 372px;
  height: 183px;
  left: 877px;
  top: 852px;
}

/* ================================================================
   HERO CONTENT (centred heading + feature tags)
   ================================================================ */
.hero-content {
  position: absolute;
  width: 694px;
  left: calc(50% - 694px / 2);
  top: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  z-index: 10;
}

/* Heading */
.hero-heading {
  width: 694px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 36px;
  line-height: 43px;
  text-align: center;
  color: #000000;
  margin-bottom: 26px;
}

/* Feature row */
.hero-features {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  width: 714px;
  margin-bottom: 36px;
}

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

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

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

/* CTA buttons */
.hero-cta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

.btn-enroll {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  background: linear-gradient(90deg, #1acfff 0%, #0076ff 100%);
  border-radius: 5px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #ffffff;
  border: none;
  cursor: pointer;
  transition:
    opacity 0.2s,
    transform 0.15s;
}

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

.btn-learn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 34px;
  background: transparent;
  border-radius: 5px;
  border: 1.5px solid #0076ff;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #0076ff;
  transition:
    background 0.2s,
    color 0.2s;
}

.btn-learn:hover {
  background: #0076ff;
  color: #fff;
}

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

.section-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600;
  font-size: 36px;
  line-height: 43px;
  color: #000000;
  text-align: center;
  margin-bottom: 12px;
}

.section-subtitle {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #555;
  text-align: center;
  margin-bottom: 56px;
}

.section-label {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #0076ff;
  margin-bottom: 10px;
}

/* ================================================================
   RESULTS SECTION
   ================================================================ */
.results-section {
  padding: 96px 0;
  background: #f7f9fc;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.result-card {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.result-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.13);
}

.result-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.result-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 12px 16px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.65) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
}

.result-tag {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #ffffff;
}

/* ================================================================
   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 {
  flex-shrink: 0;
}

/* 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;
}

/* ================================================================
   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-close-wrap .about-quote-mark {
  transform: rotate(180deg);
  display: block;
}

.about-quote-mark {
  font-family: "Anonymous Pro", monospace;
  font-weight: 700;
  font-size: 128px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #000000;
  user-select: none;
}

.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;
}

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

.who-for-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;
}

.who-for-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 28px;
  margin-bottom: 48px;
}

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

.who-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 310px;
}

.who-card img {
  width: 227px;
  height: 187px;
  object-fit: contain;
  margin-bottom: 24px;
}

.who-card-title {
  font-family: "Segoe UI", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 146%;
  text-align: center;
  letter-spacing: -0.04em;
  color: #000000;
  margin-bottom: 4px;
}

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

@media (max-width: 1024px) {
  .who-for-row {
    flex-wrap: wrap;
  }
}

/* ================================================================
   TESTIMONIALS SECTION
   ================================================================ */
.testimonials-section {
  padding: 96px 0;
  background: #ffffff;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: #f7f9fc;
  border-radius: 14px;
  padding: 28px 26px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid #e8ecf0;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}

.testimonial-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.testimonial-avatar img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #0076ff;
}

.testimonial-text {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #333;
  font-style: italic;
  flex: 1;
}

.testimonial-name {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #000;
}

.testimonial-role {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  color: #0076ff;
  font-weight: 500;
}

/* ================================================================
   CTA BANNER SECTION
   ================================================================ */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(90deg, #1acfff 0%, #0076ff 100%);
}

.cta-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cta-heading {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600;
  font-size: 36px;
  line-height: 43px;
  color: #ffffff;
  max-width: 700px;
}

.cta-sub {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 8px;
}

.cta-btn {
  padding: 16px 48px;
  font-size: 18px;
  background: #ffffff;
  color: #0076ff;
  border-radius: 5px;
  border: none;
  font-weight: 700;
  margin-top: 8px;
}

.cta-btn:hover {
  opacity: 0.92;
  transform: translateY(-2px);
}

/* ================================================================
   BLOGS SECTION
   ================================================================ */
.blogs-section {
  padding: 96px 0;
  background: #f7f9fc;
}

.blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e8ecf0;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}

.blog-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.blog-card > img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.blog-info {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.blog-tag {
  display: inline-block;
  padding: 3px 12px;
  background: #e8f4ff;
  color: #0076ff;
  border-radius: 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  width: fit-content;
}

.blog-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600;
  font-size: 17px;
  line-height: 1.45;
  color: #000;
}

.blog-date {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  color: #999;
}

/* ================================================================
   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%;
}

/* ── 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;
  }
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  width: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Footer SVG visibility */
body:not(.dark-mode) .footer-svg-dark {
  display: none !important;
}
body.dark-mode .footer-svg-light {
  display: none !important;
}

.footer-image {
  width: 80%;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  padding-bottom: 0;
}

.footer-image img {
  width: 100%;
  max-height: 775px;
  object-fit: contain;
}

.footer-image svg {
  width: 100%;
  height: auto;
  display: block;
}

.footer-image .footer-svg-light {
  display: block;
}
.footer-image .footer-svg-dark {
  display: none;
}

body.dark-mode .footer-image .footer-svg-light {
  display: none;
}
body.dark-mode .footer-image .footer-svg-dark {
  display: block;
}

/* ================================================================
   RESPONSIVE — basic 1024px breakpoint
   ================================================================ */
@media (max-width: 1100px) {
  /* Scale hero images proportionally */
  .hero-wrapper {
    height: 820px;
    transform-origin: top left;
  }

  .results-grid,
  .testimonials-grid,
  .blogs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .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;
  }

  .contact-inner {
    grid-template-columns: 1fr;
  }

  /* 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__icon-inner {
  display: block;
  width: 94px;
  height: 94px;
}

.why-card__icon-svg {
  width: 94px;
  height: 94px;
  display: block;
  border-radius: 18px;
  overflow: visible;
}

.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) {
  .results-grid,
  .testimonials-grid,
  .blogs-grid {
    grid-template-columns: 1fr;
  }

  .hero-features {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

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

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

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

  .about-quote-mark {
    font-size: 80px;
  }

  .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;
  }

  /* Footer Image — mobile */
  .footer-image {
    width: calc(100% - 19px);
    max-width: 383px;
  }

  .footer-image img,
  .footer-image svg {
    width: 100%;
    height: 195px;
    object-fit: cover;
    object-position: center;
  }

  .section-title {
    font-size: 28px;
  }

  .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 */
  .hero-wrapper {
    height: 340px !important;
    max-width: 100%;
    overflow: visible;
  }

  /* Scattered images — scaled & repositioned */
  .hero-img {
    border-radius: 3.3px;
  }

  /* rect-147 — CTR keyboard top-left */
  .rect-147 {
    width: 47px;
    height: 42px;
    left: 5%;
    top: 70px;
  }

  /* rect-146 — CPM blocks, below 147 */
  .rect-146 {
    width: 41px;
    height: 42px;
    left: -1.5%;
    top: 108px;
  }

  /* rect-148 — target business, top-right */
  .rect-148 {
    width: 36px;
    height: 37px;
    left: auto;
    right: 5%;
    top: 70px;
    border: 0.12px solid #000000;
  }

  /* rect-150 — small isometric, far right below 148 */
  .rect-150 {
    width: 20px;
    height: 14px;
    left: auto;
    right: 1%;
    top: 118px;
    border-radius: 1.5px;
  }

  /* rect-153 — CAC report, left middle */
  .rect-153 {
    display: block;
    width: 55px;
    height: 58px;
    left: 2%;
    top: 195px;
    border-radius: 3.3px;
  }

  /* rect-156 — emoji/growth icons, right of features */
  .rect-156 {
    display: block;
    width: 40px;
    height: 37px;
    left: auto;
    right: 12%;
    top: 210px;
    border: none;
  }

  /* rect-154 — colorful marketing icons, left lower */
  .rect-154 {
    width: 50px;
    height: 42px;
    left: 3%;
    top: 270px;
  }

  /* rect-155 — puzzle/chart, left bottom */
  .rect-155 {
    width: 50px;
    height: 42px;
    left: 10%;
    top: 310px;
    border-radius: 0;
  }

  /* rect-152 — CPM neon, lower right wide */
  .rect-152 {
    width: 86px;
    height: 42px;
    left: auto;
    right: 2%;
    top: 310px;
    border-radius: 3.3px;
  }

  /* rect-151 — isometric business, right middle */
  .rect-151 {
    width: 39px;
    height: 33px;
    left: auto;
    right: 8%;
    top: 260px;
    border-radius: 0;
  }

  /* rect-149 — hide (too large for mobile) */
  .rect-149 {
    display: none;
  }

  /* Hero content */
  .hero-content {
    width: 85%;
    left: 7.5%;
    top: 110px;
  }

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

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

  .feature-item {
    gap: 4.4px;
  }

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

  .feature-icon svg {
    width: 13px;
    height: 13px;
  }

  .feature-text {
    font-family: "Segoe UI", sans-serif;
    font-weight: 600;
    font-size: 10px;
    line-height: 146%;
    letter-spacing: -0.04em;
    white-space: nowrap;
  }

  /* CTA buttons — hidden on mobile */
  .hero-cta {
    display: none;
  }

  /* ── 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;
  }

  .about-quote-open-wrap svg {
    width: 27px;
    height: 27px;
  }

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

  .about-quote-close-wrap svg {
    width: 27px;
    height: 27px;
  }

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

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

  .about-quote-text {
    font-size: 16px;
    line-height: 127%;
    letter-spacing: -0.04em;
  }

  /* ── 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-overlay-text {
    bottom: 50px;
    width: 83%;
    font-size: 16px;
    line-height: 146%;
    letter-spacing: -0.04em;
  }

  .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;
  }

  .contact-col--business .contact-btn {
    margin-top: 0 !important;
  }

  /* ── 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 fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeSlideLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeSlideRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}
@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;
  }
}
@keyframes parallaxZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.06);
  }
}

/* ── Hero scatter-out keyframe ──
         Images start near center (translated inward), then scatter to final pos.
         --inward-x / --inward-y = vector FROM final position TOWARD center */
@keyframes scatterOut {
  0% {
    opacity: 1;
    transform: translate(var(--inward-x), var(--inward-y)) scale(0.5);
  }
  70% {
    opacity: 1;
    transform: translate(
        calc(var(--inward-x) * -0.08),
        calc(var(--inward-y) * -0.08)
      )
      scale(1.04);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}

/* ── Hero text fade-in (appears AFTER images scatter) ── */
@keyframes heroTextReveal {
  0% {
    opacity: 0;
    transform: scale(0.85);
  }
  60% {
    opacity: 1;
    transform: scale(1.03);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* ── Hero text + CTA: hidden until images finish, then reveal ── */
.hero-heading {
  opacity: 0;
  animation: heroTextReveal 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 0.85s; /* after images finish scattering */
}
.hero-features {
  opacity: 0;
  animation: heroTextReveal 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 0.95s;
}
.hero-cta {
  opacity: 0;
  animation: heroTextReveal 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 1.05s;
}

/* ── Hero images: scatter outward from center on page load ── */
.hero-img {
  animation: scatterOut 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  will-change: transform;
}

/* Per-image inward vectors: direction FROM final pos TOWARD hero center (720, 525).
         Positive --inward-x = image is left of center, needs to move right toward center.
         Positive --inward-y = image is above center, needs to move down toward center. */
.rect-147 {
  --inward-x: 258px;
  --inward-y: 365px;
  animation-delay: 0.05s;
}
.rect-146 {
  --inward-x: 403px;
  --inward-y: 277px;
  animation-delay: 0.03s;
}
.rect-148 {
  --inward-x: -400px;
  --inward-y: 339px;
  animation-delay: 0.05s;
}
.rect-150 {
  --inward-x: -623px;
  --inward-y: 388px;
  animation-delay: 0.02s;
}
.rect-149 {
  --inward-x: -543px;
  --inward-y: 44px;
  animation-delay: 0.06s;
}
.rect-153 {
  --inward-x: 708px;
  --inward-y: -46px;
  animation-delay: 0.04s;
}
.rect-156 {
  --inward-x: 126px;
  --inward-y: -182px;
  animation-delay: 0.01s;
}
.rect-154 {
  --inward-x: 470px;
  --inward-y: -281px;
  animation-delay: 0.07s;
}
.rect-151 {
  --inward-x: -660px;
  --inward-y: -255px;
  animation-delay: 0.03s;
}
.rect-155 {
  --inward-x: 234px;
  --inward-y: -395px;
  animation-delay: 0.05s;
}
.rect-152 {
  --inward-x: -343px;
  --inward-y: -419px;
  animation-delay: 0.02s;
}

/* ── NO hover/float animations — everything stays static after load ── */

/* ── 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);
}
.why-card__number {
  display: block;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: #1acfff;
  line-height: 1;
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}
.why-card:hover .why-card__number {
  transform: translateX(5px);
}

/* ── 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;
}
