*,
*::before,
*::after {
  box-sizing: border-box;
}

/* ---------------------------------------------------------------------
   2. Design tokens
   --------------------------------------------------------------------- */
:root {
  /* Brand palette */
  --r180-periwinkle: #4e5af4;
  --r180-white: #ffffff;
  --r180-surface: #fafafe;
  --r180-green: #7ede9d;
  --r180-tint: #eff0fe;
  --r180-ink: #0a0e2e;
  --r180-muted: #52566f;

  /* Layout */
  --r180-container: 1240px;
  --r180-gutter: 20px;
}


html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Archivo" !important;
  color: var(--r180-ink);
  background: var(--r180-white);
}

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


body.r180-no-scroll {
  overflow: hidden;
}

.container {
  width: var(--r180-container);
  max-width: 100%;
  margin-inline: auto;
  padding-inline: var(--r180-gutter);
}

.d-flex {
  display: flex;
}

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

.justify-content-between {
  justify-content: space-between;
}

.text-white {
  color: var(--r180-white);
}

/* ---------------------------------------------------------------------
   5. FAQ (shared base — extended by .faq-v2 below)
   --------------------------------------------------------------------- */
.faq-section {
  background-color: #fff;
}

.faq-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #E5E7EB;
  margin-bottom: 1rem;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1F2937;
  margin: 0;
  padding-right: 2rem;
}

.faq-icon {
  min-width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  color: #4E5AF4;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  opacity: 0;
  transform: translateY(-10px);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
  transform: translateY(0);
  padding-bottom: 1.5rem;
}

.faq-answer p {
  margin: 0;
  color: #4B5563;
  font-size: 17px;
  line-height: 1.6;
}

/* ---------------------------------------------------------------------
   6. Components
   --------------------------------------------------------------------- */

/* =====================================================================
   Header — transparent over hero, sticky-on-scroll-up (Figma 723-98663)
   Default: absolute & transparent (scrolls away with the page).
   .is-fixed  : fixed to top with surface background (added on scroll up).
   .is-hidden : slid out of view (added while scrolling down).
   ===================================================================== */
.r180-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: transform 0.35s ease, background-color 0.3s ease,
    box-shadow 0.3s ease;
}

.r180-header.is-fixed {
  position: fixed;
  background: rgba(250, 250, 254, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 6px 24px rgba(10, 14, 46, 0.07);
}

.r180-header.is-hidden {
  transform: translateY(-100%);
}

.r180-header__bar {
  max-width: 1440px;
  margin-inline: auto;
  padding: 16px 120px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.r180-header__logo {
  display: inline-flex;
  flex-shrink: 0;
}

.r180-header__logo img {
  height: 24px;
  width: auto;
  display: block;
}

.r180-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.r180-nav__item {
  position: relative;
}

.r180-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font: 500 16px/1 "Archivo", sans-serif;
  letter-spacing: -0.32px;
  color: var(--r180-ink);
  text-decoration: none;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: color 0.18s ease;
}

.r180-nav__link:hover,
.r180-nav__link:focus-visible {
  color: var(--r180-periwinkle);
}

.r180-nav__chevron {
  display: inline-flex;
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.r180-nav__item.is-open .r180-nav__chevron {
  transform: rotate(180deg);
}

/* Book a demo button */
.r180-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  padding: 12px 24px;
  border-radius: 80px;
  background: var(--r180-periwinkle);
  color: #fff;
  font: 500 16px/1 "Archivo", sans-serif;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.r180-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.r180-btn:hover,
.r180-btn:focus-visible {
  background: #3f47ce;
}

.r180-btn--block {
  width: 100%;
  justify-content: center;
}

/* Solutions mega-dropdown */
.r180-solutions {
  position: absolute;
  top: calc(100% + 18px);
  left: 0%;
  transform: translateX(0%) translateY(8px);
  width: 424px;
  max-width: calc(100vw - 48px);
  display: grid;
  grid-template-columns: repeat(1, 3fr);
  gap: 8px;
  padding: 12px;
  background: #fff;
  border: 1px solid #e6e8f4;
  border-radius: 16px;
  box-shadow: 0 24px 48px rgba(10, 14, 46, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.r180-nav__item.is-open .r180-solutions {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0%) translateY(0);
}

.r180-solutions__card {
  display: flex;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  text-decoration: none;
  transition: background-color 0.15s ease;
}

.r180-solutions__card:hover {
  background: var(--r180-tint);
}

.r180-solutions__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--r180-tint);
  color: var(--r180-periwinkle);
}

.r180-solutions__icon svg {
  width: 22px;
  height: 22px;
}

.r180-solutions__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.r180-solutions__title {
  font: 500 15px/1.3 "Archivo", sans-serif;
  color: var(--r180-ink);
}

.r180-solutions__desc {
  font: 400 13px/1.4 "Archivo", sans-serif;
  color: var(--r180-muted);
}

/* Hamburger + drawer hidden on desktop */
.r180-header__toggle {
  display: none;
}

.r180-backdrop,
.r180-drawer {
  display: none;
}

/* ----------------------- Mobile header / drawer ----------------------- */
@media (max-width: 991px) {
  .r180-header__bar {
    padding: 12px 20px;
    gap: 16px;
  }

  .r180-nav {
    display: none;
  }

  .r180-header__bar>.r180-btn {
    display: none;
  }

  .r180-header__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 0;
    background: none;
    border: 0;
    color: var(--r180-ink);
    cursor: pointer;
  }

  .r180-header__toggle svg {
    width: 26px;
    height: 26px;
  }

  .r180-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1100;
    background: rgba(10, 14, 46, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .r180-backdrop.is-open {
    opacity: 1;
    visibility: visible;
  }

  .r180-drawer {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(360px, 86vw);
    padding: 20px;
    z-index: 1200;
    background: #fff;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
  }

  .r180-drawer.is-open {
    transform: translateX(0);
  }

  .r180-drawer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
  }

  .r180-drawer__logo img {
    height: 24px;
    width: auto;
    display: block;
  }

  .r180-drawer__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    background: none;
    color: var(--r180-ink);
    cursor: pointer;
  }

  .r180-drawer__close svg {
    width: 22px;
    height: 22px;
  }

  .r180-drawer__nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
  }

  .r180-drawer__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 8px;
    padding: 14px 8px;
    font: 500 17px/1.2 "Archivo", sans-serif;
    color: var(--r180-ink);
    text-decoration: none;
    background: none;
    border: 0;
    cursor: pointer;
    border-bottom: 1px solid #eef0f8;
  }

  .r180-drawer__chevron {
    display: inline-flex;
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
  }

  .r180-drawer__item.is-open .r180-drawer__chevron {
    transform: rotate(180deg);
  }

  .r180-drawer__panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease;
  }

  .r180-drawer__item.is-open .r180-drawer__panel {
    grid-template-rows: 1fr;
  }

  .r180-drawer__panel-inner {
    overflow: hidden;
  }

  .r180-drawer__sublist {
    list-style: none;
    margin: 0;
    padding: 8px 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .r180-drawer__subcard {
    display: flex;
    gap: 12px;
    padding: 10px 8px;
    border-radius: 10px;
    text-decoration: none;
  }

  .r180-drawer__subcard:hover {
    background: var(--r180-tint);
  }

  .r180-drawer__subtitle {
    display: block;
    font: 500 15px/1.3 "Archivo", sans-serif;
    color: var(--r180-ink);
  }

  .r180-drawer__subdesc {
    display: block;
    font: 400 13px/1.4 "Archivo", sans-serif;
    color: var(--r180-muted);
  }

  .r180-drawer .r180-btn {
    margin-top: 12px;
  }
}

/* =====================================================================
   Hero — light surface + gradient glow, text left / video right
   (Figma 723-98690)
   ===================================================================== */
.hero {
  position: relative;
  overflow: visible;
  padding-top: 76px;
}

main {
  background: url('/assets/images/home/gradient.png');
  background-size: 100% auto;
  background-position-x: left;
  background-position-y: top;
  background-repeat: no-repeat;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin-inline: auto;
  display: flex;
  align-items: stretch;
  gap: 64px;
  padding: 32px 168px 56px;
}

