/* =========================================================
   ENGLISH WITH GABBY
   COMPLETE MOBILE-FIRST WEBSITE
========================================================= */


/* =========================================================
   DESIGN SYSTEM
========================================================= */

:root {

  --purple-950: #472456;
  --purple-900: #5d2f70;
  --purple-800: #74418a;
  --purple-700: #9858a6;
  --purple-600: #aa67b8;
  --purple-500: #b875c4;
  --purple-300: #d5a8dc;
  --purple-200: #e6ccec;
  --purple-100: #f4eafa;

  --orange-700: #d95e13;
  --orange-600: #e86818;
  --orange-500: #f47c2b;
  --orange-300: #ffb477;
  --orange-100: #fff0e4;

  --pink-700: #c90050;
  --pink-500: #e6005c;
  --pink-300: #ff8bb5;
  --pink-100: #ffe7f0;

  --yellow-500: #f6d85d;
  --yellow-100: #fff7cf;

  --green-600: #2f9e75;
  --green-500: #4bc497;
  --green-100: #e5f8f0;

  --blue-500: #4f9ed8;
  --blue-100: #e7f4fd;

  --cream: #fff9f2;
  --cream-deep: #f7efe6;

  --white: #ffffff;

  --ink: #231f28;
  --ink-soft: #4c4652;
  --muted: #746d79;

  --border: #e7d9e9;

  --whatsapp: #25d366;

  --page-width: 1200px;
  --content-padding: 20px;

  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --radius-xl: 44px;

  --shadow-soft:
    0 12px 35px rgba(93, 47, 112, 0.10);

  --shadow-card:
    0 18px 45px rgba(93, 47, 112, 0.14);

  --shadow-hover:
    0 25px 60px rgba(93, 47, 112, 0.20);

}


/* =========================================================
   RESET
========================================================= */

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

html {
  width: 100%;
  max-width: 100%;

  scroll-behavior: smooth;

  overflow-x: hidden;
}

body {
  width: 100%;
  max-width: 100%;

  margin: 0;

  background: var(--cream);

  color: var(--ink);

  font-family:
    "Nunito",
    Arial,
    sans-serif;

  font-size: 16px;
  line-height: 1.7;

  overflow-x: hidden;

  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body,
button,
input,
select,
textarea {
  font-family:
    "Nunito",
    Arial,
    sans-serif;
}

img {
  display: block;

  width: 100%;
  max-width: 100%;
}

a {
  color: inherit;

  text-decoration: none;
}

button {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

.skip-link {
  position: fixed;

  top: 12px;
  left: 12px;

  z-index: 5000;

  padding: 12px 16px;

  background: var(--ink);
  color: white;

  border-radius: 10px;

  transform: translateY(-180%);

  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--yellow-500);

  outline-offset: 4px;
}


/* =========================================================
   TYPOGRAPHY
========================================================= */

h1,
h2,
h3 {
  margin-top: 0;

  font-family:
    "Fredoka",
    "Nunito",
    sans-serif;

  line-height: 1.06;
}

h1 {
  font-size:
    clamp(
      3rem,
      15vw,
      5.2rem
    );
}

h2 {
  font-size:
    clamp(
      2.25rem,
      10vw,
      4rem
    );
}

h3 {
  font-size:
    clamp(
      1.6rem,
      7vw,
      2.35rem
    );
}

p {
  margin-top: 0;
}

.eyebrow {
  margin: 0 0 12px;

  color: var(--pink-700);

  font-size: 0.78rem;
  font-weight: 800;

  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.section-heading {
  width: 100%;
  max-width: 780px;

  margin: 0 auto 42px;

  text-align: center;
}

.section-heading h2 {
  margin-bottom: 16px;

  color: var(--purple-900);
}

.section-heading > p:last-child {
  margin-bottom: 0;

  color: var(--ink-soft);

  font-size: 1rem;
}


/* =========================================================
   BUTTONS
========================================================= */

.btn {
  width: 100%;
  min-height: 54px;

  padding: 14px 22px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 2px solid transparent;
  border-radius: 999px;

  font-size: 0.96rem;
  font-weight: 800;

  text-align: center;

  cursor: pointer;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--orange-500);

  color: white;

  box-shadow:
    0 10px 26px rgba(244, 124, 43, 0.26);
}

.btn-secondary {
  background: white;

  color: var(--purple-900);

  border-color: var(--purple-700);
}

.btn-secondary-dark {
  background: var(--purple-900);

  color: white;
}

.btn-light {
  background: white;

  color: var(--purple-900);
}

.btn-whatsapp {
  background: var(--whatsapp);

  color: white;

  box-shadow:
    0 12px 28px rgba(37, 211, 102, 0.25);
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
  width: 100%;

  position: sticky;
  top: 0;

  z-index: 1500;

  background:
    rgba(255, 249, 242, 0.96);

  border-bottom:
    1px solid rgba(152, 88, 166, 0.12);

  backdrop-filter: blur(12px);
}

.header-inner {
  width: 100%;
  max-width: var(--page-width);

  margin: 0 auto;

  padding:
    12px
    max(
      var(--content-padding),
      env(safe-area-inset-left)
    );

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 12px;
}

.site-logo {
  width: 142px;

  flex-shrink: 0;
}

.site-logo img {
  border-radius: 10px;
}

.desktop-nav {
  display: none;
}

.header-controls {
  display: flex;
  align-items: center;

  gap: 9px;
}


/* =========================================================
   LANGUAGE
========================================================= */

.language-switcher {
  min-height: 42px;

  padding: 5px 7px;

  display: flex;
  align-items: center;

  gap: 4px;

  background: white;

  border: 1px solid var(--purple-200);

  border-radius: 999px;

  box-shadow:
    0 5px 18px rgba(93, 47, 112, 0.08);
}

.language-btn {
  min-width: 58px;
  min-height: 32px;

  padding: 4px 7px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 4px;

  background: transparent;

  color: var(--muted);

  border: none;
  border-radius: 999px;

  font-size: 0.78rem;
  font-weight: 800;

  cursor: pointer;
}

.language-btn.active {
  background: var(--purple-100);

  color: var(--purple-900);
}

.language-flag {
  width: 22px;
  height: 14px;

  display: block;

  flex-shrink: 0;

  border-radius: 2px;

  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.08);
}

