/* ============================================
   SMOOT HOOPS ACADEMY — Main Stylesheet
   Colors: Navy #103159, Orange #D97706, White
   Fonts: Montserrat (headings), Inter (body)
   UPDATED: Reduced spacing, SVG icons, condensed
   ============================================ */

:root {
  --navy: #103159;
  --navy-dark: #0a1f3a;
  --navy-light: #1a4a7a;
  --orange: #D97706;
  --orange-dark: #B45309;
  --orange-light: #F59E0B;
  --white: #FFFFFF;
  --off-white: #F8F6F3;
  --light-gray: #E5E7EB;
  --dark: #1A1A2E;
  --text: #2D2D3F;
  --text-light: #6B7280;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
  --radius: 8px;
  --radius-lg: 12px;
  --transition: 0.3s ease;
  --max-width: 1200px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; color: var(--text); line-height: 1.6; background: var(--white); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange-dark); }
ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--navy); line-height: 1.2; }
h1 { font-size: clamp(1.75rem, 4.5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }
p { margin-bottom: 0.75rem; color: var(--text); }
.text-orange { color: var(--orange); }
.text-navy { color: var(--navy); }
.text-white { color: var(--white); }

/* --- Layout (condensed) --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 3.3rem 0; }
.section--gray { background: var(--off-white); }
.section--navy { background: var(--navy); color: var(--white); }
.section--navy h2, .section--navy h3, .section--navy h4 { color: var(--white); }
.section--navy p { color: rgba(255,255,255,0.85); }

.section-header { text-align: center; margin-bottom: 2rem; }
.section-header h2 { margin-bottom: 0.75rem; position: relative; display: inline-block; }
.section-header h2::after { content: ''; display: block; width: 50px; height: 3px; background: var(--orange); margin: 0.5rem auto 0; border-radius: 2px; }
.section-header p { font-size: 1rem; color: var(--text-light); max-width: 560px; margin: 0 auto; }
.section--navy .section-header p { color: rgba(255,255,255,0.75); }

/* --- Buttons --- */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.75rem; font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 0.95rem; border-radius: var(--radius); border: 2px solid transparent; cursor: pointer; transition: all var(--transition); text-decoration: none; line-height: 1; }
.btn--primary { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn--primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--secondary { background: transparent; color: var(--white); border-color: var(--white); }
.btn--secondary:hover { background: var(--white); color: var(--navy); transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--outline:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }
.btn--white { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn--white:hover { background: var(--off-white); transform: translateY(-2px); box-shadow: var(--shadow-md); color: var(--navy); }
.btn--sm { padding: 0.5rem 1.25rem; font-size: 0.8rem; }
.btn--lg { padding: 0.875rem 2rem; font-size: 1rem; }
.btn--email { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn--email:hover { background: var(--navy-light); border-color: var(--navy-light); color: var(--white); transform: translateY(-2px); }

/* --- Navigation --- */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(16,49,89,0.95); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); transition: all var(--transition); border-bottom: 1px solid rgba(255,255,255,0.1); }
.navbar.scrolled { background: rgba(16,49,89,0.98); box-shadow: var(--shadow-md); }
.navbar__inner { display: flex; align-items: center; justify-content: space-between; padding: 0.5rem 1.5rem; max-width: var(--max-width); margin: 0 auto; }
.navbar__logo { display: flex; align-items: center; gap: 0.5rem; }
.navbar__logo img { height: 42px; width: auto; }
.navbar__logo-text { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1rem; color: var(--white); line-height: 1.2; }
.navbar__logo-text span { display: block; font-size: 0.65rem; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--orange); }
.navbar__links { display: flex; align-items: center; gap: 0.15rem; }
.navbar__links a { color: rgba(255,255,255,0.85); font-size: 0.85rem; font-weight: 500; padding: 0.4rem 0.75rem; border-radius: var(--radius); transition: all var(--transition); }
.navbar__links a:hover, .navbar__links a.active { color: var(--white); background: rgba(255,255,255,0.1); }
.navbar__cta { margin-left: 0.5rem; }
.navbar__cta .btn { padding: 0.5rem 1rem; font-size: 0.8rem; }