#about .hero__inner {
  align-items: center;
}

#education .hero__inner {
  max-width: 1240px;
  padding: 48px 20px;
  align-items: center;
  gap: 40px;

  .hero__desc {
    width: 100%;
    max-width: unset;
  }
}

.hero__text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 48px;
  padding: 32px 0;
}

.hero__copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

#hiring .hero__inner {
  max-width: 1240px;
  padding: 48px 20px;
  align-items: center;
  gap: 1rem;

  .hero__desc {
    width: 100%;
    max-width: unset;
  }

  .hero-image {
    max-width: 600px;
  }
}


#about .hero__copy, #hiring .hero__copy {
  gap: 0;

  .hero__eyebrow {
    margin-bottom: 24px;
  }

  .hero__title {
    margin-bottom: 12px;
    font-size: 64px;
  }

  .hero__desc {
    margin-bottom: 32px;
  }
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font: 500 16px/1 "Archivo", sans-serif;
  letter-spacing: -0.32px;
  color: var(--r180-periwinkle);
}

.hero__eyebrow svg {
  width: 14px;
  height: 16px;
}

.hero__title {
  margin: 0;
  font: 600 72px/80px "Archivo", sans-serif;
  letter-spacing: -2.16px;
  color: var(--r180-ink);
}

.hero__title .accent {
  color: var(--r180-periwinkle);
}

.hero__desc {
  margin: 0;
  max-width: 535px;
  font: 400 18px/1.45 "Archivo", sans-serif;
  letter-spacing: -0.36px;
  color: var(--r180-ink);
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 20px 40px;
  border-radius: 80px;
  background: var(--r180-periwinkle);
  border: 1px solid #fff;
  box-shadow: 0 4px 4px rgba(71, 90, 111, 0.25);
  color: #fff;
  font: 600 20px/24px "Archivo", sans-serif;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.hero__btn svg {
  width: 20px;
  height: 20px;
}

.hero__btn:hover,
.hero__btn:focus-visible {
  background: #3f47ce;
}

/* Client logos marquee inside hero */
.hero__logos {
  position: relative;
  height: 48px;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.hero__logos-track {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: hero-logos-scroll 28s linear infinite;
}

.hero__logos:hover .hero__logos-track {
  animation-play-state: paused;
}

.hero__logos img {
  flex-shrink: 0;
  width: auto;
  opacity: 0.75;
}

.hero__logos img {
  height: 50%;
}

@keyframes hero-logos-scroll {
  to {
    transform: translate(-50%, -50%);
  }
}

/* Video card */
.hero__media {
  position: relative;
  flex-shrink: 0;
  width: 494px;
  height: 645px;
  border: 3px solid #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 18px 8px rgba(141, 163, 192, 0.25);
}

.hero__media-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(0, 0, 0, 0) 76%, rgba(0, 0, 0, 0.4) 100%);
}

.hero__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  z-index: 2;
  transition: transform 0.2s ease;
}

.hero__play:hover {
  transform: translate(-50%, -50%) scale(1.06);
}

.hero__play img,
.hero__play svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hero__media-logo {
  position: absolute;
  right: 29px;
  bottom: 29px;
  width: 130px;
  height: auto;
  z-index: 2;
}

/* -------------------------------- Hero responsive -------------------- */
@media (max-width: 1199px) {
  .hero__inner {
    padding: 32px 64px 48px;
    gap: 48px;
  }

  .hero__title {
    font-size: 60px;
    line-height: 66px;
    letter-spacing: -1.6px;
  }

  .hero__media {
    width: 420px;
    height: 560px;
  }
}

@media (max-width: 991px) {
  .hero {
    padding-top: 68px;
  }

  .hero__inner {
    flex-direction: column;
    align-items: stretch;
    padding: 24px 24px 40px;
    gap: 40px;
  }

  .hero__text {
    padding: 16px 0 0;
    gap: 32px;
  }

  .hero__title {
    font-size: 44px;
    line-height: 50px;
    letter-spacing: -1.2px;
  }

  .hero__desc {
    font-size: 16px;
    max-width: none;
  }

  .hero__media {
    width: 100%;
    max-width: 460px;
    height: 460px;
    margin-inline: auto;
  }

  .hero__btn {
    font-size: 18px;
    padding: 16px 32px;
  }
}

@media (max-width: 560px) {
  .hero__title {
    font-size: 36px;
    line-height: 42px;
  }

  .hero__media {
    height: 380px;
  }

  .hero__logos-track {
    gap: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__logos-track {
    animation: none;
  }
}

/* =====================================================================
   Video modal (Figma 176-32275 — dark overlay + player)
   ===================================================================== */
.hero-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.hero-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.hero-modal__dialog {
  position: relative;
  width: min(960px, 100%);
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 16px;
  overflow: visible;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  transform: translateY(12px) scale(0.98);
  transition: transform 0.25s ease;
}

.hero-modal.is-open .hero-modal__dialog {
  transform: translateY(0) scale(1);
}

.hero-modal__video {
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  display: block;
  object-fit: contain;
  background: #000;
}

.hero-modal__close {
  position: absolute;
  top: 0;
  right: -1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  transition: background 0.18s ease;
  background: none;
  box-shadow: none;
  outline: none;
  border: none;
}

.hero-modal__close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.hero-modal__close svg {
  width: 18px;
  height: 18px;
  display: block;
}

@media (max-width: 640px) {
  .hero-modal__close {
    top: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.5);
  }
}


/* =====================================================================
   BRAND REFRESH v2 — Quote / testimonial (Figma 176-27641)
   ===================================================================== */
.quote-v2 {
  /* background: #fafafe; */
  padding: 80px 120px;
  font-family: "Archivo", "Montserrat", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

.quote-v2__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
  max-width: 768px;
  margin: 0;
  text-align: center;
}

.quote-v2__mark {
  display: block;
  line-height: 0;
  color: #e4e5fd;
}

.quote-v2__mark svg {
  width: 38px;
  height: 28px;
  display: block;
}

.quote-v2__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.quote-v2__text {
  margin: 0;
  font-weight: 400;
  font-size: 28px;
  line-height: 40px;
  color: #0a0e2e;
}

.quote-v2__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.quote-v2__name {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -0.4px;
  color: #161937;
}

.quote-v2__role {
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  color: #4e5af4;
}

.quote-v2__divider {
  width: 100%;
  max-width: 768px;
  height: 1px;
  background: #e4e5fd;
}

@media (max-width: 991px) {
  .quote-v2 {
    padding: 56px 20px 0;
    gap: 48px;
  }

  .quote-v2__text {
    font-size: 22px;
    line-height: 32px;
  }

  .quote-v2__name {
    font-size: 18px;
  }
}


/* =====================================================================
   Shared eyebrow label (sparkle + periwinkle text)
   ===================================================================== */
.r180-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font: 500 16px/1 "Archivo", sans-serif;
  letter-spacing: -0.32px;
  color: var(--r180-periwinkle);
}

.r180-eyebrow svg {
  width: 14px;
  height: 16px;
  flex-shrink: 0;
}

/* =====================================================================
   The challenge — heading + 3 problem cards (Figma 723-108314)
   ===================================================================== */
.challenge-v2 {
  background: var(--r180-surface);
  padding: 80px 120px;
}

.challenge-v2__inner {
  max-width: 1200px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

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

.challenge-v2__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.challenge-v2__title {
  margin: 0;
  font: 600 40px/48px "Archivo", sans-serif;
  color: var(--r180-ink);
}

.challenge-v2__desc {
  margin: 0;
  max-width: 900px;
  font: 300 18px/24px "Archivo", sans-serif;
  color: var(--r180-muted);
}

.challenge-v2__row {
  display: flex;
  gap: 16px;
  align-items: stretch;
}

.challenge-v2__card {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 32px;
  background: var(--r180-white);
  border: 1px solid var(--r180-border, #e6e8f4);
  border-radius: 10px;
}

.challenge-v2__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--r180-tint);
}