.language-divider {
  color: #c6b9c8;
}


/* =========================================================
   MOBILE MENU
========================================================= */

.menu-toggle {
  width: 46px;
  height: 46px;

  padding: 11px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  gap: 5px;

  background: var(--purple-900);

  border: none;
  border-radius: 50%;

  cursor: pointer;
}

.menu-toggle span {
  width: 100%;
  height: 2px;

  display: block;

  background: white;

  border-radius: 999px;

  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform:
    translateY(7px)
    rotate(45deg);
}

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

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

.mobile-menu {
  width: 100%;

  max-height: 0;

  overflow: hidden;

  display: flex;
  flex-direction: column;

  background: var(--purple-900);

  transition: max-height 0.3s ease;
}

.mobile-menu.open {
  max-height: 430px;
}

.mobile-menu a {
  min-height: 54px;

  padding: 14px 24px;

  display: flex;
  align-items: center;

  color: white;

  border-bottom:
    1px solid rgba(255, 255, 255, 0.12);

  font-weight: 700;
}


/* =========================================================
   HOME HERO
========================================================= */

.hero-section {
  position: relative;

  padding:
    58px
    var(--content-padding)
    70px;

  overflow: hidden;

  background:
    linear-gradient(
      160deg,
      #f8e8fb,
      #fff3e8 48%,
      var(--cream)
    );
}

.hero-inner {
  width: 100%;
  max-width: var(--page-width);

  margin: 0 auto;

  position: relative;

  z-index: 2;

  display: grid;

  gap: 42px;
}

.hero-copy {
  max-width: 660px;

  margin: 0 auto;

  text-align: center;
}

.hero-copy h1 {
  margin-bottom: 22px;

  color: var(--purple-900);
}

.hero-copy h1 span {
  display: block;
}

.hero-copy h1 span:nth-child(2) {
  color: var(--orange-500);
}

.hero-copy h1 span:nth-child(3) {
  color: var(--pink-500);
}

.hero-description {
  max-width: 600px;

  margin:
    0 auto
    28px;

  color: var(--ink-soft);

  font-size: 1.05rem;
  line-height: 1.8;
}

.hero-actions,
.classes-hero-actions,
.brilliant-hero-actions {
  display: grid;

  gap: 12px;
}

.hero-trust,
.classes-hero-trust {
  margin-top: 25px;

  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 8px;

  color: var(--purple-900);

  font-size: 0.88rem;
  font-weight: 700;
}

.hero-visual {
  width: 100%;
  max-width: 520px;

  margin: auto;

  position: relative;

  padding: 20px 8px 28px;
}

.hero-logo-card {
  width: min(100%, 420px);

  margin: auto;

  padding: 18px;

  background: white;

  border: 2px solid var(--purple-200);

  border-radius: var(--radius-xl);

  box-shadow: var(--shadow-card);

  transform: rotate(-2deg);
}

.hero-logo-card img {
  border-radius: 22px;
}

.floating-bubble,
.classes-floating-note {
  position: absolute;

  padding: 8px 13px;

  color: white;

  border-radius: 999px;

  font-family: "Fredoka", sans-serif;

  font-size: 0.72rem;
  font-weight: 700;

  box-shadow:
    0 8px 18px rgba(0, 0, 0, 0.12);
}

.bubble-learn {
  top: 6px;
  left: 3px;

  background: var(--orange-500);

  transform: rotate(-10deg);
}

.bubble-speak {
  top: 45%;
  right: 0;

  background: var(--purple-700);

  transform: rotate(9deg);
}

.bubble-play {
  bottom: 2px;
  left: 24%;

  background: var(--pink-500);

  transform: rotate(-4deg);
}

.hero-shape {
  position: absolute;

  border-radius: 50%;

  opacity: 0.2;
}