.navbar__toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; z-index: 1001; }
.navbar__toggle span { display: block; width: 22px; height: 2px; background: var(--white); margin: 5px 0; transition: all var(--transition); border-radius: 2px; }
.navbar__toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar__toggle.active span:nth-child(2) { opacity: 0; }
.navbar__toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Hero (condensed) --- */
.hero { position: relative; min-height: 80vh; display: flex; align-items: center; padding: 5rem 0 3rem; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center 20%; background-repeat: no-repeat; }
.hero__bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(16,49,89,0.92) 0%, rgba(10,31,58,0.85) 100%); }
.hero__content { position: relative; z-index: 2; max-width: 780px; }
.hero__badge { display: inline-block; background: rgba(217,119,6,0.15); color: var(--orange-light); font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; padding: 0.4rem 1rem; border-radius: 50px; margin-bottom: 1rem; border: 1px solid rgba(217,119,6,0.3); }
.hero__title { color: var(--white); font-size: clamp(2rem, 5vw, 3.25rem); margin-bottom: 1rem; line-height: 1.1; }
.hero__title span { color: var(--orange); }
.hero__subtitle { color: rgba(255,255,255,0.85); font-size: clamp(0.95rem, 1.8vw, 1.1rem); line-height: 1.6; margin-bottom: 1.75rem; max-width: 650px; }
.hero__buttons { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero__stats { display: flex; gap: 2.5rem; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.15); justify-content: flex-start; }
.hero__stat-number { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.75rem; color: var(--orange); }
.hero__stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 1px; }

/* --- SVG Icon containers --- */
.icon-box { width: 44px; height: 44px; background: rgba(217,119,6,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; flex-shrink: 0; }
.icon-box svg { width: 22px; height: 22px; }
.icon-box--lg { width: 48px; height: 48px; }
.icon-box--lg svg { width: 24px; height: 24px; }
.section--navy .icon-box { background: rgba(217,119,6,0.15); }
.parent-card .icon-box { margin: 0 auto 0.75rem; background: rgba(217,119,6,0.15); }

/* --- Cards (condensed) --- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.25rem; }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
.card-grid--3-uniform { grid-template-columns: repeat(3, 1fr); }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }
.card-grid--4-options { grid-template-columns: repeat(4, 1fr); max-width: 960px; margin: 0 auto; }
.card { background: var(--white); border-radius: var(--radius-lg); padding: 1.5rem 1.25rem; box-shadow: var(--shadow-sm); transition: all var(--transition); border: 1px solid var(--light-gray); }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.card__title { margin-bottom: 0.5rem; font-size: 1.1rem; }
.card__text { color: var(--text-light); font-size: 0.9rem; line-height: 1.6; margin: 0; }

.section--navy .card { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.1); }
.section--navy .card:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2); }
.section--navy .card__title { color: var(--white); }
.section--navy .card__text { color: rgba(255,255,255,0.7); }

/* --- Program Cards (condensed) --- */
.program-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--light-gray); transition: all var(--transition); }
.program-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.program-card__header { background: var(--navy); padding: 1.25rem 1.5rem; color: var(--white); }
.program-card__label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2px; color: var(--orange); margin-bottom: 0.25rem; font-weight: 600; }
.program-card__title { color: var(--white); font-size: 1.25rem; margin-bottom: 0.25rem; }
.program-card__price { font-family: 'Montserrat', sans-serif; font-weight: 700; }
.program-card__price .amount { font-size: 2rem; color: var(--orange); }
.program-card__price .period { font-size: 0.85rem; color: rgba(255,255,255,0.65); }
.program-card__body { padding: 1.25rem 1.5rem; }
.program-card__features { margin-bottom: 1rem; }
.program-card__features li { display: flex; align-items: flex-start; gap: 0.5rem; padding: 0.3rem 0; font-size: 0.9rem; color: var(--text); }
.program-card__features li::before { content: '✓'; color: var(--orange); font-weight: 700; flex-shrink: 0; }
.program-card__best-for { background: var(--off-white); padding: 0.75rem 1rem; border-radius: var(--radius); margin-bottom: 1rem; }
.program-card__best-for strong { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; color: var(--navy); display: block; margin-bottom: 0.15rem; }
.program-card__best-for p { font-size: 0.85rem; color: var(--text-light); margin: 0; }
.program-card--featured { border: 2px solid var(--orange); position: relative; }
.program-card--featured .program-card__header { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); }
.program-card__popular { position: absolute; top: -1px; right: 1.5rem; background: var(--orange); color: var(--white); font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 0.3rem 0.75rem; border-radius: 0 0 var(--radius) var(--radius); }

