/* ═══════════════════════════════════════════════════════════
   English Rose Academy — Design System
   Feminine • Professional • Modern
   ═══════════════════════════════════════════════════════════ */

/* ── FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── TOKENS ── */
:root {
  /* Primary Rose */
  --primary: #D4647C;
  --primary-dark: #B84560;
  --primary-darker: #8E2E47;
  --primary-light: #F0A0B2;
  --primary-50: #FDF2F4;
  --primary-100: #F8E4E8;
  --primary-200: #F0C8D2;

  /* Neutrals */
  --cream: #FFF8F5;
  --cream-dark: #F5EDE8;
  --white: #FFFFFF;
  --gray-50: #FAFAF8;
  --gray-100: #F3F1EE;
  --gray-200: #E5E0DB;
  --gray-300: #D1CBC4;
  --gray-400: #A89F96;
  --gray-500: #7A7068;
  --gray-600: #5C524A;
  --gray-700: #3D352E;
  --gray-800: #2A231E;
  --gray-900: #1A1510;

  /* Accent */
  --gold: #C9A96E;
  --gold-light: #E8D5A8;

  /* Semantic */
  --success: #2E8B57;
  --success-light: #E8F5EE;
  --warning: #E8913A;
  --warning-light: #FDF3E8;
  --danger: #C0392B;
  --danger-light: #FDEAEA;
  --info: #3B82C4;
  --info-light: #EBF4FF;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Sizing */
  --max-w: 1200px;
  --nav-h: 72px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(26,21,16,.06);
  --shadow-md: 0 4px 12px rgba(26,21,16,.08);
  --shadow-lg: 0 8px 30px rgba(26,21,16,.1);
  --shadow-xl: 0 16px 50px rgba(26,21,16,.12);
  --shadow-rose: 0 8px 30px rgba(212,100,124,.2);

  /* Transitions */
  --ease: cubic-bezier(.4,0,.2,1);
  --duration: .3s;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--gray-800);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; font-family: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ── UTILITIES ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 900px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-muted { color: var(--gray-500); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.2; color: var(--gray-900); }
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p { color: var(--gray-600); line-height: 1.8; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}
.section-eyebrow::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--primary-light);
  border-radius: 2px;
}

.section-title { margin-bottom: 16px; }
.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 560px;
  line-height: 1.8;
}
.section-subtitle.centered { margin: 0 auto; }

/* ── SECTIONS ── */
.section { padding: 100px 0; }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--gray { background: var(--gray-50); }
.section--dark { background: var(--gray-900); color: var(--white); }
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--dark p { color: rgba(255,255,255,.65); }
.section--dark .section-eyebrow { color: var(--primary-light); }
.section--rose { background: var(--primary); color: var(--white); }
.section--rose h2, .section--rose p { color: var(--white); }

/* Notebook / Grid Background */
.bg-notebook {
  background-color: var(--white);
  background-image: linear-gradient(var(--gray-100) 1px, transparent 1px),
                    linear-gradient(90deg, var(--gray-100) 1px, transparent 1px);
  background-size: 20px 20px;
}

/* ── NAVIGATION ── */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all .4s var(--ease);
  background: transparent;
}
.nav.scrolled {
  background: rgba(255,248,245,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 8px rgba(26,21,16,.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  transition: color .3s;
}
.nav.scrolled .nav-logo { color: var(--gray-900); }
.nav-logo img { height: 38px; width: auto; }
.nav-logo .rose-icon { font-size: 1.5rem; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: .85rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  transition: color .3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width .3s var(--ease);
  border-radius: 2px;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav.scrolled .nav-links a { color: var(--gray-700); }
.nav-links a:hover { color: var(--primary) !important; }

.nav-cta {
  background: var(--primary);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: .85rem;
  transition: all .3s var(--ease);
  box-shadow: var(--shadow-rose);
}
.nav-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 35px rgba(212,100,124,.3);
}
.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 6px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}
.nav.scrolled .hamburger span { background: var(--gray-800); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--gray-900);
  z-index: 2000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: rgba(255,255,255,.8);
  transition: color .3s;
}
.mobile-nav a:hover { color: var(--primary-light); }
.mob-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  color: rgba(255,255,255,.5);
  font-size: 2rem;
  line-height: 1;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: .9rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all .3s var(--ease);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-rose);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(212,100,124,.35);
}
.btn-secondary {
  background: var(--white);
  color: var(--gray-800);
  border: 1.5px solid var(--gray-200);
}
.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-dark {
  background: var(--gray-900);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--gray-800);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.3);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.6);
}
.btn-wa {
  background: #25D366;
  color: var(--white);
}
.btn-wa:hover {
  background: #1FAF56;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37,211,102,.3);
}
.btn-sm { padding: 10px 20px; font-size: .82rem; }
.btn-lg { padding: 18px 40px; font-size: 1rem; }
.btn-icon { width: 48px; height: 48px; padding: 0; border-radius: 50%; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--gray-900);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/hero-bg.png') center/cover no-repeat;
  opacity: .12;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 120px 24px 80px;
  width: 100%;
}
.hero-content { max-width: 560px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--primary-light);
}
.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 700;
}
.hero h1 .highlight {
  color: var(--primary-light);
  font-style: italic;
}
.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,.7);
  line-height: 1.9;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stat .stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.hero-stat .stat-label {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  margin-top: 6px;
  letter-spacing: .5px;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-mascot {
  width: 480px;
  max-width: 100%;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,.2));
  border: 8px solid var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}
