:root {
  --red: #DF4426;
  --red-dark: #B8341C;
  --red-deep: #7E2412;
  --green: #58A245;
  --green-dark: #3E7A2F;
  --ink: #211D1A;
  --ink-soft: #4A443F;
  --paper: #FFFFFF;
  --mist: #F5F3EF;
  --line: #E7E2D8;
  --radius-s: 10px;
  --radius-m: 18px;
  --radius-l: 28px;
  --maxw: 1180px;
  --ease: cubic-bezier(.16, .84, .44, 1);
}

/* ==========================================================================
   MASTER CSS BUNDLE IMPORT - WHATTAMEAL & WM CAMPUS
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

[id] {
  scroll-margin-top: 84px;
}

/* ===== CUSTOM BRAND RED SCROLLBAR ===== */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--red) var(--mist);
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--mist);
  border-left: 1px solid var(--line);
}

::-webkit-scrollbar-thumb {
  background: var(--red);
  border-radius: 100px;
  border: 2px solid var(--mist);
  transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--red-dark);
}

::-webkit-scrollbar-thumb:active {
  background: var(--red-deep);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Outfit', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

/* Outfit font for headings */
h1,
h2,
h3,
h4,
h5,
h6,
.nav-brand,
.nav-links a,
.dropdown-item-text,
.hero-head,
.hero-sub,
.stat,
.badge-pill,
.btn {
  font-family: 'Outfit', sans-serif;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

h1,
h2,
h3,
h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

p {
  margin: 0;
}

.eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.eyebrow.green {
  color: var(--green-dark);
}

.eyebrow::before {
  content: "";
  width: 16px;
  height: 1.5px;
  background: currentColor;
  display: inline-block;
}

section {
  position: relative;
}

.sect {
  padding: 120px 0;
}

.sect.tight {
  padding: 88px 0;
}

.sect.mist {
  background: var(--mist);
}

/* Utility & Section Header Styles */
.text-center {
  text-align: center !important;
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-top: 10px;
  color: var(--ink);
}

.section-lead {
  font-size: 16.5px;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 680px;
  margin: 12px auto 0;
}

@media(max-width:760px) {
  .sect {
    padding: 76px 0;
  }

  .sect.tight {
    padding: 56px 0;
  }

  .wrap {
    padding: 0 20px;
  }
}

/* reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media(prefers-reduced-motion:reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 15px 26px;
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s, border-color .25s, color .25s;
  white-space: nowrap;
}

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

.btn-primary {
  background: var(--red);
  color: #fff;
}

.btn-primary:hover {
  background: var(--red-dark);
}

.btn-outline-green {
  border-color: var(--green);
  color: var(--green-dark);
  background: transparent;
}

.btn-outline-green:hover {
  background: var(--green);
  color: #fff;
}

.btn-outline-ink {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}

.btn-outline-ink:hover {
  background: var(--ink);
  color: #fff;
}

.btn-ghost-white {
  border-color: rgba(255, 255, 255, .6);
  color: #fff;
  background: transparent;
}

.btn-ghost-white:hover {
  background: rgba(255, 255, 255, .16);
}

.btn-fill-white {
  background: #fff;
  color: var(--red-deep);
}

.btn-fill-white:hover {
  background: #FFF3EE;
}

.btn-sm {
  padding: 10px 18px;
  font-size: 13.5px;
}

/* ===== NAV ===== */
@keyframes headerEntrance {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

header.site {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  animation: headerEntrance 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transition: border-color .3s, box-shadow .3s, background-color .3s, padding .3s;
}

header.site.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(33, 29, 26, .08);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  transition: padding 0.3s var(--ease);
}

header.site.scrolled .nav-row {
  padding: 11px 0;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-brand img,
.nav-logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.3s var(--ease), filter 0.3s var(--ease);
}

.nav-brand:hover .nav-logo-img {
  transform: scale(1.05) rotate(-1deg);
  filter: drop-shadow(0 4px 10px rgba(223, 68, 38, 0.2));
}

.nav-tagline {
  font-family: 'Space Mono', monospace;
  font-size: 10.5px;
  letter-spacing: .06em;
  color: var(--ink-soft);
  display: none;
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  gap: 10px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.25s var(--ease);
  position: relative;
  text-decoration: none;
  padding: 4px 0;
}

.nav-links a:not(.dropdown-trigger)::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 2.5px;
  background: var(--red);
  border-radius: 2px;
  transition: width 0.28s var(--ease);
}

.nav-links a:not(.dropdown-trigger):hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--red);
}

.nav-links a.active {
  color: var(--red) !important;
  font-weight: 600;
}

.nav-links a.nav-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 2px 6px;
}

.nav-logo-icon {
  height: 40px;
  width: auto;
  object-fit: contain;
  vertical-align: middle;
  transition: transform 0.2s var(--ease);
}

.nav-logo-icon:hover {
  transform: translateY(-1px);
}

.nav-logo-icon.campus-icon {
  height: 45px;
}

/* ===== NAV DROPDOWN ===== */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.25s var(--ease);
  text-decoration: none;
  padding: 4px 0;
}

.dropdown-trigger .chevron-icon {
  transition: transform 0.3s var(--ease);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px) scale(0.96);
  transform-origin: top center;
  margin-top: 0;
  min-width: 290px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12), 0 4px 14px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--line);
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
  z-index: 1000;
}

/* Invisible hover bridge connecting trigger to menu */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
  background: transparent;
}

/* Desktop Hover & Focus states scoped strictly to real pointer devices > 920px */
@media (hover: hover) and (min-width: 921px) {
  .dropdown-trigger:hover,
  .nav-dropdown:hover .dropdown-trigger {
    color: var(--red);
  }

  .nav-dropdown:hover .dropdown-trigger .chevron-icon {
    transform: rotate(180deg);
  }

  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
  }
}

.dropdown-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 10px 14px !important;
  border-radius: 10px;
  transition: transform 0.22s var(--ease), background-color 0.22s var(--ease);
}

.dropdown-item:hover {
  transform: translateX(4px);
  background: var(--mist);
}

.nav-cta .btn {
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background-color 0.25s var(--ease);
}

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

.nav-cta .btn-primary:hover {
  box-shadow: 0 8px 20px rgba(223, 68, 38, 0.28);
}

