
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --teal: #00a89c;
  --teal-dark: #008a80;
  --teal-light: rgba(0, 168, 156, 0.08);
  --navy: #003964;
  --purple-bg: #f0e6ff;
  --link: #054ada;
  --orange: #f57c00;
  --text: #1a1a2e;
  --text-secondary: #555;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-500: #6b7280;
  --white: #fff;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  padding-bottom: 80px;
  overflow-x: hidden;
}

  html, body {
-webkit-font-smoothing: auto !important;
-moz-osx-font-smoothing: auto !important;
scroll-behavior: smooth;
            }
/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  background: var(--purple-bg);
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 2rem 0 4rem;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: center;
  min-height: 480px;
}

.hero-content { z-index: 1; }

.hero .eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 480px;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.cta-primary {
  display: inline-block;
  background: var(--navy);
  color: var(--white) !important;
  padding: 0.9rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.cta-primary:hover {
  background: #002a4a;
  transform: translateY(-2px);
  color: var(--white) !important;
}

.cta-secondary {
  display: inline-block;
  background: transparent;
  color: var(--navy) !important;
  padding: 0.85rem 1.7rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid var(--navy);
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.cta-secondary:hover {
  background: var(--navy);
  color: var(--white) !important;
  transform: translateY(-2px);
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.hero-image {
  border-radius: 20px;
  width: 100%;
  max-width: 520px;
  height: auto;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2rem 1.5rem;
  }
  .hero-subtitle { margin: 0 auto 2rem; }
  .hero-ctas { justify-content: center; }
  .hero-visual { display: none; }
}

@media (max-width: 600px) {
  .hero h1 { font-size: 2.25rem; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .cta-primary, .cta-secondary { text-align: center; }
}

/* ========================================
   TRUST BAR
   ======================================== */
.trust-bar {
  background: var(--navy);
  padding: 1.25rem 2rem;
  width: auto;
}

.trust-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 0;
}

.trust-item {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 500;
  white-space: nowrap;
  padding: 0 0.5rem;
}

.trust-item.highlight {
  font-weight: 700;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 0.3rem 0.6rem;
}

.trust-dot {
  color: rgba(255, 255, 255, 0.4);
  font-size: 1rem;
  padding: 0 0.1rem;
}

@media (max-width: 900px) {
  .trust-bar-inner {
    flex-direction: column;
    gap: 0.6rem;
    text-align: center;
  }
  .trust-dot { display: none; }
  .trust-item { padding: 0.2rem 0.75rem; }
}

/* ========================================
   PROGRAM GRID SECTION
   ======================================== */
.programs-section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.programs-header {
  text-align: center;
  margin-bottom: 0rem;
}

.programs-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
  margin-top: 4rem;
}

.programs-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 0;
}

/* Filter Pills */
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
  padding: 0 1rem;
}

.filter-btn {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  color: var(--text);
  padding: 0.5rem 1.1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  font-family: inherit;
}

.filter-btn:hover {
  background: var(--gray-200);
}

.filter-btn.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

@media (max-width: 600px) {
  .filter-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.5rem;
  }
  .filter-row::-webkit-scrollbar { display: none; }
}

/* Program Cards Grid */
.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .program-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .program-grid { grid-template-columns: 1fr; }
}

/* Individual Card */
.program-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.program-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
  color: inherit;
}

.card-image {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--gray-200);
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--navy);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.card-badge.badge-new {
  background: var(--teal);
}

.card-badge.badge-spring {
  background: var(--orange);
}

.card-content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.card-tagline {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.5;
  flex: 1;
  margin-bottom: 1rem;
}

.card-cta {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: auto;
}

.program-card:hover .card-cta {
  color: var(--teal);
}

.cta-teal {
  display: inline-block;
  background: var(--teal);
  color: var(--white) !important;
  padding: 0.9rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.cta-teal:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  color: var(--white) !important;
}

.cta-ghost {
  display: inline-block;
  color: var(--white) !important;
  padding: 0.85rem 1.7rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.4);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.cta-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
  color: var(--white) !important;
}

@media (max-width: 600px) {
  .page-close-inner h2 { font-size: 1.75rem; }
  .close-ctas { flex-direction: column; align-items: center; }
}

/* ========================================
   STICKY BOTTOM BANNER
   ======================================== */
.bottom-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.bottom-banner.visible {
  transform: translateY(0);
}

.bottom-banner-text {
  color: var(--white);
  font-weight: 500;
  font-size: 1rem;
}

.bottom-banner-cta {
  background: var(--teal);
  color: var(--white) !important;
  padding: 0.65rem 1.5rem;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.bottom-banner-cta:hover {
  background: var(--teal-dark);
  color: var(--white) !important;
}

@media (max-width: 600px) {
  .bottom-banner {
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem;
    text-align: center;
  }
}
body {
  overflow-x: hidden;
}
/* ── Prevent iOS zoom on input focus causing page wiggle ── */
#rpLeadPopup, #rpLeadPanel {
  -webkit-text-size-adjust: 100%;
}