.hero-blob {
  display: none;
}

/* ── FEATURES CARDS ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all .4s var(--ease);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  opacity: 0;
  transition: opacity .3s;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-100);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-50);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: all .3s;
}
.feature-card:hover .feature-icon {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.05);
}
.feature-card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.feature-card p { font-size: .92rem; color: var(--gray-500); }

/* ── SKILLS GRID (Speaking, Listening, etc.) ── */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.skill-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all .35s var(--ease);
}
.skill-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-100);
}
.skill-icon {
  width: 64px;
  height: 64px;
  border: 2px solid var(--primary-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 18px;
  color: var(--primary);
  transition: all .3s;
}
.skill-card:hover .skill-icon {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.skill-card h4 { margin-bottom: 4px; }
.skill-sub { font-size: .85rem; color: var(--primary); font-weight: 500; margin-bottom: 12px; }
.skill-card p { font-size: .88rem; color: var(--gray-500); }

/* ── SERVICE CARDS ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--gray-100);
  transition: all .4s var(--ease);
  position: relative;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--primary-100);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 16px;
}
.service-tag {
  display: inline-block;
  padding: 4px 14px;
  background: var(--primary-50);
  color: var(--primary);
  font-size: .75rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
  letter-spacing: .5px;
}
.service-card h3 { margin-bottom: 10px; }
.service-card p { font-size: .92rem; color: var(--gray-500); margin-bottom: 16px; }
.service-price {
  font-size: .85rem;
  font-weight: 600;
  color: var(--primary-dark);
}

/* ── TESTIMONIAL CARDS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--gray-100);
  transition: all .3s var(--ease);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-100);
}
.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 600;
  color: var(--primary);
  flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: .9rem; color: var(--gray-800); }
.testimonial-role { font-size: .82rem; color: var(--gray-400); }

/* ── CTA SECTION ── */
.cta-section {
  padding: 80px 0;
  background: var(--primary);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '🌹';
  position: absolute;
  font-size: 15rem;
  opacity: .08;
  right: -40px;
  top: -30px;
}
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,.85); margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ── CONTACT FORM ── */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 6px;
}
.form-input {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: .95rem;
  color: var(--gray-800);
  background: var(--white);
  outline: none;
  transition: border-color .3s, box-shadow .3s;
}
.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-100);
}
.form-input::placeholder { color: var(--gray-300); }
textarea.form-input { min-height: 120px; resize: vertical; }

/* Star Rating */
.star-rating { display: flex; gap: 4px; margin-bottom: 12px; }
.star-rating .star {
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--gray-200);
  transition: color .2s;
}
.star-rating .star.active,
.star-rating .star:hover { color: var(--gold); }

.form-success {
  display: none;
  background: var(--success-light);
  color: var(--success);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border-left: 3px solid var(--success);
  font-size: .9rem;
  margin-bottom: 16px;
}
.form-success.show { display: block; }

/* ── FOOTER ── */
.footer {
  background: var(--gray-900);
  color: rgba(255,255,255,.6);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-desc { font-size: .9rem; line-height: 1.85; }
.footer h4 {
  color: var(--white);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-family: var(--font-body);
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: .9rem;
  transition: color .3s;
}
.footer-links a:hover { color: var(--primary-light); }
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  transition: all .3s;
}
.footer-social a:hover {
  border-color: var(--primary);
  color: var(--primary-light);
  background: rgba(212,100,124,.1);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: .82rem;
}

/* ── Social Floating Buttons ── */
.social-floats {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 900;
}

.social-float {
  width: 60px;
  height: 60px;
  background: var(--data-color, #000);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
  z-index: 900;
  transition: all .3s;
  text-decoration: none;
  font-size: 1.5rem;
}

.social-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(0,0,0,.3);
}

/* ── ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal-left.in { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal-right.in { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0;
  transform: scale(.92);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal-scale.in { opacity: 1; transform: scale(1); }

/* Stagger children */
.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: .1s; }
.stagger > *:nth-child(3) { transition-delay: .2s; }
.stagger > *:nth-child(4) { transition-delay: .3s; }
.stagger > *:nth-child(5) { transition-delay: .4s; }
.stagger > *:nth-child(6) { transition-delay: .5s; }

/* ── ABOUT PAGE ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-img-wrap img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 10px solid var(--white);
  box-shadow: var(--shadow-lg);
}
.about-accent {
  position: absolute;
  top: -12px;
  left: -12px;
  width: 120px;
  height: 120px;
  background: var(--primary-light);
  opacity: .3;
  border-radius: var(--radius-lg);
  z-index: -1;
}
.about-quote {
  border-left: 3px solid var(--primary);
  padding: 20px 24px;
  background: var(--primary-50);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 24px 0;
}
.about-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gray-700);
}
.about-quote cite {
  display: block;
  margin-top: 8px;
  font-style: normal;
  font-size: .8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 600;
}
.badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.badge {
  padding: 6px 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-full);
  font-size: .78rem;
  font-weight: 500;
  color: var(--gray-600);
}

/* ── HOW IT WORKS ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  counter-reset: step;
}
.step-card {
  text-align: center;
  padding: 32px 24px;
}
.step-number {
  width: 56px;
  height: 56px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 auto 20px;
}
.step-card h4 { margin-bottom: 8px; }
.step-card p { font-size: .9rem; }

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-50);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 2px;
}
.contact-value { font-size: .95rem; color: var(--gray-700); }

/* ── PAGE HEADER ── */
.page-header {
  padding: 140px 0 60px;
  background: var(--gray-900);
  text-align: center;
}
.page-header h1 { color: var(--white); margin-bottom: 12px; }
.page-header p { color: rgba(255,255,255,.6); font-size: 1.1rem; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-content { max-width: 100%; margin: 0 auto; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { margin-top: 40px; }
  .hero-mascot { width: 300px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .skills-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .section { padding: 72px 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .skills-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .form-grid { grid-template-columns: 1fr; }
  .hero-desc { font-size: 1rem; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
}

@media (max-width: 480px) {
  .skills-grid { grid-template-columns: 1fr; }
  .hero-mascot { width: 240px; }
  .container { padding: 0 16px; }
}

/* Rose decorations */
body::before, body::after {
  content: '🌹';
  position: fixed;
  font-size: 4rem;
  opacity: 0.03;
  pointer-events: none;
  z-index: -1;
}
body::before { top: 10%; left: 5%; }
body::after { bottom: 10%; right: 5%; }

.rose-decor {
  position: absolute;
  font-size: 2rem;
  opacity: 0.1;
  pointer-events: none;
  animation: float-rose 8s ease-in-out infinite;
}
@keyframes float-rose {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(10px, -15px) rotate(10deg); }
  66% { transform: translate(-10px, -5px) rotate(-10deg); }
}

/* 5 elements grid fix */
@media (min-width: 1025px) {
  .features-grid:has(> *:nth-child(5)) {
    grid-template-columns: repeat(3, 1fr);
  }
  .features-grid > *:nth-child(4),
  .features-grid > *:nth-child(5) {
    grid-column: span 1;
  }
  /* Center the last row if it has 2 items */
  .features-grid:has(> *:nth-child(5):last-child) {
    justify-content: center;
  }
}

/* Legibility improvement for testimonials */
.testimonial-text {
  font-family: var(--font-body);
  font-size: 1rem;
  font-style: normal;
  color: var(--gray-700);
  line-height: 1.6;
}

/* Floating Contact Buttons */
.floating-contact {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}
.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  text-decoration: none;
}
.float-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}
.float-ig {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.float-wa {
  background-color: #25d366;
}
.float-yt {
  background-color: #FF0000;
}
.float-tt {
  background-color: #000000;
}
.float-icon {
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

@media (max-width: 768px) {
  .float-btn {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }
}

/* ── Testimonial Quotes ── */
.testimonial-quotes {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.quote-card {
  position: relative;
  padding-left: 32px;
  padding-top: 8px;
  border-left: 4px solid var(--primary);
  transition: all .4s var(--ease);
}

.quote-card:hover {
  border-left-color: var(--primary-dark);
  padding-left: 40px;
}

.quote-mark {
  position: absolute;
  left: -12px;
  top: -18px;
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.15;
  font-family: Georgia, serif;
  line-height: 1;
}

.quote-text {
  font-size: .95rem;
  line-height: 1.7;
  color: var(--gray-700);
  font-style: italic;
  margin: 0;
}

@media (max-width: 768px) {
  .quote-card {
    padding-left: 24px;
  }
  
  .quote-text {
    font-size: .9rem;
  }
}

/* ── Pricing Table ── */
.pricing-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}

.pricing-table thead {
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  color: var(--white);
}

.pricing-table th {
  padding: 18px 20px;
  text-align: left;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.pricing-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--gray-100);
  font-size: .95rem;
  color: var(--gray-700);
}

.pricing-table tbody tr:hover {
  background-color: var(--primary-50);
}

.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

.pricing-table .highlight-row {
  background-color: var(--primary-50);
  font-weight: 500;
}

.pricing-table .highlight-row td {
  color: var(--primary-dark);
}

/* ── Service Accordion ── */
.service-card {
  cursor: pointer;
}

.service-card.expandable {
  transition: all .3s var(--ease);
}

.service-card.expanded {
  box-shadow: 0 8px 32px rgba(212,100,124,.15);
}

.service-accordion-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: inherit;
  color: inherit;
}

.accordion-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--primary-50);
  border-radius: 50%;
  transition: all .3s var(--ease);
  font-size: 1.2rem;
}