.hero-shape-one {
  width: 180px;
  height: 180px;

  top: -80px;
  right: -65px;

  background: var(--orange-300);
}

.hero-shape-two {
  width: 210px;
  height: 210px;

  bottom: -120px;
  left: -100px;

  background: var(--purple-500);
}


/* =========================================================
   HOME PATH
========================================================= */

.path-section,
.benefits-section {
  padding:
    75px
    var(--content-padding);

  background: white;
}

.path-grid {
  max-width: var(--page-width);

  margin: auto;

  display: grid;

  gap: 24px;

  /* Makes both cards stretch to the same height */
  align-items: stretch;
}

.path-card {
  padding: 32px 26px;

  border-radius: var(--radius-lg);

  box-shadow: var(--shadow-soft);

  /* NEW: allows content + buttons to align */
  display: flex;
  flex-direction: column;

  height: 100%;
}

.classes-path-card {
  background:
    linear-gradient(
      145deg,
      var(--purple-100),
      white
    );
}

.brilliant-path-card {
  background:
    linear-gradient(
      145deg,
      var(--orange-100),
      white
    );
}

.path-card-icon {
  width: 58px;
  height: 58px;

  margin-bottom: 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: white;

  border-radius: 18px;

  font-size: 1.8rem;
}

.card-label {
  color: var(--pink-700);

  font-size: 0.76rem;
  font-weight: 800;

  letter-spacing: 0.15em;
}

.path-card h3 {
  color: var(--purple-900);
}

.path-card p,
.feature-list li {
  color: var(--ink-soft);
}

.feature-list {
  padding: 0;

  list-style: none;
}

.feature-list li {
  position: relative;

  padding-left: 25px;

  margin-bottom: 9px;
}

.feature-list li::before {
  content: "✓";

  position: absolute;

  left: 0;

  color: var(--green-500);

  font-weight: 900;
}

.card-link {
  color: var(--purple-900);

  font-weight: 800;

  /* NEW: pushes both CTAs to the bottom */
  margin-top: auto;

  padding-top: 12px;
}


/* =========================================================
   HOME PATH CARD IMAGES
========================================================= */

.mini-product-image {
  width: 100%;
  max-width: 340px;

  height: 260px;

  margin:
    0 auto
    28px;

  padding: 10px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  background: white;

  border-radius: 24px;
}


/* Classes illustration fills its image area */

.classes-card-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  border-radius: 15px;
}


/* Brilliant game remains fully visible */

.brilliant-path-card .mini-product-image img {
  width: 100%;
  height: 100%;

  object-fit: contain;
  object-position: center;

  border-radius: 15px;
}


/* =========================================================
   SHARED PHOTO / FEATURE SECTIONS
========================================================= */

.gabby-preview-section,
.classes-teacher-section {
  padding:
    75px
    var(--content-padding);

  background:
    linear-gradient(
      160deg,
      var(--purple-900),
      var(--purple-700)
    );

  color: white;
}

.gabby-preview-inner,
.classes-teacher-inner {
  max-width: var(--page-width);

  margin: auto;

  display: grid;

  gap: 38px;

  align-items: center;
}

.gabby-photo-wrap,
.classes-teacher-photo,
.gabby-page-photo-wrap {
  max-width: 430px;

  margin: auto;

  position: relative;
}

.gabby-photo-wrap img,
.classes-teacher-photo img,
.gabby-page-photo-wrap img {
  position: relative;

  z-index: 2;

  border: 6px solid white;

  border-radius:
    46% 46% 30% 30%;

  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.22);
}

.gabby-photo-decoration,
.gabby-page-photo-decoration {
  position: absolute;

  inset: 15px -10px -15px 12px;

  background: var(--orange-500);

  border-radius:
    46% 46% 30% 30%;

  transform: rotate(4deg);
}

.gabby-preview-copy,
.classes-teacher-copy {
  text-align: center;
}

.gabby-preview-copy h2,
.classes-teacher-copy h2 {
  color: white;
}

.gabby-preview-copy .eyebrow,
.classes-teacher-copy .eyebrow {
  color: var(--yellow-500);
}

.gabby-preview-copy p,
.classes-teacher-copy p {
  color:
    rgba(
      255,
      255,
      255,
      0.92
    );
}

.gabby-highlights {
  margin: 25px 0 28px;

  display: grid;

  gap: 10px;
}

.gabby-highlights span {
  padding: 11px 14px;

  background:
    rgba(
      255,
      255,
      255,
      0.11
    );

  border:
    1px solid
    rgba(
      255,
      255,
      255,
      0.22
    );

  border-radius: 999px;

  font-weight: 700;
}


/* =========================================================
   PRODUCT GALLERY
========================================================= */

.brilliant-feature-section,
.brilliant-page-hero {
  padding:
    75px
    var(--content-padding);

  background:
    linear-gradient(
      150deg,
      var(--orange-100),
      var(--cream)
    );
}

.brilliant-feature-inner,
.brilliant-page-hero-inner {
  max-width: var(--page-width);

  margin: auto;

  display: grid;

  gap: 42px;

  align-items: center;
}

