/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  color: #111;
  background: #fff;
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: 'Fredoka', sans-serif; font-weight: 600; line-height: 1.15; letter-spacing: -0.01em; }
h2 { font-size: 2.8rem; margin-bottom: 1rem; font-weight: 700; }

.section { padding: 100px 24px; }
.bg-soft { background: #f7f5f2; }
.container { max-width: 1080px; margin: 0 auto; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7c3aed;
  background: #f1ebff;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.section-sub {
  color: #666;
  font-size: 1.05rem;
  margin-bottom: 50px;
  max-width: 520px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 46px; left: 0; right: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 48px;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  padding: 16px 48px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}

.nav-logo {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 1.7rem;
  color: #111;
  text-decoration: none;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: baseline;
  gap: 0;
}

.brand-gcs {
  font-size: 1.7em;
  letter-spacing: -0.02em;
  line-height: 1;
}

.brand-e {
  font-size: 1.7em;
  display: inline-block;
  transform: rotate(-14deg) translateY(-3px);
  transform-origin: bottom center;
  color: #7c3aed;
  margin: 0 2px 0 0;
  line-height: 1;
}

.brand-rest {
  font-size: 0.85em;
  margin-left: 8px;
  color: #333;
  font-weight: 600;
}

.footer-name .brand-gcs,
.footer-name .brand-e,
.footer-name .brand-rest {
  color: #fff;
}

.footer-name .brand-e { color: #c4b5fd; }

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

.nav-links a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  color: #444;
  transition: color 0.2s;
}

.nav-links a:hover { color: #7c3aed; }

.nav-cta {
  background: #111 !important;
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 0.88rem !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: #7c3aed !important; }

.burger {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: #111;
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  position: fixed;
  top: 0; left: 0; right: 0;
  background: #fff;
  padding: 80px 32px 32px;
  z-index: 998;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  transform: translateY(-110%);
  transition: transform 0.35s ease;
}

.mobile-menu.open { transform: translateY(0); }

.mobile-menu a {
  text-decoration: none;
  color: #111;
  font-size: 1.35rem;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: #111;
  color: #fff;
  padding: 14px 30px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid #111;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.btn-primary:hover {
  background: #7c3aed;
  border-color: #7c3aed;
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-block;
  color: #444;
  padding: 14px 24px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  border: 2px solid #ddd;
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover { border-color: #111; color: #111; }

.btn-outline {
  display: inline-block;
  border: 2px solid #111;
  color: #111;
  padding: 12px 26px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s;
}

.btn-outline:hover {
  background: #111;
  color: #fff;
  transform: translateY(-2px);
}

.full-width { width: 100%; text-align: center; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 170px 48px 100px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(196,181,253,0.35) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(124,58,237,0.22) 0%, transparent 55%),
    linear-gradient(180deg, #faf7ff 0%, #f3eeff 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(124,58,237,0.08) 1.5px, transparent 1.5px);
  background-size: 32px 32px;
}

.hero-decor {
  display: none;
}

.hero-bg-overlay { display: none; }

.hd-1 { top: 18%; left: 6%; font-size: 3.5rem; animation-delay: 0s; }
.hd-2 { top: 32%; right: 10%; font-size: 2.8rem; animation-delay: 1.4s; }
.hd-3 { bottom: 22%; left: 8%; font-size: 4rem; animation-delay: 2.8s; }
.hd-4 { bottom: 28%; right: 7%; font-size: 3.2rem; animation-delay: 0.7s; }
.hd-5 { top: 12%; right: 30%; font-size: 2rem; animation-delay: 3.5s; opacity: 0.14; }
.hd-6 { bottom: 12%; left: 38%; font-size: 2.2rem; animation-delay: 2.1s; opacity: 0.14; }
.hd-7 { top: 50%; right: 18%; font-size: 2.4rem; animation-delay: 4s; opacity: 0.13; }
.hd-8 { top: 60%; left: 22%; font-size: 2.6rem; animation-delay: 1s; opacity: 0.15; }

@keyframes floatHero {
  0%, 100% { transform: translateY(0) rotate(-6deg); }
  50% { transform: translateY(-18px) rotate(8deg); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.hero-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7c3aed;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 22px;
  color: #111;
  letter-spacing: -0.02em;
}

.hero h1 span {
  color: #7c3aed;
}

.hero-sub {
  font-size: 1.08rem;
  color: #555;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 50px;
  justify-content: center;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
}

.stat { display: flex; flex-direction: column; }

.stat-num {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: #111;
}

.stat-label {
  font-size: 0.78rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: #ddd;
}

/* Hero photo */
.hero-right {
  display: flex;
  justify-content: center;
}

.photo-wrap {
  position: relative;
  width: 420px;
  max-width: 100%;
}

.hero-photo {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
  border-radius: 220px 220px 32px 32px;
  display: block;
  box-shadow: 0 24px 64px rgba(0,0,0,0.14);
}

.photo-badge {
  position: absolute;
  bottom: 24px;
  left: -20px;
  background: #fff;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  white-space: nowrap;
}

/* ===== GRADUATION BANNER ===== */
.grad-banner {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 30%, rgba(196,181,253,0.18) 0%, transparent 50%),
    radial-gradient(circle at 85% 70%, rgba(124,58,237,0.35) 0%, transparent 55%),
    linear-gradient(135deg, #1a0f2e 0%, #2d1b4e 50%, #1a0f2e 100%);
}

.grad-overlay {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  z-index: 1;
}

.grad-decor {
  position: absolute;
  font-size: 3.5rem;
  opacity: 0.18;
  z-index: 1;
  filter: grayscale(0.5);
  animation: float 6s ease-in-out infinite;
}

.grad-decor-1 { top: 15%; right: 8%; animation-delay: 0s; font-size: 5rem; }
.grad-decor-2 { top: 60%; right: 18%; animation-delay: 1.2s; }
.grad-decor-3 { top: 25%; right: 28%; animation-delay: 2.4s; font-size: 2.5rem; }
.grad-decor-4 { bottom: 18%; right: 5%; animation-delay: 0.6s; font-size: 4rem; }
.grad-decor-5 { top: 8%; right: 42%; animation-delay: 3s; font-size: 2rem; opacity: 0.12; }
.grad-decor-6 { bottom: 35%; right: 36%; animation-delay: 1.8s; font-size: 2.8rem; opacity: 0.14; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-8deg); }
  50% { transform: translateY(-14px) rotate(4deg); }
}

.grad-content {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  margin: 0 auto;
  padding: 80px 48px;
  width: 100%;
  color: #fff;
}

.grad-content h2 {
  color: #fff;
  font-size: 3rem;
  margin-bottom: 20px;
}

.grad-content p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  max-width: 500px;
  margin-bottom: 30px;
  line-height: 1.7;
}

.section-label.light {
  background: rgba(255,255,255,0.15);
  color: #fff;
  backdrop-filter: blur(8px);
}

.btn-light {
  display: inline-block;
  background: #fff;
  color: #111;
  padding: 14px 30px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s, background 0.2s;
}

.btn-light:hover {
  background: #7c3aed;
  color: #fff;
  transform: translateY(-2px);
}

/* ===== SCROLLING REVIEWS TICKER ===== */
.ticker {
  background: linear-gradient(90deg, #5b21b6 0%, #7c3aed 50%, #5b21b6 100%);
  color: #fff;
  padding: 14px 0;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.ticker::before,
.ticker::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.ticker::before {
  left: 0;
  background: linear-gradient(90deg, #5b21b6, transparent);
}

.ticker::after {
  right: 0;
  background: linear-gradient(-90deg, #5b21b6, transparent);
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  animation: scroll-left 45s linear infinite;
  width: max-content;
}

.ticker-item {
  font-size: 0.92rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.01em;
}

.ticker-dot {
  color: #fbbf24;
  font-size: 0.9rem;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .grad-content { padding: 60px 24px; }
  .grad-content h2 { font-size: 2rem; }
  .grad-content p { font-size: 1rem; }
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 70px;
  align-items: center;
}

.about-text h2 { margin-bottom: 24px; }

.about-text p {
  color: #555;
  margin-bottom: 16px;
  font-size: 1.02rem;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.badge {
  background: #f0f0ed;
  color: #333;
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.about-image-col { position: relative; }

.about-photo {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center top;
  border-radius: 24px;
  display: block;
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}

.about-card-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #fff;
  border-radius: 20px;
  padding: 20px 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  text-align: center;
  min-width: 180px;
}

.float-icon { font-size: 1.8rem; margin-bottom: 6px; }

.about-card-float p { font-size: 0.88rem; color: #666; }
.about-card-float p:nth-child(2) { color: #111; font-weight: 600; }

/* ===== LESSONS ===== */
.lessons h2 { margin-bottom: 12px; }

.lessons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.lesson-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 26px;
  border: 1px solid #ebebeb;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.lesson-link {
  margin-top: auto;
  padding-top: 12px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #7c3aed;
  transition: gap 0.2s;
}

.lesson-card:hover .lesson-link {
  letter-spacing: 0.02em;
}

.lesson-card:hover {
  border-color: #7c3aed;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(124,58,237,0.1);
}

.lesson-icon { font-size: 1.8rem; margin-bottom: 16px; }

.lesson-card h3 {
  font-size: 1rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  margin-bottom: 10px;
}

.lesson-card p { color: #777; font-size: 0.9rem; line-height: 1.65; }

/* ===== PRICING ===== */
.pricing h2 { margin-bottom: 12px; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
}

.pricing-card {
  background: #fff;
  border-radius: 24px;
  padding: 32px 26px;
  border: 1.5px solid #e8e8e8;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pricing-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }

.pricing-card.featured {
  background: #111;
  border-color: #111;
  color: #fff;
}

.pricing-pill {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: #7c3aed;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-top { display: flex; flex-direction: column; gap: 4px; }
.pricing-icon { font-size: 1.6rem; }

.pricing-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
}

.pricing-card .duration {
  font-size: 0.82rem;
  color: #999;
}

.pricing-card.featured .duration { color: #aaa; }

.pricing-price {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  color: #111;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-card.featured .pricing-price { color: #fff; }

.save {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  background: #f1ebff;
  color: #7c3aed;
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.02em;
}

.pricing-card.featured .save {
  background: rgba(124,58,237,0.3);
  color: #c4b5fd;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
}

.pricing-features li {
  font-size: 0.88rem;
  color: #555;
  padding-left: 20px;
  position: relative;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #7c3aed;
  font-weight: 700;
}

.pricing-card.featured .pricing-features li { color: #ccc; }
.pricing-card.featured .pricing-features li::before { color: #c4b5fd; }

.custom-plan {
  margin-top: 32px;
  background: linear-gradient(135deg, #f7f5f2 0%, #f1ebff 100%);
  border: 1.5px solid #e0e8e3;
  border-radius: 24px;
  padding: 32px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.custom-plan-left {
  display: flex;
  align-items: center;
  gap: 22px;
  flex: 1;
}

.custom-icon {
  font-size: 2.2rem;
  background: #fff;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.custom-plan h3 {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 6px;
  color: #111;
}

.custom-plan p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 600px;
}

/* ===== RELATED LESSONS (subpages) ===== */
.related-lessons {
  max-width: 800px;
  margin: 60px auto 0;
  padding: 0 24px;
}
.related-lessons h3 {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 18px;
  color: #111;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}
.related-grid a {
  background: #faf7ff;
  border: 1.5px solid #e8def8;
  border-radius: 14px;
  padding: 18px 18px;
  text-decoration: none;
  color: #111;
  transition: border-color 0.2s, transform 0.2s;
  font-weight: 500;
  font-size: 0.95rem;
}
.related-grid a:hover {
  border-color: #7c3aed;
  transform: translateY(-3px);
}
.related-grid a strong {
  display: block;
  color: #7c3aed;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
  font-weight: 600;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 780px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border: 1.5px solid #ebebeb;
  border-radius: 16px;
  padding: 18px 24px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.faq-item[open] {
  border-color: #c4b5fd;
  box-shadow: 0 4px 20px rgba(124,58,237,0.08);
}

.faq-item summary {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: #111;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.6rem;
  color: #7c3aed;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.2s;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  margin-top: 14px;
  color: #555;
  font-size: 0.98rem;
  line-height: 1.7;
}

.form-status {
  font-size: 0.92rem;
  margin: 0;
  min-height: 1.2em;
}

.contact-fallback {
  text-align: center;
  margin-top: 16px;
  font-size: 0.9rem;
  color: #666;
}

.contact-fallback a {
  color: #7c3aed;
  font-weight: 500;
  text-decoration: none;
}

.contact-fallback a:hover {
  text-decoration: underline;
}

.credentials-list {
  list-style: none;
  padding: 0;
  margin: 36px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  max-width: 900px;
}

.credentials-list li {
  position: relative;
  padding: 8px 18px 8px 36px;
  background: #faf7ff;
  border: 1px solid #e8def8;
  border-radius: 100px;
  font-size: 0.92rem;
  font-weight: 500;
  color: #333;
}

.credentials-list li::before {
  content: '✓';
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: #7c3aed;
  color: #fff;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
}

.pricing-note {
  text-align: center;
  color: #aaa;
  font-size: 0.85rem;
  margin-top: 32px;
}

@media (max-width: 768px) {
  .custom-plan {
    flex-direction: column;
    text-align: center;
    padding: 28px 22px;
  }
  .custom-plan-left { flex-direction: column; gap: 16px; }
}

/* ===== TESTIMONIALS ===== */
.testimonials h2 { margin-bottom: 28px; }

.rating-banner {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 50px;
  padding: 24px 32px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid #ebebeb;
  max-width: 380px;
}

.big-rating {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 3.6rem;
  line-height: 1;
  color: #111;
}

.stars-row { color: #f4a623; font-size: 1.2rem; letter-spacing: 2px; }
.rating-banner p { font-size: 0.85rem; color: #888; margin-top: 2px; }

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

.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid #ebebeb;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.07);
}

.t-stars { color: #f4a623; font-size: 1rem; letter-spacing: 2px; }

.testimonial-card p {
  color: #444;
  font-size: 0.97rem;
  line-height: 1.7;
  flex: 1;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.t-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f1ebff;
  color: #7c3aed;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.t-author strong { display: block; font-size: 0.92rem; color: #111; }
.t-author span { font-size: 0.8rem; color: #999; }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.contact-left h2 { margin-bottom: 16px; }
.contact-left > p { color: #666; margin-bottom: 36px; font-size: 1rem; }

.contact-details { display: flex; flex-direction: column; gap: 16px; }

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: #444;
}

.c-icon { font-size: 1.1rem; }

.contact-item a {
  color: #7c3aed;
  text-decoration: none;
  font-weight: 500;
}

.contact-item a:hover { text-decoration: underline; }

.contact-form { display: flex; flex-direction: column; gap: 18px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group { display: flex; flex-direction: column; gap: 7px; }

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #333;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: #111;
  background: #fff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #7c3aed;
  box-shadow: 0 0 0 3px rgba(124,58,237,0.1);
}

/* ===== FOOTER ===== */
.footer {
  background: #111;
  color: #888;
  padding: 48px 48px;
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-brand { }
.footer-name {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 4px;
}

.footer-brand p:last-child { font-size: 0.88rem; }

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  text-decoration: none;
  color: #888;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: #fff; }

.footer-copy {
  font-size: 0.82rem;
  color: #555;
  padding-top: 24px;
  border-top: 1px solid #222;
}

.footer-copy a { color: #888; text-decoration: none; }
.footer-copy a:hover { color: #fff; }

/* ===== SUBPAGE (lesson detail) ===== */
.subhero {
  position: relative;
  padding: 180px 24px 80px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(196,181,253,0.35) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(124,58,237,0.22) 0%, transparent 55%),
    linear-gradient(180deg, #faf7ff 0%, #f3eeff 100%);
  text-align: center;
}

.subhero-icon { font-size: 4rem; margin-bottom: 16px; }
.subhero h1 {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 3.5rem;
  color: #111;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.subhero p {
  max-width: 620px;
  margin: 0 auto;
  color: #555;
  font-size: 1.1rem;
}

.breadcrumb {
  max-width: 1080px;
  margin: 0 auto 18px;
  font-size: 0.88rem;
  color: #7c3aed;
}
.breadcrumb a { color: #7c3aed; text-decoration: none; font-weight: 500; }
.breadcrumb a:hover { text-decoration: underline; }

.lesson-detail {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 24px;
}

.lesson-detail h2 {
  font-size: 2rem;
  margin: 48px 0 16px;
  color: #111;
}
.lesson-detail h2:first-child { margin-top: 0; }

.lesson-detail h3 {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  margin: 32px 0 12px;
  color: #111;
}

.lesson-detail p {
  font-size: 1.02rem;
  color: #444;
  margin-bottom: 16px;
  line-height: 1.8;
}

.lesson-detail ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 24px;
}

.lesson-detail ul li {
  padding: 10px 0 10px 32px;
  position: relative;
  color: #444;
  font-size: 1rem;
  line-height: 1.6;
}

.lesson-detail ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 10px;
  color: #fff;
  background: #7c3aed;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
}

.highlight-box {
  background: linear-gradient(135deg, #f7f5f2 0%, #f1ebff 100%);
  border: 1.5px solid #e0d4ff;
  border-radius: 20px;
  padding: 28px 32px;
  margin: 32px 0;
}

.highlight-box h3 { margin-top: 0; color: #5b21b6; }
.highlight-box p:last-child { margin-bottom: 0; }

.detail-cta {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 60px 24px;
  margin-top: 60px;
  border-radius: 24px;
}

.detail-cta h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 14px;
}

.detail-cta p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero { padding: 150px 32px 80px; }
  .hero h1 { font-size: 3.2rem; }
  .hero-sub { margin: 0 auto 36px; }
  .lessons-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-image-col { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .navbar { padding: 18px 24px; }
  .nav-links { display: none; }
  .burger { display: block; }
  .mobile-menu { display: flex; }
  h2 { font-size: 2rem; }
  .hero h1 { font-size: 2.4rem; }
  .lessons-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer { padding: 40px 24px; }
  .footer-links { flex-wrap: wrap; gap: 16px; }
  .section { padding: 70px 20px; }
}