.dropdown-item-logo {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.dropdown-item-logo.campus-logo {
  height: 36px;
}

.dropdown-item-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.dropdown-title {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  line-height: 1.2;
}

.dropdown-sub {
  font-size: 11.5px;
  color: var(--ink-soft);
  font-weight: 500;
  line-height: 1.2;
}

.coming-soon-badge {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  font-weight: 700;
  color: #D9411C;
  background: rgba(217, 65, 28, 0.08);
  padding: 2px 7px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 2px;
}

.disabled-item {
  cursor: default;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 50%;
  transition: background 0.2s var(--ease);
}

.nav-cta {
  display: flex;
  gap: 12px;
  align-items: center;
}

@media (max-width: 920px) {
  .nav-row {
    padding: 12px 0;
  }

  .nav-links {
    position: fixed;
    top: 62px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    flex-direction: column;
    padding: 20px 24px 28px;
    border-bottom: 1px solid var(--line);
    border-radius: 0 0 20px 20px;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
    gap: 14px;
    align-items: flex-start;
    transform: translateY(-140%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, visibility 0.3s;
    z-index: 999;
    max-height: calc(100vh - 62px);
    overflow-y: auto;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-links a {
    font-size: 15.5px;
    font-weight: 600;
    width: 100%;
    padding: 8px 0;
    color: var(--ink);
  }

  .nav-dropdown {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .dropdown-trigger {
    font-size: 15.5px;
    font-weight: 600;
    width: 100%;
    justify-content: space-between;
    padding: 8px 0;
    color: var(--ink);
    cursor: pointer;
  }

  .nav-dropdown.open .chevron-icon {
    transform: rotate(180deg);
  }

  .dropdown-menu {
    position: static;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    transform: none !important;
    box-shadow: none;
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 0 12px;
    min-width: auto;
    width: 100%;
    margin-top: 0;
    background: rgba(0, 0, 0, 0.03);
    border-radius: var(--radius-m);
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease, padding 0.3s ease, margin 0.3s ease, visibility 0.25s;
  }

  .dropdown-menu::before {
    display: none;
  }

  .nav-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 320px;
    padding: 10px 12px;
    margin-top: 8px;
  }

  .dropdown-item {
    min-height: 48px;
    padding: 10px 12px;
  }

  .dropdown-item:hover,
  .dropdown-item:active {
    transform: none;
    background: rgba(223, 68, 38, 0.08);
  }

  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.04);
    border: none;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
  }

  .nav-toggle:hover,
  .nav-toggle.active {
    background: rgba(223, 68, 38, 0.12);
  }

  .nav-tagline {
    display: none;
  }

  .nav-cta .btn:first-child {
    display: none;
  }
}

@media (max-width: 480px) {
  .nav-cta .btn {
    padding: 8px 14px;
    font-size: 12.5px;
  }
}

/* ===== HERO ===== */
.hero {
  padding: 64px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.badge-pill {
  display: inline-flex;
  flex-wrap: nowrap;
  gap: 6px 14px;
  align-items: center;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 9px 18px;
  font-family: 'Space Mono', monospace;
  font-size: 11.5px;
  color: var(--ink-soft);
  letter-spacing: .02em;
}

.badge-pill b {
  color: var(--red);
  font-weight: 700;
}

.dot-sep {
  color: var(--line);
}

h1.hero-head {
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 800;
  margin: 22px 0 20px;
}

h1.hero-head .l1 {
  color: var(--ink);
  display: block;
}

h1.hero-head .l2 {
  color: var(--red);
  display: block;
}

h1.hero-head .l3 {
  color: var(--green-dark);
  display: block;
}

.hero-sub {
  font-size: 17.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 32px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.stat-strip {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--line);
  padding-top: 26px;
}

.stat {
  flex: 1;
  padding-right: 18px;
}

.stat b {
  font-family: 'Space Mono', monospace;
  font-size: clamp(22px, 2.6vw, 30px);
  color: var(--ink);
  display: block;
  font-weight: 700;
}

.stat span {
  font-size: 12.5px;
  color: var(--ink-soft);
}

/* STUDENT ID CARD 3D FLIP COMPONENT */
.student-id-card-flip {
  width: 100%;
  max-width: 320px;
  height: 440px;
  position: relative;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: transform 0.7s var(--ease);
  margin: 0 auto;
}

.student-id-card-flip.flipped {
  transform: rotateY(180deg);
}

.student-id-card-front {
  position: absolute;
  inset: 0;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 2px 9px 20px 0px rgba(33, 29, 26, .35);
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.student-card-back {
  position: absolute;
  inset: 0;
  background: #ffffff;
  border-radius: 20px;
  border: 1.5px solid var(--line);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.06), 0 14px 36px rgba(0, 0, 0, 0.08), 0 2px 10px rgba(0, 0, 0, 0.04);
  padding: 26px 22px;
  transform: rotateY(180deg);
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: stretch;
  text-align: left;
}

.front-hint {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 9.5px;
  font-family: 'Space Mono', monospace;
  color: var(--red);
  background: rgba(223, 68, 38, 0.08);
  padding: 3px 8px;
  border-radius: 100px;
  font-weight: 700;
}

.student-card-header {
  padding: 22px 20px 10px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wm-campus-logo-img {
  max-height: 65px;
  max-width: 210px;
  width: auto;
  object-fit: contain;
}

.student-card-body {
  padding: 0 22px 18px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.qr-card .student-name,
.student-card-body .student-name,
.student-name {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin: 4px 0 2px 0;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.student-class {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin: 0 0 4px 0;
}

.student-id {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 14px 0;
}

.student-card-divider {
  width: 100%;
  border: none;
  height: 1px;
  background-color: #E5E7EB;
  margin: 0 0 16px 0;
}

.student-qr-container {
  width: 132px;
  height: 132px;
  background-color: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
  margin-bottom: 14px;
}

.student-qr-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.school-logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}

.school-logo-img {
  max-height: 36px;
  max-width: 150px;
  width: auto;
  object-fit: contain;
}

.student-card-footer {
  width: 100%;
  background-color: #D9411C;
  padding: 11px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 11.5px;
  font-weight: 500;
  line-height: 1;
}

.footer-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.footer-icon {
  font-size: 11px;
}

/* QR CARD signature component */
.card-stage {
  display: flex;
  justify-content: center;
  perspective: 1400px;
}

.qr-card {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 1.586/1;
  position: relative;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: transform .7s var(--ease);
}

.qr-card.flipped {
  transform: rotateY(180deg);
}

.qr-face {
  position: absolute;
  inset: 0;
  border-radius: 22px;
  backface-visibility: hidden;
  box-shadow: 0 24px 48px -18px rgba(33, 29, 26, .35);
  overflow: hidden;
}

.qr-front {
  background: linear-gradient(135deg, var(--red) 0%, #ef6a44 60%, var(--red) 100%);
  color: #fff;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.qr-front .qtop {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.qr-front .qtop img {
  height: 20px;
  filter: brightness(0) invert(1);
  opacity: .95;
}

.qr-chip {
  width: 38px;
  height: 28px;
  border-radius: 6px;
  background: rgba(255, 255, 255, .35);
  border: 1px solid rgba(255, 255, 255, .5);
}

.qr-name {
  font-family: 'Space Mono', monospace;
  font-size: 15px;
  letter-spacing: .02em;
}

.qr-role {
  font-size: 11.5px;
  opacity: .85;
  margin-top: 2px;
}

.qr-hint {
  position: absolute;
  bottom: 10px;
  right: 14px;
  font-size: 10px;
  font-family: 'Space Mono', monospace;
  opacity: .75;
}

.qr-back {
  background: #fff;
  border: 1.5px solid var(--line);
  padding: 20px 22px;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.qr-back-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.qr-label {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ink-soft);
}

.qr-balance {
  font-family: 'Space Mono', monospace;
  font-size: 26px;
  font-weight: 700;
  color: var(--green-dark);
}

.qr-load-btn {
  font-family: 'Outfit', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 6px 12px;
  cursor: pointer;
}

.qr-load-btn:hover {
  background: var(--green-dark);
}

.qr-chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.qr-chip-pref {
  font-size: 10.5px;
  padding: 5px 10px;
  border-radius: 100px;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  cursor: pointer;
  transition: all .2s;
}

.qr-chip-pref.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.card-caption {
  text-align: center;
  font-size: 12.5px;
  color: var(--ink-soft);
  margin-top: 18px;
  font-family: 'Space Mono', monospace;
}

.card-caption span {
  color: var(--red);
}

/* ===== NARRATIVE / ROOT DIVIDER ===== */
.root-divider {
  display: flex;
  justify-content: center;
  padding: 8px 0 0;
}

.root-divider svg {
  width: 120px;
  height: auto;
  opacity: .55;
}

.narrative {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.narrative .q {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(24px, 3.4vw, 34px);
  font-weight: 600;
  font-style: italic;
  color: var(--red-deep);
  margin: 26px 0 30px;
}

.narrative p {
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 16px;
}

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

/* ===== TWO SOLUTIONS FORK ===== */
.fork-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 12px;
}

.fork-head h2 {
  font-size: clamp(28px, 3.6vw, 42px);
  margin: 14px 0 16px;
}

.fork-head p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
}

.fork-graphic {
  display: flex;
  justify-content: center;
  margin: 36px 0 10px;
}

.fork-graphic svg {
  width: 100%;
  max-width: 520px;
  height: auto;
}

.solutions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 0;
}

.sol-card {
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-l);
  padding: 38px 34px;
  transition: transform .35s var(--ease), box-shadow .35s;
}

.sol-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -24px rgba(33, 29, 26, .22);
}

.sol-card img {
  height: 30px;
  margin-bottom: 22px;
}

.sol-card.campus img {
  height: 56px;
  margin-bottom: 10px;
}

.sol-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.sol-card .kicker {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.sol-card.campus .kicker {
  color: var(--green-dark);
}

.sol-card p.desc {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
  margin: 14px 0 22px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--ink);
  padding: 7px 0;
  border-top: 1px solid var(--line);
}

.check-list li:first-child {
  border-top: none;
}

.check-list li .tick {
  color: var(--green);
  font-weight: 700;
}

.sol-card.campus .check-list li .tick {
  color: var(--green-dark);
}

/* ===== WHY TRUST ===== */
.trust-head {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
}

.trust-head h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  margin: 14px 0 22px;
}

.trust-head .stack-lines {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.9;
}

.trust-head p.body {
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.75;
  margin-top: 20px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--line);
  border-radius: var(--radius-l);
  overflow: hidden;
  border: 1px solid var(--line);
}

.feature-card {
  background: #fff;
  padding: 32px 26px;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.feature-card .fnum {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--red);
  letter-spacing: .06em;
}

.feature-card h4 {
  font-size: 16.5px;
  margin: 14px 0 8px;
}

.feature-card p {
  font-size: 13.6px;
  color: var(--ink-soft);
  line-height: 1.55;
}

@media(max-width:920px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ===== CUISINE STRIP ===== */
.cuisine-head {
  max-width: 640px;
  margin: 0 auto 40px;
  text-align: center;
}

.cuisine-head h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  margin: 14px 0 18px;
}

.cuisine-head p {
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.7;
}

.cuisine-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 10px 4px 24px;
  -ms-overflow-style: none;
  scrollbar-width: none;
  scroll-behavior: auto;
}

.cuisine-scroll::-webkit-scrollbar {
  display: none;
}

.cuisine-card {
  scroll-snap-align: start;
  flex: 0 0 auto;
  width: 220px;
  background: var(--mist);
  border-radius: var(--radius-m);
  padding: 24px 20px;
  border: 1px solid var(--line);
}

.cuisine-card b {
  font-family: 'Bricolage Grotesque';
  font-size: 18px;
  display: block;
  margin-bottom: 8px;
}

.cuisine-card p {
  font-size: 13.6px;
  color: var(--ink-soft);
  line-height: 1.55;
}

.cuisine-tag {
  font-family: 'Space Mono';
  font-size: 10px;
  color: var(--green-dark);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: inline-block;
}

/* ===== MEET WM CAMPUS ===== */
.campus-sect {
  background: var(--ink);
  color: #fff;
}

.campus-grid {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 64px;
  align-items: center;
}

.campus-grid .eyebrow {
  color: #EFA98F;
}

.campus-grid .eyebrow::before {
  background: #EFA98F;
}

.campus-grid h2 {
  font-size: clamp(28px, 3.6vw, 42px);
  margin: 16px 0 20px;
  color: #fff;
}

.campus-lines {
  font-size: 16px;
  color: #D8D4CE;
  line-height: 1.6;
  margin-bottom: 8px;
}

.campus-lines b {
  color: #fff;
}

.campus-copy p {
  color: #C7C2BB;
  font-size: 15.5px;
  line-height: 1.75;
  margin-bottom: 14px;
}

.campus-feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 26px;
}

.cf-item {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 13.5px;
  color: #E7E4DE;
}

.cf-item b {
  display: block;
  font-family: 'Bricolage Grotesque';
  font-size: 14.5px;
  color: #fff;
  margin-bottom: 3px;
  font-weight: 600;
}

.campus-card-wrap .qr-card {
  max-width: 320px;
  margin: 0 auto;
}

.campus-card-wrap .card-caption {
  color: #B9B4AD;
}

.campus-card-wrap .card-caption span {
  color: #EFA98F;
}

/* ===== HOW IT WORKS ===== */
.how-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.how-head h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  margin: 14px 0 0;
}

.timeline-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.timeline h3 {
  font-size: 19px;
  margin-bottom: 26px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.timeline h3 .tag {
  font-family: 'Space Mono';
  font-size: 11px;
  background: var(--mist);
  padding: 4px 10px;
  border-radius: 100px;
  color: var(--ink-soft);
}

.tl-step {
  display: flex;
  gap: 16px;
  position: relative;
  padding-bottom: 30px;
}

.tl-step:last-child {
  padding-bottom: 0;
}

.tl-step::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 34px;
  bottom: 0;
  width: 1.5px;
  background: var(--line);
}

.tl-step:last-child::before {
  display: none;
}

.tl-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Mono';
  font-size: 13px;
  font-weight: 700;
  z-index: 1;
}