.brilliant-home-gallery,
.brilliant-page-gallery {
  max-width: 560px;

  margin: auto;
}

.home-product-main,
.brilliant-main-image {
  padding: 14px;

  background: white;

  border-radius: var(--radius-lg);

  box-shadow: var(--shadow-card);
}

.home-product-main img,
.brilliant-main-image img {
  aspect-ratio: 1 / 1;

  object-fit: contain;

  border-radius: 20px;

  transition:
    opacity 0.15s ease,
    transform 0.15s ease;
}

.home-product-main img.changing,
.brilliant-main-image img.changing {
  opacity: 0.15;

  transform: scale(0.98);
}

.home-product-thumbnails,
.brilliant-thumbnail-row {
  margin-top: 15px;

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 10px;
}

.home-product-thumb,
.brilliant-thumb {
  padding: 5px;

  background: white;

  border:
    2px solid transparent;

  border-radius: 16px;

  cursor: pointer;
}

.home-product-thumb.active,
.brilliant-thumb.active {
  border-color: var(--purple-700);
}

.home-product-thumb img,
.brilliant-thumb img {
  aspect-ratio: 1 / 1;

  object-fit: cover;

  border-radius: 10px;
}

.brilliant-feature-copy,
.brilliant-page-copy {
  text-align: center;
}

.brilliant-feature-copy > h2,
.brilliant-page-copy > h1 {
  margin-bottom: 4px;

  color: var(--orange-700);

  font-size:
    clamp(
      3.4rem,
      18vw,
      6.5rem
    );
}

.brilliant-feature-copy h3,
.brilliant-page-copy h2 {
  color: var(--purple-900);
}

.game-tags,
.brilliant-facts {
  margin: 24px 0 30px;

  display: flex;
  flex-wrap: wrap;
  justify-content: center;

  gap: 9px;
}

.game-tags span,
.brilliant-facts span {
  padding: 8px 13px;

  background: white;

  color: var(--purple-900);

  border:
    1px solid var(--purple-200);

  border-radius: 999px;

  font-size: 0.85rem;
  font-weight: 800;
}


/* =========================================================
   BENEFITS / SMALL CARDS
========================================================= */

.benefits-grid,
.brilliant-benefits-grid,
.gabby-values-grid,
.gabby-philosophy-grid {
  max-width: 1050px;

  margin: auto;

  display: grid;

  gap: 18px;
}

.benefit-card,
.brilliant-benefit,
.gabby-value-card,
.gabby-philosophy-card {
  padding: 28px 22px;

  background: var(--cream);

  border: 1px solid var(--border);

  border-radius: var(--radius-md);

  text-align: center;
}

.benefit-icon,
.challenge-icon {
  width: 58px;
  height: 58px;

  margin:
    0 auto
    16px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--purple-100);

  border-radius: 18px;

  font-size: 1.8rem;
}


/* =========================================================
   VIDEO
========================================================= */

.brilliant-story-section,
.how-to-play-section,
.brilliant-benefits-section,
.where-to-buy-section {
  padding:
    75px
    var(--content-padding);
}

.brilliant-story-section,
.brilliant-benefits-section {
  background: white;
}

.how-to-play-section,
.where-to-buy-section {
  background: var(--cream);
}

.video-feature {
  max-width: 980px;

  margin: auto;
}

.responsive-video {
  position: relative;

  width: 100%;

  aspect-ratio: 16 / 9;

  overflow: hidden;

  background: var(--purple-950);

  border-radius: var(--radius-lg);

  box-shadow: var(--shadow-card);
}

.responsive-video iframe {
  width: 100%;
  height: 100%;

  border: 0;
}


/* =========================================================
   BRILLIANT CHALLENGES
========================================================= */

.brilliant-challenges-section {
  padding:
    75px
    var(--content-padding);

  background:
    linear-gradient(
      160deg,
      var(--purple-100),
      var(--pink-100)
    );
}

.challenge-grid {
  max-width: var(--page-width);

  margin: auto;

  display: grid;

  gap: 18px;
}

.challenge-card {
  padding: 28px 22px;

  background: white;

  border-radius: var(--radius-md);

  text-align: center;

  box-shadow: var(--shadow-soft);
}

.challenge-card h3 {
  color: var(--purple-900);
}

.challenge-pronunciation {
  border-top: 6px solid var(--yellow-500);
}

.challenge-error {
  border-top: 6px solid var(--pink-500);
}

.challenge-slang {
  border-top: 6px solid var(--blue-500);
}

.challenge-verbs {
  border-top: 6px solid var(--green-500);
}


/* =========================================================
   BRILLIANT BOX
========================================================= */

.brilliant-box-section,
.gabby-brilliant-section,
.classes-brilliant-section {
  padding:
    75px
    var(--content-padding);

  background:
    linear-gradient(
      150deg,
      var(--orange-100),
      white
    );
}

.brilliant-box-inner,
.gabby-brilliant-inner,
.classes-brilliant-inner {
  max-width: var(--page-width);

  margin: auto;

  display: grid;

  gap: 40px;

  align-items: center;
}