.challenge-v2__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.challenge-v2__card-title {
  margin: 0;
  font: 500 24px/28px "Archivo", sans-serif;
  letter-spacing: -0.6px;
  color: var(--r180-ink);
}

.challenge-v2__card-desc {
  margin: 0;
  font: 400 16px/24px "Archivo", sans-serif;
  color: var(--r180-muted);
}

/* What you get — two rows of cards under a centred heading */
.challenge-v2__title .accent {
  color: var(--r180-periwinkle);
}

.whatyou__grid {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (max-width: 991px) {
  .challenge-v2 {
    padding: 64px 40px;
  }

  .challenge-v2__title {
    font-size: 32px;
    line-height: 40px;
  }

  .challenge-v2__row {
    flex-wrap: wrap;
  }

  .challenge-v2__card {
    flex: 1 1 280px;
  }
}

@media (max-width: 640px) {
  .challenge-v2 {
    padding: 48px 20px;
  }

  .challenge-v2__row {
    flex-direction: column;
  }
}

/* =====================================================================
   What R180 gives you — alternating feature rows (Figma 723-108361)
   ===================================================================== */
.feature-v2 {
  background: linear-gradient(180deg, #f9f9fe 0%, #ffffff 100%);
  padding: 80px 120px;
  overflow: hidden;
}

.feature-v2__rows {
  max-width: 1200px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 120px;
}

.feature-v2__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 72px;
}

.feature-v2__row--reverse {
  flex-direction: row-reverse;
}

.feature-v2__text {
  flex: 1 1 578px;
  max-width: 578px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.feature-v2__intro {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-v2__eyebrow {
  margin: 0;
  font: 500 16px/1 "Archivo", sans-serif;
  letter-spacing: -0.32px;
  color: var(--r180-periwinkle);
}

.feature-v2__copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.feature-v2__title {
  margin: 0;
  font: 600 40px/48px "Archivo", sans-serif;
  color: var(--r180-ink);
}

.feature-v2__desc {
  margin: 0;
  font: 300 18px/24px "Archivo", sans-serif;
  color: var(--r180-muted);
}

.feature-v2__points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.feature-v2__point {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.feature-v2__point--wide {
  grid-column: 1 / -1;
}

.feature-v2__check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
}

.feature-v2__point-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.feature-v2__point-title {
  margin: 0;
  font: 600 18px/28px "Archivo", sans-serif;
  letter-spacing: -0.36px;
  color: var(--r180-periwinkle);
}

.feature-v2__point-desc {
  margin: 0;
  font: 300 16px/24px "Archivo", sans-serif;
  color: var(--r180-muted);
}

.feature-v2__media {
  flex: 0 0 550px;
  width: 550px;
  height: 570px;
  border-radius: 24px;
  overflow: hidden;
}

.feature-v2__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 991px) {
  .feature-v2 {
    padding: 64px 40px;
  }

  .feature-v2__rows {
    gap: 80px;
  }

  .feature-v2__row,
  .feature-v2__row--reverse {
    flex-direction: column;
    gap: 40px;
  }

  .feature-v2__text {
    flex-basis: auto;
    max-width: none;
    width: 100%;
  }

  .feature-v2__title {
    font-size: 32px;
    line-height: 40px;
  }

  .feature-v2__media {
    flex-basis: auto;
    width: 100%;
    max-width: 550px;
    height: auto;
    aspect-ratio: 550 / 570;
  }
}

@media (max-width: 640px) {
  .feature-v2 {
    padding: 48px 20px;
  }

  .feature-v2__points {
    grid-template-columns: 1fr;
  }
}

/* =====================================================================
   The challenge — heading + 3 connected stat circles (Figma 1088-13109)
   ===================================================================== */
.stats-v2 {
  /* background: #ffffff; */
  padding: 80px 120px;
}

.stats-v2__inner {
  max-width: 1200px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.stats-v2__head {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 0px;
}

.stats-v2__copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
  align-items: end;
}

.stats-v2__title {
  margin: 0;
  font: 600 40px/1.15 "Archivo", sans-serif;
  letter-spacing: -1px;
  color: var(--r180-ink);
}

.stats-v2__body {
  margin: 24px 0 0;
  font: 400 18px/1.5 "Archivo", sans-serif;
  color: var(--r180-muted);
}

.stats-v2__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

/* .stats-v2__line {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: auto;
  z-index: 0;
  pointer-events: none;
} */
.stats-v2__circle-outer {
  padding: 32px;
  width: 100%;
  aspect-ratio: 1/1;
  position: relative;
}

.stats-v2__circle-outer::before {
  position: absolute;
  content: '';
  width: calc(100% + 5px);
  height: calc(100% + 5px);
  border-top: 5px solid #7EDE9D;
  border-left: 5px solid #7EDE9D;
  border-right: 5px solid transparent;
  border-bottom: 5px solid transparent;
  top: -2.5px;
  left: -2.5px;
  border-radius: 50%;
  transform: rotate(45deg);
}

.stats-v2__circle-outer:nth-child(2)::before {
  transform: rotate(-135deg);
}

.stats-v2__circle {
  z-index: 1;
  height: 100%;
  flex-shrink: 0;
  background: #ffffff;
  border: 1.5px solid #c7ccfb;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 32px;
  text-align: center;
}

#education {
  .stats-v2__circle {
    border: 2px solid var(--r180-green);
    box-shadow: 0 10px 20px 0 rgba(175, 185, 213, 0.35);
  }

  .stats-v2__circle--accent {
    border: 4px solid var(--r180-green);
    box-shadow: 0 10px 20px 0 rgba(126, 222, 157, 0.35);
  }

  .stats-v2__circle--accent .stats-v2__num {
    color: var(--r180-green);
  }

  .stats-v2__circle-outer::before {
    width: calc(100% + 3px);
    height: calc(100% + 3px);
    border-top: 3px solid var(--r180-periwinkle);
    border-left: 3px solid var(--r180-periwinkle);
    border-right: 3px solid transparent;
    border-bottom: 3px solid transparent;
    top: -1.5px;
    left: -1.5px;
  }
}

.stats-v2__circle--accent {
  border: 4px solid var(--r180-periwinkle);
  box-shadow: 0 10px 20px 0 rgba(78, 90, 244, 0.35);
}

.stats-v2__num {
  font: 600 56px/1 "Archivo", sans-serif;
  letter-spacing: -1.5px;
  color: var(--r180-ink);
}

.stats-v2__circle--accent .stats-v2__num {
  color: var(--r180-periwinkle);
}

.stats-v2__label {
  margin: 0;
  font: 400 16px/1.4 "Archivo", sans-serif;
  color: var(--r180-muted);
}

@media (max-width: 1100px) {
  .stats-v2 {
    padding: 64px 40px;
  }

  .stats-v2__title {
    font-size: 32px;
  }

  .stats-v2__row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
  }

  .stats-v2__line {
    display: none;
  }
}

@media (max-width: 640px) {
  .stats-v2 {
    padding: 48px 20px;
  }

  .stats-v2__copy {
    grid-template-columns: 1fr;
  }

  .stats-v2__body {
    margin-top: 0;
  }

  .stats-v2__circle {
    width: 260px;
    height: 260px;
    padding: 32px;
  }

  .stats-v2__num {
    font-size: 44px;
  }
}

/* =====================================================================
   How it works — 3 illustrated step cards (Figma 723-98328)
   ===================================================================== */
.steps-v2 {
  position: relative;
  overflow: hidden;
  /* background: var(--r180-surface); */
  padding: 80px 120px;
}

.steps-v2::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 0% 25%, rgba(193, 188, 255, 0.45), transparent 60%),
    radial-gradient(55% 50% at 100% 30%, rgba(126, 222, 157, 0.4), transparent 60%);
  pointer-events: none;
}

.steps-v2__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin-inline: auto;
}

.steps-v2__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  margin-bottom: 48px;
}