.timeline.canteen .tl-num {
  background: var(--green-dark);
}

.tl-body p {
  font-size: 15px;
  font-weight: 600;
  padding-top: 4px;
}

/* ===== TAGLINE STACK ===== */
.stack-hero {
  text-align: center;
}

.stack-hero h2 {
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.15;
}

.stack-hero h2 span {
  display: block;
}

.stack-hero .c1 {
  color: var(--ink);
}

.stack-hero .c2 {
  color: var(--red);
}

.stack-hero .c3 {
  color: var(--green-dark);
}

.stack-sub {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  max-width: 820px;
  margin: 52px auto 0;
  text-align: center;
}

.stack-sub .col b {
  font-family: 'Bricolage Grotesque';
  font-size: 17px;
  display: block;
  margin-bottom: 6px;
}

.stack-sub .col p {
  font-size: 14px;
  color: var(--ink-soft);
}

@media(max-width:700px) {
  .stack-sub {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

/* ===== PARTNER ===== */
.partner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.partner-copy h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  margin: 14px 0 18px;
}

.partner-copy p {
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.75;
  margin-bottom: 14px;
}

.receive-box {
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 34px;
}

.receive-box h4 {
  font-family: 'Space Mono';
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ink-soft);
  margin-bottom: 18px;
}

.receive-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 18px;
}

.receive-list li {
  display: flex;
  gap: 8px;
  font-size: 14.5px;
  padding: 8px 0;
  border-top: 1px solid var(--line);
}

.receive-list li:nth-child(-n+2) {
  border-top: none;
}

.receive-list li .tick {
  color: var(--green-dark);
  font-weight: 700;
}

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

  .receive-list {
    grid-template-columns: 1fr;
  }

  .receive-list li:nth-child(2) {
    border-top: 1px solid var(--line);
  }
}

/* ===== DOWNLOAD ===== */
.dl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.dl-copy h2 {
  font-size: clamp(26px, 3.4vw, 36px);
  margin: 14px 0 18px;
}

.dl-copy p.lead {
  color: var(--ink-soft);
  font-size: 15.5px;
  margin-bottom: 22px;
}

.dl-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dl-list li {
  font-size: 16px;
  font-weight: 600;
  padding: 11px 0;
  border-top: 1px solid var(--line);
}

.dl-list li:first-child {
  border-top: none;
}

.store-badges {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #111827;
  color: #ffffff;
  border: 1px solid #111827;
  border-radius: 12px;
  padding: 10px 20px;
  text-decoration: none;
  transition: transform 0.2s var(--ease), background 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.store-badge:hover {
  background: #000000;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.store-badge .store-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.store-badge span {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.store-badge .sub-text {
  font-size: 9.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9CA3AF;
  line-height: 1.1;
}

.store-badge .main-text {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
  margin-top: 1px;
}

.dl-visual {
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dl-visual .qr-card {
  max-width: 280px;
}

/* ===== FINAL CTA ===== */
.final-cta {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
  color: #fff;
  text-align: center;
  padding: 110px 0;
}

.final-cta h2 {
  font-size: clamp(30px, 4.6vw, 52px);
  margin: 0 0 20px;
}

.final-cta p {
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto 40px;
  color: #FFE3D9;
  line-height: 1.6;
}

.final-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
footer,
.site-footer {
  background: #141211;
  color: #D8D4CE;
  padding: 80px 0 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.foot-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 48px;
  margin-bottom: 56px;
}

.foot-brand .foot-logo-img {
  height: 42px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  transition: opacity 0.25s ease;
}

.foot-brand .foot-logo-img:hover {
  opacity: 0.9;
}

.foot-brand .tag {
  font-size: 14px;
  color: #A39E96;
  line-height: 1.65;
  max-width: 34ch;
  margin-bottom: 22px;
}

.foot-contact-badges {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.foot-contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Mono', monospace;
  font-size: 12.5px;
  font-weight: 700;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 16px;
  border-radius: 100px;
  transition: all 0.25s var(--ease);
}

.foot-contact-pill:hover {
  background: var(--red);
  border-color: var(--red);
  color: #ffffff;
  transform: translateY(-2px);
}

.foot-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Mono', monospace;
  font-size: 12.5px;
  font-weight: 700;
  color: #ffffff;
  background: #25D366;
  padding: 8px 16px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.25s var(--ease);
}

.foot-whatsapp-btn:hover {
  background: #1DA851;
  transform: translateY(-2px);
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3);
}

.foot-col h5 {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #8C867D;
  margin-bottom: 20px;
}

.foot-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.foot-col ul li {
  margin-bottom: 12px;
  font-size: 14.5px;
}

.foot-col ul li a {
  color: #C4BFB7;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-block;
}

.foot-col ul li a:hover {
  color: var(--green);
  transform: translateX(4px);
}

.foot-address-text {
  font-size: 14px;
  color: #A39E96;
  line-height: 1.65;
  margin: 0;
}

.foot-address-text strong {
  color: #ffffff;
}

.foot-maps-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  transition: all 0.2s ease;
}

.foot-maps-link:hover {
  color: #6fc459;
  text-decoration: underline;
}

/* Footer Bottom Bar */
.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: #8C867D;
}

.foot-legal-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.foot-legal-links a {
  color: #A39E96;
  transition: color 0.2s ease;
}

.foot-legal-links a:hover {
  color: #ffffff;
}

.foot-dot {
  color: rgba(255, 255, 255, 0.2);
}

