@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

:root {
  --navy: #0B1F3A;
  --navy-mid: #1a3558;
  --gold: #C8973A;
  --gold-light: #F0C97A;
  --cream: #FAFAF7;
  --white: #FFFFFF;
  --gray-100: #F4F4F0;
  --gray-200: #E8E8E2;
  --gray-400: #B0B0A8;
  --gray-600: #6B6B63;
  --gray-800: #2C2C28;
  --green: #1A6B4A;
  --green-light: #EAF5EF;
  --red-light: #FEF0EE;
  --red: #C0392B;
  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --radius: 4px;
  --radius-lg: 12px;
  --shadow: 0 1px 3px rgba(11,31,58,0.08), 0 4px 16px rgba(11,31,58,0.06);
  --shadow-lg: 0 8px 40px rgba(11,31,58,0.12);
  --transition: 0.22s cubic-bezier(0.4,0,0.2,1);
  --max-w: 1160px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── Typography ── */
h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1rem; font-weight: 600; font-family: var(--font-body); color: var(--navy); letter-spacing: 0.01em; }
p { font-size: 1rem; color: var(--gray-600); line-height: 1.75; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.serif-italic { font-style: italic; color: var(--gold); }
.label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }
.text-center { text-align: center; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius);
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 600;
  cursor: pointer; border: none; transition: var(--transition);
  letter-spacing: 0.01em;
}
.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: var(--navy-mid); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(11,31,58,0.25); }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: #b8862e; transform: translateY(-1px); box-shadow: 0 4px 20px rgba(200,151,58,0.35); }
.btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-white { background: var(--white); color: var(--navy); }
.btn-white:hover { background: var(--cream); transform: translateY(-1px); }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* ── Nav ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.96); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-logo {
  font-family: var(--font-display); font-size: 1.4rem; color: var(--navy);
  display: flex; align-items: center; gap: 10px;
}
.nav-logo-mark {
  width: 40px; height: 40px; background: none; border-radius: 0;
  display: flex; align-items: center; justify-content: center;
}
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: 0.88rem; font-weight: 500; color: var(--gray-600);
  transition: color var(--transition); position: relative; padding: 4px 0;
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px; background: var(--gold); border-radius: 1px;
}
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-phone { font-size: 0.85rem; font-weight: 600; color: var(--navy); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 1px; transition: var(--transition); }
.mobile-nav {
  display: none; position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 99; padding: 2rem;
  flex-direction: column; gap: 1rem; overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: 1.1rem; font-weight: 500; color: var(--navy); padding: 0.75rem 0; border-bottom: 1px solid var(--gray-200); }

/* ── Hero ── */
.hero {
  padding: 140px 0 100px;
  background: linear-gradient(160deg, var(--cream) 0%, var(--white) 60%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -100px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(200,151,58,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 1.5rem; }
.eyebrow-dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; }
.hero h1 { margin-bottom: 1.5rem; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-desc { font-size: 1.1rem; color: var(--gray-600); margin-bottom: 2rem; max-width: 480px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-trust { display: flex; gap: 2rem; }
.trust-item { display: flex; flex-direction: column; }
.trust-num { font-family: var(--font-display); font-size: 1.8rem; color: var(--navy); line-height: 1; }
.trust-label { font-size: 0.78rem; color: var(--gray-400); font-weight: 500; }
.hero-card-wrap { position: relative; }
.hero-card {
  background: var(--white); border-radius: 20px; padding: 2rem;
  box-shadow: var(--shadow-lg); border: 1px solid var(--gray-200);
}
.hero-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 1.5rem; }
.avatar { width: 48px; height: 48px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); font-weight: 700; font-size: 1.1rem; }
.hero-levels { display: flex; flex-direction: column; gap: 10px; }
.level-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px; background: var(--gray-100); border-radius: 8px;
}
.level-name { font-weight: 600; font-size: 0.88rem; color: var(--navy); }
.level-badge {
  font-size: 0.75rem; font-weight: 600; padding: 3px 10px;
  border-radius: 20px; background: var(--green-light); color: var(--green);
}
.level-badge.available { background: var(--gold-light); color: #7a5520; }
.floating-badge {
  position: absolute; top: -20px; right: -20px;
  background: var(--navy); color: var(--white); border-radius: 12px;
  padding: 12px 16px; font-size: 0.82rem; font-weight: 600;
  box-shadow: var(--shadow-lg); line-height: 1.4;
}
.floating-badge span { display: block; font-size: 1.1rem; color: var(--gold); }

/* ── Stats Bar ── */
.stats-bar { background: var(--navy); padding: 3rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.stat-item { text-align: center; }
.stat-num { font-family: var(--font-display); font-size: 2.4rem; color: var(--gold); }
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.6); font-weight: 500; margin-top: 2px; }

