/* ==========================================================================
   Attento Tutoring — Main Website Stylesheet
   ==========================================================================
   Palette: Navy / Cream / White / Gold accent.
   Matches the diagnostic tool's brand (diagnostic.attentotutoring.com) so
   both sites feel like one product.

   HOW TO RESTYLE:
   - Colors, fonts, spacing, and radii are all CSS variables in :root below.
     Change a value there and it updates everywhere it's used.
   - Section-by-section styles are grouped and labeled below, in the same
     order the sections appear in index.html.
   ========================================================================== */

:root {
  /* Brand colors */
  --navy-950: #0a1930;
  --navy-900: #0f2340;
  --navy-800: #16304f;
  --navy-700: #1f3d61;
  --navy-600: #2c4f78;
  --cream-50: #fffdf8;
  --cream-100: #faf6ec;
  --cream-200: #f3ecda;
  --cream-300: #e9dfc4;
  --gold-400: #d9b76a;
  --gold-500: #c9a227;
  --gold-600: #a9821a;
  --white: #ffffff;
  --ink: #16233a;
  --ink-soft: #4c5a72;

  /* Effects */
  --shadow-lg: 0 24px 48px -20px rgba(10, 25, 48, 0.35);
  --shadow-md: 0 12px 28px -14px rgba(10, 25, 48, 0.25);
  --shadow-sm: 0 2px 8px rgba(10, 25, 48, 0.08);
  --radius-lg: 20px;
  --radius: 14px;
  --radius-sm: 8px;

  /* Typography */
  --font-serif: "Playfair Display", "Georgia", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Layout */
  --container-width: 1180px;
  --container-narrow: 820px;
  --header-height: 76px;
}

/* ==========================================================================
   Reset & base
   ========================================================================== */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 12px);
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream-100);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  color: var(--navy-950);
  line-height: 1.2;
  margin: 0 0 16px;
}

p {
  margin: 0 0 16px;
  color: var(--ink-soft);
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  width: 100%;
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 88px 0;
}

@media (max-width: 720px) {
  section {
    padding: 56px 0;
  }
}

.eyebrow {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 12px;
}

.section-title {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-title h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
}

.section-title p {
  font-size: 1.05rem;
}

.text-center {
  text-align: center;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  border: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--navy-950);
  box-shadow: var(--shadow-md);
}

.btn-gold:hover {
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: var(--navy-950);
  border: 1.5px solid var(--navy-700);
}

.btn-outline:hover {
  background: var(--navy-950);
  color: var(--cream-50);
}

.btn-outline-light {
  background: transparent;
  color: var(--cream-50);
  border: 1.5px solid rgba(250, 246, 236, 0.4);
}

.btn-outline-light:hover {
  background: rgba(250, 246, 236, 0.12);
  border-color: var(--cream-50);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

/* ==========================================================================
   1. Header / Navigation
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  display: flex;
  align-items: center;
  background: rgba(10, 25, 48, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 3px solid var(--gold-500);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--cream-50);
}

.brand .mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--navy-950);
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 1.1rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-nav a:not(.btn) {
  color: var(--cream-200);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.15s ease;
}

.site-nav a:not(.btn):hover {
  color: var(--gold-400);
}

.nav-cta {
  padding: 11px 22px;
  font-size: 0.92rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 6px;
  color: var(--cream-50);
}

.nav-toggle svg {
  width: 26px;
  height: 26px;
}

@media (max-width: 880px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--navy-950);
    border-bottom: 3px solid var(--gold-500);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }

  .site-nav.open {
    max-height: 420px;
  }

  .site-nav a:not(.btn) {
    padding: 16px 24px;
    border-top: 1px solid rgba(250, 246, 236, 0.08);
  }

  .site-nav .nav-cta {
    margin: 16px 24px 20px;
  }
}

/* ==========================================================================
   2. Hero
   ========================================================================== */

.hero {
  background:
    radial-gradient(circle at 15% 15%, rgba(217, 183, 106, 0.14), transparent 45%),
    linear-gradient(180deg, var(--navy-950), var(--navy-900) 60%, var(--navy-800));
  color: var(--cream-100);
  padding: 96px 0 72px;
}

.hero-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(217, 183, 106, 0.12);
  border: 1px solid rgba(217, 183, 106, 0.35);
  color: var(--gold-400);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero h1 {
  color: var(--cream-50);
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  margin-bottom: 20px;
}

.hero .subhead {
  color: var(--cream-200);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  max-width: 620px;
  margin: 0 auto 36px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

/* Friction-reducing trust line directly under the primary CTA (free / time
   estimate / no credit card) — keep the time estimate in sync with the
   diagnostic tool's own copy so the two sites never contradict each other. */
.hero-trust {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold-400);
  opacity: 0.9;
  margin-bottom: 36px;
}

/* The small funnel strip under the hero CTAs */
.hero-funnel {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--cream-200);
  opacity: 0.85;
}