/* Footer Breakpoints */
@media (max-width: 1024px) {
  .foot-top {
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 36px;
  }
  .foot-col:last-child {
    grid-column: span 3;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 60px 0 28px;
  }

  .foot-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .foot-brand {
    grid-column: span 2;
  }

  .foot-col:last-child {
    grid-column: span 2;
  }

  .foot-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .foot-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .foot-brand,
  .foot-col:last-child {
    grid-column: span 1;
  }

  .foot-contact-badges {
    flex-direction: column;
    align-items: stretch;
  }

  .foot-contact-pill,
  .foot-whatsapp-btn {
    justify-content: center;
  }

  .foot-legal-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ===== COMPREHENSIVE MOBILE RESPONSIVENESS ===== */
@media(max-width:920px) {
  .sect {
    padding: 72px 0;
  }

  .sect.tight {
    padding: 48px 0;
  }

  .hero-grid,
  .campus-grid,
  .partner-grid,
  .dl-grid {
    grid-template-columns: 1fr;
  }

  .campus-grid {
    gap: 40px;
  }

  .solutions-grid,
  .timeline-grid {
    grid-template-columns: 1fr;
  }

  .stat-strip {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stat {
    flex: none;
  }
}

@media(max-width:768px) {
  .wrap {
    padding: 0 20px;
  }

  .sect {
    padding: 56px 0;
  }

  .sect.tight {
    padding: 36px 0;
  }

  .hero-head {
    font-size: clamp(26px, 7vw, 42px);
  }

  .hero-sub {
    font-size: 15px;
  }

  .campus-feat-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .how-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media(max-width:480px) {
  .wrap {
    padding: 0 16px;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .hero-ctas .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .nav-cta .btn {
    padding: 7px 12px;
    font-size: 12px;
  }

  .stat-strip {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .stat b {
    font-size: 22px;
  }

  .stat span {
    font-size: 11.5px;
  }

  .foot-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .foot-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}

@media(max-width:360px) {
  .student-id-card-flip {
    max-width: 290px;
    height: 420px;
  }

  .student-card-header {
    padding: 16px 14px 8px 14px;
  }

  .student-card-body {
    padding: 0 16px 14px 16px;
  }

  .student-name {
    font-size: 16px;
  }

  .student-qr-container {
    width: 116px;
    height: 116px;
  }
}

/* ===== STUDENT ID CARD ===== */
.sid-card {
  width: 320px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 60px -12px rgba(33, 29, 26, .30), 0 4px 16px rgba(33, 29, 26, .08);
  overflow: hidden;
  font-family: 'Poppins', 'Outfit', sans-serif;
  flex-shrink: 0;
}

.sid-top {
  padding: 24px 20px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.sid-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  margin-bottom: 16px;
}

.sid-name {
  font-size: 17px;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 6px;
}

.sid-class {
  font-size: 10.5px;
  font-weight: 500;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
  margin-bottom: 8px;
}

.sid-id-label {
  font-size: 10px;
  font-weight: 500;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 2px;
}

.sid-id-value {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  letter-spacing: 0.04em;
}

.sid-divider {
  height: 1px;
  background: #e8e8e8;
  margin: 0 20px;
}

.sid-qr-section {
  padding: 18px 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.sid-qr-wrap {
  width: 110px;
  height: 110px;
  background: #fff;
  border-radius: 12px;
  border: 1.5px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.sid-qr-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.sid-school-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.sid-footer {
  background: #D9411C;
  padding: 11px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sid-footer-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  font-family: 'Poppins', 'Outfit', sans-serif;
}

.sid-footer-item span {
  font-size: 13px;
}

/* ---------- About Page Styles ---------- */
.about-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(240, 240, 250, 0.6));
  backdrop-filter: blur(12px);
}

.about-hero .hero-head {
  font-size: clamp(32px, 6vw, 48px);
  color: var(--ink-dark);
  margin-bottom: .5rem;
}

.about-hero .hero-sub {
  font-size: clamp(18px, 3vw, 24px);
  color: var(--ink-soft);
  line-height: 1.5;
}

.about-content h2 {
  font-size: clamp(28px, 5vw, 36px);
  margin-top: 2rem;
  color: var(--ink-dark);
}

.about-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 800px;
}

.team-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-top: 2rem;
}

.team-card {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.team-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: .8rem;
  border: 3px solid rgba(255, 255, 255, 0.3);
}

.team-card h3 {
  font-size: 1.125rem;
  margin: .5rem 0 .2rem;
  color: var(--ink-dark);
}

.team-card p {
  font-size: .95rem;
  color: var(--ink-soft);
  margin: 0;
}

/* ---------- Contact Page Styles ---------- */
.contact-section {
  padding: 100px 0 120px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(245, 243, 239, 0.7));
  min-height: calc(100vh - 200px);
}

.contact-hero {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.contact-hero .hero-head {
  font-size: clamp(32px, 5.5vw, 48px);
  margin: 16px 0 20px;
}

.contact-hero .hero-sub {
  font-size: 16.5px;
  line-height: 1.5;
  color: var(--ink-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.contact-card {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(231, 226, 216, 0.6);
  border-radius: var(--radius-m);
  padding: 40px;
  box-shadow: 0 12px 36px rgba(33, 29, 26, 0.04);
  margin-bottom: 24px;
}

.info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(223, 68, 38, 0.08);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-text h3 {
  font-size: 16.5px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--ink);
}

.info-text p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.4;
  margin: 0;
}

.info-text p a:hover {
  color: var(--red);
  text-decoration: underline;
}

/* Map Illustration & Embedded Google Map */
.map-card-wrap {
  padding: 12px;
  overflow: hidden;
}

.map-card-wrap iframe {
  width: 100%;
  height: 260px;
  border: 0;
  border-radius: var(--radius-s);
  display: block;
}

.map-illustration {
  position: relative;
  height: 220px;
  background: #EAE6DF;
  border-radius: var(--radius-s);
  overflow: hidden;
  border: 1px solid var(--line);
}

.map-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.15;
  background-size: 20px 20px;
  background-image:
    linear-gradient(to right, #211D1A 1px, transparent 1px),
    linear-gradient(to bottom, #211D1A 1px, transparent 1px);
}

.map-pulse-point {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.pulse-dot {
  width: 12px;
  height: 12px;
  background: var(--red);
  border-radius: 50%;
  border: 2px solid #fff;
  position: relative;
  z-index: 2;
}

.pulse-ring {
  position: absolute;
  top: -14px;
  left: -14px;
  width: 40px;
  height: 40px;
  border: 2px solid var(--red);
  border-radius: 50%;
  animation: mapPulse 2s infinite ease-out;
  opacity: 0;
  z-index: 1;
}

@keyframes mapPulse {
  0% {
    transform: scale(0.4);
    opacity: 0;
  }

  50% {
    opacity: 0.6;
  }

  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

.map-location-tag {
  position: absolute;
  top: calc(50% + 16px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: #fff;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 4px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Contact Form Card */
.contact-form-card {
  background: #FFFFFF;
  border-radius: var(--radius-m);
  padding: 48px;
  box-shadow: 0 20px 48px rgba(33, 29, 26, 0.06);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.form-group label {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Outfit', sans-serif;
  font-size: 14.5px;
  padding: 14px 18px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-s);
  background: var(--mist);
  color: var(--ink);
  transition: all 0.25s var(--ease);
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(223, 68, 38, 0.08);
  background: #fff;
}

.custom-select-wrapper {
  position: relative;
}

.custom-select-wrapper::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-top-color: var(--ink-soft);
  pointer-events: none;
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
}

.form-submit-btn {
  width: 100%;
  padding: 16px;
  font-size: 15px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.submit-arrow {
  transition: transform 0.25s var(--ease);
}

.form-submit-btn:hover .submit-arrow {
  transform: translateX(4px);
}

.form-submit-btn.loading {
  background: var(--ink-soft);
  cursor: not-allowed;
}

/* Success Overlay */
.form-success-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}

.form-success-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.success-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(88, 162, 69, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.form-success-overlay h2 {
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--ink);
}

.form-success-overlay p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-bottom: 30px;
  max-width: 320px;
}

/* Responsive details */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 760px) {
  .contact-section {
    padding: 60px 0 80px;
  }

  .contact-form-card {
    padding: 32px 24px;
  }
}

/* ---------- Fresh School Meals Page Styles ---------- */
.sect-sm {
  padding: 60px 0;
}

/* Brand Motif Banner */
.brand-motif-banner {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(245, 243, 239, 0.95));
  border: 2px solid rgba(88, 162, 69, 0.25);
  border-radius: var(--radius-l);
  padding: 44px;
  box-shadow: 0 16px 40px rgba(33, 29, 26, 0.05);
  text-align: center;
}

.motif-header {
  margin-bottom: 32px;
}

.motif-header h2 {
  font-size: clamp(24px, 4vw, 36px);
  margin-top: 8px;
  color: var(--ink);
}

.motif-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.motif-step {
  flex: 1;
  background: #fff;
  border-radius: var(--radius-m);
  padding: 28px 20px;
  border: 1px solid var(--line);
  position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.motif-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.motif-step.highlight {
  border-color: var(--green);
  background: rgba(88, 162, 69, 0.04);
}

.motif-num {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  background: var(--red);
  color: #fff;
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(223, 68, 38, 0.3);
}

.motif-step.highlight .motif-num {
  background: var(--green-dark);
}

.motif-icon {
  font-size: 38px;
  margin-bottom: 12px;
}

.motif-step h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.motif-step p {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.45;
  margin: 0;
}

.motif-arrow {
  font-size: 26px;
  color: var(--green);
  font-weight: bold;
}

/* Hero Visual Mockup */
.hero-visual-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-l);
  padding: 28px;
  box-shadow: 0 20px 50px rgba(33, 29, 26, 0.08);
  position: relative;
}

.hero-img-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(88, 162, 69, 0.1);
  color: var(--green-dark);
  font-family: 'Space Mono', monospace;
  font-size: 11.5px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.visual-mockup-inner {
  background: linear-gradient(135deg, var(--mist), #ffffff);
  border-radius: var(--radius-m);
  padding: 24px;
  border: 1px solid var(--line);
}

.visual-badge-top {
  background: var(--red);
  color: #fff;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 16px;
}

.visual-child-box {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  padding: 16px;
  border-radius: var(--radius-s);
  border: 1px solid var(--line);
  margin-bottom: 16px;
}

.child-avatar {
  font-size: 36px;
}

.visual-child-box strong {
  display: block;
  font-size: 15px;
  color: var(--ink);
}

.visual-child-box p {
  font-size: 12.5px;
  color: var(--ink-soft);
  margin: 2px 0 0;
}

.visual-app-preview {
  background: rgba(223, 68, 38, 0.06);
  padding: 12px;
  border-radius: var(--radius-s);
  text-align: center;
}

.app-status {
  font-family: 'Space Mono', monospace;
  font-size: 11.5px;
  color: var(--red-dark);
  font-weight: 700;
}

/* Redesigned Why Whattameal Section */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 32px;
  margin-top: 40px;
}

.why-card {
  border-radius: var(--radius-l);
  padding: 40px;
  border: 1.5px solid var(--line);
  box-shadow: 0 12px 36px rgba(33, 29, 26, 0.04);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(33, 29, 26, 0.08);
}

/* Struggles Card & Hassle Card (Red Background Tint) */
.why-struggles,
.why-card.hassle-card {
  background: rgba(223, 68, 38, 0.04);
  border-color: rgba(223, 68, 38, 0.22);
}

/* Solution Card (Green Background Tint) */
.why-solution,
.why-card.solution-card {
  background: rgba(88, 162, 69, 0.05);
  border-color: rgba(88, 162, 69, 0.28);
}

.why-card-header {
  margin-bottom: 24px;
}

.why-card-header h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}

.why-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.why-icon-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.error-badge {
  background: rgba(223, 68, 38, 0.12);
  color: var(--red);
}

.success-badge {
  background: rgba(88, 162, 69, 0.15);
  color: var(--green-dark);
}

.why-list strong {
  display: block;
  font-size: 15.5px;
  color: var(--ink);
  margin-bottom: 3px;
}

.why-list p {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.45;
}

.why-solution-desc {
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 24px;
}

.why-solution-banner {
  background: #ffffff;
  border: 1.5px solid rgba(88, 162, 69, 0.3);
  border-radius: var(--radius-m);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(88, 162, 69, 0.08);
}

.banner-icon-circle {
  width: 44px;
  height: 44px;
  background: rgba(88, 162, 69, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-solution-banner strong {
  display: block;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 2px;
}

.why-solution-banner p {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.45;
}

.why-solution-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sol-pill {
  font-family: 'Space Mono', monospace;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--green-dark);
  background: rgba(88, 162, 69, 0.08);
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(88, 162, 69, 0.2);
}

.highlight-quote {
  font-style: italic;
  color: var(--red);
  font-weight: 700;
}

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

/* Narrative Card */
.narrative-card {
  background: linear-gradient(135deg, rgba(88, 162, 69, 0.04), rgba(255, 255, 255, 0.8));
  border-radius: var(--radius-l);
  padding: 50px;
  border: 1.5px solid rgba(88, 162, 69, 0.2);
}

.narrative-content h2 {
  font-size: clamp(26px, 4vw, 36px);
  margin: 12px 0 20px;
}

.narrative-content p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 16px;
}

.tap-box {
  background: #fff;
  border-left: 4px solid var(--green);
  padding: 16px 20px;
  border-radius: var(--radius-s);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.tap-box font,
.tap-box strong {
  font-size: 15px;
  color: var(--ink);
}

/* Redesigned How It Works 5-Step Journey */
.steps-flow-container {
  position: relative;
  margin-top: 50px;
}

.steps-connector-line {
  position: absolute;
  top: 48px;
  left: 8%;
  right: 8%;
  height: 3px;
  background: linear-gradient(90deg, var(--red) 0%, var(--green) 50%, var(--green-dark) 100%);
  opacity: 0.25;
  z-index: 1;
}

.steps-flow-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
}

.step-flow-card {
  background: #ffffff;
  border-radius: var(--radius-m);
  padding: 28px 20px;
  border: 1.5px solid var(--line);
  box-shadow: 0 8px 24px rgba(33, 29, 26, 0.04);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-flow-card:hover {
  transform: translateY(-6px);
  border-color: var(--red);
  box-shadow: 0 14px 35px rgba(33, 29, 26, 0.08);
}

.step-top-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.step-num-pill {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--red);
  color: #ffffff;
  font-family: 'Space Mono', monospace;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(223, 68, 38, 0.3);
}

.step-num-pill.goal-pill {
  background: var(--green-dark);
  box-shadow: 0 4px 12px rgba(88, 162, 69, 0.3);
}

.step-icon-svg {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--mist);
  border: 1.5px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon-svg.highlight-icon-svg {
  background: rgba(88, 162, 69, 0.1);
  border-color: rgba(88, 162, 69, 0.3);
}

.step-flow-card h3 {
  font-size: 16.5px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.35;
}

.step-flow-card p {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0;
}

/* Step 5 Highlight */
.highlight-flow-card {
  border-color: var(--green);
  background: linear-gradient(135deg, rgba(88, 162, 69, 0.05), #ffffff);
  box-shadow: 0 10px 30px rgba(88, 162, 69, 0.12);
}

.goal-tag-badge {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  color: var(--green-dark);
  background: rgba(88, 162, 69, 0.12);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

@media (max-width: 1024px) {
  .steps-flow-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-connector-line {
    display: none;
  }
}

@media (max-width: 600px) {
  .steps-flow-grid {
    grid-template-columns: 1fr;
  }
}

/* Freshness Banner */
.freshness-banner {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.freshness-banner h2 {
  font-size: clamp(28px, 4.5vw, 42px);
  margin: 14px 0 20px;
}

.freshness-banner p {
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* 6 Feature Grid */
.features-6-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.feature-item {
  background: var(--mist);
  border-radius: var(--radius-m);
  padding: 32px 28px;
  border: 1px solid var(--line);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
  text-align: center;
}

.feature-item:hover {
  background: #fff;
  border-color: var(--red);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.feat-icon {
  font-size: 34px;
  margin-bottom: 16px;
}

.feature-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}

.feature-item p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0;
}

/* Scrollable Cuisine Showcase */
.text-center-head-with-nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 32px;
}

.head-left {
  max-width: 680px;
}

.cuis-scroll-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.cuis-scroll-controls.text-center-controls {
  justify-content: center;
  margin-top: 20px;
}

.cuis-scroll-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: #ffffff;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.25s var(--ease);
}

.cuis-scroll-btn:hover {
  background: var(--red);
  color: #ffffff;
  border-color: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(223, 68, 38, 0.25);
}

.cuis-scroll-btn:active {
  transform: translateY(0);
}

.cuisines-scroll-wrapper {
  width: 100%;
  position: relative;
}

.cuisines-scroll-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 12px 4px 28px;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE & Edge */
}

.cuisines-scroll-track::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
  width: 0;
  height: 0;
}

.cuisines-scroll-track .cuisine-card {
  flex: 0 0 280px;
  min-width: 280px;
  scroll-snap-align: start;
  background: #fff;
  border-radius: var(--radius-m);
  padding: 28px;
  border: 1.5px solid var(--line);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  text-align: center;
}

.cuisines-scroll-track .cuisine-card:hover {
  transform: translateY(-6px);
  border-color: var(--green);
  box-shadow: 0 12px 30px rgba(88, 162, 69, 0.12);
}

.cuisines-scroll-track .cuisine-card:hover {
  transform: translateY(-6px);
  border-color: var(--green);
  box-shadow: 0 12px 30px rgba(88, 162, 69, 0.12);
}

@media (max-width: 760px) {
  .text-center-head-with-nav {
    flex-direction: column;
    align-items: flex-start;
  }
}

.cuis-flag {
  font-size: 36px;
  display: block;
  margin-bottom: 12px;
}

.cuisine-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.cuisine-card p {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.45;
  margin: 0;
}

.feature-cuis {
  border-color: var(--red);
  background: rgba(223, 68, 38, 0.02);
}

/* Dual Blocks Grid */
.dual-blocks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.dual-block {
  background: #fff;
  border-radius: var(--radius-l);
  padding: 44px;
  border: 1.5px solid var(--line);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.04);
}