/* --- Testimonials (condensed) --- */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.testimonial { background: var(--white); border-radius: var(--radius-lg); padding: 1.5rem 1.25rem; box-shadow: var(--shadow-sm); border: 1px solid var(--light-gray); }
.testimonial__stars { color: var(--orange); font-size: 1rem; margin-bottom: 0.75rem; letter-spacing: 2px; }
.testimonial__text { font-size: 0.9rem; line-height: 1.7; color: var(--text); margin-bottom: 1rem; font-style: italic; }
.testimonial__author { display: flex; align-items: center; gap: 0.6rem; }
.testimonial__avatar { width: 36px; height: 36px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.85rem; }
.testimonial__name { font-weight: 600; color: var(--navy); font-size: 0.85rem; }
.testimonial__detail { font-size: 0.75rem; color: var(--text-light); }

/* --- Split Section (condensed) --- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }
.split__image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); max-height: 480px; }
.split__image img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.split__image--sm { max-height: 320px; }
.split__content h2 { margin-bottom: 0.75rem; }
.split__content p { margin-bottom: 0.75rem; color: var(--text-light); font-size: 0.95rem; }
.split__list { margin: 1rem 0; }
.split__list li { display: flex; align-items: flex-start; gap: 0.5rem; padding: 0.3rem 0; font-size: 0.95rem; }
.split__list li::before { content: '▸'; color: var(--orange); font-weight: 700; font-size: 1.1rem; line-height: 1.5; }

/* Dual image grid for Why Coaching */
.dual-image-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; border-radius: var(--radius-lg); overflow: hidden; max-height: 350px; }
.dual-image-grid img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); }

/* --- Steps (condensed) --- */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.step { text-align: center; padding: 1rem 0.75rem; }
.step__number { width: 44px; height: 44px; background: var(--orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 0.75rem; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.1rem; color: var(--white); }
.step__title { margin-bottom: 0.35rem; font-size: 1rem; }
.step__text { color: var(--text-light); font-size: 0.8rem; line-height: 1.5; }

/* --- CTA Banner (condensed) --- */
.cta-banner { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%); padding: 3.3rem 0; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; top: -50%; right: -10%; width: 300px; height: 300px; border-radius: 50%; border: 50px solid rgba(217,119,6,0.06); }
.cta-banner h2 { color: var(--white); margin-bottom: 0.75rem; font-size: clamp(1.5rem, 3.5vw, 2rem); }
.cta-banner p { color: rgba(255,255,255,0.75); font-size: 1rem; margin-bottom: 1.5rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-banner .hero__buttons { justify-content: center; }

/* --- Tags (condensed) --- */
.tags { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; max-width: 750px; margin: 0 auto; }
.tag { display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem; background: var(--white); border: 1px solid var(--light-gray); border-radius: 50px; padding: 0.5rem 1.15rem; font-weight: 500; font-size: 0.85rem; transition: all var(--transition); white-space: nowrap; }
.tag:hover { border-color: var(--orange); background: rgba(217,119,6,0.04); }
.tag svg { width: 16px; height: 16px; flex-shrink: 0; }

/* --- Parents Section (condensed) --- */
.parents-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.parent-card { text-align: center; padding: 1.25rem 1rem; border-radius: var(--radius-lg); background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); transition: all var(--transition); }
.parent-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-2px); }
.parent-card__title { color: var(--white); font-size: 1rem; margin-bottom: 0.35rem; }
.parent-card__text { color: rgba(255,255,255,0.65); font-size: 0.8rem; line-height: 1.5; }

