/* ============================================
   SYDNEY TUTORING BY ALCHEMY TUITION
   Shared Stylesheet — v1.0
   ============================================ */

/* --- Variables --- */
:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-pale: #FBF4E3;
  --navy: #0D1B2A;
  --navy-mid: #1A2D42;
  --slate: #3D5066;
  --text: #2C2C2C;
  --text-muted: #6B7280;
  --white: #FFFFFF;
  --off-white: #F9F7F4;
  --border: #E5DDD0;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(13,27,42,0.08);
  --shadow-lg: 0 12px 48px rgba(13,27,42,0.14);
  --transition: 0.25s ease;
  --max-width: 1160px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- Utility --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--alt { background: var(--off-white); }
.section--dark { background: var(--navy); color: var(--white); }
.section--gold { background: var(--gold-pale); }
.text-gold { color: #ffc600; }
.text-navy { color: var(--navy); }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* --- Typography --- */
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, 'Times New Roman', serif; line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1em; color: var(--text); }
p:last-child { margin-bottom: 0; }
.lead { font-size: 1.15rem; color: var(--slate); line-height: 1.8; }
.eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffc600;
  margin-bottom: 12px;
  display: block;
  text-align: center;
}
.hero .eyebrow,
.page-hero .eyebrow { text-align: inherit; }
.section-title { margin-bottom: 16px; }
.section-intro { max-width: 640px; margin: 0 auto 48px; color: var(--slate); text-align: center; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: #ffc600;
  color: var(--navy);
  border-color: #ffc600;
}
.btn-primary:hover {
  background: #ffa200;
  border-color: #ffa200;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,162,0,0.35);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-arrow::after { content: '→'; transition: transform var(--transition); }
.btn-arrow:hover::after { transform: translateX(4px); }

/* ============================================
   TOPBAR
   ============================================ */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.9);
  font-size: 10px;
  font-weight: 600;
  padding: 8px 0;
}
.topbar a { color: white; font-weight: 600; }
.topbar a:hover { color: #ffc600; }
.topbar .topbar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-item { display: flex; align-items: center; gap: 6px; }

/* ============================================
   HEADER / NAV
   ============================================ */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 24px;
}
.site-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  flex-shrink: 0;
}
.logo-main {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
}
.logo-sub {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #ffc600;
  text-transform: uppercase;
  margin-top: 4px;
}
/* Placeholder for real logo image */
.logo-img { height: 48px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; margin-left: auto; }
.main-nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--slate);
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--navy);
  background: var(--gold-pale);
}
.nav-cta { margin-left: 8px; font-size: 0.8rem; padding: 8px 14px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
  display: block;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1e3a5a 100%);
  color: var(--white);
  padding: 90px 0 80px;
  min-height: 480px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-content { position: relative; z-index: 1; }
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 span { color: #ffc600; }
.hero .lead { color: rgba(255,255,255,0.8); margin-bottom: 32px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
  flex-wrap: wrap;
}
.hero-trust-stars { color: #ffc600; font-size: 1rem; letter-spacing: 2px; }
.hero-trust-text { font-size: 0.85rem; color: rgba(255,255,255,0.7); }
.hero-trust-text strong { color: var(--white); }

/* Hero Card */
.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}
.hero-card h3 { color: var(--navy); margin-bottom: 20px; font-size: 1.2rem; }
.price-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}
.price-option {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
  border: 2px solid transparent;
  transition: border-color var(--transition);
}
.price-option:hover { border-color: #ffc600; }
.price-label { font-size: 0.75rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.price-amount { font-family: 'Playfair Display', Georgia, 'Times New Roman', serif; font-size: 1.8rem; font-weight: 800; color: var(--navy); }
.price-unit { font-size: 0.78rem; color: var(--text-muted); }
.hero-card .btn { width: 100%; justify-content: center; }
.hero-card-guarantee {
  margin-top: 12px;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--gold-pale);
  border-top: 1px solid var(--border);
  padding: 20px 0;
}
.trust-bar-inner {
  max-width: 100%;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: nowrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy);
}
.trust-icon { font-size: 1.2rem; }