.dual-block h2 {
  font-size: clamp(24px, 3.5vw, 32px);
  margin: 12px 0 18px;
}

.dual-block p {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 16px;
}

.app-tag-sub {
  font-weight: 600;
  color: var(--red) !important;
}

.app-bullet-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.app-bullet-list li {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.app-convenience-badge {
  background: rgba(88, 162, 69, 0.08);
  color: var(--green-dark);
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: var(--radius-s);
  display: inline-block;
  margin-top: 12px;
}

/* Redesigned Trust Card */
.trust-hero-card {
  position: relative;
  background: var(--ink);
  border-radius: var(--radius-l);
  padding: 64px 40px;
  overflow: hidden;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}

.trust-glow-bg {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(88, 162, 69, 0.15) 0%, rgba(223, 68, 38, 0.08) 50%, transparent 70%);
  pointer-events: none;
}

.trust-card-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.trust-shield-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  backdrop-filter: blur(8px);
}

.trust-eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 12px;
}

.trust-card-inner h2 {
  font-size: clamp(28px, 4.5vw, 42px);
  color: #ffffff;
  margin-bottom: 18px;
}

.trust-lead {
  font-size: 16.5px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
  margin-bottom: 32px;
}

.trust-quote-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-m);
  padding: 24px 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 auto 36px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.quote-mark-svg {
  opacity: 0.9;
  flex-shrink: 0;
}

.quote-text {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(20px, 3.5vw, 28px);
  color: var(--red);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.trust-badges-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 10px 20px;
  border-radius: 100px;
  font-family: 'Space Mono', monospace;
  font-size: 12.5px;
  font-weight: 700;
  color: #ffffff;
}

@media (max-width: 600px) {
  .trust-hero-card {
    padding: 40px 20px;
  }

  .trust-quote-box {
    padding: 18px 20px;
    flex-direction: column;
    text-align: center;
  }
}

/* FAQ Accordion */
.faq-container {
  max-width: 840px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #fff;
  border-radius: var(--radius-m);
  border: 1.5px solid var(--line);
  box-shadow: 0 4px 16px rgba(33, 29, 26, 0.03);
  overflow: hidden;
  transition: all 0.3s var(--ease);
}

.faq-item:hover {
  border-color: rgba(223, 68, 38, 0.4);
  box-shadow: 0 8px 24px rgba(33, 29, 26, 0.06);
}

.faq-item.active {
  border-color: var(--red);
  background: linear-gradient(135deg, rgba(223, 68, 38, 0.02), #ffffff);
  box-shadow: 0 12px 30px rgba(223, 68, 38, 0.08);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 20px 24px;
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 16px;
}

.faq-question * {
  pointer-events: none;
}

.faq-q-title {
  flex: 1;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
}

.faq-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(223, 68, 38, 0.08);
  color: var(--red);
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: auto;
  margin-right: 12px;
  transition: all 0.3s var(--ease);
}

.faq-item.active .faq-badge {
  background: var(--red);
  color: #ffffff;
}

.faq-chevron-box {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--mist);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
}

.faq-item.active .faq-chevron-box {
  transform: rotate(180deg);
  background: var(--red);
  color: #ffffff;
}

.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, padding 0.4s ease;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
  padding: 8px 24px 22px 24px;
}

.faq-answer p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
}

/* Vector SVG Icon Containers & Visual Details */
.motif-icon-svg {
  width: 56px;
  height: 56px;
  background: var(--mist);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  border: 1px solid var(--line);
}

.motif-step.highlight .motif-icon-svg {
  background: rgba(88, 162, 69, 0.1);
  border-color: rgba(88, 162, 69, 0.3);
}

.child-avatar-svg {
  width: 44px;
  height: 44px;
  background: rgba(223, 68, 38, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pill-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pill-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pill-icon.error {
  background: rgba(223, 68, 38, 0.1);
  color: var(--red);
}

.pill-icon.success {
  background: rgba(88, 162, 69, 0.15);
  color: var(--green-dark);
}

.feat-icon-svg {
  width: 52px;
  height: 52px;
  background: #fff;
  border-radius: var(--radius-s);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  border: 1px solid var(--line);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.cuis-tag-badge {
  display: inline-block;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-soft);
  background: var(--mist);
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
  border: 1px solid var(--line);
}

.cuis-tag-badge.highlight-tag {
  background: rgba(223, 68, 38, 0.08);
  color: var(--red-dark);
  border-color: rgba(223, 68, 38, 0.2);
}

.hero-ctas .btn svg {
  margin-right: 6px;
  vertical-align: middle;
}

.visual-app-preview .app-status svg {
  margin-right: 6px;
  vertical-align: middle;
}

/* Custom UI Mockup Widgets */
.mini-ui-widget {
  background: #ffffff;
  border-radius: var(--radius-m);
  border: 1.5px solid var(--line);
  padding: 24px;
  box-shadow: 0 12px 36px rgba(33, 29, 26, 0.06);
  position: relative;
}

.widget-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
  margin-bottom: 16px;
}

.widget-title {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}

.widget-badge-green {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  color: var(--green-dark);
  background: rgba(88, 162, 69, 0.12);
  padding: 3px 9px;
  border-radius: 100px;
  text-transform: uppercase;
}

.widget-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.widget-stat-box {
  background: var(--mist);
  padding: 12px 14px;
  border-radius: var(--radius-s);
  border: 1px solid var(--line);
}

.widget-stat-val {
  font-family: 'Space Mono', monospace;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
}

.widget-stat-lbl {
  font-size: 11.5px;
  color: var(--ink-soft);
  margin-top: 2px;
}

.stat-chip-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.stat-chip {
  background: #ffffff;
  border: 1.5px solid var(--line);
  padding: 8px 16px;
  border-radius: 100px;
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

/* Responsive adjustments for Fresh Meals page */
@media (max-width: 900px) {
  .motif-flow {
    flex-direction: column;
  }

  .motif-arrow {
    transform: rotate(90deg);
  }

  .dual-blocks-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .brand-motif-banner {
    padding: 28px 20px;
  }

  .why-card-box {
    padding: 28px 20px;
  }

  .narrative-card {
    padding: 30px 20px;
  }

  .dual-block {
    padding: 30px 20px;
  }
}

/* Advanced WM Campus UI Upgrades */
.pulsing-dot-green {
  width: 8px;
  height: 8px;
  background-color: var(--green);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(88, 162, 69, 0.7);
  animation: pulseGreen 2s infinite;
  margin-right: 6px;
  vertical-align: middle;
}

@keyframes pulseGreen {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(88, 162, 69, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(88, 162, 69, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(88, 162, 69, 0);
  }
}

.live-alert-pill {
  background: rgba(33, 29, 26, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 100px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
  margin-top: 16px;
  animation: floatSlow 4s ease-in-out infinite alternate;
}

@keyframes floatSlow {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-6px);
  }
}

.metric-transformation-bar {
  background: linear-gradient(135deg, #1C2E1F 0%, #211D1A 100%);
  border-radius: var(--radius-m);
  padding: 36px 32px;
  color: #ffffff;
  margin-top: 36px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.metric-box-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-s);
  padding: 20px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: transform 0.3s var(--ease);
}

.metric-box-item:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
}

.metric-val-big {
  font-family: 'Space Mono', monospace;
  font-size: 26px;
  font-weight: 700;
  color: #58A245;
  margin-bottom: 4px;
}

.metric-val-old {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: line-through;
  margin-right: 6px;
}

.metric-lbl-title {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}

.saas-platform-card {
  background: linear-gradient(135deg, #211D1A 0%, #2D2723 100%);
  color: #ffffff;
  border-radius: var(--radius-m);
  padding: 32px;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.saas-badge-glow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  color: #FFD5C6;
  background: rgba(223, 68, 38, 0.2);
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid rgba(223, 68, 38, 0.4);
  text-transform: uppercase;
  margin-bottom: 14px;
}

@media (max-width: 900px) {
  .metric-grid-3 {
    grid-template-columns: 1fr;
  }
}

/* Premium WM Campus Hero Showcase */
.hero-highlight-box {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-m);
  padding: 20px 22px;
  margin: 20px 0 24px;
  box-shadow: 0 8px 24px rgba(33, 29, 26, 0.04);
}

.hero-highlight-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.hero-highlight-point:last-child {
  margin-bottom: 0;
}

.hero-point-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(88, 162, 69, 0.15);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.hero-point-text {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink);
}