.steps-v2__title {
  margin: 0;
  font: 600 40px/1.15 "Archivo", sans-serif;
  letter-spacing: -1px;
  color: var(--r180-ink);
}

.steps-v2__title .accent {
  color: var(--r180-periwinkle);
}

.steps-v2__subtitle {
  margin: 0;
  max-width: 620px;
  font: 300 18px/1.5 "Archivo", sans-serif;
  color: var(--r180-muted);
}

.steps-v2__row {
  display: flex;
  gap: 24px;
  align-items: stretch;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps-v2__card {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid #e6e8f4;
  border-radius: 16px;
}

.steps-v2__img {
  height: 310px;
  border-radius: 12px;
  overflow: hidden;
  background: #f3f4fb;
}

.steps-v2__img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.steps-v2__detail {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}

.steps-v2__step-title {
  margin: 0;
  font: 500 24px/1 "Archivo", sans-serif;
  letter-spacing: -0.6px;
  color: var(--r180-ink);
}

.steps-v2__step-desc {
  margin: 0;
  font: 400 16px/1.5 "Archivo", sans-serif;
  color: var(--r180-muted);
}

@media (max-width: 991px) {
  .steps-v2 {
    padding: 64px 40px;
  }

  .steps-v2__title {
    font-size: 32px;
  }

  .steps-v2__row {
    flex-wrap: wrap;
  }

  .steps-v2__card {
    flex: 1 1 280px;
  }
}

@media (max-width: 640px) {
  .steps-v2 {
    padding: 48px 20px;
  }

  .steps-v2__row {
    flex-direction: column;
  }

  .steps-v2__img {
    height: 220px;
  }
}

/* =====================================================================
   What we do — 3 photo cards with overlay (Figma 723-98360)
   ===================================================================== */
.cards-v2 {
  background: #ffffff;
  padding: 80px 120px;
}

.cards-v2__inner {
  max-width: 1200px;
  margin-inline: auto;
}

.cards-v2__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  margin-bottom: 48px;
}

.cards-v2__title {
  margin: 0;
  font: 600 40px/1.15 "Archivo", sans-serif;
  letter-spacing: -1px;
  color: var(--r180-ink);
}

.cards-v2__title .accent {
  color: var(--r180-periwinkle);
}

.cards-v2__row {
  display: flex;
  gap: 16px;
  align-items: stretch;
}

.cards-v2__card {
  position: relative;
  flex: 1;
  min-width: 0;
  height: 480px;
  border-radius: 18px;
  overflow: hidden;
}

.cards-v2__card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cards-v2__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 38%, rgba(0, 0, 0, 0.88) 100%);
}

.cards-v2__content {
  position: absolute;
  z-index: 1;
  left: 32px;
  right: 32px;
  bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #fff;
}

.cards-v2__card-title {
  margin: 0;
  font: 600 24px/32px "Archivo", sans-serif;
  letter-spacing: -0.6px;
}

.cards-v2__card-desc {
  margin: 0;
  font: 400 16px/24px "Archivo", sans-serif;
  color: rgba(255, 255, 255, 0.92);
}

.cards-v2__link {
  margin-top: 8px;
  font: 400 16px/24px "Archivo", sans-serif;
  color: var(--r180-green);
  text-decoration: none;
}

.cards-v2__link:hover {
  text-decoration: underline;
}

@media (max-width: 991px) {
  .cards-v2 {
    padding: 64px 40px;
  }

  .cards-v2__title {
    font-size: 32px;
  }

  .cards-v2__row {
    flex-wrap: wrap;
  }

  .cards-v2__card {
    flex: 1 1 280px;
  }
}

@media (max-width: 640px) {
  .cards-v2 {
    padding: 48px 20px;
  }

  .cards-v2__row {
    flex-direction: column;
  }
}


/* =====================================================================
   BRAND REFRESH v2 — Details / How we compare (Figma 233-67574)
   ===================================================================== */
.compare-v2 {
  /* background: #fafafe; */
  padding: 80px 120px;
  font-family: "Archivo", "Montserrat", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.compare-v2__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.compare-v2__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: -0.32px;
  color: #3a45d9;
}

.compare-v2__eyebrow svg {
  width: 16px;
  height: 16px;
  color: #7ede9d;
}

.compare-v2__title {
  margin: 0;
  font-weight: 600;
  font-size: 40px;
  line-height: 48px;
  text-align: center;
  color: #0a0e2e;
}

.compare-v2__accent {
  color: #4e5af4;
}

/* --------------------------------- Table ----------------------------- */
.compare-v2__table-wrap {
  position: relative;
  width: 100%;
  max-width: 1008px;
}

.compare-v2__deco {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 40px;
  border-radius: 16px;
  background: #e4e5fd;
  z-index: 0;
}

.compare-v2__deco--1 {
  width: 96%;
  bottom: -8px;
  opacity: 0.5;
}

.compare-v2__deco--2 {
  width: 92%;
  bottom: -16px;
  opacity: 0.3;
}

.compare-v2__card {
  position: relative;
  z-index: 1;
  border: 3px solid #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(10, 14, 46, 0.06);
}

.compare-v2__table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.compare-v2__table thead th {
  background: #4e5af4;
  color: #ffffff;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  padding: 21px 24px;
  border-right: 1px solid rgba(230, 232, 244, 0.4);
}

.compare-v2__table thead th:last-child {
  border-right: 0;
}

.compare-v2__table tbody td {
  padding: 28px 24px;
  text-align: center;
  vertical-align: middle;
  border-right: 1px solid #e6e8f4;
  border-top: 1px solid #e6e8f4;
}

.compare-v2__table tbody td:last-child {
  border-right: 0;
}

.compare-v2__table tbody tr:nth-child(even) {
  background: #fafafe;
}

.compare-v2__feature {
  text-align: left !important;
  padding-left: 32px !important;
  color: #0a0e2e;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
}

.compare-v2__table thead th.compare-v2__feature {
  color: #ffffff;
  font-weight: 500;
  font-size: 18px;
}

.compare-v2__cell-icon {
  width: 28px;
  height: 28px;
  display: inline-block;
  vertical-align: middle;
}

@media (max-width: 991px) {
  .compare-v2 {
    padding: 56px 16px;
    gap: 40px;
  }

  .compare-v2__title {
    font-size: 28px;
    line-height: 36px;
  }

  .compare-v2__table thead th {
    font-size: 14px;
    padding: 16px 10px;
  }

  .compare-v2__table thead th.compare-v2__feature {
    font-size: 14px;
  }

  .compare-v2__table tbody td {
    padding: 18px 10px;
  }

  .compare-v2__feature {
    font-size: 14px;
    padding-left: 16px !important;
  }

  .compare-v2__cell-icon {
    width: 24px;
    height: 24px;
  }
}




/* =====================================================================
   BRAND REFRESH v2 — For schools banner (Figma 176-27967 / mobile 176-35673)
   ===================================================================== */
.schools-v2 {
  background: #ffffff;
  padding: 80px 120px;
  font-family: "Archivo", "Montserrat", sans-serif;
  -webkit-font-smoothing: antialiased;
  display: flex;
  justify-content: center;
}

.schools-v2 * {
  box-sizing: border-box;
}

.schools-v2__panel {
  position: relative;
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 64px;
  border-radius: 48px;
  overflow: hidden;
  background: #ffffff;
  border: 2px solid #ffffff;
  box-shadow: 0 12px 12px rgba(77, 89, 254, 0.05);
}

/* Soft gradient blooms (recreated in CSS, no asset needed) */
.schools-v2__glow {
  position: absolute;
  inset: -15%;
  background:
    radial-gradient(38% 60% at 88% 8%, rgba(126, 222, 157, 0.55), transparent 60%),
    radial-gradient(40% 70% at 4% 100%, rgba(126, 222, 157, 0.5), transparent 60%),
    radial-gradient(55% 80% at 78% 70%, rgba(120, 131, 255, 0.22), transparent 65%),
    radial-gradient(45% 60% at 14% 6%, rgba(199, 204, 255, 0.35), transparent 60%);
  filter: blur(36px);
  pointer-events: none;
  z-index: 0;
}