/* ── Why Us ── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-top: 4rem; }
.why-text h2 { margin-bottom: 1rem; }
.why-text p { margin-bottom: 2rem; }
.why-points { display: flex; flex-direction: column; gap: 1rem; }
.why-point { display: flex; align-items: flex-start; gap: 12px; }
.point-icon { width: 36px; height: 36px; min-width: 36px; border-radius: 8px; background: var(--gray-100); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; margin-top: 2px; }
.point-text h4 { margin-bottom: 2px; }
.point-text p { font-size: 0.88rem; }
.why-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.method-card {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: 16px;
  padding: 1.5rem 1.2rem; transition: var(--transition);
}
.method-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.method-icon { font-size: 1.5rem; margin-bottom: 0.75rem; }
.method-card h4 { margin-bottom: 4px; }
.method-card p { font-size: 0.82rem; }

/* ── Services ── */
.services-bg { background: var(--gray-100); }
.services-head { text-align: center; margin-bottom: 3rem; }
.services-head h2 { margin-bottom: 0.75rem; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.service-card {
  background: var(--white); border-radius: 16px; padding: 2rem 1.5rem;
  border: 1px solid var(--gray-200); transition: var(--transition);
  display: flex; flex-direction: column;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--navy); }
.service-level { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.service-card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.service-card p { font-size: 0.85rem; flex: 1; margin-bottom: 1.5rem; }
.service-topics { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 1.5rem; }
.topic-pill {
  font-size: 0.72rem; font-weight: 500; padding: 4px 10px; border-radius: 20px;
  background: var(--gray-100); color: var(--gray-600);
}
.service-card .btn { margin-top: auto; width: 100%; justify-content: center; }

/* ── Testimonials ── */
.testimonials-head { text-align: center; margin-bottom: 3rem; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testi-card {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: 16px;
  padding: 1.75rem; transition: var(--transition);
}
.testi-card:hover { box-shadow: var(--shadow); }
.testi-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testi-quote { font-size: 0.92rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 1.25rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 0.8rem; font-weight: 700; }
.testi-name { font-weight: 600; font-size: 0.85rem; color: var(--navy); }
.testi-role { font-size: 0.78rem; color: var(--gray-400); }

/* ── Results ── */
.results-bg { background: var(--navy); }
.results-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.results-text h2 { color: var(--white); margin-bottom: 1rem; }
.results-text p { color: rgba(255,255,255,0.65); margin-bottom: 2rem; }
.result-items { display: flex; flex-direction: column; gap: 16px; }
.result-item { display: flex; align-items: center; gap: 16px; }
.result-bar-wrap { flex: 1; }
.result-label { font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.8); margin-bottom: 6px; display: flex; justify-content: space-between; }
.result-bar { height: 6px; background: rgba(255,255,255,0.12); border-radius: 3px; overflow: hidden; }
.result-fill { height: 100%; background: var(--gold); border-radius: 3px; width: 0; transition: width 1.2s cubic-bezier(0.4,0,0.2,1); }
.grade-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.grade-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px; padding: 1.25rem; text-align: center;
}
.grade-before { font-size: 0.72rem; font-weight: 600; color: rgba(255,255,255,0.4); letter-spacing: 0.1em; text-transform: uppercase; }
.grade-arrow { font-size: 1.2rem; color: var(--gold); margin: 4px 0; }
.grade-after { font-family: var(--font-display); font-size: 1.6rem; color: var(--white); }
.grade-student { font-size: 0.75rem; color: rgba(255,255,255,0.45); margin-top: 4px; }