.campus-hero-showcase {
  background: #ffffff;
  border-radius: var(--radius-m);
  border: 1.5px solid var(--line);
  padding: 24px;
  box-shadow: 0 20px 48px rgba(33, 29, 26, 0.08);
  position: relative;
}

.showcase-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  margin-bottom: 20px;
  border-bottom: 1.5px solid var(--line);
}

.showcase-status-badge {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--green-dark);
  background: rgba(88, 162, 69, 0.12);
  padding: 4px 12px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.interactive-qr-hero-card {
  background: linear-gradient(135deg, #1C2E1F 0%, #211D1A 100%);
  border-radius: var(--radius-s);
  padding: 20px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15);
  margin-bottom: 16px;
}

.qr-hero-chip-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.qr-chip-graphic {
  width: 40px;
  height: 28px;
  background: linear-gradient(135deg, #FFD5C6 0%, #E68A6E 100%);
  border-radius: 4px;
  opacity: 0.9;
}

.qr-student-name {
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
}

.qr-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 10px;
}

.qr-meta-pill {
  background: rgba(255, 255, 255, 0.12);
  padding: 3px 9px;
  border-radius: 4px;
  color: #58A245;
  font-family: 'Space Mono', monospace;
  font-weight: 700;
}

.live-pos-feed-box {
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  padding: 14px 16px;
}

.pos-feed-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.pos-feed-sub {
  font-size: 11px;
  color: var(--ink-soft);
  margin-top: 2px;
}

/* Authentic App Screenshot Display Components */
.phone-mockup-frame {
  width: 240px;
  background: #111111;
  border-radius: 36px;
  padding: 10px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.22), 0 0 0 3px #2D2723;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.phone-mockup-frame:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 56px rgba(0, 0, 0, 0.3);
}

.phone-notch {
  width: 90px;
  height: 18px;
  background: #111111;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.phone-screen-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 26px;
  object-fit: cover;
}

.app-screenshot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.app-screen-card-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.app-screen-lbl {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-top: 14px;
}

.app-screen-sub {
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 2px;
}

@media (max-width: 900px) {
  .app-screenshot-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .app-screenshot-grid {
    grid-template-columns: 1fr;
  }
}

/* Unique Bento Grid Layout for Designed for Students */
.student-bento-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  margin-top: 36px;
}

.bento-card-large {
  background: linear-gradient(135deg, #211D1A 0%, #1C2E1F 100%);
  color: #ffffff;
  border-radius: var(--radius-m);
  padding: 36px 32px;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.bento-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.bento-card-small {
  background: #ffffff;
  border-radius: var(--radius-m);
  border: 1.5px solid var(--line);
  padding: 24px;
  box-shadow: 0 8px 24px rgba(33, 29, 26, 0.04);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bento-card-small:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(33, 29, 26, 0.08);
  border-color: var(--green-dark);
}

.bento-badge-tag {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  color: #58A245;
  background: rgba(88, 162, 69, 0.15);
  padding: 4px 10px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 14px;
}

@media (max-width: 900px) {
  .student-bento-wrapper {
    grid-template-columns: 1fr;
  }

  .bento-mini-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .bento-mini-grid {
    grid-template-columns: 1fr;
  }
}

/* Future Roadmap Component (Looking Ahead) */
.roadmap-timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.roadmap-step-card {
  background: #ffffff;
  border-radius: var(--radius-m);
  border: 1.5px solid var(--line);
  padding: 32px 26px;
  box-shadow: 0 10px 30px rgba(33, 29, 26, 0.04);
  position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.roadmap-step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(33, 29, 26, 0.08);
  border-color: var(--green-dark);
}

.roadmap-step-card.active-phase {
  border-color: rgba(88, 162, 69, 0.4);
  background: linear-gradient(180deg, rgba(88, 162, 69, 0.03) 0%, #ffffff 100%);
}

.roadmap-step-card.future-phase {
  border-color: rgba(223, 68, 38, 0.3);
  background: linear-gradient(180deg, rgba(223, 68, 38, 0.03) 0%, #ffffff 100%);
}

.roadmap-step-num {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-soft);
  background: rgba(33, 29, 26, 0.06);
  padding: 4px 10px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 14px;
}

.roadmap-badge-active {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  color: #58A245;
  background: rgba(88, 162, 69, 0.15);
  padding: 4px 10px;
  border-radius: 100px;
  display: inline-block;
  float: right;
}

.roadmap-badge-future {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--red);
  background: rgba(223, 68, 38, 0.12);
  padding: 4px 10px;
  border-radius: 100px;
  display: inline-block;
  float: right;
}

.roadmap-quote-box {
  background: linear-gradient(135deg, #211D1A 0%, #1C2E1F 100%);
  color: #ffffff;
  border-radius: var(--radius-m);
  padding: 28px 32px;
  margin-top: 32px;
  text-align: center;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
}

@media (max-width: 900px) {
  .roadmap-timeline-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= CONTACT PAGE ENHANCEMENTS ================= */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  color: var(--ink-soft);
  border-bottom: 1px dashed var(--line);
  padding-bottom: 4px;
}

.hours-row b {
  color: var(--ink);
}

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

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

.team-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.3s var(--ease);
  box-shadow: 0 8px 24px rgba(33, 29, 26, 0.04);
}

.team-card:hover {
  transform: translateY(-4px);
  border-color: var(--red);
  box-shadow: 0 16px 36px rgba(223, 68, 38, 0.08);
}

.team-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--mist);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid var(--line);
}

.team-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px 0;
}

.team-card p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0 0 24px 0;
  flex-grow: 1;
}

.team-card .btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}

.social-section {
  background: var(--mist);
  padding: 60px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.social-links {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 24px;
  flex-wrap: wrap;
}

.social-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--paper);
  border: 1.5px solid var(--line);
  color: var(--ink);
  transition: all 0.25s var(--ease);
  text-decoration: none;
}

.social-icon-btn:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(223, 68, 38, 0.25);
}

/* ================= FAQ PAGE STYLES ================= */
.faq-search-box {
  max-width: 620px;
  margin: 32px auto 0;
  position: relative;
}

.faq-search-input {
  width: 100%;
  padding: 16px 20px 16px 52px;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  border: 2px solid var(--line);
  border-radius: 100px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(33, 29, 26, 0.05);
  transition: all 0.25s var(--ease);
}

.faq-search-input:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 12px 36px rgba(223, 68, 38, 0.12);
}

.faq-search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ink-soft);
  pointer-events: none;
}

.faq-cat-nav {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 40px 0 20px;
}

.faq-cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: 100px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  transition: all 0.25s var(--ease);
  cursor: pointer;
}

.faq-cat-pill:hover,
.faq-cat-pill.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(33, 29, 26, 0.12);
}

.faq-group-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 60px;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--line);
}

.faq-group-header h2 {
  font-size: 26px;
  margin: 0;
}

.faq-group-count {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  background: rgba(223, 68, 38, 0.1);
  color: var(--red);
  padding: 4px 10px;
  border-radius: 100px;
}

.no-results-msg {
  display: none;
  text-align: center;
  padding: 48px 20px;
  background: var(--mist);
  border-radius: var(--radius-m);
  margin-top: 32px;
  border: 1.5px dashed var(--line);
}

/* ================= COMPREHENSIVE MOBILE RESPONSIVENESS ================= */

/* Enforce root overflow safety without breaking position: sticky */
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

/* Fluid Heading Typography for mobile devices */
@media (max-width: 768px) {
  h1, .hero-head {
    font-size: clamp(28px, 7.5vw, 40px) !important;
    line-height: 1.2 !important;
  }

  h2 {
    font-size: clamp(24px, 6vw, 32px) !important;
    line-height: 1.25 !important;
  }

  .hero {
    padding-top: 110px !important;
    padding-bottom: 40px !important;
  }

  .hero-sub {
    font-size: 15.5px !important;
    line-height: 1.55 !important;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .hero-ctas .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .final-btns {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .final-btns .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* Card stage scaling on mobile */
  .card-stage {
    max-width: 100% !important;
    margin: 32px auto 0 !important;
    transform: scale(0.92);
    transform-origin: top center;
  }

  .qr-card {
    width: 100% !important;
    max-width: 340px !important;
    margin: 0 auto;
  }
}

/* Mobile Screens <= 600px */
@media (max-width: 600px) {
  .wrap {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .contact-form-card {
    padding: 24px 18px !important;
  }

  .faq-search-input {
    font-size: 14.5px !important;
    padding: 14px 16px 14px 44px !important;
  }

  .faq-search-icon {
    left: 16px !important;
  }

  .faq-cat-pill {
    padding: 8px 14px !important;
    font-size: 13px !important;
  }

  .faq-question {
    padding: 16px 18px !important;
    font-size: 15.5px !important;
  }

  .faq-answer {
    padding: 0 18px 18px 18px !important;
  }

  .stat-strip {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }

  .foot-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    align-items: center;
  }
}

/* Very Small Mobile Screens <= 380px */
@media (max-width: 380px) {
  .card-stage {
    transform: scale(0.84);
  }

  .stat-strip {
    grid-template-columns: 1fr !important;
  }

  .nav-cta .btn {
    padding: 8px 12px;
    font-size: 12.5px;
  }
}

/* ===== FLOATING BACK TO TOP BUTTON ===== */
.back-to-top-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--red);
  color: #ffffff;
  border: 2px solid #ffffff;
  box-shadow: 0 8px 24px rgba(223, 68, 38, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.85);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s, background-color 0.25s, box-shadow 0.25s;
  z-index: 9999;
}