.schools-v2__content {
  position: relative;
  z-index: 1;
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.schools-v2__eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: -0.32px;
  color: #4e5af4;
}

.schools-v2__star {
  display: block;
  flex-shrink: 0;
}

.schools-v2__text {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  color: #0a0e2e;
}

.schools-v2__title {
  margin: 0;
  font-weight: 600;
  font-size: 48px;
  line-height: 56px;
}

.schools-v2__desc {
  margin: 0;
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
}

.schools-v2__btn {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px 40px;
  border-radius: 80px;
  background: #4e5af4;
  border: 2px solid #4e5af4;
  color: #ffffff;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  text-decoration: none;
  box-shadow: 0 3px 6px rgba(177, 177, 177, 0.45);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.schools-v2__btn svg {
  display: block;
}

.schools-v2__btn:hover,
.schools-v2__btn:focus-visible {
  background: #3a45d9;
  border-color: #3a45d9;
  color: #ffffff;
  transform: translateY(-1px);
}

@media (max-width: 991px) {
  .schools-v2 {
    padding: 32px 20px;
  }

  .schools-v2__panel {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 32px 24px;
    border-radius: 24px;
  }

  .schools-v2__title {
    font-size: 28px;
    line-height: 1.2;
  }

  .schools-v2__desc {
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
  }

  .schools-v2__btn {
    width: 100%;
    padding: 16px 40px;
    font-size: 18px;
  }
}


/* =====================================================================
   BRAND REFRESH v2 — Testimonials (Figma 723-98488)
   ===================================================================== */
.testi-v2 {
  background: #ffffff;
  padding: 80px 120px 16px;
  font-family: "Archivo", "Montserrat", sans-serif;
  -webkit-font-smoothing: antialiased;
  display: flex;
  justify-content: center;
}

.testi-v2 * {
  box-sizing: border-box;
}

.testi-v2__card {
  width: 100%;
  max-width: 1200px;
  background: #ffffff;
  border: 1px solid #e6e8f4;
  border-radius: 48px;
  box-shadow: 0 0 20px 2px rgba(78, 90, 244, 0.05);
  padding: 56px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

/* --------------------------------- Header ---------------------------- */
.testi-v2__header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.testi-v2__eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: -0.32px;
  color: #4e5af4;
}

.testi-v2__star {
  display: block;
  flex-shrink: 0;
}

.testi-v2__title {
  margin: 0;
  font-weight: 600;
  font-size: 40px;
  line-height: 48px;
  color: #0a0e2e;
}

/* ---------------------------------- Body ----------------------------- */
.testi-v2__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

/* ------------------------------ Avatar arc --------------------------- */
.testi-v2__people {
  position: relative;
  flex-shrink: 0;
  width: 544px;
  height: 430px;
  overflow: hidden;
}

.testi-v2__arc {
  position: absolute;
  top: 15px;
  left: 0;
  width: 153px;
  height: auto;
  pointer-events: none;
}

.testi-v2__person {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  margin: 0;
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
  transition: opacity 0.25s ease;
}

/* Three fixed slots along the arc — middle is pushed out to the right. */
.testi-v2__person:nth-child(2) {
  top: 0;
  left: 41.5px;
}

.testi-v2__person:nth-child(3) {
  top: 176px;
  left: 113px;
}

.testi-v2__person:nth-child(4) {
  top: 360.66px;
  left: 41.5px;
}

.testi-v2__avatar {
  position: relative;
  display: block;
  flex-shrink: 0;
  width: 68px;
  height: 68px;
  border-radius: 999px;
  overflow: hidden;
  border: 1.667px solid #eff0fe;
  transition: width 0.25s ease, height 0.25s ease, border-color 0.25s ease;
}

.testi-v2__avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testi-v2__person-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.testi-v2__person-name {
  font-weight: 600;
  font-size: 12px;
  line-height: 1.2;
  color: #000000;
  transition: font-size 0.25s ease;
}

.testi-v2__person-role {
  font-weight: 300;
  font-size: 10px;
  line-height: 1.4;
  color: #52566f;
  transition: font-size 0.25s ease;
}

/* Active person — enlarged avatar + larger text. */
.testi-v2__person--active .testi-v2__avatar {
  width: 80px;
  height: 80px;
}

.testi-v2__person--active .testi-v2__person-name {
  font-size: 16px;
}

.testi-v2__person--active .testi-v2__person-role {
  font-size: 14px;
}

.testi-v2__person:not(.testi-v2__person--active) {
  opacity: 0.85;
}

.testi-v2__person:not(.testi-v2__person--active):hover {
  opacity: 1;
}

.testi-v2__person:focus-visible {
  outline: 2px solid #4e5af4;
  outline-offset: 4px;
  border-radius: 8px;
}

/* --------------------------------- Quote ----------------------------- */
.testi-v2__quotes {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.testi-v2__quote-icon {
  display: block;
  flex-shrink: 0;
}

.testi-v2__quote {
  margin: 0;
}

.testi-v2__quote[hidden] {
  display: none;
}

.testi-v2__quote p {
  margin: 0 0 8px;
  font-weight: 300;
  font-size: 20px;
  line-height: 32px;
  color: #0a0e2e;
}

.testi-v2__quote p:last-child {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .testi-v2 {
    padding: 32px 20px 0;
  }

  .testi-v2__card {
    padding: 32px 24px;
    border-radius: 28px;
    gap: 32px;
  }

  .testi-v2__title {
    font-size: 28px;
    line-height: 1.2;
  }

  .testi-v2__body {
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
  }

  /* Mobile drops the curved arc for a simple horizontal avatar picker. */
  .testi-v2__people {
    width: 100%;
    height: auto;
    overflow: visible;
    display: flex;
    justify-content: center;
    gap: 8px;
  }

  .testi-v2__arc {
    display: none;
  }

  .testi-v2__person {
    position: static;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    flex: 1 1 0;
    min-width: 0;
  }

  .testi-v2__person:nth-child(2),
  .testi-v2__person:nth-child(3),
  .testi-v2__person:nth-child(4) {
    top: auto;
    left: auto;
    bottom: auto;
  }

  .testi-v2__avatar,
  .testi-v2__person--active .testi-v2__avatar {
    width: 56px;
    height: 56px;
  }

  .testi-v2__person-name,
  .testi-v2__person--active .testi-v2__person-name {
    font-size: 13px;
  }

  .testi-v2__person-role,
  .testi-v2__person--active .testi-v2__person-role {
    font-size: 11px;
  }

  .testi-v2__quote p {
    font-size: 17px;
    line-height: 28px;
  }
}


/* =====================================================================
   What students get — two column report showcase (Figma 723-102212)
   ===================================================================== */
.report-v2 {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  padding: 80px 120px;
  font-family: "Archivo", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.report-v2 * {
  box-sizing: border-box;
}

.report-v2__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.report-v2__glow--1 {
  top: -200px;
  left: -180px;
  width: 420px;
  height: 420px;
  background: rgba(126, 222, 157, 0.35);
}

.report-v2__glow--2 {
  bottom: -260px;
  right: -160px;
  width: 620px;
  height: 420px;
  background: rgba(228, 229, 253, 0.6);
}

.report-v2__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin-inline: auto;
  display: flex;
  align-items: flex-start;
  gap: 72px;
}

/* ------------------------------- Left ------------------------------- */
.report-v2__head {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.report-v2__copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.report-v2__title {
  margin: 0;
  font: 600 40px/48px "Archivo", sans-serif;
  color: var(--r180-ink);
}

.report-v2__title .accent {
  color: var(--r180-periwinkle);
}

.report-v2__desc {
  margin: 0;
  font: 300 18px/24px "Archivo", sans-serif;
  color: var(--r180-muted);
}

.report-v2__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 288px 1fr;
  gap: 24px;
}

.report-v2__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.report-v2__check {
  flex-shrink: 0;
  display: block;
}

.report-v2__item-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.report-v2__item-title {
  margin: 0;
  font: 500 18px/28px "Archivo", sans-serif;
  letter-spacing: -0.36px;
  color: var(--r180-periwinkle);
}

.report-v2__item-desc {
  margin: 0;
  font: 300 16px/24px "Archivo", sans-serif;
  letter-spacing: -0.32px;
  color: var(--r180-muted);
}

/* ------------------------------ Right card -------------------------- */
.report-v2__card {
  flex-shrink: 0;
  width: 504px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 32px;
  background: #ffffff;
  border: 1px solid var(--r180-periwinkle);
  border-radius: 10px;
}

.report-v2__card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.report-v2__card-person {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.report-v2__card-name {
  margin: 0;
  font: 500 16px/24px "Archivo", sans-serif;
  letter-spacing: -0.6px;
  color: var(--r180-ink);
}

.report-v2__card-role {
  margin: 0;
  font: 400 14px/16px "Archivo", sans-serif;
  color: var(--r180-muted);
}

.report-v2__card-tag {
  flex-shrink: 0;
  padding: 8px 12px;
  border-radius: 48px;
  background: var(--r180-periwinkle);
  font: 400 14px/16px "Archivo", sans-serif;
  color: #ffffff;
}

.report-v2__card-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 15px;
  border-radius: 3px;
  background: #fafafe;
}

.report-v2__card-box--bordered {
  gap: 21px;
  border: 1px solid #e6e8f4;
  border-radius: 16px;
}

.report-v2__card-label {
  margin: 0;
  font: 400 14px/16px "Archivo", sans-serif;
  color: var(--r180-muted);
}

.report-v2__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.report-v2__chip {
  padding: 9px 12px;
  border-radius: 48px;
  background: #eff0fe;
  font: 400 14px/16px "Archivo", sans-serif;
  color: var(--r180-periwinkle);
}

.report-v2__card-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.report-v2__card-cluster {
  margin: 0;
  font: 600 17px/16px "Archivo", sans-serif;
  color: var(--r180-ink);
}

.report-v2__card-score {
  flex-shrink: 0;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--r180-green);
  font: 600 17px/16px "Archivo", sans-serif;
  color: var(--r180-ink);
}

.report-v2__divider {
  width: 100%;
  height: 0;
  margin: 0;
  border: none;
  border-top: 1px solid #e6e8f4;
}

.report-v2__card-note {
  margin: 0;
  font: 400 14px/16px "Archivo", sans-serif;
  color: var(--r180-ink);
}

.report-v2__card-note span {
  color: var(--r180-periwinkle);
}

@media (max-width: 991px) {
  .report-v2 {
    padding: 32px 20px;
  }

  .report-v2__inner {
    flex-direction: column;
    gap: 40px;
  }

  .report-v2__title {
    font-size: 28px;
    line-height: 1.2;
  }

  .report-v2__title br,
  .report-v2__desc br {
    display: none;
  }

  .report-v2__list {
    grid-template-columns: 1fr;
  }

  .report-v2__card {
    width: 100%;
  }
}


/* =====================================================================
   BRAND REFRESH v2 — Typical engagement timeline (Figma 176-28022 / mobile 176-35728)
   ===================================================================== */
.engage-v2 {
  background: linear-gradient(180deg, #ffffff 0%, #fafafe 100%);
  padding: 80px 120px;
  font-family: "Archivo", "Montserrat", sans-serif;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.engage-v2 * {
  box-sizing: border-box;
}

.engage-v2__inner {
  width: 100%;
  max-width: 1104px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

/* --------------------------------- Header ---------------------------- */
.engage-v2__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.engage-v2__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: -0.32px;
  color: #3a45d9;
}

.engage-v2__star {
  display: block;
  flex-shrink: 0;
}

.engage-v2__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  width: 100%;
  text-align: center;
}

.engage-v2__title {
  margin: 0;
  font-weight: 600;
  font-size: 40px;
  line-height: 48px;
  color: #0a0e2e;
}

.engage-v2__accent {
  color: #4e5af4;
}

.engage-v2__subtitle {
  margin: 0;
  max-width: 1028px;
  font-weight: 300;
  font-size: 18px;
  line-height: 24px;
  color: #52566f;
}

/* ---------------------------------- Rows ----------------------------- */
.engage-v2__rows {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.engage-v2__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 48px 0;
  border-top: 1px solid #e6e8f4;
}

.engage-v2__row:last-child {
  border-bottom: 1px solid #e6e8f4;
}

.engage-v2__lead {
  display: flex;
  align-items: center;
  gap: 96px;
  flex: 1 1 0;
  max-width: 520px;
  min-width: 0;
}

.engage-v2__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #f1f2f7;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.04);
  color: #2b2f52;
}

.engage-v2__icon svg {
  display: block;
}

.engage-v2__name {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 0;
  min-width: 0;
}

.engage-v2__label {
  margin: 0;
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  color: #4e5af4;
}

.engage-v2__label--green {
  color: #7ede9d;
}

.engage-v2__step {
  margin: 0;
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  color: #0a0e2e;
}

.engage-v2__info {
  margin: 0;
  flex: 1 1 0;
  min-width: 0;
  font-weight: 300;
  font-size: 18px;
  line-height: 24px;
  text-align: right;
  color: #52566f;
}

@media (max-width: 991px) {
  .engage-v2 {
    padding: 32px 20px 0;
    gap: 24px;
  }

  .engage-v2__inner {
    gap: 24px;
  }

  .engage-v2__header {
    align-items: flex-start;
  }

  .engage-v2__eyebrow {
    justify-content: flex-start;
  }

  .engage-v2__heading {
    align-items: flex-start;
    text-align: left;
  }

  .engage-v2__title {
    font-size: 28px;
    line-height: 1.2;
  }

  .engage-v2__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 0;
  }

  .engage-v2__lead {
    gap: 0;
    max-width: none;
    width: 100%;
  }

  /* Mobile design drops the icon circle */
  .engage-v2__icon {
    display: none;
  }

  .engage-v2__step {
    font-size: 18px;
    line-height: 24px;
  }

  .engage-v2__info {
    text-align: left;
    font-size: 18px;
  }
}