/* ── FAQ ── */
.faq-head { text-align: center; margin-bottom: 3rem; }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--gray-200); border-radius: 12px; overflow: hidden; }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem; cursor: pointer; font-weight: 600; font-size: 0.95rem;
  color: var(--navy); background: var(--white); transition: background var(--transition);
  gap: 1rem;
}
.faq-q:hover { background: var(--gray-100); }
.faq-q.open { background: var(--navy); color: var(--white); }
.faq-icon { font-size: 1.1rem; font-weight: 300; min-width: 20px; text-align: center; transition: transform var(--transition); }
.faq-q.open .faq-icon { transform: rotate(45deg); }
.faq-a { padding: 0 1.5rem; max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; }
.faq-a.open { padding: 1rem 1.5rem 1.25rem; max-height: 300px; }
.faq-a p { font-size: 0.9rem; }

/* ── CTA Banner ── */
.cta-banner { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); padding: 5rem 0; }
.cta-inner { text-align: center; }
.cta-inner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-inner p { color: rgba(255,255,255,0.65); max-width: 500px; margin: 0 auto 2rem; }
.cta-buttons { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ── Footer ── */
.site-footer { background: var(--navy); border-top: 1px solid rgba(255,255,255,0.08); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.85rem; margin: 1rem 0 1.5rem; max-width: 260px; }
.footer-logo { font-family: var(--font-display); font-size: 1.3rem; color: var(--white); display: flex; align-items: center; gap: 10px; }
.footer-col h5 { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 1rem; }
.footer-col a { display: block; font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 0.6rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--gold); }
.footer-contact p { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 0.5rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.nap-block { font-size: 0.78rem; color: rgba(255,255,255,0.35); line-height: 1.8; }

/* ── Inner page hero ── */
.page-hero { padding: 140px 0 80px; background: linear-gradient(160deg, var(--cream) 0%, var(--white) 70%); border-bottom: 1px solid var(--gray-200); }
.page-hero .label { margin-bottom: 0.75rem; display: block; }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p { font-size: 1.05rem; max-width: 580px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: var(--gray-400); margin-bottom: 1.5rem; }
.breadcrumb a { color: var(--gray-400); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb span { color: var(--gray-200); }

/* ── About page ── */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.tutor-photo-wrap { position: relative; }
.tutor-photo {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 20px; aspect-ratio: 4/5; display: flex; align-items: flex-end;
  padding: 2rem; overflow: hidden; position: relative;
}
.tutor-photo-bg { position: absolute; top: 0; left: 0; right: 0; bottom: 0; opacity: 0.15; font-family: var(--font-display); font-size: 18rem; color: var(--gold); display: flex; align-items: center; justify-content: center; line-height: 1; pointer-events: none; }
.tutor-name-plate { background: rgba(255,255,255,0.08); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.15); border-radius: 12px; padding: 1rem 1.25rem; position: relative; z-index: 1; }
.tutor-name-plate h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 2px; }
.tutor-name-plate p { font-size: 0.82rem; color: rgba(255,255,255,0.6); }
.credential-float {
  position: absolute; top: 2rem; right: -2rem;
  background: var(--white); border-radius: 12px; padding: 0.75rem 1rem;
  box-shadow: var(--shadow-lg); font-size: 0.8rem; font-weight: 600; color: var(--navy);
}
.creds-list { display: flex; flex-direction: column; gap: 12px; margin-top: 2rem; }
.cred-item { display: flex; align-items: flex-start; gap: 12px; }
.cred-dot { width: 8px; height: 8px; min-width: 8px; background: var(--gold); border-radius: 50%; margin-top: 8px; }
.approach-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 3rem; }
.approach-card { background: var(--gray-100); border-radius: 12px; padding: 1.25rem; }
.approach-card h4 { margin-bottom: 4px; }
.approach-card p { font-size: 0.85rem; }