.hero-funnel .step {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(250, 246, 236, 0.18);
}

.hero-funnel .arrow {
  color: var(--gold-400);
}

@media (max-width: 640px) {
  /* Stack the two hero buttons full-width instead of letting them wrap
     unpredictably — a cleaner, more deliberate thumb-friendly CTA on phones. */
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  /* Keep the funnel visible on mobile (it was fully hidden before, which
     undercut funnel clarity for the majority of visitors on phones) — just
     shrink it into a compact two-line strip instead of one wide row. */
  .hero-funnel {
    font-size: 0.72rem;
    gap: 6px;
  }

  .hero-funnel .step {
    padding: 5px 10px;
  }
}

/* ==========================================================================
   3. Credibility strip
   ========================================================================== */

.credibility-strip {
  background: var(--navy-900);
  border-bottom: 1px solid rgba(250, 246, 236, 0.08);
  padding: 28px 0;
}

.credibility-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.credibility-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cream-200);
  font-size: 0.92rem;
  font-weight: 600;
  white-space: nowrap;
}

.credibility-item svg {
  width: 18px;
  height: 18px;
  color: var(--gold-400);
  flex-shrink: 0;
}

/* ==========================================================================
   Cards (shared component used across several sections)
   ========================================================================== */

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--cream-300);
  box-shadow: var(--shadow-sm);
  padding: 32px;
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: var(--gold-400);
  margin-bottom: 20px;
}

.card-icon svg {
  width: 26px;
  height: 26px;
}

.grid {
  display: grid;
  gap: 24px;
}

/* ==========================================================================
   4. "A More Strategic Way to Tutor"
   ========================================================================== */

.strategic {
  background: var(--cream-100);
}

.strategic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.strategic-copy h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
}

.strategic-visual {
  background: linear-gradient(160deg, var(--navy-950), var(--navy-700));
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--cream-100);
  box-shadow: var(--shadow-lg);
}

.strategic-visual .visual-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(250, 246, 236, 0.12);
  font-size: 0.95rem;
}

.strategic-visual .visual-row:last-child {
  border-bottom: none;
}

.strategic-visual .visual-label {
  color: var(--cream-200);
}

.strategic-visual .visual-bar-track {
  flex: 1;
  height: 8px;
  margin: 0 16px;
  border-radius: 999px;
  background: rgba(250, 246, 236, 0.14);
  overflow: hidden;
}

.strategic-visual .visual-bar-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-400), var(--gold-600));
}

@media (max-width: 880px) {
  .strategic-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   5. How It Works
   ========================================================================== */

.how-it-works {
  background: var(--white);
}

.steps-grid {
  grid-template-columns: repeat(4, 1fr);
  counter-reset: step;
}

.step-card {
  position: relative;
  padding-top: 8px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy-950);
  color: var(--gold-400);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 18px;
}

.step-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.94rem;
  margin-bottom: 0;
}

@media (max-width: 980px) {
  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   6. Tutoring Services
   ========================================================================== */

.services {
  background: var(--cream-100);
}

.services-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

@media (max-width: 980px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   7. Diagnostic-first explanation
   ========================================================================== */

.diagnostic-explain {
  background: var(--navy-950);
  color: var(--cream-100);
}

.diagnostic-explain .section-title h2 {
  color: var(--cream-50);
}

.diagnostic-explain .section-title p {
  color: var(--cream-200);
}

.diagnostic-explain .eyebrow {
  color: var(--gold-400);
}

.diagnostic-points {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 48px;
}

.diagnostic-point {
  background: rgba(250, 246, 236, 0.04);
  border: 1px solid rgba(250, 246, 236, 0.12);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.diagnostic-point h3 {
  color: var(--cream-50);
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.diagnostic-point p {
  color: var(--cream-200);
  font-size: 0.93rem;
  margin-bottom: 0;
}

@media (max-width: 880px) {
  .diagnostic-points {
    grid-template-columns: 1fr;
  }
}

/* Short trust line between the 3-point grid and the CTA — reassures parents
   the diagnostic is reviewed by a real person, not just auto-scored. */
.diagnostic-trust-note {
  color: var(--gold-400);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 28px;
}

/* ==========================================================================
   8. Pricing / Packages
   ========================================================================== */

.pricing {
  background: var(--white);
}

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
}

.pricing-card {
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border-color: var(--gold-500);
  box-shadow: var(--shadow-md);
  position: relative;
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 32px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--navy-950);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}

/* Small scannability tag used on the Free Diagnostic ("Start Here") and the
   Extended Diagnostic add-on ("Optional Add-On") cards — quieter than the
   gold "Most Popular" badge so it doesn't compete with it. */
.pricing-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy-700);
  background: var(--cream-200);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}

/* The extended-diagnostic add-on card gets a slightly quieter treatment so
   it reads as optional rather than a core tier alongside the 3 packages. */
