/* Disable template custom following cursors — use system default */
.custom-cursor,
.cursor-inner,
.cursor-outer,
.mouseCursor {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* Banner: expandable prompt input (style.css has base .newsletter-1) */
.banner .banner__content .newsletter-1--prompt {
  display: block;
  width: 100%;
  max-width: 60ch;
  margin-top: 2.5rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  overflow: visible;
}

/* Disable WriteBot rotating border glow — it bleeds outside the input */
.banner .newsletter-1--prompt::after {
  content: none;
  display: none;
  animation: none;
}

.banner .newsletter-1--prompt .newsletter-1__shell {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0.625rem 0.5rem 1.25rem;
  min-height: 3.75rem;
  border: 2px solid transparent;
  border-radius: 0.875rem;
  overflow: hidden;
  isolation: isolate;
  transition:
    min-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.banner .newsletter-1--prompt.is-expanded .newsletter-1__shell {
  min-height: 10.5rem;
  padding: 1rem 1.625rem 4.75rem;
  border-color: rgba(101, 255, 75, 0.65);
  border-radius: 1rem;
  background: linear-gradient(160deg, hsl(0 0% 13%) 0%, hsl(var(--neutral-10)) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 0 3px rgba(101, 255, 75, 0.1),
    0 20px 48px rgba(0, 0, 0, 0.35);
  align-items: flex-start;
}

.banner .newsletter-1--prompt.is-expanded .newsletter-1__input {
  width: 100%;
}

.banner .newsletter-1--prompt .newsletter-1__input {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 0;
  height: 1.5rem;
  max-height: 12rem;
  padding: 0 !important;
  margin: 0;
  border: 0;
  resize: none;
  overflow: hidden;
  line-height: 1.5;
  background-color: transparent !important;
  color: #ffffff;
  caret-color: #65ff4b;
  position: relative;
  z-index: 2;
  transition:
    min-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.banner .newsletter-1--prompt .newsletter-1__input::placeholder {
  color: hsl(var(--neutral-60));
  opacity: 1;
}

.banner .newsletter-1--prompt .newsletter-1__input:focus {
  color: #ffffff;
  box-shadow: none;
  outline: none;
}

.banner .newsletter-1--prompt.is-expanded:not(.has-value) .newsletter-1__input {
  height: 1.5rem;
  min-height: 0;
  overflow: hidden;
}

.banner .newsletter-1--prompt.is-expanded.has-value .newsletter-1__input {
  height: auto;
  min-height: 1.5rem;
  overflow: auto;
}

.banner .newsletter-1--prompt .newsletter-1__btn--inline {
  flex-shrink: 0;
  align-self: center;
  white-space: nowrap;
  cursor: pointer;
  opacity: 1;
  transform: scale(1);
  visibility: visible;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}

.banner .newsletter-1--prompt.is-expanded .newsletter-1__btn--inline {
  position: absolute;
  opacity: 0;
  transform: scale(0.92);
  visibility: hidden;
  pointer-events: none;
}

.banner .newsletter-1--prompt .newsletter-1__fab {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  opacity: 0;
  transform: translateY(8px) scale(0.9);
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1) 0.05s,
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1) 0.05s,
    visibility 0.35s;
}

.banner .newsletter-1--prompt.is-expanded .newsletter-1__fab {
  opacity: 1;
  transform: translateY(0) scale(1);
  visibility: visible;
  pointer-events: auto;
}

.banner .newsletter-1--prompt .newsletter-1__fab-btn {
  position: relative;
  width: 3rem;
  height: 3rem;
  border: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  background: linear-gradient(140deg, #65ff4b 0%, #46e695 100%);
  box-shadow: 0 4px 16px rgba(101, 255, 75, 0.35);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  transition: filter 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.banner .newsletter-1--prompt .newsletter-1__fab-btn:hover {
  filter: brightness(1.08);
  box-shadow: 0 6px 20px rgba(101, 255, 75, 0.45);
}

.banner .newsletter-1--prompt .newsletter-1__fab-btn:active {
  transform: scale(0.95);
}

.banner .newsletter-1--prompt.is-expanded .newsletter-1__fab-btn::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(101, 255, 75, 0.25);
  pointer-events: none;
}

.banner h1> div{
  z-index: 9;
}

/* Match Aikeu green theme (same as .btn--primary) */
.banner .banner__content .newsletter-1__btn--green {
  color: #000000;
  background: linear-gradient(140deg, #65ff4b 0%, #46e695 100%);
  border: 0;
  transition: filter 0.25s ease, transform 0.25s ease;
}

.banner .banner__content .newsletter-1__btn--green:hover {
  color: #000000;
  filter: brightness(1.08);
}

.banner .banner__content .newsletter-1__btn--green:active {
  transform: scale(0.98);
}

.banner .banner__content .banner__features {
  margin-top: 2rem;
}

@media (prefers-reduced-motion: reduce) {
  .banner .newsletter-1--prompt .newsletter-1__shell,
  .banner .newsletter-1--prompt .newsletter-1__input,
  .banner .newsletter-1--prompt .newsletter-1__btn--inline,
  .banner .newsletter-1--prompt .newsletter-1__fab {
    transition: none;
  }

  .banner .newsletter-1--prompt.is-expanded .newsletter-1__fab-btn::before {
    animation: none;
  }
}

/* ========== Mobile & tablet: integrated WriteBot sections ========== */
@media (max-width: 991.98px) {
  .banner .banner__content {
    margin-bottom: 4rem;
  }

  .banner .banner__content .newsletter-1--prompt {
    margin-top: 2rem;
    max-width: 100%;
  }

  main .what-todo-section .todo-box {
    max-width: 100%;
    padding: 1.5rem 1.25rem !important;
  }
}

@media (max-width: 767.98px) {
  .banner .banner__content .newsletter-1--prompt {
    margin-top: 1.5rem;
  }

  .banner .newsletter-1--prompt:not(.is-expanded) .newsletter-1__shell {
    flex-direction: column;
    padding: 0.75rem;
    gap: 0.625rem;
  }

  .banner .newsletter-1--prompt:not(.is-expanded) .newsletter-1__input {
    font-size: 0.9375rem;
    padding: 0;
    width: 100%;
  }

  .banner .newsletter-1--prompt:not(.is-expanded) .newsletter-1__btn--inline {
    width: 100%;
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
    font-size: 0.9375rem;
  }

  .banner .newsletter-1--prompt.is-expanded .newsletter-1__shell {
    min-height: 9.5rem;
    padding: 0.875rem 1.25rem 4.5rem;
    border-width: 2px;
  }

  .banner .banner__content .banner__features {
    margin-top: 1rem;
  }

  /* What We Do: layout + nav */
  main .what-todo-section .container:last-of-type > .row {
    flex-direction: column;
  }

  main .what-todo-section .todo-nav-col {
    order: -1;
    width: 100%;
    max-width: 100%;
  }

  main .what-todo-section .todo-nav {
    padding: 0 0 1rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  main .what-todo-section .todo-nav::-webkit-scrollbar {
    display: none;
  }

  main .what-todo-section .todo-nav::after {
    display: none;
  }

  main .what-todo-section .todo-nav__menu {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0.5rem !important;
    width: max-content;
    min-width: 100%;
    padding: 0 0.25rem 0.25rem;
    margin: 0;
  }

  main .what-todo-section .todo-nav__menu > li {
    flex-shrink: 0;
  }

  main .what-todo-section .todo-nav__link {
    font-size: 0.8125rem;
    white-space: nowrap;
    padding: 0.5rem 0.75rem;
    border-radius: 0.25rem;
    background-color: hsl(var(--neutral-10));
  }

  main .what-todo-section .todo-nav__link::before {
    display: none;
  }

  main .what-todo-section .todo-nav__link.active {
    background: linear-gradient(140deg, rgba(101, 255, 75, 0.25) 0%, rgba(70, 230, 149, 0.15) 100%);
    color: #ffffff;
  }

  main .what-todo-section .todo-box {
    max-width: 100%;
    margin-bottom: 0 !important;
    padding: 1.25rem 1rem !important;
    border-radius: 0.5rem;
  }

  main .what-todo-section .todo-box .gradient-btn-1 {
    width: 100%;
    justify-content: center;
    padding: 0.875rem 1rem !important;
    font-size: 0.9375rem;
  }

  main .what-todo-section .section-space-y {
    padding-block-start: 2.5rem;
    padding-block-end: 2.5rem;
  }

  main .what-todo-section .section-space-bottom {
    padding-block-end: 2.5rem;
  }

  main .what-todo-section h5.animate-line-3d {
    font-size: 1.125rem;
    line-height: 1.5;
  }
}

@media (max-width: 575.98px) {
  .banner .newsletter-1--prompt:not(.is-expanded) .newsletter-1__btn--inline {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  main .what-todo-section .todo-nav__link {
    font-size: 0.75rem;
    padding: 0.4375rem 0.625rem;
  }
}

/* SammysLab brand logos */
.logo {
  --logo-height: auto;
  height: auto;
  line-height: 0;
}

.site-logo {
  display: block;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

/* Header logo sizes */
.logo .site-logo--header {
  height: 3.25rem;
  width: auto;
  max-width: 11rem;
}

@media (min-width: 768px) {
  .logo .site-logo--header {
    height: 3.5rem;
    max-width: 13rem;
  }
}

@media (min-width: 1200px) {
  .logo .site-logo--header {
    height: 3.75rem;
    max-width: none;
  }
}

/* Banner: character illustration — bottom-left, tilted */
.banner .banner__character {
  position: absolute;
  left: clamp(0.25rem, 2.5vw, 2rem);
  bottom: clamp(2.5rem, 10vw, 5.5rem);
  z-index: 3;
  top: 34%;
  left: 8%;
  pointer-events: none;
  line-height: 0;
}

.banner .banner__character img {
  display: block;
  width: clamp(9rem, 16vw, 17.5rem);
  height: auto;
  transform: rotate(-14deg);
  transform-origin: left bottom;
  filter: drop-shadow(0 18px 42px rgba(0, 0, 0, 0.4));
}

@media only screen and (max-width: 991.98px) {
  .banner .banner__character {
    bottom: clamp(1.5rem, 6vw, 3rem);
  }

  .banner .banner__character img {
    width: clamp(7rem, 22vw, 11rem);
    transform: rotate(-12deg);
  }
}

@media only screen and (max-width: 575.98px) {
  .banner .banner__character {
    left: -0.25rem;
    bottom: 0.75rem;
  }

  .banner .banner__character img {
    width: clamp(5.5rem, 32vw, 7.5rem);
    transform: rotate(-10deg);
    opacity: 0.92;
  }
}

/* Banner: fixed logo (replaces scroll-position-btn) */
.banner .banner__logo {
  position: absolute;
  top: 40%;
  right: 8%; 
  z-index: 1;
  display: block;
  line-height: 0;
  transform: translateY(-30%);
}

.banner .banner__logo .site-logo--banner {
  width: clamp(10rem, 15vw, 14rem);
  height: auto;
  display: block;
  object-fit: contain;
  transform: rotate(14deg);
  transform-origin: center center;
  will-change: transform, opacity;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.28));
  transition: filter 0.3s ease;
}

.banner .banner__logo:hover .site-logo--banner {
  filter: drop-shadow(0 16px 36px rgba(101, 255, 75, 0.22));
}

@media only screen and (max-width: 1399.98px) {
  .banner .banner__logo .site-logo--banner {
    width: clamp(8rem, 12vw, 10.5rem);
    transform: rotate(12deg);
  }
}

@media only screen and (max-width: 767.98px) {
  .banner .banner__logo {
    top: 55%;
  }

  .banner .banner__logo .site-logo--banner {
    width: clamp(6.5rem, 24vw, 8rem);
    transform: rotate(10deg);
  }
}


/* Offcanvas / favicon / auth: standalone icon SVG only */
.offcanvas-info__logo .site-logo--mark,
.radar-logo-wrapper .logo-wrapper .site-logo--icon {
  width: 2.5rem;
  height: 2.5rem;
}

/* Header nav: force pure white (override aikeu #ffffff90 transparency + on-background gray) */
.header--1 .menu-link,
.header--1 .menu-sub-link {
  color: #ffffff !important;
}

@media (min-width: 992px) {
  .header--1 .menu-link:hover {
    color: hsl(var(--primary-80)) !important;
  }

  .header--1 .menu-sub-link:hover {
    color: #ffffff !important;
    background-color: hsl(var(--neutral-17));
  }

  /* Header bar: breathing room (overrides .py-lg-0 on .menu) */
  .header--1 > .container {
    padding-inline: clamp(1.25rem, 4vw, 2.5rem);
  }

  .header--1 .menu {
    position: relative;
    align-items: center;
    padding-top: 1.125rem !important;
    padding-bottom: 1.125rem !important;
    min-height: 5.25rem;
  }

  /* Logo column — balanced with CTA column width */
  .header--1 .menu > div:first-child {
    flex: 0 0 auto;
    min-width: 13.5rem;
    align-self: center;
  }

  .header--1 .logo {
    display: inline-flex;
    align-items: center;
    padding-block: 0.125rem;
  }

  .header--1 .logo .site-logo--header {
    height: 3rem;
    max-width: 12rem;
  }

  /* Center main nav in full header (logo left, CTA right) */
  .header--1 .menu-nav {
    position: static;
    flex: 1 1 auto;
    justify-content: flex-end;
    align-items: center;
    min-height: 2.75rem;
  }

  .header--1 .menu-nav > .list:first-child {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin-inline: 0 !important;
    z-index: 1;
    white-space: nowrap;
  }

  .header--1 .menu-nav > .list:first-child .menu-link {
    padding-block: 0.5rem;
    padding-inline: 1rem;
  }

  /* CTA column — Login + Get Started */
  .header--1 .menu-nav > .list:last-child {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 0 0 auto;
    min-width: 13.5rem;
    gap: 0.75rem !important;
    margin: 0;
  }

  .header--1 .menu-nav > .list:last-child .menu-list {
    margin: 0 !important;
  }

  .header--1 .menu-nav > .list:last-child .animated-border-btn span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    padding: 0.625rem 1.5rem !important;
    font-size: 0.9375rem;
    line-height: 1.2;
    border-radius: 0.375rem;
  }

  .header--1 .menu-nav > .list:last-child .gradient-btn-1 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    padding: 0.625rem 1.5rem !important;
    font-size: 0.9375rem;
    line-height: 1.2;
    border-radius: 0.375rem;
    white-space: nowrap;
  }
}

@media (min-width: 1200px) {
  .header--1 .menu {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
    min-height: 5.5rem;
  }

  .header--1 .logo .site-logo--header {
    height: 5.25rem;
    max-width: 13rem;
  }

  .header--1 .menu > div:first-child,
  .header--1 .menu-nav > .list:last-child {
    min-width: 15rem;
  }

  .header--1 .menu-nav > .list:last-child {
    gap: 1rem !important;
  }
}

/* Header CTA: Login + Get Started — aikeu redefines --white as #fff hex, breaks clr-white */
.header--1 .animated-border-btn,
.header--1 .gradient-btn-1,
.header--1 .animated-border-btn span {
  color: #ffffff !important;
}

.header--1 .animated-border-btn:hover,
.header--1 .gradient-btn-1:hover,
.header--1 .animated-border-btn:hover span {
  color: #ffffff !important;
}

/* Mobile: hamburger + menu panel */
@media (max-width: 991.98px) {
  .header--1 > .container {
    padding-inline: 1.25rem;
  }

  .header--1 .menu {
    padding-top: 0.875rem !important;
    padding-bottom: 0.875rem !important;
  }

  .header--1 .menu-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    background-color: hsl(var(--primary-50)) !important;
  }

  .header--1 .menu-toggle i {
    color: #ffffff !important;
    line-height: 1;
  }

  .header--1 .menu-toggle:hover,
  .header--1 .menu-toggle:focus {
    color: #ffffff !important;
    background-color: hsl(var(--primary-30)) !important;
  }

  .header--1 .menu-nav {
    z-index: 1000;
    max-height: calc(100vh - 5rem);
    overflow-y: auto;
  }

  body.menu-open .header--1 .menu-nav {
    z-index: 1001;
  }
}

/* What We Do — WriteBot section inside Aikeu smooth scroll */
main .what-todo-section {
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  main .what-todo-section .todo-nav-col {
    align-self: flex-start;
  }
}

/* Layout fix: parallax-image wrappers are gone — restore box/image spacing */
main .what-todo-section .col-md-7 > div[tabindex="0"] > div[class*="section-space"] {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

main .what-todo-section .todo-box {
  margin-bottom: 0 !important;
}

@media (min-width: 992px) {
  main .what-todo-section .todo-box {
    max-width: 490px;
  }
}

main .what-todo-section .todo-img {
  position: relative;
  margin-top: 0 !important;
  width: 100%;
}

main .what-todo-section .todo-img > img.rounded-1,
main .what-todo-section .todo-img > .img-fluid.rounded-1 {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
}

main .what-todo-section .todo-img > video {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 0.25rem;
}

main .what-todo-section .todo-img:has(.todo-img__1) {
  min-height: clamp(280px, 42vw, 420px);
  margin-bottom: clamp(1rem, 3vw, 2rem);
}

/* Respect reduced motion — disable heavy scroll-driven effects on homepage */
@media (prefers-reduced-motion: reduce) {
  .section.tools::before,
  .gen::before,
  .gen::after {
    filter: none;
  }
}

/* Safety section (replaces former Tools block) */
.section.tools .safety-section__row {
  --bs-gutter-x: 2rem;
}

.section.tools .safety__thumb img {
  border-radius: 1rem;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.section.tools .section__content .sub-title i {
  font-size: 1rem;
  color: var(--primary-color, #65ff4b);
}

.section.tools .safety-features {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: none;
}

.section.tools .safety-features__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.section.tools .safety-features__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
}

.section.tools .safety-features__title {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white, #fff);
  text-transform: none;
  line-height: 1.4;
}

.section.tools .safety-features__text {
  margin: 0.25rem 0 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--quinary-color, #b1b0b6);
}

@media (min-width: 992px) {
  .section.tools .safety-section__row {
    --bs-gutter-x: 3rem;
  }

  .section.tools .safety__thumb img {
    border-radius: 1.5rem;
  }

  .section.tools .section__content .title {
    font-size: clamp(1.75rem, 2.5vw, 2.5rem);
    line-height: 1.2;
  }

  .section.tools .safety-features__title {
    font-size: 0.9375rem;
  }

  .section.tools .safety-features__text {
    font-size: 0.9375rem;
  }
}

/* Gen section: constrain feature mockup image */
.section.gen .gen__thumb {
  width: 100%;
}

.section.gen .gen__thumb .reveal-img {
  display: block;
  width: 100%;
}

.section.gen .gen__thumb img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 1rem;
}

@media (min-width: 992px) {
  .section.gen .gen__thumb img {
    border-radius: 1.5rem;
  }
}

@media (min-width: 1200px) {
  .section.tools .safety-section__row {
    --bs-gutter-x: 4rem;
  }

  .section.tools .safety-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 2rem;
    row-gap: 1.5rem;
  }
}

@media (max-width: 991.98px) {
  .section.tools .safety-features {
    margin-top: 1.5rem;
    gap: 1rem;
  }
}

/* Parents testimonials (replaces former Overview block) */
.section.parents-testimonials {
  position: relative;
  z-index: 1;
  overflow-x: clip;
}

.section.parents-testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(60%) translateY(-20%);
  width: 560px;
  height: 560px;
  min-height: 300px;
  border-radius: 50%;
  background: rgba(101, 255, 75, 0.08);
  filter: blur(230px);
  z-index: -1;
  pointer-events: none;
}

.section.parents-testimonials .section__header {
  margin-bottom: clamp(2.5rem, 5vw, 3.75rem);
}

.section.parents-testimonials .section__header .title {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  line-height: 1.2;
}

.parents-testimonials__card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.015) 100%
  );
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.parents-testimonials__card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    145deg,
    rgba(101, 255, 75, 0.18) 0%,
    rgba(255, 255, 255, 0.06) 40%,
    transparent 70%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.55;
  transition: opacity 0.3s ease;
}