/* --- FAQ (condensed) --- */
.faq-list { max-width: 750px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--light-gray); }
.faq-item__question { display: flex; align-items: center; justify-content: space-between; padding: 1rem 0; cursor: pointer; background: none; border: none; width: 100%; text-align: left; font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 0.95rem; color: var(--navy); gap: 1rem; }
.faq-item__question:hover { color: var(--orange); }
.faq-item__icon { font-size: 1.25rem; transition: transform var(--transition); flex-shrink: 0; color: var(--orange); }
.faq-item.active .faq-item__icon { transform: rotate(45deg); }
.faq-item__answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
.faq-item.active .faq-item__answer { max-height: 500px; padding-bottom: 1rem; }
.faq-item__answer p { color: var(--text-light); font-size: 0.9rem; line-height: 1.7; }

/* --- Contact Form --- */
.contact-form { max-width: 640px; margin: 0 auto; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 600; font-size: 0.85rem; color: var(--navy); margin-bottom: 0.35rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.75rem 0.875rem; border: 2px solid var(--light-gray); border-radius: var(--radius); font-family: 'Inter', sans-serif; font-size: 0.95rem; color: var(--text); transition: border-color var(--transition); background: var(--white); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--orange); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* --- Footer (condensed) --- */
.footer { background: var(--navy-dark); color: rgba(255,255,255,0.7); padding: 3rem 0 0; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 2rem; padding-bottom: 2rem; }
.footer__brand p { color: rgba(255,255,255,0.6); font-size: 0.85rem; line-height: 1.6; margin-top: 0.75rem; }
.footer__title { color: var(--white); font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.9rem; margin-bottom: 0.75rem; }
.footer__links a { display: block; color: rgba(255,255,255,0.6); padding: 0.2rem 0; font-size: 0.85rem; transition: color var(--transition); }
.footer__links a:hover { color: var(--orange); }
.footer__contact-item { display: flex; align-items: flex-start; gap: 0.5rem; margin-bottom: 0.6rem; font-size: 0.85rem; }
.footer__contact-icon { color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 1.25rem 0; display: flex; align-items: center; justify-content: space-between; font-size: 0.8rem; }
.footer__bottom a { color: rgba(255,255,255,0.5); }
.footer__bottom a:hover { color: var(--orange); }

/* --- Page Header (condensed) --- */
.page-header { background: var(--navy); padding: 7.15rem 0 2.75rem; text-align: center; position: relative; overflow: hidden; }
.page-header::before { content: ''; position: absolute; top: -50%; left: -10%; width: 400px; height: 400px; border-radius: 50%; border: 60px solid rgba(217,119,6,0.04); }
.page-header h1 { color: var(--white); margin-bottom: 0.5rem; }
.page-header p { color: rgba(255,255,255,0.7); font-size: 1rem; max-width: 550px; margin: 0 auto; }
.page-header .hero__badge { margin-bottom: 0.75rem; }

/* --- Philosophy Pillars (condensed) --- */
.pillar-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.pillar { display: flex; gap: 1rem; padding: 1.25rem; background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border: 1px solid var(--light-gray); transition: all var(--transition); }
.pillar:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.pillar .icon-box { margin-bottom: 0; }
.pillar__content h3 { margin-bottom: 0.35rem; font-size: 1.1rem; }
.pillar__content p { color: var(--text-light); font-size: 0.9rem; margin: 0; line-height: 1.6; }