.service-card.expanded .accordion-icon {
  transform: rotate(180deg);
  background: var(--primary);
  color: var(--white);
}

.accordion-content {
  display: none;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
  font-size: .95rem;
  line-height: 1.6;
  color: var(--gray-600);
}

.accordion-content.show {
  display: block;
  animation: slideDown .3s var(--ease);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.accordion-content p {
  margin: 8px 0;
}

.accordion-content ul {
  margin: 12px 0;
  padding-left: 20px;
}

.accordion-content li {
  margin: 6px 0;
}

@media (max-width: 768px) {
  .pricing-table th,
  .pricing-table td {
    padding: 12px 14px;
    font-size: .85rem;
  }
}

/* ── FAQ Accordion ── */
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  transition: all .3s var(--ease);
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(212,100,124,.1);
}

.faq-header {
  width: 100%;
  padding: 20px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: all .3s var(--ease);
  text-align: left;
}

.faq-header:hover {
  background-color: var(--primary-50);
}

.faq-header.active {
  background-color: var(--primary-50);
}

.faq-title {
  flex: 1;
  font-weight: 600;
  font-size: .95rem;
  color: var(--gray-900);
  line-height: 1.4;
}

.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  font-weight: bold;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: transform .3s var(--ease);
}

.faq-header.active .faq-icon {
  transform: rotate(45deg);
}

.faq-content {
  display: none;
  padding: 0 20px 20px 20px;
  border-top: 1px solid var(--gray-100);
  animation: slideDown .3s var(--ease);
}

.faq-content.show {
  display: block;
}

.faq-answer {
  color: var(--gray-700);
  font-size: .95rem;
  line-height: 1.6;
}

.faq-answer p {
  margin: 0 0 12px 0;
}

.faq-answer ul {
  margin: 12px 0;
  padding-left: 20px;
}

.faq-answer li {
  margin: 8px 0;
  list-style: disc;
}

@media (max-width: 768px) {
  .faq-header {
    padding: 16px;
  }
  
  .faq-content {
    padding: 0 16px 16px 16px;
  }
  
  .faq-title {
    font-size: .9rem;
  }
}

/* ── DUPLA BANNER ── */
.dupla-banner {
  background: linear-gradient(135deg, var(--primary-50) 0%, var(--primary-light-50) 100%);
  border: 2px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin: 48px 0;
  transition: all .3s var(--ease);
}

.dupla-banner.expanded {
  box-shadow: 0 8px 24px rgba(212,100,124,.15);
}

.dupla-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 20px;
}

.dupla-left {
  flex: 1;
}

.dupla-icon {
  font-size: 2.5rem;
  line-height: 1;
}

.dupla-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin: 12px 0 8px 0;
}

.dupla-subtitle {
  color: var(--gray-700);
  font-size: .95rem;
  margin: 0;
}

.dupla-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all .3s var(--ease);
  flex-shrink: 0;
}

.dupla-toggle:hover {
  transform: scale(1.1);
  background: var(--primary-dark);
}

.dupla-toggle.active {
  transform: rotate(180deg);
}

.dupla-content {
  display: none;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 2px solid var(--primary);
  animation: slideDown .3s var(--ease);
}

.dupla-content.show {
  display: block;
}

.dupla-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.dupla-feature {
  padding: 16px;
  background: var(--white);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary);
}

.dupla-feature-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
  display: block;
}