/* ============================================
   WHY ALCHEMY — Features Grid
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
}
.feature-card:hover {
  border-color: #ffc600;
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.feature-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}
.feature-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.feature-card p { font-size: 0.92rem; color: var(--text-muted); margin: 0; }

/* ============================================
   SUBJECT CARDS
   ============================================ */
.subjects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.subject-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all var(--transition);
}
.subject-card:hover {
  border-color: #ffc600;
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.subject-card-icon { font-size: 2rem; }
.subject-card h3 { font-size: 1.05rem; margin: 0; }
.subject-card p { font-size: 0.9rem; color: var(--text-muted); margin: 0; flex: 1; }
.subject-card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffc600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.subject-card:hover .subject-card-link { gap: 10px; }

/* ============================================
   STEPS
   ============================================ */
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
  position: relative;
}
.steps-row::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: linear-gradient(to right, #ffc600, var(--gold-light));
  z-index: 0;
}
.step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #ffc600;
  color: var(--navy);
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-weight: 800;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(201,168,76,0.3);
}
.step h4 { margin-bottom: 8px; font-size: 1rem; }
.step p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial-stars { color: #ffc600; font-size: 0.9rem; letter-spacing: 3px; }
.testimonial-text { font-size: 0.93rem; color: var(--slate); font-style: italic; flex: 1; line-height: 1.7; }
.testimonial-author { font-size: 0.82rem; font-weight: 600; color: var(--navy); }
.testimonial-location { color: var(--text-muted); font-weight: 400; }

/* ============================================
   PRICING
   ============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 700px;
  margin: 48px auto 0;
}
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 2px solid var(--border);
  text-align: center;
  transition: all var(--transition);
}
.pricing-card.featured {
  border-color: #ffc600;
  box-shadow: 0 8px 32px rgba(201,168,76,0.2);
}
.pricing-card h3 { margin-bottom: 8px; font-size: 1.1rem; }
.pricing-card .price { font-family: 'Playfair Display', Georgia, 'Times New Roman', serif; font-size: 2.8rem; font-weight: 800; color: var(--navy); margin: 12px 0 4px; }
.pricing-card .price sup { font-size: 1.2rem; vertical-align: top; margin-top: 10px; display: inline-block; }
.pricing-card .price-desc { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 24px; }
.pricing-card .btn { width: 100%; justify-content: center; }
.pricing-includes { margin-top: 20px; text-align: left; }
.pricing-includes li {
  font-size: 0.88rem;
  color: var(--slate);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pricing-includes li:last-child { border-bottom: none; }
.check { color: #ffc600; font-weight: 700; }

/* ============================================
   CTA BAND
   ============================================ */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.1) 0%, transparent 70%);
}
.cta-band h2 { color: var(--white); margin-bottom: 16px; position: relative; }
.cta-band p { color: rgba(255,255,255,0.75); margin-bottom: 32px; position: relative; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-band .btn-row { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; position: relative; }
.cta-band .guarantee-note {
  margin-top: 16px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  position: relative;
}

/* ============================================
   CONTENT PAGE (Long-form SEO)
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  padding: 64px 0 56px;
}
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero h1 span { color: #ffc600; }
.page-hero .lead { color: rgba(255,255,255,0.8); max-width: 680px; }
.page-hero-ctas { margin-top: 28px; display: flex; gap: 14px; flex-wrap: wrap; }
.breadcrumb {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: #ffc600; }
.breadcrumb span { margin: 0 8px; }

.content-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
  padding: 64px 0;
}
.content-body { min-width: 0; }
.content-body h2 { margin-top: 40px; margin-bottom: 16px; font-size: 1.6rem; }
.content-body h2:first-child { margin-top: 0; }
.content-body h3 { margin-top: 28px; margin-bottom: 10px; }
.content-body p { color: var(--slate); line-height: 1.8; }
.content-body ul.styled-list {
  list-style: none;
  margin: 16px 0 24px;
}
.content-body ul.styled-list li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--slate);
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.content-body ul.styled-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: #ffc600;
  font-size: 0.7rem;
  top: 12px;
}
.content-body ul.styled-list li:last-child { border-bottom: none; }

/* Sidebar */
.sticky-sidebar { position: sticky; top: 90px; }
.sidebar-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 24px;
}
.sidebar-card h4 { margin-bottom: 16px; font-size: 1rem; }
.sidebar-card .btn { width: 100%; justify-content: center; margin-bottom: 8px; }
.sidebar-card p { font-size: 0.85rem; color: var(--text-muted); }
.sidebar-links { display: flex; flex-direction: column; gap: 8px; }
.sidebar-links a {
  font-size: 0.88rem;
  color: var(--slate);
  padding: 8px 12px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.sidebar-links a:hover {
  border-color: #ffc600;
  color: var(--navy);
}

/* Highlight box */
.highlight-box {
  background: var(--gold-pale);
  border-left: 4px solid #ffc600;
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 28px 0;
}
.highlight-box p { color: var(--navy); font-weight: 500; margin: 0; }

/* ============================================
   FAQ
   ============================================ */
.faq-list { max-width: 800px; margin: 48px auto 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-question::after { content: '+'; font-size: 1.4rem; color: #ffc600; flex-shrink: 0; transition: transform var(--transition); }
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding-bottom: 20px;
  color: var(--slate);
  font-size: 0.95rem;
  line-height: 1.8;
}
.faq-item.open .faq-answer { display: block; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand .logo-main { color: var(--white); }
.footer-brand .logo-sub { margin-bottom: 16px; display: block; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 280px; color: white; }
.footer-col h4 {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffc600;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: #ffc600; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  margin-bottom: 10px;
}
.footer-contact-item a { color: rgba(255,255,255,0.7); }
.footer-contact-item a:hover { color: #ffc600; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: #ffc600; }

/* ============================================
   MOBILE NAV
   ============================================ */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 200;
  flex-direction: column;
  padding: 24px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
.mobile-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
}
.mobile-menu nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu nav a {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--transition);
}
.mobile-menu nav a:hover { color: #ffc600; }
.mobile-menu .btn { margin-top: 24px; width: 100%; justify-content: center; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { max-width: 420px; }
  .hero-image { display: none; }
  .content-layout { grid-template-columns: 1fr; }
  .sticky-sidebar { position: static; min-width: 0; }
  .faq-list { max-width: 100%; margin-left: 0; margin-right: 0; }
}

@media (max-width: 768px) {
  .topbar { display: none; }
  .two-col-grid { grid-template-columns: 1fr !important; }
  .photo-strip-grid { grid-template-columns: 1fr !important; }
  .hero-content { text-align: center; }
  .hero-ctas { justify-content: center; }
  .hero-trust { justify-content: center; }
  .section { padding: 56px 0; }
  .main-nav, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr 1fr; }
  .steps-row::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .trust-bar { display: none; }
  .subjects-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .steps-row { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { justify-content: center; width: 100%; }
  .page-hero-ctas { flex-direction: column; }
  .page-hero-ctas .btn { justify-content: center; width: 100%; }
  .cta-band .btn-row { flex-direction: column; align-items: center; }
  .topbar .topbar-inner { gap: 12px; }
}

/* ============================================
   SCROLL ANIMATION (replaces JS inline styles — no forced reflow)
   ============================================ */
.will-animate {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.will-animate.animated {
  opacity: 1;
  transform: translateY(0);
}


/* Scroll animation — no forced reflow */
.will-animate { opacity: 0; transform: translateY(24px); transition: opacity 0.5s ease, transform 0.5s ease; }
.will-animate.animated { opacity: 1; transform: translateY(0); }