.brilliant-box-image,
.gabby-brilliant-image,
.classes-brilliant-image {
  max-width: 500px;

  margin: auto;

  padding: 14px;

  background: white;

  border-radius: var(--radius-lg);

  box-shadow: var(--shadow-card);
}

.brilliant-box-copy,
.gabby-brilliant-copy,
.classes-brilliant-copy {
  text-align: center;
}

.brilliant-box-copy h2,
.gabby-brilliant-copy h2,
.classes-brilliant-copy h2 {
  color: var(--purple-900);
}

.box-list {
  padding: 0;

  list-style: none;
}

.box-list li {
  margin-bottom: 11px;

  color: var(--ink-soft);

  font-weight: 700;
}

.box-list li::before {
  content: "✓";

  margin-right: 10px;

  color: var(--green-500);
}


/* =========================================================
   RETAILERS
========================================================= */

/* Mobile-first: one card per row */
.retailer-grid {
  width: 100%;
  max-width: 1100px;

  margin: 2.5rem auto 0;

  display: grid;
  grid-template-columns: 1fr;

  gap: 18px;
}

.retailer-card {
  min-width: 0;

  padding: 28px 22px;

  background: white;

  border: 1px solid var(--border);
  border-radius: var(--radius-md);

  text-align: center;

  box-shadow: var(--shadow-soft);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.retailer-name {
  margin-bottom: 10px;

  color: var(--purple-900);

  font-family: "Fredoka", sans-serif;

  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.15;
}

.retailer-card p {
  margin-bottom: 0;

  color: var(--ink-soft);
}

.retailer-help {
  max-width: 500px;

  margin: 35px auto 0;

  text-align: center;
}

/* =========================================================
   BRILLIANT CLASSES CROSS-PROMO
========================================================= */

.brilliant-classes-section {
  padding:
    65px
    var(--content-padding);

  background: var(--purple-900);

  color: white;
}

.brilliant-classes-inner {
  max-width: 1000px;

  margin: auto;

  text-align: center;
}

.brilliant-classes-inner h2 {
  color: white;
}

.brilliant-classes-inner .eyebrow {
  color: var(--yellow-500);
}


/* =========================================================
   CLASSES HERO
========================================================= */

.classes-hero {
  padding:
    60px
    var(--content-padding)
    75px;

  background:
    linear-gradient(
      155deg,
      var(--purple-100),
      var(--orange-100)
    );
}

.classes-hero-inner {
  max-width: var(--page-width);

  margin: auto;

  display: grid;

  gap: 42px;

  align-items: center;
}

.classes-hero-copy {
  max-width: 690px;

  margin: auto;

  text-align: center;
}

.classes-hero-copy h1 {
  color: var(--purple-900);
}

.classes-hero-description {
  color: var(--ink-soft);

  font-size: 1.05rem;
}

.classes-hero-visual {
  max-width: 460px;

  margin: auto;

  position: relative;
}

.classes-hero-photo img {
  border:
    6px solid white;

  border-radius: var(--radius-xl);

  box-shadow: var(--shadow-card);
}

.note-speak {
  top: -10px;
  left: -4px;

  background: var(--orange-500);

  transform: rotate(-8deg);
}

.note-confidence {
  right: -5px;
  top: 45%;

  background: var(--pink-500);

  transform: rotate(8deg);
}

.note-you {
  bottom: -8px;
  left: 25%;

  background: var(--purple-700);

  transform: rotate(-4deg);
}


/* =========================================================
   CLASSES BENEFITS / WHO FOR
========================================================= */

.classes-why-section,
.classes-skills-section,
.classes-process-section,
.classes-testimonials-section {
  padding:
    75px
    var(--content-padding);

  background: white;
}

.classes-benefit-grid,
.classes-for-grid,
.classes-process-grid,
.classes-testimonial-grid,
.gabby-credentials-grid {
  max-width: var(--page-width);

  margin: auto;

  display: grid;

  gap: 18px;
}

.classes-benefit-card,
.classes-for-card,
.classes-process-card,
.gabby-credential-card {
  padding: 28px 22px;

  background: var(--cream);

  border:
    1px solid var(--border);

  border-radius: var(--radius-md);
}

.classes-benefit-card {
  text-align: center;
}

.classes-benefit-icon {
  width: 58px;
  height: 58px;

  margin:
    0 auto
    16px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--purple-100);

  border-radius: 18px;

  font-size: 1.8rem;
}

.classes-for-section {
  padding:
    75px
    var(--content-padding);

  background:
    linear-gradient(
      150deg,
      var(--purple-100),
      white
    );
}

.classes-for-inner {
  max-width: var(--page-width);

  margin: auto;
}

.classes-for-copy {
  max-width: 750px;

  margin:
    0 auto
    40px;

  text-align: center;
}

.classes-for-card {
  text-align: center;
}

.classes-for-card > span {
  font-size: 2rem;
}


/* =========================================================
   SKILL PILLS
========================================================= */