.pricing-card.addon {
  background: var(--cream-100);
  border-style: dashed;
}

.pricing-card h3 {
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.pricing-price {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  color: var(--navy-950);
  font-weight: 700;
  margin-bottom: 16px;
}

.pricing-price span {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.pricing-card p {
  font-size: 0.92rem;
  flex: 1;
}

.pricing-note {
  margin-top: 40px;
  text-align: center;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

@media (max-width: 980px) {
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   9. Founder bio
   ========================================================================== */

.founder {
  background: var(--cream-100);
}

.founder-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: center;
}

.founder-avatar {
  width: 220px;
  height: 220px;
  margin: 0 auto;
  border-radius: 50%;
  background: linear-gradient(150deg, var(--navy-800), var(--navy-950));
  border: 4px solid var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 3.4rem;
  font-weight: 700;
  color: var(--gold-400);
  box-shadow: var(--shadow-lg);
}

.founder-copy .eyebrow {
  margin-bottom: 8px;
}

.founder-copy h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin-bottom: 4px;
}

.founder-title {
  color: var(--gold-600);
  font-weight: 600;
  margin-bottom: 20px;
}

.founder-stats {
  display: flex;
  gap: 28px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.founder-stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--navy-950);
}

.founder-stat span {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

@media (max-width: 720px) {
  .founder-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .founder-stats {
    justify-content: center;
  }
}

/* ==========================================================================
   10. Why Families Choose Attento
   ========================================================================== */

.why-us {
  background: var(--white);
}

.why-grid {
  grid-template-columns: repeat(3, 1fr);
}

.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-item .card-icon {
  margin-bottom: 0;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
}

.why-item .card-icon svg {
  width: 22px;
  height: 22px;
}

.why-item h3 {
  font-size: 1.02rem;
  margin-bottom: 4px;
}

.why-item p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

@media (max-width: 980px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   11. FAQ
   ========================================================================== */

.faq {
  background: var(--cream-100);
}

.faq-list {
  max-width: var(--container-narrow);
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--cream-300);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy-950);
}

.faq-question .faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--gold-600);
  transition: transform 0.2s ease;
}

.faq-item.open .faq-question .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-answer p {
  padding: 0 24px 20px;
  margin: 0;
  font-size: 0.95rem;
}

/* ==========================================================================
   12. Final CTA
   ========================================================================== */

.final-cta {
  background:
    radial-gradient(circle at 85% 20%, rgba(217, 183, 106, 0.16), transparent 50%),
    linear-gradient(180deg, var(--navy-900), var(--navy-950));
  color: var(--cream-100);
  text-align: center;
}

.final-cta h2 {
  color: var(--cream-50);
  font-size: clamp(1.8rem, 3.6vw, 2.5rem);
  max-width: 640px;
  margin: 0 auto 16px;
}

.final-cta p {
  color: var(--cream-200);
  max-width: 560px;
  margin: 0 auto 36px;
  font-size: 1.05rem;
}

.final-cta .hero-ctas {
  margin-bottom: 0;
}

/* ==========================================================================
   13. Footer
   ========================================================================== */

.site-footer {
  background: var(--navy-950);
  color: var(--cream-200);
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .brand {
  margin-bottom: 14px;
}

.footer-brand p {
  color: var(--cream-200);
  opacity: 0.8;
  font-size: 0.9rem;
  max-width: 320px;
}

.footer-col h4 {
  color: var(--cream-50);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: var(--cream-200);
  opacity: 0.85;
  font-size: 0.92rem;
  transition: opacity 0.15s ease, color 0.15s ease;
}

.footer-col a:hover {
  opacity: 1;
  color: var(--gold-400);
}

.footer-bottom {
  border-top: 1px solid rgba(250, 246, 236, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  opacity: 0.7;
}

@media (max-width: 720px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ==========================================================================
   Mobile Sticky CTA Bar
   Keeps "Start the Free Diagnostic" reachable while scrolling a long page
   on a phone. Hidden entirely above the mobile breakpoint. The show/hide-
   near-the-footer behavior is handled by script.js toggling .is-hidden.
   ========================================================================== */

.mobile-cta-bar {
  display: none;
}

@media (max-width: 640px) {
  .mobile-cta-bar {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
    background: rgba(10, 25, 48, 0.97);
    backdrop-filter: blur(6px);
    border-top: 1px solid rgba(217, 183, 106, 0.35);
    box-shadow: 0 -8px 24px rgba(10, 25, 48, 0.25);
    transition: transform 0.25s ease;
  }

  .mobile-cta-bar.is-hidden {
    transform: translateY(110%);
  }

  /* Reserve space so the bar never covers the last bit of page content */
  body {
    padding-bottom: 76px;
  }
}

/* ==========================================================================
   Utilities
   ========================================================================== */

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* Spacing above the mid-page CTA nudge inserted after "Why Families Choose
   Attento Tutoring" */
.mt-inline-cta {
  margin-top: 40px;
}