/* ── Backdrop ──────────────────────────────── */
#rpLeadBackdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 99998;
  opacity: 0;
  transition: opacity 0.35s ease;
}
#rpLeadPopup.rp-visible #rpLeadBackdrop { opacity: 1; }

/* ── Panel — desktop: right slide-in ─────── */
#rpLeadPanel {
  position: fixed;
  top: 0;
  right: 0;
  width: 480px;
  max-width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow-y: auto;
  overflow-x: hidden;
  background: #f0e6ff;
  color: #1a1a2e;
  z-index: 99999;
  padding: 2.5rem 2rem 6rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  box-shadow: -8px 0 30px rgba(0,0,0,0.25);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
#rpLeadPanel * { box-sizing: border-box; font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, sans-serif;}
#rpLeadPopup.rp-visible #rpLeadPanel { transform: translateX(0); }

/* ── Desktop / mobile content toggles ────── */
.rp-lp-mobile-only  { display: none; }
.rp-lp-desktop-only { display: block; }

/* ── Close button ─────────────────────────── */
#rpLeadClose {
  position: sticky;
  top: 0;
  float: right;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.08);
  color: rgba(0,0,0,0.45);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  z-index: 2;
  margin-bottom: 0.25rem;
}
#rpLeadClose:hover { background: rgba(0,0,0,0.14); color: rgba(0,0,0,0.7); }

/* ── Typography ───────────────────────────── */
.rp-lp-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  color: #00897b;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 0.75rem;
}
.rp-lp-heading {
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #1a1a2e;
  margin: 0 0 1rem;
}
.rp-lp-sub {
  font-size: 0.85rem;
  color: rgba(26,26,46,0.6);
  line-height: 1.6;
  margin: 0 0 1.25rem;
}
.rp-lp-nosales {
  font-size: 0.6875rem;
  color: rgba(26,26,46,0.35);
  margin: 0 0 1.25rem;
}

/* ── Benefits ─────────────────────────────── */
.rp-lp-benefits {
  list-style: none;
  margin: 0 0 0.5rem;
  padding: 0;
}
.rp-lp-benefits li {
  font-size: 0.8rem;
  color: rgba(26,26,46,0.65);
  line-height: 1.5;
  padding: 0.25rem 0 0.25rem 1.4rem;
  position: relative;
}
.rp-lp-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #00897b;
  font-weight: 700;
}

/* ── Scott card ───────────────────────────── */
.rp-lp-scott {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  background: rgba(0,0,0,0.05);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  margin-bottom: 1.5rem;
}
.rp-lp-scott__photo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  border: 2px solid rgba(0,0,0,0.08);
}
.rp-lp-scott__info { display: flex; flex-direction: column; gap: 2px; }
.rp-lp-scott__name { font-size: 0.85rem; font-weight: 700; color: #1a1a2e; }
.rp-lp-scott__role { font-size: 0.675rem; color: rgba(26,26,46,0.5); }
.rp-lp-scott__quote { font-size: 0.725rem; color: rgba(26,26,46,0.45); font-style: italic; margin-top: 2px; }

/* ── Divider ──────────────────────────────── */
.rp-lp-divider {
  border: none;
  border-top: 1px solid rgba(0,0,0,0.08);
  margin: 0 0 1.5rem;
}

/* ── Form ─────────────────────────────────── */
#rpSlideForm label {
  display: block;
  font-size: 0.725rem;
  font-weight: 600;
  color: rgba(26,26,46,0.6);
  margin-bottom: 0.3rem;
}
.rp-lp-opt { font-weight: 400; color: rgba(26,26,46,0.35); }

#rpSlideForm input[type="text"],
#rpSlideForm input[type="email"],
#rpSlideForm input[type="tel"],
#rpSlideForm select,
#rpSlideForm textarea {
  width: 100%;
  font-size: .725rem;                      
  color: #1a1a2e;
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 6px;
  padding: 0.55rem 0.7rem;
  margin-bottom: 0.8rem;
  font-family: inherit;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  max-width: 100%;                      /* prevent overflow */
}
#rpSlideForm input::placeholder,
#rpSlideForm textarea::placeholder { color: rgba(26,26,46,0.35); }
#rpSlideForm input:focus,
#rpSlideForm select:focus,
#rpSlideForm textarea:focus {
  border-color: #7c4dff;
  background: rgba(255,255,255,0.85);
}
#rpSlideForm select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(0,0,0,0.35)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.7rem center;
  padding-right: 2rem;
}
#rpSlideForm select option { background: #f0e6ff; color: #1a1a2e; }

/* ── Name row ─────────────────────────────── */
.rp-lp-name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 0.7rem;
}

/* ── Phone row ────────────────────────────── */
.rp-lp-phone-row {
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 0 0.5rem;
}

