:root {
  --bg: #1a0a2e;
  --bg-2: #2d1a5e;
  --accent: #e8b86d;
  --accent-dark: #c89a4d;
  --light: #fdf8f0;
  --font-h: 'Cinzel', Georgia, serif;
  --font-b: 'Raleway', sans-serif;
  --text: #3a3028;
  --text-muted: #6e6560;
  --sand: #e0d4c0;
  --radius: 12px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-b); background: var(--light); color: var(--text); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }

.label { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); display: block; margin-bottom: 0.75rem; }
.sec-hd { text-align: center; max-width: 580px; margin: 0 auto 4rem; }
.sec-hd h2 { font-family: var(--font-h); font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 700; color: #1a1008; line-height: 1.2; margin-bottom: 0.75rem; }
.sec-hd p { color: var(--text-muted); font-size: 0.95rem; }

/* ===== Buttons ===== */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 0.8rem 1.8rem; border-radius: 50px; font-size: 0.88rem; font-weight: 500; letter-spacing: 0.04em; cursor: pointer; transition: all 0.3s var(--ease); border: 2px solid transparent; }
.btn-primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232, 184, 109, 0.35); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.5); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.12); border-color: #fff; }
.btn-dark { background: #1a1008; color: #fff; border-color: #1a1008; }
.btn-dark:hover { background: #000; transform: translateY(-2px); }
.btn-outline { background: transparent; color: #1a1008; border-color: var(--sand); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-full { width: 100%; }
.btn-lg { padding: 1rem 2.2rem; font-size: 0.95rem; }

/* ===== Top Bar (offer + phone) ===== */
.top-bar {
  background: #0d0518; color: #fff; font-size: 0.82rem; padding: 0.55rem 1.5rem;
  display: flex; align-items: center; justify-content: center; gap: 2rem; flex-wrap: wrap;
  border-bottom: 1px solid rgba(232, 184, 109, 0.15);
}
.top-offer { color: rgba(255, 255, 255, 0.85); letter-spacing: 0.02em; }
.top-offer strong { color: var(--accent); font-weight: 700; }
.top-phone { color: var(--accent); font-weight: 600; transition: opacity 0.3s; }
.top-phone:hover { opacity: 0.8; }

/* ===== Nav ===== */
#nav { position: sticky; top: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 1.1rem 2.5rem; transition: all 0.35s var(--ease); background: transparent; }
#nav.scrolled { background: rgba(250, 248, 245, 0.96); backdrop-filter: blur(14px); box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07); padding: 0.85rem 2.5rem; }
.logo { font-family: var(--font-h); font-size: 1.3rem; font-weight: 700; color: #fff; transition: color 0.3s; }
#nav.scrolled .logo { color: #1a1008; }
.nav-links { display: flex; gap: 1.8rem; }
.nav-links a { font-size: 0.85rem; color: rgba(255, 255, 255, 0.85); letter-spacing: 0.04em; transition: color 0.3s; }
#nav.scrolled .nav-links a { color: var(--text); }
.nav-links a:hover, .nav-cta:hover { color: var(--accent) !important; }
.nav-cta { font-size: 0.82rem; font-weight: 600; padding: 0.6rem 1.4rem; border-radius: 50px; background: var(--accent); color: #fff !important; transition: all 0.3s; }
.nav-cta:hover { background: var(--accent-dark); color: #fff !important; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(232, 184, 109, 0.4); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: #fff; transition: all 0.3s; }
#nav.scrolled .hamburger span { background: #1a1008; }

.mob-menu { position: fixed; inset: 0; background: var(--bg); z-index: 99; display: flex; align-items: center; justify-content: center; transform: translateX(100%); transition: transform 0.35s var(--ease); }
.mob-menu.open { transform: translateX(0); }
.mob-menu ul { text-align: center; }
.mob-menu li { margin: 1.25rem 0; }
.mob-menu a { font-family: var(--font-h); font-size: 1.6rem; color: var(--light); letter-spacing: 0.02em; }
.mob-menu a:hover { color: var(--accent); }
.mob-cta { display: inline-block; margin-top: 0.75rem; padding: 0.65rem 2rem; border: 2px solid var(--accent); border-radius: 50px; font-size: 1rem !important; }

/* ===== Hero ===== */
.hero { position: relative; min-height: calc(100vh - 100px); display: flex; align-items: center; overflow: hidden; padding: 4rem 0; }
.hero-bg { position: absolute; inset: 0; background: var(--bg); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.25) 65%, transparent 100%); }
.hero-content { position: relative; z-index: 2; padding: 0 2.5rem; max-width: 700px; animation: fadeUp 1s ease forwards; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
.eyebrow { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); font-weight: 500; display: block; margin-bottom: 1rem; }
.hero-content h1 { font-family: var(--font-h); font-size: clamp(2.4rem, 5.5vw, 4.4rem); font-weight: 700; color: #fff; line-height: 1.1; margin-bottom: 1.25rem; }
.hero-content h1 em { font-style: italic; color: var(--accent); }
.hero-content > p { color: rgba(255, 255, 255, 0.78); font-size: 1.05rem; line-height: 1.75; margin-bottom: 1.75rem; max-width: 540px; }

/* Hero offer box */
.hero-offer {
  display: inline-flex; align-items: center; gap: 1rem;
  background: rgba(232, 184, 109, 0.12);
  border: 1px solid rgba(232, 184, 109, 0.4);
  border-radius: 14px;
  padding: 1rem 1.4rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
  backdrop-filter: blur(8px);
}
.offer-badge {
  font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: #1a1008; font-weight: 700; background: var(--accent);
  padding: 0.3rem 0.7rem; border-radius: 50px;
}
.offer-amt { display: flex; align-items: baseline; gap: 0.5rem; color: #fff; }
.offer-price { font-family: var(--font-h); font-size: 2rem; font-weight: 700; color: var(--accent); line-height: 1; }
.offer-sub { font-size: 0.9rem; color: rgba(255, 255, 255, 0.85); }
.offer-fine { font-size: 0.78rem; color: rgba(255, 255, 255, 0.55); margin: 0; width: 100%; padding-top: 0.3rem; }

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.scroll-hint { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 0.4rem; color: rgba(255, 255, 255, 0.4); font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; }
.scroll-line { width: 1px; height: 44px; background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent); animation: scrollAnim 1.8s ease-in-out infinite; }
@keyframes scrollAnim { 0%, 100% { opacity: 1; } 50% { opacity: 0.2; } }

/* ===== Trust Strip ===== */
.trust-strip { background: #fff; padding: 1.75rem 0; border-bottom: 1px solid var(--sand); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.trust-item { display: flex; align-items: center; gap: 0.85rem; justify-content: center; }
.trust-stars { color: var(--accent); font-size: 1rem; letter-spacing: 0.1em; }
.trust-icon { font-size: 1.4rem; }
.trust-text { font-size: 0.82rem; color: var(--text-muted); line-height: 1.4; }
.trust-text strong { display: block; color: #1a1008; font-size: 0.9rem; font-weight: 600; }

/* ===== Marquee ===== */
.marquee-bar { background: var(--bg); overflow: hidden; padding: 0.85rem 0; }
.marquee-track { display: flex; gap: 1.75rem; animation: marquee 28s linear infinite; white-space: nowrap; }
.marquee-track span { font-family: var(--font-h); font-size: 0.9rem; color: rgba(255, 255, 255, 0.55); letter-spacing: 0.08em; flex-shrink: 0; }
.marquee-track .dot { color: var(--accent); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== About ===== */
.about { background: #fff; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-imgs { position: relative; }
.aimg-main { height: 520px; border-radius: var(--radius); overflow: hidden; background: var(--sand); box-shadow: 0 14px 40px rgba(26, 10, 46, 0.18); }
.aimg-main svg { width: 100%; height: 100%; }
.aimg-card { position: absolute; bottom: -1.5rem; right: -1.5rem; background: var(--bg); border-radius: var(--radius); padding: 1.5rem; text-align: center; min-width: 170px; box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25); }
.stat-num { font-family: var(--font-h); font-size: 1.5rem; font-weight: 700; color: var(--accent); line-height: 1.1; margin-top: 0.75rem; }
.stat-lbl { font-size: 0.7rem; color: rgba(255, 255, 255, 0.5); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.5rem; }
.stat-num:first-child { margin-top: 0; }
.about-text h2 { font-family: var(--font-h); font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 700; color: #1a1008; line-height: 1.2; margin-bottom: 1.25rem; }
.about-text p { color: var(--text-muted); line-height: 1.85; margin-bottom: 1rem; }
.about-text p:last-of-type { margin-bottom: 1.75rem; }

/* ===== Cards (Classes) ===== */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: 0 2px 16px rgba(26, 10, 46, 0.06); transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.card:hover { transform: translateY(-6px); box-shadow: 0 14px 36px rgba(26, 10, 46, 0.14); }
.card-img { height: 188px; background: var(--sand); overflow: hidden; }
.card-img svg { width: 100%; height: 100%; }
.card-body { padding: 1.4rem; }
.tag { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); display: block; margin-bottom: 0.45rem; }
.card-body h3 { font-family: var(--font-h); font-size: 1.2rem; color: #1a1008; margin-bottom: 0.6rem; }
.card-body p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 0.85rem; }
.card-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.85rem; font-size: 0.78rem; color: var(--text-muted); }
.price-tag { font-weight: 600; color: var(--accent); }
.card-cta { font-size: 0.82rem; font-weight: 600; color: var(--accent); }
.card-cta:hover { opacity: 0.7; }

/* ===== Intro Offer Section ===== */
.intro-offer-section { background: #fff; padding: 0 0 6rem; }
.intro-offer-card {
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-2) 100%);
  border-radius: 20px;
  padding: 3.5rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.intro-offer-card::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(232, 184, 109, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}
.intro-offer-text { position: relative; z-index: 1; }
.intro-offer-text .label { color: var(--accent); }
.intro-offer-text h2 { font-family: var(--font-h); font-size: clamp(1.9rem, 3.4vw, 2.6rem); color: #fff; line-height: 1.15; margin-bottom: 1rem; font-weight: 700; }
.intro-offer-text h2 em { font-style: italic; color: var(--accent); }
.intro-offer-text > p { color: rgba(255, 255, 255, 0.75); margin-bottom: 1.5rem; max-width: 480px; }
.offer-checks { display: grid; gap: 0.6rem; margin-bottom: 1.75rem; }
.offer-checks li { color: rgba(255, 255, 255, 0.85); font-size: 0.92rem; }
.intro-offer-visual { position: relative; z-index: 1; text-align: center; }
.big-price {
  display: inline-block;
  background: rgba(232, 184, 109, 0.12);
  border: 2px solid var(--accent);
  border-radius: 18px;
  padding: 2.5rem 2.2rem;
  text-align: center;
  position: relative;
}
.bp-amt { display: block; font-family: var(--font-h); font-size: 4.5rem; font-weight: 700; color: var(--accent); line-height: 1; }
.bp-lbl { display: block; font-size: 0.85rem; color: rgba(255, 255, 255, 0.7); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 0.5rem; }

/* ===== Teachers ===== */
.teachers { background: var(--light); }
.teachers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.teacher { background: #fff; border-radius: var(--radius); overflow: hidden; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.teacher:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(26, 10, 46, 0.1); }
.teacher-img { height: 320px; background: var(--bg); overflow: hidden; }
.teacher-img svg { width: 100%; height: 100%; }
.teacher h3 { font-family: var(--font-h); font-size: 1.3rem; color: #1a1008; padding: 1.4rem 1.4rem 0.2rem; }
.role { display: block; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); font-weight: 500; padding: 0 1.4rem 0.3rem; }
.specialty { display: block; font-size: 0.8rem; color: var(--text-muted); font-weight: 500; padding: 0 1.4rem 0.75rem; }
.teacher p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.65; padding: 0 1.4rem 1.4rem; }

/* ===== Testimonials ===== */
.testimonials { background: var(--bg); }
.testimonials .sec-hd .label { color: var(--accent); }
.testimonials .sec-hd h2 { color: rgba(255, 255, 255, 0.92); }
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial { background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: var(--radius); padding: 1.75rem; transition: background 0.3s; }
.testimonial:hover { background: rgba(255, 255, 255, 0.1); }
.stars { color: var(--accent); font-size: 0.85rem; letter-spacing: 0.15em; margin-bottom: 0.85rem; }
.testimonial p { color: rgba(255, 255, 255, 0.78); font-size: 0.92rem; line-height: 1.75; font-style: italic; margin-bottom: 1.25rem; }
.author { display: flex; flex-direction: column; }
.author strong { color: rgba(255, 255, 255, 0.95); font-size: 0.88rem; }
.author span { color: rgba(255, 255, 255, 0.4); font-size: 0.75rem; }

/* ===== Pricing ===== */
.pricing { background: #fff; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.price-card { background: var(--light); border: 2px solid var(--sand); border-radius: var(--radius); padding: 2.25rem; text-align: center; position: relative; transition: all 0.3s var(--ease); }
.price-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.price-card.featured { background: var(--bg); border-color: var(--bg); color: #fff; transform: scale(1.03); }
.price-card.featured:hover { transform: scale(1.03) translateY(-4px); }
.best-badge { position: absolute; top: -0.65rem; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.3rem 0.95rem; border-radius: 50px; white-space: nowrap; }
.price-card h3 { font-family: var(--font-h); font-size: 1.2rem; margin-bottom: 0.5rem; color: #1a1008; }
.price-card.featured h3 { color: rgba(255, 255, 255, 0.92); }
.price { font-family: var(--font-h); font-size: 2.6rem; font-weight: 700; color: var(--accent); line-height: 1; margin: 0.75rem 0 0.4rem; }
.price-card p { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1.75rem; }
.price-card.featured p { color: rgba(255, 255, 255, 0.55); }

/* ===== FAQ ===== */
.faq { background: var(--light); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border-radius: var(--radius);
  margin-bottom: 0.85rem;
  border: 1px solid var(--sand);
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.faq-item:hover { border-color: var(--accent); }
.faq-item[open] { box-shadow: 0 8px 24px rgba(26, 10, 46, 0.08); border-color: var(--accent); }
.faq-item summary {
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 600;
  color: #1a1008;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.3s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: 400;
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 1.5rem 1.3rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

/* ===== Contact ===== */
.contact { background: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: 4rem; align-items: start; }
.contact-info h2 { font-family: var(--font-h); font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 700; color: #1a1008; line-height: 1.2; margin-bottom: 1rem; }
.contact-info h2 em { font-style: italic; color: var(--accent); }
.contact-info > p { color: var(--text-muted); margin-bottom: 2rem; line-height: 1.8; }
.info-list { display: flex; flex-direction: column; gap: 1.25rem; }
.info-list li { display: flex; gap: 0.85rem; align-items: flex-start; }
.icon { font-size: 1.15rem; flex-shrink: 0; margin-top: 0.1rem; }
.info-list strong { display: block; font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: #1a1008; margin-bottom: 0.15rem; }
.info-list span { font-size: 0.88rem; color: var(--text-muted); line-height: 1.55; }

.contact-form { background: var(--light); border-radius: var(--radius); padding: 2.25rem; box-shadow: 0 4px 28px rgba(26, 10, 46, 0.08); border: 1px solid var(--sand); }
.form-banner {
  background: var(--bg);
  color: var(--accent);
  text-align: center;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin: -2.25rem -2.25rem 1.75rem;
  border-radius: var(--radius) var(--radius) 0 0;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fgroup { display: flex; flex-direction: column; margin-bottom: 1.1rem; }
.fgroup label { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: #1a1008; margin-bottom: 0.45rem; }
.fgroup input, .fgroup select, .fgroup textarea { border: 1.5px solid var(--sand); border-radius: 8px; padding: 0.75rem 0.95rem; font-family: var(--font-b); font-size: 0.9rem; color: var(--text); background: #fff; outline: none; transition: border-color 0.3s, box-shadow 0.3s; resize: vertical; }
.fgroup input:focus, .fgroup select:focus, .fgroup textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(232, 184, 109, 0.15); }
.form-note { text-align: center; font-size: 0.78rem; color: var(--text-muted); margin-top: 0.85rem; }

/* ===== Footer ===== */
.footer { background: #0d0518; padding-top: 3.5rem; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr; gap: 3rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.footer-logo { font-family: var(--font-h); font-size: 1.5rem; font-weight: 700; color: rgba(255, 255, 255, 0.92); margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.85rem; color: rgba(255, 255, 255, 0.45); line-height: 1.65; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.footer-links h4 { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; }
.footer-links ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { font-size: 0.85rem; color: rgba(255, 255, 255, 0.45); transition: color 0.3s; }
.footer-links a:hover { color: rgba(255, 255, 255, 0.9); }
.footer-bottom { text-align: center; padding: 1.25rem 2rem; font-size: 0.75rem; color: rgba(255, 255, 255, 0.3); }

/* ===== Mobile Sticky CTA ===== */
.mobile-sticky-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--bg);
  padding: 0.75rem 1rem;
  gap: 0.6rem;
  z-index: 50;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
  border-top: 1px solid rgba(232, 184, 109, 0.2);
}
.msc-call, .msc-book {
  flex: 1;
  text-align: center;
  padding: 0.85rem 1rem;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.msc-call { background: rgba(255, 255, 255, 0.1); color: #fff; flex: 0.6; }
.msc-book { background: var(--accent); color: #fff; }

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .intro-offer-card { grid-template-columns: 1fr; padding: 2.5rem; text-align: center; }
  .intro-offer-text > p, .offer-checks { margin-left: auto; margin-right: auto; max-width: 420px; }
  .offer-checks { text-align: left; }
}
@media (max-width: 900px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .teachers-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .aimg-card { position: static; margin-top: 1rem; display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-4px); }
}
@media (max-width: 768px) {
  .top-bar { font-size: 0.75rem; gap: 1rem; padding: 0.5rem 1rem; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  #nav { padding: 1rem 1.5rem; }
  .hero { padding: 2.5rem 0; min-height: auto; }
  .hero-content { padding: 0 1.5rem; }
  .hero-content h1 { font-size: 2.4rem; }
  .hero-offer { padding: 0.85rem 1rem; gap: 0.75rem; }
  .offer-price { font-size: 1.6rem; }
  .cards-grid { grid-template-columns: 1fr; }
  .teachers-grid { grid-template-columns: 1fr; }
  .test-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .section { padding: 3.5rem 0; }
  .intro-offer-section { padding: 0 0 3.5rem; }
  .intro-offer-card { padding: 2rem 1.5rem; }
  .bp-amt { font-size: 3.5rem; }
  .mobile-sticky-cta { display: flex; }
  body { padding-bottom: 70px; }
  .scroll-hint { display: none; }
}