.back-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.back-to-top-btn:hover {
  background: var(--red-dark);
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 12px 28px rgba(223, 68, 38, 0.48);
}

.back-to-top-btn:active {
  transform: translateY(0) scale(0.96);
}

@media (max-width: 600px) {
  .back-to-top-btn {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
  }
}

/* ==========================================================================
   HOMEPAGE REFLOW CUSTOM STYLES (NEW HOMEPAGE FLOW)
   ========================================================================== */

/* --- WHY WE EXIST SECTION --- */
.why-we-exist-box {
  background: linear-gradient(135deg, rgba(223, 68, 38, 0.05) 0%, rgba(88, 162, 69, 0.07) 100%);
  border: 1px solid rgba(223, 68, 38, 0.15);
  border-radius: var(--radius-l);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(33, 29, 26, 0.04);
}

.why-we-exist-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(to bottom, var(--red), var(--green));
  border-radius: 6px 0 0 6px;
}

.why-we-exist-quote {
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 600;
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 20px;
  font-family: 'Outfit', sans-serif;
}

.why-we-exist-body {
  font-size: clamp(16px, 1.2vw, 18.5px);
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 24px;
}

.why-we-exist-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px dashed rgba(33, 29, 26, 0.12);
}

.why-we-exist-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  color: var(--red);
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

.why-we-exist-note {
  font-size: 15px;
  font-style: italic;
  color: var(--ink-soft);
}

/* --- THE WHATTAMEAL EXPERIENCE (PROCESS FLOW) --- */
.experience-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  margin-top: 40px;
}

@media (max-width: 992px) {
  .experience-flow {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .experience-flow {
    grid-template-columns: 1fr;
  }
}

.exp-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 32px 24px;
  position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.exp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.08);
  border-color: var(--red);
}

.exp-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.exp-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(223, 68, 38, 0.08);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.exp-card:nth-child(2) .exp-icon-box {
  background: rgba(88, 162, 69, 0.1);
  color: var(--green);
}
.exp-card:nth-child(3) .exp-icon-box {
  background: rgba(223, 68, 38, 0.1);
  color: var(--red-dark);
}
.exp-card:nth-child(4) .exp-icon-box {
  background: rgba(88, 162, 69, 0.12);
  color: var(--green-dark);
}

.exp-step-badge {
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  background: var(--mist);
  color: var(--ink-soft);
  padding: 4px 10px;
  border-radius: 100px;
}

.exp-title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: var(--ink);
}

.exp-desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}

.exp-arrow-down {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  color: var(--red);
  transform: rotate(-90deg);
  transition: transform 0.3s var(--ease);
}

/* --- WHY FAMILIES & WHY SCHOOLS DUAL SECTIONS --- */
.dual-pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.pillar-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 28px 24px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.pillar-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(223, 68, 38, 0.1) 0%, rgba(223, 68, 38, 0.02) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--red);
}

.pillar-card.school-pillar .pillar-icon {
  background: linear-gradient(135deg, rgba(88, 162, 69, 0.12) 0%, rgba(88, 162, 69, 0.03) 100%);
  color: var(--green);
}

.pillar-content h4 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 6px 0;
  color: var(--ink);
}

.pillar-content p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}

/* --- TECHNOLOGY GRID (POWERING EVERY MEAL) --- */
.tech-pillars-container {
  background: var(--ink);
  color: #ffffff;
  border-radius: var(--radius-l);
  padding: 56px 40px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 600px) {
  .tech-pillars-container {
    padding: 36px 20px;
  }
}

.tech-pillars-container .eyebrow {
  color: #ff9e87;
}

.tech-pillars-container h2 {
  color: #ffffff;
}

.tech-pillars-container p.tech-subtitle {
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  max-width: 680px;
}

.tech-grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}

@media (max-width: 860px) {
  .tech-grid-6 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .tech-grid-6 {
    grid-template-columns: 1fr;
  }
}

.tech-item-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-m);
  padding: 24px;
  backdrop-filter: blur(8px);
  transition: transform 0.3s var(--ease), background 0.3s ease, border-color 0.3s ease;
}

.tech-item-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--red);
}

.tech-tag-badge {
  display: inline-block;
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(223, 68, 38, 0.18);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.tech-item-card h4 {
  font-size: 19px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px 0;
}

.tech-item-card p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

/* --- TESTIMONIALS SECTION --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

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

.testimonial-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 8px 24px rgba(0,0,0,0.03);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.07);
}

.stars-rating {
  color: #FFB800;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testimonial-text {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink);
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red) 0%, var(--green) 100%);
  color: #ffffff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.author-info h5 {
  font-size: 15px;
  font-weight: 700;
  margin: 0;
  color: var(--ink);
}

.author-info span {
  font-size: 13px;
  color: var(--ink-soft);
}

/* School Logos Row */
.school-logos-container {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.school-logos-title {
  text-align: center;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: var(--ink-soft);
  margin-bottom: 20px;
}

.school-logos-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 36px;
}

.school-logo-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  transition: transform 0.25s var(--ease);
}

.school-logo-item:hover {
  transform: translateY(-3px);
}

.school-logo-item img {
  height: 100px;
  width: auto;
  object-fit: contain;
}

/* ==========================================================================
   ADVANCED RESPONSIVE & ANIMATION STYLES FOR ALL DEVICES
   ========================================================================== */

/* --- SCROLL PROGRESS BAR --- */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red) 0%, var(--green) 100%);
  z-index: 10000;
  width: 0%;
  transition: width 0.1s ease-out;
}

/* --- STAGGERED SCROLL REVEAL ANIMATIONS --- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger child items */
.reveal.in .exp-card:nth-child(1),
.reveal.in .pillar-card:nth-child(1),
.reveal.in .tech-item-card:nth-child(1),
.reveal.in .testimonial-card:nth-child(1) { transition-delay: 0.05s; }

.reveal.in .exp-card:nth-child(2),
.reveal.in .pillar-card:nth-child(2),
.reveal.in .tech-item-card:nth-child(2),
.reveal.in .testimonial-card:nth-child(2) { transition-delay: 0.12s; }

.reveal.in .exp-card:nth-child(3),
.reveal.in .pillar-card:nth-child(3),
.reveal.in .tech-item-card:nth-child(3),
.reveal.in .testimonial-card:nth-child(3) { transition-delay: 0.19s; }

.reveal.in .exp-card:nth-child(4),
.reveal.in .pillar-card:nth-child(4),
.reveal.in .tech-item-card:nth-child(4) { transition-delay: 0.26s; }

.reveal.in .pillar-card:nth-child(5),
.reveal.in .tech-item-card:nth-child(5) { transition-delay: 0.33s; }

.reveal.in .tech-item-card:nth-child(6) { transition-delay: 0.4s; }

/* --- CARD FLOATING ANIMATION FOR HERO --- */
@keyframes floatHeroCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.card-stage {
  animation: floatHeroCard 6s ease-in-out infinite;
}

.card-stage:hover {
  animation-play-state: paused;
}

/* --- RESPONSIVE MEDIA QUERIES FOR ALL DEVICES --- */

/* Tablets & Small Laptops (max-width: 1024px) */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-ctas {
    justify-content: center;
  }

  .stat-strip {
    justify-content: center;
  }

  .card-stage {
    margin: 0 auto;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .partner-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .dl-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .dl-copy .dl-list {
    text-align: left;
    display: inline-block;
  }

  .store-badges {
    justify-content: center;
  }

  .why-we-exist-box {
    padding: 36px 28px;
  }
}

