/* ═══════════════════════════════════════════════════════════
   MOXIE FITNESS — Feminine Editorial Luxury
   Wine & earth tones, organic shapes, magazine typography
   ═══════════════════════════════════════════════════════════ */

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

/* ===== DESIGN TOKENS ===== */
:root {
  /* Typography */
  --font-body: 'Quicksand', 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;

  /* Primary — wine/berry */
  --wine: #5a1530;
  --wine-light: #8c3a4a;
  --wine-glow: rgba(140, 58, 74, 0.3);
  --wine-subtle: rgba(90, 21, 48, 0.06);

  /* Secondary — forest green */
  --forest: #011e00;
  --sage: #5a6e42;
  --sage-light: rgba(90, 110, 66, 0.15);

  /* Neutrals */
  --cream: #faf6f2;
  --cream-warm: #f5ede5;
  --white: #ffffff;
  --text: #2c1810;
  --text-soft: #6b5e56;
  --text-muted: #9a8e86;
  --text-on-dark: #e8d5c4;
  --dark-card: rgba(42, 5, 18, 0.6);

  /* Spacing */
  --max-width: 1120px;
  --sp-xs: 0.5rem;
  --sp-sm: 1rem;
  --sp-md: 2rem;
  --sp-lg: 4rem;
  --sp-xl: 6rem;
  --sp-2xl: 8rem;

  /* Radius */
  --radius: 12px;
  --radius-lg: 20px;
  --radius-pill: 50px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul, ol {
  list-style: none;
}

/* ===== UTILITIES ===== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1rem;
  text-align: center;
}

.section-label--light {
  color: var(--text-on-dark);
}

/* ===== SCROLL ANIMATIONS ===== */
.step,
.benefit-card,
.about-layout,
.pricing-card,
.faq-list details {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.step.is-visible,
.benefit-card.is-visible,
.about-layout.is-visible,
.pricing-card.is-visible,
.faq-list details.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.step.is-visible {
  transition-delay: calc(var(--delay, 0) * 0.12s);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.95rem 2.25rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-pill);
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.2s,
              background-color 0.2s;
  min-height: 48px;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--wine-light);
  color: var(--white);
  box-shadow: 0 4px 24px var(--wine-glow);
}

.btn-primary:hover {
  background: var(--wine);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--wine-glow);
}

.btn-primary:active {
  transform: translateY(0) scale(0.98);
}

.btn-primary--on-dark {
  background: var(--white);
  color: var(--wine);
  box-shadow: 0 4px 24px rgba(255, 255, 255, 0.15);
}

.btn-primary--on-dark:hover {
  background: var(--cream);
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.2);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn:focus-visible {
  outline: 3px solid var(--wine-light);
  outline-offset: 3px;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0.875rem 0;
  background: rgba(90, 21, 48, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  color: var(--white);
  font-style: italic;
}

.btn-header {
  padding: 0.6rem 1.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
  white-space: nowrap;
}

.btn-header:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.35);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(72px + var(--sp-lg)) 1.25rem var(--sp-xl);
  background: linear-gradient(165deg, var(--wine) 0%, #2d1018 35%, var(--white) 100%);
  color: var(--white);
  overflow: hidden;
}

/* Organic background shapes */
.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
}

.hero-shape--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--wine-light), transparent 70%);
  top: -15%;
  right: -10%;
  animation: float-slow 20s ease-in-out infinite;
}

.hero-shape--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--wine-light), transparent 70%);
  bottom: -10%;
  left: -8%;
  animation: float-slow 25s ease-in-out infinite reverse;
}