/* =====================================================================
   BRAND REFRESH v2 — FAQ (Figma 176-28111)
   ===================================================================== */
.faq-v2 {
  background: linear-gradient(180deg, #ffffff 0%, #fafafe 50%, #ffffff 100%);
  padding: 80px 120px;
  font-family: "Archivo", "Montserrat", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.faq-v2 * {
  box-sizing: border-box;
}

.faq-v2__inner {
  max-width: 912px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

/* --------------------------------- Header ---------------------------- */
.faq-v2__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.faq-v2__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: -0.32px;
  color: #3a45d9;
}

.faq-v2__star {
  display: block;
  flex-shrink: 0;
}

.faq-v2__title {
  margin: 0;
  font-weight: 600;
  font-size: 40px;
  line-height: 48px;
  text-align: center;
  color: #0a0e2e;
}

.faq-v2__accent {
  color: #4e5af4;
}

/* ---------------------------------- List ----------------------------- */
.faq-v2__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: none;
  margin: 0;
}

.faq-v2 .faq-item {
  width: 100%;
  margin: 0;
  padding: 32px;
  background: #ffffff;
  border: 1px solid #e6e8f4;
  border-radius: 10px;
  transition: border-color 0.25s ease, border-radius 0.25s ease;
}

.faq-v2 .faq-item.active {
  border-color: #4e5af4;
  border-radius: 16px;
}

.faq-v2 .faq-question {
  display: flex;
  align-items: center;
  gap: 32px;
  width: 100%;
  padding: 0;
  margin: 0;
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
}

.faq-v2 .faq-question h3 {
  flex: 1 1 0;
  min-width: 0;
  margin: 0;
  padding: 0;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: #0a0e2e;
}

.faq-v2 .faq-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: #eff0fe;
  color: #4e5af4;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.faq-v2 .faq-item.active .faq-icon {
  background: #4e5af4;
  color: #ffffff;
  transform: rotate(45deg);
}