/* Mobile & Small Tablets (max-width: 768px) */
@media (max-width: 768px) {
  .wrap {
    padding: 0 20px;
  }

  .hero-head {
    font-size: clamp(28px, 6.8vw, 42px) !important;
  }

  .hero-sub {
    font-size: 16px !important;
  }

  .experience-flow {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .exp-arrow-down {
    transform: rotate(0deg);
  }

  .dual-pillars-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .tech-grid-6 {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why-we-exist-quote {
    font-size: 20px;
  }

  .why-we-exist-body {
    font-size: 15.5px;
  }

  .why-we-exist-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .card-stage {
    transform: scale(0.92);
  }

  .final-cta {
    padding: 48px 20px !important;
  }

  .final-btns {
    flex-direction: column;
    width: 100%;
  }

  .final-btns .btn {
    width: 100%;
  }

  .school-logos-flex {
    flex-direction: column;
    gap: 14px;
  }
}

/* Small Mobile Screens (max-width: 480px) */
@media (max-width: 480px) {
  .wrap {
    padding: 0 16px;
  }

  .hero-ctas {
    flex-direction: column;
    gap: 12px;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .card-stage {
    transform: scale(0.85);
    margin-left: -20px;
    margin-right: -20px;
  }

  .stat-strip {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  .stat b {
    font-size: 22px !important;
  }

  .stat span {
    font-size: 12px !important;
  }

  .exp-card {
    padding: 24px 18px;
  }

  .pillar-card {
    padding: 22px 18px;
  }

  .tech-item-card {
    padding: 20px 16px;
  }
}

/* ==========================================================================
   PARENT PAGE (`parents.html`) CUSTOM STYLES & INTERACTIVE COMPONENTS
   ========================================================================== */

/* Hero Floating Info Badge */
.parent-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(223, 68, 38, 0.08);
  border: 1px solid rgba(223, 68, 38, 0.2);
  color: var(--red);
  font-weight: 700;
  font-size: 14px;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

/* ================= ANIMATED WALLET TOPUP HERO CARD ================= */
.hero-phone-mockup {
  width: 100% !important;
  max-width: 350px !important;
  margin: 0 auto;
}

.topup-card-container {
  position: relative;
  width: 100%;
  height: 700px;
  border-radius: 26px;
  overflow: hidden;
  background: #181615;
  display: flex;
  flex-direction: column;
}

.topup-card-header {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 8px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.topup-brand-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.topup-dot {
  color: #1DB954;
  font-size: 10px;
  animation: pulseGreen 1.8s infinite;
}

@keyframes pulseGreen {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.topup-status-tag {
  background: rgba(223, 68, 38, 0.9);
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 100px;
  letter-spacing: 0.5px;
}

.topup-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(180deg, rgba(24, 22, 21, 0.05) 0%, rgba(24, 22, 21, 0.9) 65%),
                    url("assets/images/Android/06.png"),
                    url("../images/Android/06.png");
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #181615;
}

.topup-sheet {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: #FFFFFF;
  padding: 24px 22px 22px 22px;
  border-radius: 28px 28px 0 0;
  box-shadow: 0 -12px 35px rgba(0, 0, 0, 0.25);
  z-index: 5;
}

.topup-sheet h2 {
  text-align: center;
  margin: 0 0 4px 0;
  font-size: 21px;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -0.3px;
}

.topup-sheet small {
  display: block;
  text-align: center;
  color: var(--red);
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 700;
}

.topup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.topup-amt {
  padding: 13px 8px;
  border: 1px solid var(--line);
  border-radius: 14px;
  text-align: center;
  font-size: 20px;
  font-weight: 800;
  cursor: pointer;
  color: var(--ink);
  transition: all 0.22s var(--ease);
  background: var(--mist);
}

.topup-amt:hover {
  border-color: var(--red);
  transform: translateY(-2px);
  background: #FFF;
}

.topup-amt.active {
  background: var(--red);
  color: #FFFFFF;
  border-color: var(--red);
  box-shadow: 0 6px 18px rgba(223, 68, 38, 0.35);
}

.topup-btn {
  width: 100%;
  margin-top: 18px;
  padding: 15px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  box-shadow: 0 8px 22px rgba(223, 68, 38, 0.3);
}

.topup-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(223, 68, 38, 0.4);
}

.topup-btn:active {
  transform: translateY(0);
}

.topup-success {
  position: absolute;
  inset: 0;
  background: rgba(18, 16, 14, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 30;
  padding: 20px;
}

.topup-success.show {
  visibility: visible;
  opacity: 1;
}

.topup-box {
  background: #FFFFFF;
  padding: 32px 24px;
  border-radius: 24px;
  text-align: center;
  width: 100%;
  max-width: 310px;
  animation: pop .35s var(--ease);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

.topup-circle {
  width: 76px;
  height: 76px;
  margin: 0 auto;
  border-radius: 50%;
  background: #1DB954;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFFFFF;
  font-size: 44px;
  box-shadow: 0 8px 24px rgba(29, 185, 84, 0.35);
  animation: done .7s cubic-bezier(.175, .885, .32, 1.275);
}

@keyframes pop {
  from { transform: scale(.5); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes done {
  0% { transform: scale(0) rotate(-180deg); }
  100% { transform: scale(1) rotate(0); }
}

.topup-loader {
  width: 50px;
  height: 50px;
  margin: 0 auto;
  border: 5px solid #EEEEEE;
  border-top: 5px solid var(--red);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}



.parent-hero-note {
  background: rgba(88, 162, 69, 0.08);
  border-left: 4px solid var(--green);
  padding: 14px 18px;
  border-radius: var(--radius-s);
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
  margin: 20px 0 28px 0;
  line-height: 1.5;
}

/* Busy Parents Grid */
.busy-parents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 36px;
}

.busy-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 26px 22px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.03);
  transition: all 0.25s var(--ease);
}

.busy-card:hover {
  transform: translateY(-4px);
  border-color: var(--red);
  box-shadow: 0 12px 30px rgba(223, 68, 38, 0.08);
}

.busy-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(223, 68, 38, 0.1);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.busy-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: var(--ink);
}

.busy-card p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0;
}

/* 8 Features Grid Section */
.parent-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.parent-feat-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--ease);
}

.parent-feat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--green));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.parent-feat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 34px rgba(33, 29, 26, 0.08);
  border-color: rgba(223, 68, 38, 0.3);
}

.parent-feat-card:hover::before {
  opacity: 1;
}

.parent-feat-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.parent-feat-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--mist);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.parent-feat-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}

.parent-feat-desc {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}

/* ================= PARENT DASHBOARD PREVIEW INTERACTIVE COMPONENT ================= */
.dashboard-preview-wrapper {
  background: linear-gradient(135deg, #1C1917 0%, #292524 100%);
  border-radius: var(--radius-l);
  padding: 44px 36px;
  color: #FFFFFF;
  margin-top: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-preview-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: center;
}

.dashboard-tabs-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dash-tab-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 20px;
  border-radius: var(--radius-m);
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  text-align: left;
  transition: all 0.25s var(--ease);
}

.dash-tab-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  transform: translateX(4px);
}

.dash-tab-btn.active {
  background: #FFFFFF;
  color: var(--ink);
  border-color: #FFFFFF;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  font-weight: 700;
}

.dash-tab-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.dash-tab-icon {
  font-size: 22px;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(223, 68, 38, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.dash-tab-btn.active .dash-tab-icon {
  background: rgba(223, 68, 38, 0.12);
  color: var(--red);
}

.dash-tab-text h4 {
  font-size: 16px;
  margin: 0;
  font-weight: 700;
}

.dash-tab-text p {
  font-size: 12px;
  margin: 2px 0 0 0;
  opacity: 0.75;
}

.dash-tab-btn.active .dash-tab-text p {
  color: var(--ink-soft);
  opacity: 1;
}

/* Phone Screen Viewport */
.dashboard-phone-frame {
  width: 320px;
  height: 560px;
  margin: 0 auto;
  background: #0F0F10;
  border: 12px solid #2D2D30;
  border-radius: 44px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), inset 0 0 0 2px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.dashboard-phone-frame .phone-notch {
  width: 120px;
  height: 20px;
  background: #2D2D30;
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 25;
}

.phone-screen-viewport {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  background: #F8F9FA;
  color: var(--ink);
  position: relative;
}

.phone-screen-view {
  display: none;
  animation: fadeInPhoneScreen 0.3s ease forwards;
}

.phone-screen-view.active {
  display: block;
}

@keyframes fadeInPhoneScreen {
  from { opacity: 0; transform: translateY(6px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Phone Screen Mockup UI Elements */
.phone-app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.phone-user-chip {
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--red);
  color: #FFF;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.phone-wallet-card {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: #FFF;
  padding: 18px;
  border-radius: 18px;
  margin-bottom: 16px;
  box-shadow: 0 8px 20px rgba(223, 68, 38, 0.25);
}

.phone-wallet-bal {
  font-size: 28px;
  font-weight: 800;
  margin: 6px 0 12px 0;
}

.phone-quick-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.phone-act-btn {
  background: rgba(255,255,255,0.2);
  border: none;
  color: #FFF;
  padding: 8px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.phone-meal-item {
  background: #FFF;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.phone-badge-jain {
  background: rgba(88, 162, 69, 0.15);
  color: var(--green-dark);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 100px;
}

.phone-qr-frame {
  background: #FFF;
  padding: 16px;
  border-radius: 18px;
  text-align: center;
  border: 1px solid var(--line);
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.phone-qr-img {
  width: 140px;
  height: 140px;
  margin: 10px auto;
  display: block;
}

/* Quality Pillars Section 4 */
.trust-pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.pillar-glass-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 30px 24px;
  display: flex;
  gap: 18px;
  transition: all 0.3s var(--ease);
}

.pillar-glass-card:hover {
  transform: translateY(-4px);
  border-color: var(--green);
  box-shadow: 0 12px 30px rgba(88, 162, 69, 0.1);
}

.pillar-num-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(88, 162, 69, 0.12);
  color: var(--green);
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Dual Track How It Works Section 5 */
.dual-track-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
}

.track-box {
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: var(--radius-l);
  padding: 36px 28px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.03);
}

.track-box.wm-fresh {
  border-top: 6px solid var(--red);
}

.track-box.wm-campus-track {
  border-top: 6px solid var(--green);
}

.track-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1fr solid var(--line);
}

.track-header h3 {
  font-size: 22px;
  margin: 0;
  font-weight: 800;
}

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

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.step-index {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--mist);
  color: var(--ink);
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.track-box.wm-fresh .step-index {
  background: rgba(223, 68, 38, 0.1);
  color: var(--red);
}

.track-box.wm-campus-track .step-index {
  background: rgba(88, 162, 69, 0.1);
  color: var(--green);
}

.step-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.45;
}

/* Why Parents Love Chips Grid Section 6 */
.love-chips-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  max-width: 900px;
  margin: 36px auto 0 auto;
}

.love-chip {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 12px 22px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  transition: all 0.22s ease;
}

.love-chip:hover {
  transform: translateY(-3px) scale(1.03);
  border-color: var(--red);
  box-shadow: 0 8px 20px rgba(223, 68, 38, 0.12);
}

/* Parent Peace Reassurance Section 8 */
.peace-reassurance-box {
  background: linear-gradient(135deg, #FFF7F5 0%, #F5FBF3 100%);
  border: 1px solid rgba(223, 68, 38, 0.2);
  border-radius: var(--radius-l);
  padding: 48px 36px;
  margin-top: 40px;
  text-align: center;
}

.peace-questions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin: 32px 0;
}

.peace-q-card {
  background: #FFF;
  border: 1px solid var(--line);
  padding: 20px 16px;
  border-radius: var(--radius-m);
  text-align: left;
  box-shadow: 0 4px 14px rgba(0,0,0,0.02);
}

.peace-q-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 6px;
}

.peace-a-desc {
  font-size: 14px;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.4;
}

/* RESPONSIVE MEDIA QUERIES FOR PARENTS PAGE */
@media (max-width: 920px) {
  .dashboard-preview-grid {
    grid-template-columns: 1fr;
  }
  .phone-mockup-frame {
    order: -1;
  }
  .dual-track-grid {
    grid-template-columns: 1fr;
  }
}