/* ── Optional toggle ──────────────────────── */
.rp-lp-opt-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 6px;
  color: rgba(26,26,46,0.55);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.55rem 0.7rem;
  cursor: pointer;
  margin-bottom: 0.8rem;
  font-family: inherit;
  transition: background 0.2s;
}
.rp-lp-opt-toggle:hover { background: rgba(0,0,0,0.07); }
.rp-lp-opt-toggle svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.25s;
}
.rp-lp-opt-toggle.open svg { transform: rotate(180deg); }

/* ── Optional fields ──────────────────────── */
.rp-lp-opt-fields {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.rp-lp-opt-fields.visible { max-height: 600px; }
.rp-lp-opt-heading {
  font-size: 0.675rem;
  color: rgba(26,26,46,0.35);
  margin: 0 0 0.7rem;
}

/* ── Error ────────────────────────────────── */
.rp-lp-error {
  display: none;
  color: #d32f2f;
  font-size: 0.8rem;
  line-height: 1.4;
  margin: 0 0 0.7rem;
}

/* ── Submit ───────────────────────────────── */
.rp-lp-submit {
  display: block;
  width: 100%;
  background: #00a89c;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 700;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: -0.01em;
  transition: background 0.2s, transform 0.1s;
  text-align: center;
}
.rp-lp-submit:hover { background: #00bfb2; }
.rp-lp-submit:active { transform: scale(0.99); }

/* ── Disclaimer ───────────────────────────── */
.rp-lp-disclaimer {
  font-size: 0.675rem;
  color: rgba(26,26,46,0.35);
  text-align: center;
  margin: 0.7rem 0 0;
  line-height: 1.5;
}

/* ══════════════════════════════════════════════
   MOBILE — centered modal, 80% width
   ══════════════════════════════════════════════ */
@media (max-width: 600px) {
  .rp-lp-desktop-only { display: none !important; }
  .rp-lp-mobile-only  { display: block !important; }

  /* Lock body horizontal overflow when popup open */
  html.rp-popup-open,
  html.rp-popup-open body {
    overflow-x: hidden !important;
    width: 100% !important;
    position: relative !important;
  }

  #rpLeadPanel {
    width: 80%;
    max-width: 340px;
    height: auto;
    max-height: 85vh;
    max-height: 85dvh;
    top: 50%;
    bottom: auto;
    left: auto;
    right: 0;
    padding: 1.75rem 1.25rem 2.5rem;
    border-radius: 16px 0 0 16px;
    box-shadow: -6px 0 30px rgba(0,0,0,0.3);
    transform: translateY(-50%) translateX(100%);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), opacity 0.3s ease;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }
  #rpLeadPopup.rp-visible #rpLeadPanel {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
  }

  #rpLeadClose {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
  }

  .rp-lp-heading { font-size: 1.15rem; }
  .rp-lp-sub { font-size: 0.8rem; margin-bottom: 0.75rem; }
  .rp-lp-scott { padding: 0.6rem 0.75rem; margin-bottom: 1rem; gap: 0.7rem; }
  .rp-lp-scott__photo { width: 40px; height: 40px; }
  .rp-lp-scott__name { font-size: 0.8rem; }
  .rp-lp-scott__role { font-size: 0.625rem; }
  .rp-lp-scott__quote { font-size: 0.675rem; }
  .rp-lp-divider { margin-bottom: 1rem; }
  .rp-lp-name-row { grid-template-columns: 1fr; }
  .rp-lp-phone-row { grid-template-columns: 95px 1fr; }

  /* Keep all inputs at 16px to prevent iOS auto-zoom */
  #rpSlideForm input[type="text"],
  #rpSlideForm input[type="email"],
  #rpSlideForm input[type="tel"],
  #rpSlideForm select,
  #rpSlideForm textarea {
    font-size: 16px;
  }
}
/* ========================================
   PAGE CLOSE
   ======================================== */
.page-close {
  background: var(--navy);
  padding: 4rem 2rem;
}

.page-close-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  color: var(--white);
}

.page-close-inner h2 {
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
  color: white;
}

.page-close-inner p {
  font-size: 1.15rem;
  opacity: 0.88;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.close-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
  @media (max-width: 600px) {
  .page-close-inner h2 { font-size: 1.75rem; }
  .close-ctas { flex-direction: column; align-items: center; }
}
  /* ===== Programs layer padding (desktop + mobile) ===== */
.Layer__Inner.Programs__Scope__897443045{
  padding-top: 32px;
  padding-right: 24px;
  padding-bottom: 0px;
  padding-left: 24px;
}

@media (max-width: 767px){
  .Layer__Inner.Programs__Scope__897443045{
    padding-top: 24px;
    padding-right: 10px;
    padding-bottom: 0px;
    padding-left: 10px;
  }
}

  .ProgramGridControls {margin-top: 0 !important;} 
  .Layer--PaddingVerticalLarge > .Layer__Inner{
  padding: 0 !important;
}
label[for="chip-spring-break"],
#chip-spring-break {
  display: none !important;
}
/* hide Parent Favorites chip */
.chip-favorites,
label[for="chip-parent-favorites"] {
  display: none !important;
}