/* ── Blog ── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: 16px; overflow: hidden; transition: var(--transition); }
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.blog-thumb { aspect-ratio: 16/9; background: var(--navy); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.blog-thumb-icon { font-size: 3rem; opacity: 0.3; }
.blog-tag { position: absolute; top: 12px; left: 12px; background: var(--gold); color: var(--white); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 10px; border-radius: 4px; }
.blog-body { padding: 1.5rem; }
.blog-meta { font-size: 0.78rem; color: var(--gray-400); margin-bottom: 0.75rem; }
.blog-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.blog-card p { font-size: 0.85rem; }
.blog-read-more { display: inline-flex; align-items: center; gap: 6px; margin-top: 1rem; font-size: 0.82rem; font-weight: 600; color: var(--navy); }
.blog-read-more:hover { color: var(--gold); }

/* ── Contact ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { margin-bottom: 2rem; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 1.25rem; }
.contact-icon { width: 40px; height: 40px; min-width: 40px; background: var(--gray-100); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.contact-label { font-size: 0.78rem; font-weight: 600; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.08em; }
.contact-val { font-weight: 600; color: var(--navy); font-size: 0.95rem; }
.contact-form-wrap { background: var(--white); border: 1px solid var(--gray-200); border-radius: 20px; padding: 2.5rem; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--gray-200);
  border-radius: var(--radius); font-family: var(--font-body); font-size: 0.9rem;
  color: var(--gray-800); background: var(--white); transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--navy); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; padding: 15px; justify-content: center; }
.form-note { font-size: 0.78rem; color: var(--gray-400); text-align: center; margin-top: 0.75rem; }

/* ── Sec pages ── */
.sec-content { display: grid; grid-template-columns: 1fr 340px; gap: 3rem; align-items: start; }
.sec-main h2 { margin-bottom: 0.75rem; }
.sec-main p { margin-bottom: 1.5rem; }
.topic-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 1.5rem 0; }
.topic-item { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: var(--gray-600); }
.topic-check { color: var(--green); font-size: 0.8rem; }
.sec-sidebar { position: sticky; top: 100px; }
.sidebar-card { background: var(--navy); border-radius: 16px; padding: 2rem; color: var(--white); margin-bottom: 1.25rem; }
.sidebar-card h4 { color: var(--white); margin-bottom: 1rem; }
.sidebar-card p { color: rgba(255,255,255,0.6); font-size: 0.85rem; margin-bottom: 1.5rem; }
.sidebar-card .btn { width: 100%; justify-content: center; }
.sidebar-info-card { background: var(--gray-100); border-radius: 16px; padding: 1.5rem; }
.info-row { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--gray-200); font-size: 0.88rem; }
.info-row:last-child { border-bottom: none; }
.info-key { color: var(--gray-400); font-weight: 500; }
.info-val { font-weight: 600; color: var(--navy); }

/* ── Local SEO block ── */
.local-seo { background: var(--gray-100); padding: 3rem 0; }
.local-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.local-text h3 { font-size: 1.2rem; margin-bottom: 4px; }
.local-text p { font-size: 0.88rem; }
.location-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.location-tag { background: var(--white); border: 1px solid var(--gray-200); border-radius: 20px; padding: 6px 14px; font-size: 0.8rem; font-weight: 500; color: var(--gray-600); }

/* ── Utilities ── */
.mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; }
.divider { height: 1px; background: var(--gray-200); margin: 3rem 0; }
.badge-new { background: var(--green-light); color: var(--green); font-size: 0.7rem; font-weight: 700; padding: 2px 8px; border-radius: 4px; letter-spacing: 0.06em; }
.highlight-box { background: var(--gray-100); border-left: 3px solid var(--gold); border-radius: 0 8px 8px 0; padding: 1rem 1.25rem; margin: 1.5rem 0; }
.highlight-box p { font-size: 0.9rem; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { gap: 2.5rem; }
}
@media (max-width: 768px) {
  .section { padding: 4rem 0; }
  .hero { padding: 110px 0 60px; }
  .hero-grid, .why-grid, .results-grid, .about-split, .contact-grid, .sec-content { grid-template-columns: 1fr; }
  .why-visual, .grade-cards, .approach-cards { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-card-wrap { display: none; }
  .credential-float { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .topic-list { grid-template-columns: 1fr; }
  .sec-content { grid-template-columns: 1fr; }
  .sec-sidebar { position: static; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

/* ── Nav fit for 7 items (769–1024px) — added with Resources page ── */
@media (max-width: 1024px) and (min-width: 769px) {
  .nav-links { gap: 1.1rem; }
  .nav-links a, .nav-dropdown-btn { font-size: 0.86rem; }
  .nav-phone { display: none; }
}