.classes-skills-grid {
  max-width: 950px;

  margin: auto;

  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap: 12px;
}

.skill-pill {
  min-height: 58px;

  padding: 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 8px;

  background: var(--purple-100);

  color: var(--purple-900);

  border-radius: 999px;

  text-align: center;

  font-weight: 800;
}


/* =========================================================
   PROCESS
========================================================= */

.classes-process-section {
  background: var(--cream);
}

.classes-process-card {
  position: relative;

  background: white;
}

.classes-process-number,
.gabby-credential-number {
  color: var(--pink-500);

  font-family: "Fredoka", sans-serif;

  font-size: 0.9rem;
  font-weight: 700;
}


/* =========================================================
   TESTIMONIALS
========================================================= */

.classes-testimonials-section {
  background:
    linear-gradient(
      150deg,
      var(--pink-100),
      var(--cream)
    );
}

.classes-testimonial-card {
  padding: 30px 24px;

  background: white;

  border-radius: var(--radius-md);

  box-shadow: var(--shadow-soft);

  display: flex;
  flex-direction: column;

  height: 100%;
}

/* =========================================================
   GOOGLE REVIEWS
========================================================= */

.review-stars {
  margin-bottom: 10px;

  color: #f4b400;

  font-size: 1.15rem;
  letter-spacing: 0.08em;

  line-height: 1;
}

.review-source {
  margin-top: auto;
  padding-top: 18px;

  color: var(--ink-soft);

  font-size: 0.85rem;
  font-weight: 700;

  letter-spacing: 0.04em;
}

.reviews-google-link {
  margin-top: 30px;

  text-align: center;
}

.reviews-google-link a {
  color: var(--purple-900);

  font-weight: 800;

  text-decoration: none;
}

.reviews-google-link a:hover {
  text-decoration: underline;
}


.quote-mark {
  display: block;

  height: 32px;

  color: var(--purple-500);

  font-family: Georgia, serif;

  font-size: 4rem;
  line-height: 0.8;
}

/* =========================================================
   CLASSES CONTACT
========================================================= */

.classes-contact-section,
.gabby-classes-cta-section {
  padding:
    80px
    var(--content-padding);

  background:
    linear-gradient(
      145deg,
      var(--purple-900),
      var(--purple-700)
    );

  color: white;
}

.classes-contact-inner,
.gabby-classes-cta-inner {
  max-width: 800px;

  margin: auto;

  text-align: center;
}

.classes-contact-inner .eyebrow,
.gabby-classes-cta-inner .eyebrow {
  color: var(--yellow-500);
}

.classes-contact-inner h2,
.gabby-classes-cta-inner h2 {
  color: white;
}

.classes-contact-socials {
  margin-top: 25px;

  display: flex;
  flex-wrap: wrap;
  justify-content: center;

  gap: 18px;
}

.classes-contact-socials a {
  color: white;

  font-weight: 800;
}


/* =========================================================
   GABBY HERO
========================================================= */

.gabby-page-hero {
  padding:
    65px
    var(--content-padding)
    80px;

  background:
    linear-gradient(
      155deg,
      var(--purple-100),
      var(--orange-100)
    );
}

.gabby-page-hero-inner {
  max-width: var(--page-width);

  margin: auto;

  display: grid;

  gap: 42px;

  align-items: center;
}

.gabby-page-hero-copy {
  text-align: center;
}

.gabby-page-hero-copy h1 {
  color: var(--purple-900);
}

.gabby-page-subtitle {
  color: var(--orange-700);

  font-weight: 800;
}

.gabby-page-description {
  color: var(--ink-soft);

  font-size: 1.05rem;
}

.gabby-page-tags {
  margin: 24px 0 28px;

  display: grid;

  gap: 10px;
}

.gabby-page-tags span {
  padding: 10px 13px;

  background: white;

  border-radius: 999px;

  color: var(--purple-900);

  font-weight: 700;
}


/* =========================================================
   GABBY BIO
========================================================= */

.gabby-bio-section,
.gabby-credentials-section,
.gabby-values-section {
  padding:
    75px
    var(--content-padding);

  background: white;
}

.gabby-bio-inner {
  max-width: 1050px;

  margin: auto;

  display: grid;

  gap: 30px;
}

.gabby-bio-heading {
  text-align: center;
}

.gabby-bio-heading h2 {
  color: var(--purple-900);
}

.gabby-bio-copy {
  color: var(--ink-soft);
}


/* =========================================================
   GABBY CREDENTIALS
========================================================= */

.gabby-credentials-section {
  background: var(--cream);
}

.gabby-credential-card {
  background: white;
}

.gabby-credential-card h3 {
  color: var(--purple-900);
}


/* =========================================================
   GABBY PHILOSOPHY
========================================================= */

.gabby-philosophy-section {
  padding:
    75px
    var(--content-padding);

  background:
    linear-gradient(
      145deg,
      var(--purple-100),
      var(--pink-100)
    );
}

.gabby-philosophy-inner {
  max-width: var(--page-width);

  margin: auto;
}