@keyframes float-slow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -30px) scale(1.05); }
  66% { transform: translate(-15px, 15px) scale(0.97); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-on-dark);
  margin-bottom: 1.5rem;
  padding: 0.4rem 1.25rem;
  border: 1px solid rgba(232, 213, 196, 0.2);
  border-radius: var(--radius-pill);
  animation: fade-in-down 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.hero-title-line {
  display: block;
  animation: fade-in-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-title-line:nth-child(1) { animation-delay: 0.3s; }
.hero-title-line:nth-child(2) { animation-delay: 0.45s; }
.hero-title-line:nth-child(3) { animation-delay: 0.6s; }

.hero-title-accent {
  color: var(--text-on-dark);
  font-weight: 700;
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in-down {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-sub {
  font-size: 1rem;
  color: var(--text-on-dark);
  margin-bottom: 2.25rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  animation: fade-in-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.75s both;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  animation: fade-in-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.9s both;
}

.hero-note {
  font-size: 0.75rem;
  color: var(--text-on-dark);
  margin-top: 1.25rem;
  letter-spacing: 0.02em;
  animation: fade-in-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1s both;
}

/* ===== PROOF BAND ===== */
.proof-band {
  background: var(--wine);
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.proof-items {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 0;
}

.proof-item {
  text-align: center;
  color: var(--white);
  padding: 0 1.5rem;
}

.proof-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  font-style: italic;
}

.proof-item span {
  font-size: 0.7rem;
  color: var(--text-on-dark);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.proof-divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.12);
  display: none;
}

/* ===== SECTION HEADINGS (shared) ===== */
.how-it-works h2,
.about h2,
.benefits h2,
.pricing h2,
.faq h2,
.lead-form h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.15;
  text-align: center;
  margin-bottom: 0.75rem;
}

.how-it-works h2 em,
.about h2 em,
.benefits h2 em,
.pricing h2 em,
.faq h2 em,
.lead-form h2 em {
  font-style: italic;
  color: var(--wine-light);
}

.pricing h2 em {
  color: var(--cream-warm);
}

.section-intro {
  text-align: center;
  color: var(--text-soft);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--sp-md);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: var(--sp-xl) 0;
  background: var(--white);
  text-align: center;
}

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 820px;
  margin: var(--sp-md) auto 0;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  position: relative;
}

.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--wine-light), var(--wine));
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px var(--wine-glow);
}

.step-connector {
  display: none;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  font-style: italic;
  color: var(--text);
}

.step p {
  color: var(--text-soft);
  font-size: 0.92rem;
  max-width: 280px;
  line-height: 1.65;
}

/* ===== ABOUT / YOUR COACH ===== */
.about {
  padding: var(--sp-xl) 0;
  background: var(--cream);
}

.about-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-md);
  max-width: 800px;
  margin: 0 auto;
}

.about-photo-wrap {
  width: 100%;
  max-width: 320px;
}

.about-photo-placeholder {
  aspect-ratio: 3 / 4;
  background: linear-gradient(145deg, var(--cream-warm), var(--white));
  border: 2px dashed rgba(140, 58, 74, 0.2);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-photo-placeholder span {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--text-muted);
  opacity: 0.6;
}

/* For when the real photo is added: */
.about-photo-wrap img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 3 / 4;
}

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

.about-text .section-label {
  text-align: center;
}

.about h2 {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.about h2 em {
  color: var(--wine-light);
}

.about-body {
  max-width: 560px;
  margin: 0 auto 1.75rem;
}

.about-body p {
  color: var(--text-soft);
  margin-bottom: 1rem;
  line-height: 1.75;
  font-size: 0.95rem;
}

.about-body p:last-child {
  margin-bottom: 0;
}

.about-body strong {
  color: var(--text);
  font-weight: 700;
}

/* ===== WHAT YOU GET ===== */
.benefits {
  padding: var(--sp-xl) 0;
  background: var(--white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: var(--sp-sm);
}

.benefit-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid rgba(90, 21, 48, 0.04);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.25s;
}

.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(90, 21, 48, 0.08);
}

.benefit-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--wine-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.benefit-icon {
  width: 22px;
  height: 22px;
  color: var(--wine-light);
}

.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  font-style: italic;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.benefit-card p {
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.6;
}

/* ===== PRICING ===== */
.pricing {
  padding: var(--sp-2xl) 0 var(--sp-xl);
  background: linear-gradient(170deg, var(--wine) 0%, #200a14 40%, var(--white) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing h2 {
  color: var(--white);
}

.pricing .section-intro {
  color: var(--text-on-dark);
}

.pricing-card {
  position: relative;
  background: var(--dark-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--sp-md) 1.5rem;
  max-width: 480px;
  margin: 0 auto;
  overflow: hidden;
}

.pricing-card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 0%, rgba(140, 58, 74, 0.12), transparent 60%);
  pointer-events: none;
}

.price-main {
  margin-bottom: 1.25rem;
  position: relative;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  display: block;
  font-style: italic;
}

.price-term {
  font-size: 0.85rem;
  color: var(--text-on-dark);
  display: block;
  margin-top: 0.3rem;
}

.price-breakdown {
  display: inline-block;
  background: rgba(232, 213, 196, 0.12);
  color: var(--text-on-dark);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.3rem 1rem;
  border-radius: var(--radius-pill);
  margin-top: 0.75rem;
  letter-spacing: 0.02em;
}

.price-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1rem 0;
}