.dupla-feature h4 {
  font-size: .95rem;
  font-weight: 600;
  color: var(--gray-900);
  margin: 0 0 8px 0;
}

.dupla-feature p {
  font-size: .85rem;
  color: var(--gray-700);
  margin: 0;
  line-height: 1.4;
}

.dupla-cta {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.dupla-cta a {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-weight: 600;
  text-decoration: none;
  transition: all .3s var(--ease);
}

.dupla-cta a:first-child {
  background: var(--primary);
  color: var(--white);
}

.dupla-cta a:first-child:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.dupla-cta a:last-child {
  background: var(--gray-100);
  color: var(--primary);
  border: 2px solid var(--primary);
}

.dupla-cta a:last-child:hover {
  background: var(--gray-200);
}

@media (max-width: 768px) {
  .dupla-banner {
    padding: 20px;
    margin: 32px 0;
  }
  
  .dupla-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .dupla-toggle {
    align-self: flex-end;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    margin-top: -40px;
  }
  
  .dupla-title {
    font-size: 1.3rem;
  }
  
  .dupla-grid {
    grid-template-columns: 1fr;
  }
  
  .dupla-cta a {
    min-width: 100%;
  }
}

@media (max-width: 768px) {
  .about-sofia-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
}

/* ── FOOTER FOUNDER ── */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  border-top: 1px solid var(--gray-100);
  padding-top: 32px;
  margin-top: 32px;
}

.footer-founder {
  display: flex;
  align-items: center;
  gap: 16px;
}

.founder-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary);
  box-shadow: 0 4px 16px rgba(212,100,124,.2);
  transition: all .3s var(--ease);
}

.footer-founder:hover .founder-img {
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(212,100,124,.3);
}

.founder-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.founder-title {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary);
  margin: 0;
}

.founder-subtitle {
  font-size: .85rem;
  color: var(--gray-600);
  margin: 4px 0 0 0;
}

.footer-credits {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: right;
  font-size: .85rem;
  color: var(--gray-600);
}

.footer-credits a {
  color: var(--primary);
  text-decoration: none;
  transition: color .3s var(--ease);
}

.footer-credits a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  
  .footer-credits {
    text-align: left;
  }
  
  .founder-img {
    width: 70px;
    height: 70px;
  }
}

/* ── Pricing + How It Works 2-Column Layout ── */
.pricing-how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.pricing-col,
.how-classes-col {
  background: var(--white, #fff);
  border: 1px solid var(--gray-200, #e5e7eb);
  border-radius: var(--radius-lg, 16px);
  padding: 32px;
}

.recommended-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary, #e91e63), #ff6090);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 20px;
  margin-left: 8px;
  vertical-align: middle;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.pricing-asterisk {
  margin-top: 12px;
  font-size: .82rem;
  color: var(--gray-500, #6b7280);
  font-style: italic;
  text-align: center;
}

.how-classes-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.how-classes-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100, #f3f4f6);
  font-size: .95rem;
  color: var(--gray-700, #374151);
  line-height: 1.6;
}

.how-classes-list li:last-child {
  border-bottom: none;
}

/* ── Important Banner ── */
.important-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, #fff8e1, #fff3cd);
  border: 1px solid #ffd54f;
  border-left: 4px solid #f9a825;
  border-radius: var(--radius-lg, 16px);
  padding: 24px 32px;
  font-size: .95rem;
  color: #5d4037;
  line-height: 1.6;
}

.important-banner-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

/* ── Special Plans Grid ── */
.special-plans-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.special-plan-card {
  background: var(--white, #fff);
  border: 1px solid var(--gray-200, #e5e7eb);
  border-radius: var(--radius-lg, 16px);
  padding: 32px;
  transition: transform .3s, box-shadow .3s;
}

.special-plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.08);
}

.special-plan-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.special-plan-header h3 {
  margin: 0;
  font-size: 1.15rem;
}

.special-plan-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.special-plan-desc {
  color: var(--gray-700, #374151);
  line-height: 1.6;
  margin-bottom: 16px;
}

.special-plan-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary, #e91e63);
  margin-bottom: 8px;
}

.special-plan-reqs {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
}

.special-plan-reqs li {
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  font-size: .9rem;
  color: var(--gray-700, #374151);
}

.special-plan-reqs li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary, #e91e63);
  font-weight: 700;
}

.special-plan-note {
  font-size: .82rem;
  color: var(--gray-500, #6b7280);
  font-style: italic;
  margin-top: 12px;
}

/* ── Responsive for new layouts ── */
@media (max-width: 768px) {
  .pricing-how-grid,
  .special-plans-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .important-banner {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
}