.gabby-philosophy-copy {
  max-width: 760px;

  margin:
    0 auto
    40px;

  text-align: center;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-section {
  padding:
    75px
    var(--content-padding);

  background:
    linear-gradient(
      150deg,
      var(--purple-100),
      var(--orange-100)
    );
}

.contact-inner {
  max-width: 1000px;

  margin: auto;

  display: grid;

  gap: 34px;
}

.contact-copy {
  text-align: center;
}

.contact-copy h2 {
  color: var(--purple-900);
}

.social-panel {
  padding: 26px 22px;

  background: white;

  border-radius: var(--radius-md);

  box-shadow: var(--shadow-soft);

  text-align: center;
}

.social-panel > p {
  color: var(--purple-900);

  font-weight: 800;
}

.social-links {
  display: grid;

  gap: 10px;
}

.social-links a {
  min-height: 52px;

  padding: 10px 14px;

  display: flex;
  align-items: center;

  gap: 12px;

  border:
    1px solid var(--purple-200);

  border-radius: 16px;

  color: var(--purple-900);

  font-weight: 800;
}

.social-icon {
  width: 34px;
  height: 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--purple-100);

  border-radius: 50%;
}


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

.site-footer {
  padding:
    45px
    var(--content-padding)
    calc(
      45px +
      env(safe-area-inset-bottom)
    );

  background: var(--purple-950);

  color: white;
}

.footer-inner {
  max-width: var(--page-width);

  margin: auto;

  display: grid;

  gap: 28px;

  text-align: center;
}

.footer-brand img {
  width: 170px;

  margin: auto;

  border-radius: 14px;
}

.footer-brand p {
  margin:
    12px 0
    0;

  color: var(--purple-200);

  font-weight: 800;
}

.footer-nav,
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;

  gap:
    10px
    18px;
}

.footer-nav a,
.footer-socials a {
  font-size: 0.9rem;
  font-weight: 700;
}

.copyright {
  margin: 0;

  color:
    rgba(
      255,
      255,
      255,
      0.65
    );

  font-size: 0.8rem;
}


/* =========================================================
   FLOATING WHATSAPP
========================================================= */

.floating-whatsapp {
  width: 58px;
  height: 58px;

  position: fixed;

  right:
    max(
      16px,
      env(safe-area-inset-right)
    );

  bottom:
    max(
      18px,
      calc(
        env(safe-area-inset-bottom) +
        12px
      )
    );

  z-index: 2000;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--whatsapp);

  border: 3px solid white;
  border-radius: 50%;

  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.22);
}

.floating-whatsapp svg {
  width: 32px;
  height: 32px;

  fill: white;
}


/* =========================================================
   TABLET 600+
========================================================= */

@media (min-width: 600px) {

  :root {
    --content-padding: 30px;
  }

  body {
    font-size: 17px;
  }

  .site-logo {
    width: 175px;
  }

  .btn {
    width: auto;
  }

  .hero-actions,
  .classes-hero-actions,
  .brilliant-hero-actions {
    max-width: 560px;

    margin-left: auto;
    margin-right: auto;

    grid-template-columns:
      repeat(2, 1fr);
  }

  .hero-trust,
  .classes-hero-trust {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .path-grid,
  .classes-benefit-grid,
  .gabby-credentials-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }

  .benefits-grid,
  .brilliant-benefits-grid,
  .gabby-values-grid,
  .gabby-philosophy-grid,
  .classes-testimonial-grid {
    grid-template-columns:
      repeat(3, 1fr);
  }

  /* Retailers: two columns on tablet */
  .retailer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .retailer-card:nth-child(5) {
    grid-column: 1 / -1;

    width: min(100%, 520px);
    justify-self: center;
  }

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

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

  .classes-skills-grid {
    grid-template-columns:
      repeat(4, 1fr);
  }

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

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

  .gabby-page-tags {
    grid-template-columns:
      repeat(3, 1fr);
  }

}


/* =========================================================
   LARGE TABLET 768+
========================================================= */

@media (min-width: 768px) {

  .header-inner {
    min-height: 84px;
  }

  .hero-inner,
  .classes-hero-inner,
  .gabby-page-hero-inner {
    gap: 60px;
  }

  .hero-copy,
  .classes-hero-copy,
  .gabby-page-hero-copy {
    text-align: left;

    margin: 0;
  }

  .hero-description {
    margin-left: 0;
  }

  .hero-actions,
  .classes-hero-actions {
    margin-left: 0;
  }

  .hero-trust,
  .classes-hero-trust {
    justify-content: flex-start;
  }

  .gabby-preview-inner,
  .classes-teacher-inner {
    grid-template-columns:
      0.85fr
      1.15fr;

    gap: 60px;
  }

  .gabby-preview-copy,
  .classes-teacher-copy {
    text-align: left;
  }

  .brilliant-feature-inner,
  .brilliant-page-hero-inner,
  .brilliant-box-inner,
  .gabby-brilliant-inner,
  .classes-brilliant-inner {
    grid-template-columns:
      1fr
      1fr;

    gap: 60px;
  }

  .brilliant-feature-copy,
  .brilliant-page-copy,
  .brilliant-box-copy,
  .gabby-brilliant-copy,
  .classes-brilliant-copy {
    text-align: left;
  }

  .game-tags,
  .brilliant-facts {
    justify-content: flex-start;
  }

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

    align-items: center;
  }

  .contact-copy {
    text-align: left;
  }

  .gabby-page-hero-inner {
    grid-template-columns:
      0.85fr
      1.15fr;
  }

  .gabby-bio-inner {
    grid-template-columns:
      0.8fr
      1.2fr;

    gap: 65px;
  }

  .gabby-bio-heading {
    text-align: left;
  }

}


