:root {
  --purple: #2D1478;
  --purple-dark: #1A0A5C;
  --purple-mid: #3D1E9E;
  --purple-light: #EDE8FF;
  --coral: #FF6B6B;
  --coral-dark: #E85555;
  --lilac: #8B7BD4;
  --text: #1A0A5C;
  --text-muted: #6B5FA8;
  --bg: #F5F3FF;
  --white: #FFFFFF;
  --radius: 16px;
  --radius-sm: 10px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body { font-family: 'Nunito', sans-serif; background: #1A0A5C; color: var(--text); overflow-x: hidden; }
.page-wrap { max-width: 720px; margin: 0 auto; background: var(--bg); min-height: 100vh; }

/* HEADER */
.header { background: var(--purple-dark); padding: 13px 20px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 16px rgba(26,10,92,0.4); }
.header-logo { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.header-logo-text { font-family: 'Unbounded', sans-serif; font-size: 15px; font-weight: 800; color: var(--white); }
.header-logo-text span { color: var(--coral); }
.header-phone { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.85); text-decoration: none; }

/* HERO */
.hero { background: linear-gradient(160deg, var(--purple-dark) 0%, var(--purple) 60%, var(--purple-mid) 100%); color: var(--white); padding: 36px 20px 48px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; bottom: -80px; right: -60px; width: 260px; height: 260px; border-radius: 50%; background: rgba(139,123,212,0.15); }
.hero::after { content: ''; position: absolute; top: -50px; left: -50px; width: 180px; height: 180px; border-radius: 50%; background: rgba(255,107,107,0.08); }
.hero-tag { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); border-radius: 100px; padding: 5px 14px; font-size: 12px; font-weight: 700; margin-bottom: 18px; position: relative; }
.hero h1 { font-family: 'Unbounded', sans-serif; font-size: 26px; font-weight: 800; line-height: 1.2; margin-bottom: 14px; letter-spacing: -0.5px; position: relative; }
.hero h1 em { font-style: normal; color: var(--coral); }
.hero-sub { font-size: 15px; opacity: 0.85; line-height: 1.6; margin-bottom: 28px; position: relative; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 30px; position: relative; }
.hero-badge { background: rgba(255,255,255,0.13); border: 1px solid rgba(255,255,255,0.18); border-radius: 8px; padding: 6px 12px; font-size: 12px; font-weight: 700; }
.hero-cta { position: relative; display: flex; flex-direction: column; gap: 10px; }
.btn-coral { background: var(--coral); color: var(--white); border: none; border-radius: var(--radius); padding: 16px 24px; font-family: 'Nunito', sans-serif; font-size: 16px; font-weight: 800; cursor: pointer; text-decoration: none; text-align: center; display: block; box-shadow: 0 4px 24px rgba(255,107,107,0.45); transition: transform 0.15s; }
.btn-coral:active { transform: scale(0.98); }
.cta-hint { text-align: center; font-size: 12px; opacity: 0.55; margin-top: 2px; }

/* SECTIONS */
.section { padding: 28px 20px; }
.section-title { font-family: 'Unbounded', sans-serif; font-size: 17px; font-weight: 800; margin-bottom: 18px; letter-spacing: -0.3px; line-height: 1.3; color: var(--purple-dark); }

/* POOLS */
.pools-grid { display: flex; flex-direction: column; gap: 14px; }
.pool-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: 0 2px 16px rgba(45,20,120,0.09); }
.pool-card-top { background: linear-gradient(135deg, var(--purple) 0%, var(--purple-mid) 100%); padding: 16px 20px; color: white; }
.pool-card-top h3 { font-family: 'Unbounded', sans-serif; font-size: 13px; font-weight: 700; margin-bottom: 3px; }
.pool-card-top p { font-size: 12px; opacity: 0.8; }
.pool-card-body { padding: 14px 20px; }
.pool-meta { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.pool-tag { background: var(--purple-light); color: var(--purple); border-radius: 6px; padding: 4px 10px; font-size: 12px; font-weight: 700; }
.pool-btn { display: block; background: var(--coral); color: white; border: none; border-radius: var(--radius-sm); padding: 12px 20px; font-family: 'Nunito', sans-serif; font-size: 14px; font-weight: 800; text-align: center; text-decoration: none; box-shadow: 0 3px 12px rgba(255,107,107,0.3); transition: transform 0.15s; }
.pool-btn:active { transform: scale(0.98); }

/* WHY */
.why-grid { display: flex; flex-direction: column; gap: 12px; }
.why-card { background: var(--white); border-radius: var(--radius); padding: 16px 18px; display: flex; gap: 14px; align-items: flex-start; box-shadow: 0 2px 12px rgba(45,20,120,0.07); }
.why-icon { width: 44px; height: 44px; background: var(--purple-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.why-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 3px; color: var(--purple-dark); }
.why-card p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* REVIEWS */
.rating-row { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; background: var(--white); border-radius: var(--radius); padding: 14px 18px; box-shadow: 0 2px 12px rgba(45,20,120,0.07); }
.rating-score { font-family: 'Unbounded', sans-serif; font-size: 34px; font-weight: 800; color: var(--purple); line-height: 1; }
.rating-stars { color: #FFB800; font-size: 15px; margin: 3px 0; }
.rating-meta { font-size: 12px; color: var(--text-muted); font-weight: 600; }
.rating-badge { display: inline-flex; align-items: center; gap: 5px; background: #FC3F1D; color: white; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 6px; text-decoration: none; margin-top: 5px; }
.reviews-list { display: flex; flex-direction: column; gap: 12px; }
.review-card { background: var(--white); border-radius: var(--radius); padding: 16px 18px; box-shadow: 0 2px 12px rgba(45,20,120,0.06); }
.review-stars { color: #FFB800; font-size: 13px; margin-bottom: 7px; }
.review-text { font-size: 14px; line-height: 1.6; color: var(--text); margin-bottom: 10px; }
.review-author { font-size: 12px; font-weight: 700; color: var(--text-muted); }
.review-pool { font-size: 11px; color: var(--lilac); font-weight: 700; margin-top: 2px; }

/* CTA SECTION */
.free-lesson { background: linear-gradient(160deg, var(--purple-dark) 0%, var(--purple-mid) 100%); color: var(--white); padding: 36px 20px; text-align: center; }
.free-lesson h2 { font-family: 'Unbounded', sans-serif; font-size: 21px; font-weight: 800; margin-bottom: 10px; line-height: 1.25; letter-spacing: -0.4px; }
.free-lesson h2 em { font-style: normal; color: var(--coral); }
.free-lesson p { font-size: 14px; opacity: 0.8; margin-bottom: 24px; line-height: 1.5; }
.free-lesson .btn-coral { max-width: 400px; margin: 0 auto 10px; }

/* COOKIE BANNER */
.cookie-bar { position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 101; display: none; width: min(696px, calc(100% - 24px)); margin-inline: auto; background: var(--white); border: 1.5px solid #D8D0FF; border-radius: var(--radius); box-shadow: 0 8px 32px rgba(45,20,120,0.25); padding: 16px 18px; font-size: 13px; line-height: 1.5; color: var(--text-muted); }
.cookie-bar.show { display: block; }
.cookie-bar b { display: block; color: var(--text); font-size: 14px; font-family: 'Unbounded', sans-serif; font-weight: 800; margin-bottom: 6px; }
.cookie-bar a { color: var(--purple); font-weight: 700; }
.cookie-actions { display: flex; gap: 8px; margin-top: 12px; }
.cookie-btn { flex: 1; font-family: 'Nunito', sans-serif; font-size: 14px; font-weight: 800; cursor: pointer; padding: 11px 14px; border-radius: var(--radius-sm); border: 1.5px solid var(--purple); background: var(--purple); color: var(--white); }
.cookie-btn.ghost { background: transparent; color: var(--purple); border-color: #D8D0FF; }

/* FAQ */
.faq-section { background: var(--purple-light); }
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: 0 2px 8px rgba(45,20,120,0.06); }
.faq-q { padding: 15px 18px; font-weight: 700; font-size: 14px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 10px; user-select: none; color: var(--purple-dark); }
.faq-q::after { content: '﹢'; font-size: 18px; color: var(--purple); flex-shrink: 0; transition: transform 0.2s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner { padding: 0 18px 15px; }

/* FOOTER */
.footer { background: var(--purple-dark); color: rgba(255,255,255,0.65); padding: 26px 20px; font-size: 13px; line-height: 1.7; }
.footer a { color: rgba(255,255,255,0.45); }
.footer-logo { font-family: 'Unbounded', sans-serif; font-size: 14px; font-weight: 800; color: white; margin-bottom: 10px; }
.footer-logo span { color: var(--coral); }
.footer-legal { margin-top: 12px; font-size: 11px; opacity: 0.45; }
.footer-links { margin-top: 12px; display: flex; flex-direction: column; gap: 6px; font-size: 11px; }
.footer-links a { color: rgba(255,255,255,0.55); }

/* DOC PAGES */
.doc-card { background: var(--white); border-radius: var(--radius); padding: 20px 18px 28px; box-shadow: 0 2px 16px rgba(45,20,120,0.09); }
.doc-card p { font-size: 14px; line-height: 1.7; margin-bottom: 12px; color: var(--text); }
.doc-card .bold { font-weight: 800; font-family: 'Unbounded', sans-serif; font-size: 13px; margin-top: 22px; margin-bottom: 12px; letter-spacing: -0.2px; color: var(--purple-dark); }
.doc-card .ml1 { padding-left: 1em; }
.doc-card .ml2 { padding-left: 2em; }
.doc-card h4,
.doc-card h5,
.doc-card h6 { font-family: 'Unbounded', sans-serif; font-weight: 800; color: var(--purple-dark); line-height: 1.35; margin: 22px 0 12px; letter-spacing: -0.2px; }
.doc-card h4 { font-size: 15px; }
.doc-card h5 { font-size: 13px; }
.doc-card h6 { font-size: 13px; }
.doc-card ul { margin: 0 0 14px 1.2em; }
.doc-card li { font-size: 14px; line-height: 1.7; margin-bottom: 6px; }
.doc-card a { color: var(--purple); font-weight: 700; }
.doc-card img { max-width: 100%; height: auto; border-radius: var(--radius-sm); }
.doc-card nobr { white-space: nowrap; }