/* --- Age Groups (condensed) --- */
.age-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.age-card { background: var(--white); border-radius: var(--radius-lg); padding: 1.25rem; text-align: center; border: 2px solid var(--light-gray); transition: all var(--transition); }
.age-card:hover { border-color: var(--orange); }
.age-card__range { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.5rem; color: var(--orange); margin-bottom: 0.25rem; }
.age-card__label { font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; font-size: 0.9rem; }
.age-card__text { font-size: 0.8rem; color: var(--text-light); line-height: 1.5; }

/* --- Stats (condensed) --- */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; padding: 2rem 0; }
.stat-item__number { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 2rem; color: var(--orange); line-height: 1; }
.stat-item__label { font-size: 0.8rem; color: var(--text-light); margin-top: 0.35rem; }
.section--navy .stat-item__label { color: rgba(255,255,255,0.65); }

/* --- Contact Grid (condensed) --- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-info-card { display: flex; gap: 0.75rem; padding: 1rem; background: var(--off-white); border-radius: var(--radius); margin-bottom: 0.75rem; }
.contact-info-card__icon { width: 38px; height: 38px; background: var(--navy); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--white); font-size: 1rem; }
.contact-info-card__icon svg { width: 18px; height: 18px; }
.contact-info-card__title { font-weight: 600; color: var(--navy); margin-bottom: 0.15rem; font-size: 0.9rem; }
.contact-info-card__text { color: var(--text-light); font-size: 0.85rem; margin: 0; }

/* --- Privacy Policy --- */
.policy-content { max-width: 800px; margin: 0 auto; }
.policy-content h2 { font-size: 1.35rem; margin-top: 2rem; margin-bottom: 0.75rem; }
.policy-content h3 { font-size: 1.1rem; margin-top: 1.25rem; margin-bottom: 0.5rem; }
.policy-content p, .policy-content li { color: var(--text-light); font-size: 0.9rem; line-height: 1.7; }
.policy-content ul { margin: 0.75rem 0; padding-left: 1.5rem; }
.policy-content ul li { list-style: disc; margin-bottom: 0.35rem; }

/* --- Animations --- */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .card-grid--3, .card-grid--4, .card-grid--4-options { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
  .split { gap: 2rem; }
  .age-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .pillar-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .parents-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 2.75rem 0; }
  .tags { grid-template-columns: repeat(2, 1fr); max-width: 440px; }
  .navbar__links { position: fixed; top: 0; right: -100%; width: 80%; max-width: 300px; height: 100vh; background: var(--navy-dark); flex-direction: column; align-items: flex-start; padding: 4.5rem 1.5rem 2rem; gap: 0; transition: right var(--transition); box-shadow: var(--shadow-lg); }
  .navbar__links.open { right: 0; }
  .navbar__links a { display: block; width: 100%; padding: 0.75rem 0; font-size: 0.95rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .navbar__cta { margin-left: 0; margin-top: 1rem; width: 100%; }
  .navbar__cta .btn { width: 100%; justify-content: center; }
  .navbar__toggle { display: block; }
  .hero { min-height: auto; padding: 5rem 0 2.5rem; }
  .hero__stats { gap: 1.5rem; flex-wrap: wrap; }
  .split { grid-template-columns: 1fr; gap: 1.5rem; }
  .split--reverse { direction: ltr; }
  .split__image { max-height: 280px; }
  .card-grid--3, .card-grid--4, .card-grid--4-options, .card-grid--2, .card-grid--3-uniform { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .hero__buttons { flex-direction: column; }
  .hero__buttons .btn { width: 100%; justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .steps { grid-template-columns: 1fr; max-width: 350px; margin: 0 auto; }
  .age-grid { grid-template-columns: 1fr; max-width: 280px; margin: 0 auto; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .parents-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-banner { padding: 2.75rem 0; }
  .page-header { padding: 6rem 0 2.2rem; }
  .dual-image-grid { max-height: 250px; }
}

@media (max-width: 480px) {
  .parents-grid { grid-template-columns: 1fr; }
  .hero__stats { flex-direction: column; gap: 0.75rem; }
  .tags { grid-template-columns: 1fr; max-width: 280px; }
}

/* --- Utility --- */
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-0 { margin-bottom: 0; }