/* =========================================================
   DESKTOP 900+
========================================================= */

@media (min-width: 900px) {

  :root {
    --content-padding: 40px;
  }

  .desktop-nav {
    display: flex;
    align-items: center;

    gap: 25px;
  }

  .desktop-nav a {
    position: relative;

    color: var(--purple-900);

    font-size: 0.92rem;
    font-weight: 800;

    white-space: nowrap;
  }

  .desktop-nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -6px;

    width: 0;
    height: 3px;

    background: var(--orange-500);

    border-radius: 999px;

    transition: width 0.2s ease;
  }

  .desktop-nav a:hover::after,
  .desktop-nav a.active::after {
    width: 100%;
  }

  .menu-toggle,
  .mobile-menu {
    display: none;
  }

  .hero-section,
  .classes-hero,
  .gabby-page-hero {
    padding-top: 92px;
    padding-bottom: 95px;
  }

  .hero-inner,
  .classes-hero-inner {
    grid-template-columns:
      1.05fr
      0.95fr;

    align-items: center;

    gap: 80px;
  }

  .path-section,
  .gabby-preview-section,
  .brilliant-feature-section,
  .benefits-section,
  .contact-section,
  .brilliant-story-section,
  .brilliant-challenges-section,
  .brilliant-box-section,
  .how-to-play-section,
  .brilliant-benefits-section,
  .where-to-buy-section,
  .classes-why-section,
  .classes-for-section,
  .classes-skills-section,
  .classes-process-section,
  .classes-teacher-section,
  .classes-testimonials-section,
  .classes-brilliant-section,
  .gabby-bio-section,
  .gabby-credentials-section,
  .gabby-philosophy-section,
  .gabby-brilliant-section,
  .gabby-values-section {
    padding-top: 95px;
    padding-bottom: 95px;
  }

  .path-card {
    padding: 42px 38px;
  }

  .challenge-grid {
    grid-template-columns:
      repeat(4, 1fr);
  }

  .classes-benefit-grid {
    grid-template-columns:
      repeat(4, 1fr);
  }

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

  .classes-process-grid {
    grid-template-columns:
      repeat(4, 1fr);
  }

  /* Retailers: 3 cards on top, 2 centered below */
  .retailer-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 24px;
  }

  .retailer-card {
    grid-column: span 2;
    width: auto;
    justify-self: stretch;
  }

  .retailer-card:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .retailer-card:nth-child(5) {
    grid-column: 4 / span 2;
    width: auto;
    justify-self: stretch;
  }

  .floating-whatsapp {
    width: 64px;
    height: 64px;

    right: 24px;
    bottom: 24px;
  }

  .floating-whatsapp svg {
    width: 35px;
    height: 35px;
  }

}


/* =========================================================
   LARGE DESKTOP 1200+
========================================================= */

@media (min-width: 1200px) {

  :root {
    --content-padding: 50px;
  }

  body {
    font-size: 18px;
  }

  .site-logo {
    width: 195px;
  }

  .desktop-nav {
    gap: 30px;
  }

  .hero-inner {
    min-height: 560px;

    gap: 95px;
  }

  .hero-copy h1 {
    font-size: 5.4rem;
  }

  .hero-description,
  .classes-hero-description,
  .gabby-page-description {
    font-size: 1.14rem;
  }

}


/* =========================================================
   HOVER DEVICES ONLY
========================================================= */

@media (hover: hover) {

  .btn:hover {
    transform: translateY(-3px);
  }

  .btn-primary:hover {
    background: var(--orange-600);

    box-shadow:
      0 14px 32px rgba(244, 124, 43, 0.34);
  }

  .btn-secondary:hover {
    background: var(--purple-900);

    color: white;
  }

  .btn-secondary-dark:hover {
    background: var(--purple-800);
  }

  .btn-whatsapp:hover {
    transform:
      translateY(-3px)
      scale(1.02);
  }

  .path-card:hover,
  .challenge-card:hover,
  .classes-benefit-card:hover,
  .classes-for-card:hover,
  .gabby-credential-card:hover,
  .retailer-card:hover {
    transform: translateY(-5px);

    box-shadow: var(--shadow-hover);
  }

  .home-product-thumb:hover,
  .brilliant-thumb:hover {
    transform: translateY(-3px);
  }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (
  prefers-reduced-motion:
  reduce
) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;

    transition-duration:
      0.01ms !important;

    animation-duration:
      0.01ms !important;
  }

}