.faq-v2 .faq-icon svg {
  display: block;
}

.faq-v2 .faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: none;
  transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease;
}

.faq-v2 .faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
  margin-top: 16px;
  padding-bottom: 0;
}

.faq-v2 .faq-answer p {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #52566f;
}

@media (max-width: 991px) {
  .faq-v2 {
    padding: 56px 20px;
  }

  .faq-v2__inner {
    gap: 32px;
  }

  .faq-v2__title {
    font-size: 28px;
    line-height: 36px;
  }

  .faq-v2 .faq-item {
    padding: 20px;
  }

  .faq-v2 .faq-question {
    gap: 16px;
  }

  .faq-v2 .faq-question h3 {
    font-size: 16px;
  }

  .faq-v2 .faq-answer p {
    font-size: 14px;
  }
}


/* =====================================================================
   BRAND REFRESH v2 — CTA banner (Figma 176-28123 / mobile 176-35774)
   ===================================================================== */
.cta-v2 {
  background: #fafafe;
  padding: 80px 120px;
  font-family: "Archivo", "Montserrat", sans-serif;
  -webkit-font-smoothing: antialiased;
  display: flex;
  justify-content: center;
}

.cta-v2 * {
  box-sizing: border-box;
}

.cta-v2__panel {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding: 64px;
  border-radius: 48px;
  overflow: hidden;
  background: linear-gradient(105deg, #4e5af4 0%, #2c36b8 100%);
}

/* Decorative perspective grid (recreated in CSS, no asset needed) */
.cta-v2__grid {
  position: absolute;
  top: -40%;
  left: -10%;
  width: 120%;
  height: 180%;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 56px 56px;
  transform: rotate(10.92deg);
  transform-origin: center;
  -webkit-mask-image: radial-gradient(120% 90% at 50% 30%, #000 0%, rgba(0, 0, 0, 0.35) 55%, transparent 85%);
  mask-image: radial-gradient(120% 90% at 50% 30%, #000 0%, rgba(0, 0, 0, 0.35) 55%, transparent 85%);
  pointer-events: none;
}

.cta-v2__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.cta-v2__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: -0.32px;
  color: #ffffff;
}

.cta-v2__star {
  display: block;
  flex-shrink: 0;
}

.cta-v2__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  width: 100%;
  text-align: center;
  color: #ffffff;
}

.cta-v2__title {
  margin: 0;
  font-weight: 600;
  font-size: 48px;
  line-height: 56px;
}

.cta-v2__desc {
  margin: 0;
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
}

.cta-v2__btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px 40px;
  border-radius: 80px;
  background: #7ede9d;
  color: #3a45d9;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.cta-v2__btn svg {
  display: block;
}

.cta-v2__btn:hover,
.cta-v2__btn:focus-visible {
  background: #6fd690;
  color: #3a45d9;
  transform: translateY(-1px);
}

@media (max-width: 991px) {
  .cta-v2 {
    padding: 32px 20px;
  }

  .cta-v2__panel {
    gap: 24px;
    padding: 32px;
    border-radius: 24px;
    background: linear-gradient(95deg, #4e5af4 0%, #2c36b8 100%);
  }

  .cta-v2__grid {
    background-size: 40px 40px;
  }

  .cta-v2__title {
    font-size: 28px;
    line-height: 1.2;
  }

  .cta-v2__desc {
    font-weight: 300;
    font-size: 18px;
    line-height: 24px;
  }

  .cta-v2__btn {
    width: 100%;
    padding: 16px 40px;
    font-size: 18px;
  }
}


/* =====================================================================
   BRAND REFRESH v2 — Footer (Figma 844-51642 / responsive mobile)
   ===================================================================== */
.footer-v2 {
  background: linear-gradient(180deg, #ffffff 0%, #c4fdd6 65.53%, #7ede9d 100%);
  font-family: "Archivo", "Montserrat", sans-serif;
  -webkit-font-smoothing: antialiased;
  color: #0a0e2e;
}

.footer-v2 * {
  box-sizing: border-box;
}

.footer-v2__inner {
  display: flex;
  padding-top: 80px;
  padding-bottom: 40px;
  flex-direction: column;
  gap: 48px;
}

.footer-v2__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
}

/* ------------------------------- Address ----------------------------- */
.footer-v2__brand {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1 1 0;
  max-width: 232px;
  min-width: 0;
}

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

.footer-v2__address li {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #0a0e2e;
}

/* --------------------------------- Links ----------------------------- */
.footer-v2__links {
  display: flex;
  align-items: flex-start;
  gap: 62px;
  flex: 1 1 0;
  max-width: 672px;
  min-width: 0;
}

.footer-v2__col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1 1 0;
  min-width: 0;
}

.footer-v2__heading {
  margin: 0;
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 1.632px;
  text-transform: uppercase;
  color: #0a0e2e;
}

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

.footer-v2__list a {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #0a0e2e;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-v2__list a:hover,
.footer-v2__list a:focus-visible {
  opacity: 0.65;
  color: #0a0e2e;
}

/* -------------------------------- Divider ---------------------------- */
.footer-v2__divider {
  width: 100%;
  height: 0;
  margin: 0;
  border: 0;
  border-top: 1px solid rgba(10, 14, 46, 0.12);
}

/* --------------------------- Copyright / social --------------------- */
.footer-v2__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-v2__copyright {
  margin: 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #0a0e2e;
}

.footer-v2__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border: 1px solid #0a0e2e;
  border-radius: 50%;
  color: #0a0e2e;
  transition: background 0.2s ease, color 0.2s ease;
}

.footer-v2__social:hover,
.footer-v2__social:focus-visible {
  background: #0a0e2e;
  color: #ffffff;
}

.footer-v2__social svg {
  display: block;
  width: 16px;
  height: 16px;
}

/* ------------------------------- Wordmark ---------------------------- */
.footer-v2__wordmark {
  line-height: 0;
}

.footer-v2__wordmark img {
  display: block;
  width: 644px;
  max-width: 100%;
  height: auto;
}

@media (max-width: 991px) {

  .footer-v2__inner {
    gap: 32px;
    padding-top: 48px;
    padding-bottom: 32px;
  }

  .footer-v2__top {
    flex-direction: column;
    gap: 32px;
  }

  .footer-v2__brand {
    gap: 16px;
    max-width: none;
    width: 100%;
    order: 2;
  }

  .footer-v2__links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
    row-gap: 32px;
    max-width: none;
    width: 100%;
    order: 1;
  }

  /* Solutions (col 1, row 1), Company (col 2, row 1), Legal (col 1, row 2) */
  .footer-v2__col:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }

  .footer-v2__col:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }

  .footer-v2__col:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
  }

  .footer-v2__bottom {
    flex-direction: row;
    align-items: center;
  }
}

/* ===== Story section (Figma 723-99536) ===== */
.story {
  padding: 80px 0;
}

.story__inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 128px;
  display: flex;
  align-items: center;
  gap: 48px;
}

.story__card {
  flex-shrink: 0;
  border: 2px solid var(--r180-periwinkle);
  border-radius: 18px;
}

.story__card-inner {
  position: relative;
  width: 406px;
  height: 518px;
  border: 2px solid var(--r180-white);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 20px 24px;
}

.story__card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}

.story__card-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(78, 90, 244, 0) 55.5%, rgba(78, 90, 244, 0.8) 93.6%);
}

.story__card-info {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--r180-white);
}

.story__card-name {
  margin: 0;
  font: 600 20px/24px "Archivo", sans-serif;
  letter-spacing: -0.4px;
}

.story__card-role {
  margin: 0;
  font: 400 16px/16px "Archivo", sans-serif;
}

.story__text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.story__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font: 500 16px/1 "Archivo", sans-serif;
  letter-spacing: -0.32px;
  color: var(--r180-periwinkle);
}

.story__title {
  margin: 0;
  font: 600 40px/48px "Archivo", sans-serif;
  color: var(--r180-ink);
}

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