.price-divider::before,
.price-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.price-divider span {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-on-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.price-alt-wrap {
  margin-bottom: 0.5rem;
}

.price-alt {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  font-style: italic;
}

.price-alt-term {
  font-size: 0.85rem;
  color: var(--text-on-dark);
}

.pricing-separator {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 1.5rem 0;
}

.includes-list {
  text-align: left;
  margin-bottom: 1.75rem;
}

.includes-list li {
  padding: 0.45rem 0;
  padding-left: 1.75rem;
  position: relative;
  font-size: 0.9rem;
  color: var(--text-on-dark);
}

.includes-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--cream-warm);
  font-weight: 700;
  font-size: 0.85rem;
}

.pricing-note {
  font-size: 0.8rem;
  color: var(--text-on-dark);
  opacity: 0.6;
  margin-top: 1rem;
}

/* ===== FAQ ===== */
.faq {
  padding: var(--sp-xl) 0;
  background: var(--cream);
}

.faq-list {
  max-width: 680px;
  margin: 0 auto;
}

.faq-list details {
  border-bottom: 1px solid rgba(90, 21, 48, 0.08);
}

.faq-list summary {
  padding: 1.15rem 0;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  gap: 1rem;
  transition: color 0.2s;
}

.faq-list summary:hover {
  color: var(--wine-light);
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--wine-light);
  flex-shrink: 0;
  width: 24px;
  text-align: center;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list details p {
  padding: 0 0 1.15rem;
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.7;
}

.faq-cta {
  text-align: center;
  margin-top: var(--sp-md);
}

/* ===== LEAD FORM ===== */
.lead-form {
  padding: var(--sp-xl) 0;
  background: var(--white);
  text-align: center;
}

.lead-form h2 em {
  color: var(--wine-light);
}

.tally-form-container {
  min-height: 600px;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.tally-form-container iframe {
  min-height: 600px;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: var(--sp-md) 0;
  background: var(--wine);
  color: var(--text-on-dark);
  text-align: center;
}

.site-footer p {
  font-size: 0.82rem;
  margin-bottom: 0.4rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-style: italic;
  color: var(--white);
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}

.site-footer a {
  color: var(--cream-warm);
  transition: color 0.2s;
}

.site-footer a:hover {
  color: var(--white);
  text-decoration: underline;
}

.site-footer .privacy {
  font-size: 0.72rem;
  opacity: 0.4;
  margin-bottom: 0;
  margin-top: 0.5rem;
}

/* ===== FOCUS & ACCESSIBILITY ===== */
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--wine-light);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .step,
  .benefit-card,
  .about-layout,
  .pricing-card,
  .faq-list details {
    opacity: 1;
    transform: none;
  }
}

/* ═══════════════════════════════════════════════════════════
   TABLET: 768px+
   ═══════════════════════════════════════════════════════════ */
@media (min-width: 768px) {
  .container {
    padding: 0 var(--sp-md);
  }

  /* Hero — dramatic scale */
  .hero-title {
    font-size: 4.5rem;
  }

  .hero-sub {
    font-size: 1.1rem;
  }

  .hero-ctas {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
  }

  /* Proof dividers visible */
  .proof-divider {
    display: block;
  }

  /* Steps horizontal */
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .step-connector {
    display: block;
    position: absolute;
    top: 26px;
    left: calc(50% + 32px);
    width: calc(100% - 32px);
    height: 1px;
    background: linear-gradient(to right, var(--wine-light), transparent);
    opacity: 0.2;
  }

  /* About — side by side */
  .about-layout {
    flex-direction: row;
    align-items: flex-start;
    gap: var(--sp-lg);
    text-align: left;
  }

  .about-photo-wrap {
    flex-shrink: 0;
    width: 280px;
  }

  .about-text .section-label {
    text-align: left;
  }

  .about h2 {
    text-align: left;
    margin-left: 0;
  }

  /* Benefits grid */
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  /* Section headings scale */
  .how-it-works h2,
  .about h2,
  .benefits h2,
  .pricing h2,
  .faq h2,
  .lead-form h2 {
    font-size: 2.5rem;
  }

  /* Pricing card wider padding */
  .pricing-card {
    padding: var(--sp-md) var(--sp-md);
  }
}

/* ═══════════════════════════════════════════════════════════
   DESKTOP: 1024px+
   ═══════════════════════════════════════════════════════════ */
@media (min-width: 1024px) {
  .hero-title {
    font-size: 5.5rem;
  }

  .hero-sub {
    font-size: 1.15rem;
  }

  .about-photo-wrap {
    width: 340px;
  }

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

  .pricing-card {
    padding: var(--sp-md) var(--sp-lg);
  }

  .how-it-works h2,
  .benefits h2,
  .pricing h2,
  .faq h2,
  .lead-form h2 {
    font-size: 2.75rem;
  }
}