.parents-testimonials__card:hover {
  border-color: rgba(101, 255, 75, 0.22);
  background: linear-gradient(
    160deg,
    rgba(101, 255, 75, 0.06) 0%,
    rgba(255, 255, 255, 0.025) 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 8px 32px rgba(0, 0, 0, 0.18);
}

.parents-testimonials__card:hover::before {
  opacity: 1;
}

.parents-testimonials__stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
  color: #fbbf24;
  font-size: 0.875rem;
  line-height: 1;
}

.parents-testimonials__quote {
  margin: 0;
  flex: 1 1 auto;
}

.parents-testimonials__quote p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--white, #fff);
}

.parents-testimonials__author {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.parents-testimonials__name {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white, #fff);
  line-height: 1.4;
}

.parents-testimonials__role {
  margin: 0.125rem 0 0;
  font-size: 0.75rem;
  line-height: 1.4;
  color: var(--quinary-color, #b1b0b6);
}

@media (min-width: 992px) {
  .parents-testimonials__quote p {
    font-size: 0.9375rem;
  }

  .parents-testimonials__name {
    font-size: 0.9375rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .section.parents-testimonials::before {
    filter: none;
  }
}

/* Footer CTA lead copy */
.footer-1__lead {
  margin-top: 0;
  font-weight: 400;
}

@media (max-width: 767.98px) {
  .footer-1__lead {
    font-size: 0.9375rem;
    line-height: 1.65;
    max-width: none;
  }
}