.story__body p {
  margin: 0;
  font: 400 16px/24px "Archivo", sans-serif;
  color: var(--r180-muted);
}

@media (max-width: 991px) {
  .story {
    padding: 56px 0;
  }

  .story__inner {
    flex-direction: column;
    align-items: stretch;
    padding-inline: 24px;
    gap: 40px;
  }

  .story__card {
    align-self: center;
    max-width: 406px;
    width: 100%;
  }

  .story__card-inner {
    width: 100%;
  }

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

@media (max-width: 560px) {
  .story__card-inner {
    height: 440px;
  }

  .story__title {
    font-size: 28px;
    line-height: 36px;
  }
}

/* ===== Meet the team section (Figma 723-99615) ===== */
.team-v2 {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background: linear-gradient(180deg, #fafafe 0%, #ffffff 2.4%, #ffffff 95.3%, #fafafe 100%);
}

.team-v2__glow {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.team-v2__glow--right {
  top: -120px;
  right: -160px;
  width: 480px;
  height: 600px;
  background: rgba(126, 222, 157, 0.28);
}

.team-v2__glow--left {
  top: 200px;
  left: -260px;
  width: 640px;
  height: 360px;
  background: rgba(228, 229, 253, 0.6);
}

.team-v2__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 120px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.team-v2__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}

.team-v2__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font: 500 16px/1 "Archivo", sans-serif;
  letter-spacing: -0.32px;
  color: var(--r180-periwinkle);
}

.team-v2__title {
  margin: 0;
  max-width: 760px;
  font: 600 40px/48px "Archivo", sans-serif;
  color: var(--r180-ink);
}

.team-v2__title .accent {
  color: var(--r180-periwinkle);
}

.team-v2__subtitle {
  margin: 0;
  max-width: 640px;
  font: 300 18px/24px "Archivo", sans-serif;
  color: var(--r180-muted);
}

.team-v2__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.team-v2__card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
  background: var(--r180-white);
  border: 1.5px solid #f3f8ff;
  border-radius: 24px;
}

.team-v2__card-img {
  height: 272px;
  border: 1px solid #edf2f9;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(68, 78, 106, 0.25);
  overflow: hidden;
  background: linear-gradient(131.42deg, #f9f9f9 0%, #cbd4dd 100%);
}

.team-v2__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.team-v2__card-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.team-v2__card-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.team-v2__card-name {
  margin: 0;
  font: 600 20px/24px "Archivo", sans-serif;
  letter-spacing: -0.4px;
  color: #161937;
}

.team-v2__card-role {
  margin: 0;
  font: 400 14px/16px "Archivo", sans-serif;
  color: var(--r180-periwinkle);
}

.team-v2__card-cred {
  margin: 0;
  font: 300 italic 14px/20px "Archivo", sans-serif;
  letter-spacing: 0.56px;
  color: var(--r180-muted);
}

@media (max-width: 1200px) {
  .team-v2__inner {
    padding-inline: 64px;
  }

  .team-v2__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .team-v2 {
    padding: 56px 0;
  }

  .team-v2__inner {
    padding-inline: 24px;
    gap: 40px;
  }

  .team-v2__title {
    font-size: 32px;
    line-height: 40px;
  }

  .team-v2__subtitle {
    font-size: 16px;
  }

  .team-v2__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .team-v2__title {
    font-size: 26px;
    line-height: 34px;
  }

  .team-v2__grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-inline: auto;
  }
}

/* ---------------------------------------------------------------------
   Contact page  (Figma 723-127145)
   --------------------------------------------------------------------- */
#contact {
  width: 1240px;
  max-width: 100%;
  padding: 80px 20px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 78px;
}

/* --- Centered head --- */
.contact__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font: 500 16px/1 "Archivo", sans-serif;
  letter-spacing: -0.32px;
  color: var(--r180-periwinkle);
  margin-bottom: 24px;
}

.contact__eyebrow svg {
  width: 14px;
  height: 16px;
}

.contact__title {
  margin: 0;
  font: 600 56px/62px "Archivo", sans-serif;
  letter-spacing: -1.68px;
  color: var(--r180-ink);
  margin-bottom: 18px;
}

.contact__title .accent {
  color: var(--r180-periwinkle);
}

.contact__desc {
  margin: 0;
  max-width: 560px;
  font: 400 18px/1.55 "Archivo", sans-serif;
  letter-spacing: -0.36px;
  color: var(--r180-muted);
  margin-bottom: 32px;
}

/* --- Two-column body --- */
.contact__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 32px;
  align-items: start;
}

/* --- Form card --- */
.contact__form-card {
  background: #fff;
  border: 1px solid #C9CEF8;
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 24px 60px rgba(10, 14, 46, 0.05);
}

.contact-form__title {
  margin: 0 0 32px;
  font: 500 24px/1 "Archivo", sans-serif;
  letter-spacing: -0.6px;
  color: var(--r180-ink);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field__label {
  font: 400 16px/1.5 "Archivo", sans-serif;
  color: var(--r180-muted);
}

.field__label .req {
  color: #E05555;
}

.field input,
.field textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #E6E8F4;
  border-radius: 12px;
  background: #fff;
  font: 400 16px/1.5 "Archivo", sans-serif;
  color: var(--r180-ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field textarea {
  min-height: 132px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #a6a9bd;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--r180-periwinkle);
  box-shadow: 0 0 0 4px rgba(78, 90, 244, 0.12);
}

/* --- Radio chip groups (Company Size / What are you interested in) --- */
.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.chip {
  position: relative;
  display: inline-flex;
}

.chip input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.chip__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border: 1px solid #E6E8F4;
  border-radius: 12px;
  background: #fff;
  font: 400 16px/1.5 "Archivo", sans-serif;
  color: var(--r180-ink);
  cursor: pointer;
  transition: border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.chip__label:hover {
  border-color: #C2C6F8;
}

.chip input:checked+.chip__label {
  border-color: var(--r180-periwinkle);
  background: var(--r180-periwinkle);
  color: var(--r180-white);
}

.chip input:focus-visible+.chip__label {
  box-shadow: 0 0 0 4px rgba(78, 90, 244, 0.18);
}

/* --- Submit --- */
.contact-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  align-self: flex-start;
  margin-top: 4px;
  padding: 17px 38px;
  border: none;
  border-radius: 80px;
  background: var(--r180-periwinkle);
  color: #fff;
  font: 600 17px/1 "Archivo", sans-serif;
  letter-spacing: -0.17px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.contact-form__submit svg {
  width: 20px;
  height: 20px;
}

.contact-form__submit:hover,
.contact-form__submit:focus-visible {
  background: var(--r180-periwinkle);
}

/* --- Contact info card (right) --- */
.contact-info {
  background: #fff;
  border: 1px solid #E6E8F4;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 24px 60px rgba(10, 14, 46, 0.05);
  position: sticky;
  top: 100px;
}

.contact-info__item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 24px 0;

  &:first-child {
    padding-top: 0%;
  }

  &:last-child {
    padding-bottom: 0;
  }
}

.contact-info__item+.contact-info__item {
  border-top: 1px solid #EDEEF6;
}

.contact-info__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--r180-tint);
  color: var(--r180-periwinkle);
}

.contact-info__icon svg {
  width: 20px;
  height: 20px;
}

.contact-info__text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-info__label {
  font: 300 14px/16px "Archivo", sans-serif;
  color: var(--r180-muted);
}

.contact-info__value,
.contact-info__value a {
  font: 500 16px/1.5 "Archivo", sans-serif;
  color: var(--r180-ink);
  text-decoration: none;
}

.contact-info__value a:hover {
  color: var(--r180-periwinkle);
}

@media (max-width: 992px) {
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact__title {
    font-size: 44px;
    line-height: 50px;
    letter-spacing: -1.32px;
  }
}

@media (max-width: 560px) {
  .contact {
    padding: 28px 0 64px;
  }

  .contact__form-card {
    padding: 24px;
  }

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

  .contact__title {
    font-size: 34px;
    line-height: 40px;
    letter-spacing: -1.02px;
  }
}