/* ==========================================================================
   Managain WordPress Theme — Main Stylesheet
   Converted from React/Tailwind source to vanilla CSS.
   Design tokens preserved pixel-for-pixel from the original site.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Custom Properties (Design Tokens)
   -------------------------------------------------------------------------- */
:root {
  /* Colors */
  --color-black:       #000000;
  --color-white:       #ffffff;
  --color-red-800:     #991b1b;   /* text-red / primary accent */
  --color-amber-400:   #fbbf24;   /* buttons */
  --color-amber-500:   #f59e0b;   /* button hover */
  --color-rose-950:    #4c0519;   /* dark maroon bg / coaching highlight */
  --color-neutral-400: #a3a3a3;   /* testimonials / muted text */

  /* Fonts */
  --font-body:     'Poppins', ui-sans-serif, system-ui, sans-serif;
  --font-heading:  'Montserrat', ui-sans-serif, system-ui, sans-serif;

  /* Spacing */
  --section-py:         2.5rem;   /* 40px */
  --section-py-lg:      6.25rem;  /* 100px */
  --max-width:          1340px;
  --max-width-md:       1260px;
  --container-px:       2.5rem;   /* 10px mobile, 40px desktop */

  /* Transitions */
  --transition-base: 300ms ease;
}

/* --------------------------------------------------------------------------
   2. Reset & Base
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 110%; /* 17.6px base on mobile (+10%) */
}

@media (min-width: 768px) {
  html { font-size: 123.75%; } /* 19.8px base on desktop (+10%) */
}

body {
  font-family: var(--font-body);
  font-size: 1rem;        /* 18px */
  line-height: 1.6;
  color: var(--color-black);
  background-color: var(--color-white);
  overflow-x: hidden;
  min-height: 100vh;
}

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

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

ul, ol {
  list-style: disc;
  padding-left: 1.5rem;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.3;
  margin-bottom: 0.5rem;
}


p { margin-bottom: 1rem; font-size: 1.111rem; /* 20px */ line-height: 1.7; }

/* --------------------------------------------------------------------------
   3. Typography Utilities
   -------------------------------------------------------------------------- */
.text-white   { color: var(--color-white); }
.text-red     { color: var(--color-red-800); }
.text-amber   { color: var(--color-amber-400); }
.text-neutral { color: var(--color-neutral-400); }
.text-rose-950 { color: var(--color-rose-950); }

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.015em;
  line-height: 1.5;
  text-align: center;
  padding: 0.594rem 1.875rem;  /* 9.5px 30px */
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    background-color var(--transition-base),
    border-color var(--transition-base),
    box-shadow var(--transition-base),
    transform 150ms ease;
}

.btn-amber {
  background-color: var(--color-amber-400);
  border-color: var(--color-amber-400);
  color: var(--color-black);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.btn-amber:hover {
  background-color: var(--color-amber-500);
  border-color: var(--color-amber-500);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-amber:active {
  transform: scale(0.95);
}

.btn-sm {
  font-size: 0.875rem;
  padding: 0.4rem 1.2rem;
}

/* --------------------------------------------------------------------------
   5. Layout Helpers
   -------------------------------------------------------------------------- */
.section-inner {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--section-py) 1.25rem;  /* 40px 20px */
}

.section-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.section-overlay-black        { background-color: rgba(0, 0, 0, 0.85); }
.section-overlay-black-30     { background-color: rgba(0, 0, 0, 0.3); }
.section-overlay-black-80     { background-color: rgba(0, 0, 0, 0.8); }
.section-overlay-white-20     { background-color: rgba(255, 255, 255, 0.2); }
.section-overlay-rose-950     { background-color: var(--color-rose-950); }

.full-width-img {
  width: 100%;
  display: block;
}

.two-col-layout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.col-img,
.col-text {
  width: 100%;
}

.col-text { padding: 0 0.5rem; }

.col-order-first { order: -1; }

.bg-rose-950 { background-color: var(--color-rose-950); }

/* --------------------------------------------------------------------------
   6. Site Header / Navbar
   -------------------------------------------------------------------------- */
.site-header {
  position: relative;
  background-color: var(--color-black);
  color: var(--color-white);
  font-size: 1rem;
  line-height: 1.6;
  z-index: 1000;
}

.navbar {
  padding: 1.25rem 0;  /* py-5 */
}

.navbar-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 0.625rem;
  gap: 0.625rem;
}

/* Logo */
.site-logo {
  flex-shrink: 0;
  margin-right: 0.625rem;
}

.site-logo a { display: inline-block; }

.site-logo img {
  width: 180px;
  max-width: 100%;
}

/* Desktop Nav (hidden on mobile) */
.desktop-menu {
  display: none;
  flex: 1;
  justify-content: flex-end;
}

.desktop-menu .nav-links,
.desktop-menu ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0;
}

.desktop-menu .nav-links li,
.desktop-menu ul li {
  list-style: none;
}

.desktop-menu .nav-link,
.desktop-menu ul a {
  display: block;
  color: var(--color-white);
  font-size: 1rem;
  line-height: 1.6;
  padding: 0;
  margin: 0 0.625rem;
  transition: color var(--transition-base);
  background: transparent;
  border: none;
}

.desktop-menu .nav-link:hover,
.desktop-menu ul a:hover {
  color: var(--color-amber-400);
}

/* Login Button */
.login-btn-wrap {
  display: none;
  padding: 0;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: auto;
}

.hamburger-bar {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--color-white);
  transition: transform var(--transition-base), opacity var(--transition-base);
}

/* Open state hamburger animation */
.mobile-menu-toggle[aria-expanded="true"] .hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-menu-toggle[aria-expanded="true"] .hamburger-bar:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle[aria-expanded="true"] .hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1040;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.mobile-menu-overlay.is-open {
  display: block;
  opacity: 1;
}

/* Mobile Menu Drawer */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 280px;
  background-color: var(--color-black);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 300ms ease-in-out;
  overflow-y: auto;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu .mobile-nav-links,
.mobile-menu ul {
  display: flex;
  flex-direction: column;
  padding: 5rem 2rem 2rem;
  list-style: none;
  margin: 0;
}

.mobile-menu .mobile-nav-links li,
.mobile-menu ul li {
  list-style: none;
}

.mobile-menu .mobile-nav-links a,
.mobile-menu ul a {
  display: block;
  color: var(--color-white);
  font-size: 1.125rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: color var(--transition-base);
}

.mobile-menu .mobile-nav-links a:hover,
.mobile-menu ul a:hover {
  color: var(--color-amber-400);
}

/* --------------------------------------------------------------------------
   7. Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Desktop hero — hidden on mobile */
.hero-desktop {
  display: none;
}

.hero-desktop .section-inner {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.hero-desktop .section-inner::before {
  content: '';
  position: absolute;
  inset: 0;
}

.hero-content {
  width: 100%;
  text-align: center;
  padding: 0.625rem;
}

.hero-content h1 {
  font-size: 2.25rem;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  color: var(--color-white);
}

.hero-content h4 {
  font-size: 1.125rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
  color: var(--color-white);
}

.hero-content .btn { margin-top: 0.5rem; }

/* Mobile hero — shown by default */
.hero-mobile {
  display: block;
  background-color: var(--color-white);
}

.hero-mobile .section-inner {
  padding: 0;
  max-width: 100%;
}

.hero-mobile-img-wrap {
  overflow: hidden;
}

.hero-mobile-img {
  width: 100%;
}

.hero-mobile-content {
  text-align: center;
  padding: 1.25rem 0.625rem 2.5rem;
}

.hero-mobile-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

/* --------------------------------------------------------------------------
   8. Image Section
   -------------------------------------------------------------------------- */
.image-section {
  position: relative;
  background-color: var(--color-black);
}

/* --------------------------------------------------------------------------
   9. Statistics Section
   -------------------------------------------------------------------------- */
.statistics-section {
  position: relative;
  color: var(--color-white);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.stats-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

.stats-tagline h4 {
  font-size: 1.125rem;
  line-height: 1.5;
}

.stats-headline h2 {
  font-size: 1.875rem;
  line-height: 1.3;
}

.stats-subheadline h4 {
  font-size: 1rem;
  line-height: 1.4;
}

/* --------------------------------------------------------------------------
   10. Image Banner
   -------------------------------------------------------------------------- */
.image-banner {
  position: relative;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

/* --------------------------------------------------------------------------
   11. Course Intro
   -------------------------------------------------------------------------- */
.course-intro-section {
  position: relative;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.course-intro-inner {
  text-align: center;
  padding-bottom: 0;
}

.course-intro-section .section-inner {
  padding-bottom: 1rem;
}

.course-intro-inner h2 {
  font-size: 1.875rem;
  line-height: 1.3;
}

/* --------------------------------------------------------------------------
   12. Course Details
   -------------------------------------------------------------------------- */
.course-details-section {
  position: relative;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.course-details-section .section-inner {
  padding-top: 1rem;
  padding-bottom: 2.5rem;
}

.course-details-section .col-text h2 {
  font-size: 1.875rem;
  line-height: 1.3;
  color: var(--color-red-800);
}

.course-details-section .col-text h3 {
  font-size: 1.5rem;
  line-height: 1.3;
}

.course-details-section ul {
  margin: 1.25rem 0;
}

.course-details-section ul li {
  margin-bottom: 0.25rem;
  text-align: left;
}

/* --------------------------------------------------------------------------
   13. Instructor Section
   -------------------------------------------------------------------------- */
.instructor-section {
  position: relative;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.instructor-section .col-text h1 {
  font-size: 2.25rem;
  line-height: 1.2;
}

/* --------------------------------------------------------------------------
   14. Coaching Call Section
   -------------------------------------------------------------------------- */
.coaching-call-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.coaching-call-content {
  max-width: 100%;
  text-align: center;
  padding: 0.625rem;
}

.coaching-call-content h4 { font-size: 1.25rem; line-height: 1.5; }
.coaching-call-content h3 { font-size: 1.5rem; line-height: 1.3; }
.coaching-call-content h2 { font-size: 1.875rem; line-height: 1.3; }

/* --------------------------------------------------------------------------
   15. Coaching Packages Section
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   Courses Section
   -------------------------------------------------------------------------- */
.courses-section {
  position: relative;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
.courses-header {
  text-align: center;
  padding: 0 0.625rem;
  margin-top: 3.125rem;
  margin-bottom: 0;
}
.courses-header h2 {
  font-size: 1.875rem;
  line-height: 1.3;
  color: var(--color-red-800);
}
.courses-header h4 { font-size: 1.25rem; line-height: 1.5; }
.courses-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 1.25rem;
}
.course-card {
  width: 100%;
  padding: 0.625rem;
  display: flex;
}
.course-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: #fff;
  border: 2px solid #e5e5e5;
  border-radius: 4px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.course-inner:hover {
  border-color: var(--color-red-800);
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}
.course-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-amber-400);
  margin-bottom: 0.5rem;
}
.course-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-red-800);
  line-height: 1.3;
  margin-bottom: 1rem;
}
.course-desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #1a1a1a;
  flex-grow: 1;
  margin-bottom: 1.75rem;
}
.course-btn {
  display: block;
  width: 100%;
}
@media (min-width: 600px) {
  .course-card { width: calc(33.3333% - 0.834rem); }
  .courses-header h2 { font-size: 2.25rem; }
}

.coaching-packages-section {
  position: relative;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.packages-header {
  text-align: center;
  padding: 0 0.625rem;
  margin-top: 3.125rem;
  margin-bottom: 0;
}

.packages-header h2 {
  font-size: 1.875rem;
  line-height: 1.3;
  color: var(--color-red-800);
}

.packages-header h4 { font-size: 1.25rem; line-height: 1.5; }

.packages-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 1.25rem;
}

.package-card {
  width: 100%;
  padding: 0.625rem;
  text-align: center;
}

.package-card img {
  width: 400px;
  max-width: 100%;
  margin: 0 auto 1rem;
}

/* Text-based package cards */
.package-card-text {
  display: flex;
}
.pkg-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: #fff;
  border: 2px solid #e5e5e5;
  border-radius: 4px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.package-card-featured .pkg-inner {
  border-color: var(--color-red-800);
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}
.pkg-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-amber-400);
  margin-bottom: 0.5rem;
}
.package-card-featured .pkg-label {
  color: var(--color-red-800);
}
.pkg-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-red-800);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}
.pkg-price {
  font-size: 2.25rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 1.25rem;
  line-height: 1;
}
.pkg-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  text-align: left;
  flex-grow: 1;
}
.pkg-features li {
  padding: 0.45rem 0 0.45rem 1.5rem;
  position: relative;
  font-size: 0.9375rem;
  line-height: 1.5;
  border-top: 1px solid #f0f0f0;
  color: #1a1a1a;
}
.pkg-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-red-800);
  font-weight: 700;
}
.pkg-btn {
  display: block;
  width: 100%;
}

/* Discovery call note */
.packages-discovery-note {
  margin-top: 2.5rem;
  text-align: center;
  padding: 1.25rem 1.5rem;
  background: rgba(0,0,0,0.04);
  border-radius: 4px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.packages-discovery-note p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
}
.packages-discovery-note a {
  color: var(--color-red-800);
  font-weight: 600;
  text-decoration: underline;
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   16. Testimonials Section
   -------------------------------------------------------------------------- */

/* Shared section */
.testimonials-section {
  position: relative;
  color: var(--color-white);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Desktop — hidden on mobile */
.testi-desktop { display: none; }

/* Mobile — shown on mobile */
.testi-mobile  { display: block; }

.testi-inner {
  position: relative;
  padding: 2.5rem 0; /* py-10 */
}

.testi-container {
  position: relative;
  width: 100%;
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 0.625rem; /* px-2.5 */
}

.testi-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 0;
}

/* Desktop column base */
.testi-col {
  flex-shrink: 0;
  padding: 15px;
  overflow: hidden;
}
.testi-col-50 { width: 50%;       }
.testi-col-66 { width: 66.6667%;  }
.testi-col-16 { width: 16.6667%;  }
.testi-col-8  { width: 8.33333%;  }

.testi-basis-full {
  flex-basis: 100%;
  flex-shrink: 0;
}

/* Content inner */
.testi-content-inner {
  overflow: hidden;
}
.testi-content-inner h4 {
  font-size: 1.25rem;
  line-height: 1.75rem;
  text-align: center;
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}
.testi-content-inner p {
  text-align: center;
  margin-bottom: 1rem;
}

/* Image wrap */
.testi-img-wrap {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  overflow: hidden;
}
.testi-img-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.testi-img-inner img {
  max-width: 100%;
  width: 100%;
  vertical-align: baseline;
}

/* Slide animations — initial hidden state */
.testi-slide-left {
  opacity: 0;
  transform: translateX(-2rem);
  transition: opacity 700ms 100ms, transform 700ms 100ms;
}
.testi-slide-right {
  opacity: 0;
  transform: translateX(2rem);
  transition: opacity 700ms 300ms, transform 700ms 300ms;
}
/* Revealed when IntersectionObserver adds .is-visible to the section */
.testi-desktop.is-visible .testi-slide-left,
.testi-desktop.is-visible .testi-slide-right {
  opacity: 1;
  transform: translateX(0);
}

/* Mobile testimonial cards */
.testi-mob-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.testi-mob-card:last-child { border-bottom: none; }

.testi-mob-avatar {
  width: 80px;
  height: 80px;
  object-fit: cover;
  object-position: top;
  border-radius: 50%;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   17. Beta Group Section
   -------------------------------------------------------------------------- */
.beta-group-section {
  position: relative;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.beta-header {
  text-align: center;
  padding: 0 0.625rem;
  margin-bottom: 0;
}

.beta-header h2 {
  font-size: 1.875rem;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.beta-cta {
  width: 100%;
  text-align: center;
  margin-top: 0;
  padding: 0.625rem;
}

.beta-cta h3 {
  font-size: 1.5rem;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

/* --------------------------------------------------------------------------
   18. Blog Section
   -------------------------------------------------------------------------- */
.blog-section {
  position: relative;
  color: var(--color-white);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.blog-header {
  text-align: center;
  padding: 0 0.625rem;
  margin-bottom: 1.875rem;
}

.blog-header h2 {
  font-size: 1.875rem;
  line-height: 1.3;
}

.blog-header h4 { font-size: 1.25rem; line-height: 1.5; }

.blog-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 1.25rem;
}

.blog-card {
  width: 100%;
  padding: 0.625rem;
}

.blog-card a {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  background-color: var(--color-rose-950);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.075);
}

.blog-card img { width: 100%; }

.blog-card-body {
  flex: 1;
  padding: 1.25rem;
}

.blog-card-body h4 {
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--color-white);
  text-align: left;
}

.blog-card-placeholder .blog-card-body {
  background-color: var(--color-rose-950);
  padding: 1.875rem;
}

.blog-more {
  text-align: center;
  margin-top: 1.875rem;
  padding: 0.625rem;
}

/* --------------------------------------------------------------------------
   19. Free Tools Section
   -------------------------------------------------------------------------- */
.free-tools-section {
  position: relative;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.free-tools-header {
  text-align: center;
  padding: 0 0.625rem;
  margin-bottom: 3.125rem;
}

.free-tools-header h2 {
  font-size: 1.875rem;
  line-height: 1.3;
}

.free-tools-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
}

.tool-col {
  width: 100%;
  padding: 0.625rem;
  text-align: center;
}

.tool-col-form {
  text-align: center;
}

.tool-col-form h3 {
  font-size: 1.5rem;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.assessment-form .form-row,
.newsletter-fields > * {
  display: block;
  width: 100%;
  margin-bottom: 1.25rem;
}

.assessment-terms-row {
  margin-bottom: 1.25rem;
}
.assessment-terms-label {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  cursor: pointer;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #1a1a1a;
}
.assessment-terms-label input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
  accent-color: var(--color-red-800);
  cursor: pointer;
}
.assessment-terms-label a {
  color: var(--color-red-800);
  text-decoration: underline;
}
.assessment-terms-label a:hover {
  color: var(--color-amber-400);
}

.assessment-form input,
.newsletter-form input {
  display: block;
  width: 100%;
  padding: 0.656rem 0.625rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 2px;
  background-clip: padding-box;
}

/* --------------------------------------------------------------------------
   20. Newsletter Section
   -------------------------------------------------------------------------- */
.newsletter-section {
  position: relative;
  color: var(--color-white);
}

.newsletter-layout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.newsletter-img {
  width: 100%;
  padding: 0.625rem;
}

.newsletter-form-wrap {
  width: 100%;
  padding: 0.625rem;
  text-align: center;
}

.newsletter-form-wrap h5 {
  font-size: 1.125rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.newsletter-fields {
  display: block;
}

.newsletter-fields input {
  display: block;
  width: 100%;
  padding: 0.656rem 0.625rem;
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 2px;
  background-clip: padding-box;
  color: var(--color-black);
}

/* --------------------------------------------------------------------------
   21. About Page Sections
   -------------------------------------------------------------------------- */

/* About Hero */
.about-hero-section {
  position: relative;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.about-hero-inner {
  padding-top: 2.5rem;
  padding-bottom: 0;
}

.about-hero-section h1 { font-size: 2.25rem; line-height: 1.2; }
.about-hero-section h4 { font-size: 1.125rem; line-height: 1.6; margin-bottom: 1rem; font-weight: 400; }

/* About Image Banner */
.about-image-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* About Journey */
.about-journey-section {
  position: relative;
  color: var(--color-white);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.about-journey-section h2 { font-size: 1.875rem; line-height: 1.3; margin-bottom: 0.75rem; }
.about-journey-section h5 { font-size: 1rem; line-height: 1.5; margin-bottom: 0.75rem; }
.about-journey-section ul { margin: 1.25rem 0; }
.about-journey-section ul li { margin-bottom: 0.5rem; text-align: left; }

.about-trust-row { margin-top: 2.5rem; }

/* Mobile-only second image (shown between rows on small screens) */
.about-mobile-img { display: block; padding: 0.625rem; }
.about-mobile-img img { width: 100%; }

/* Desktop-only col image (hidden on mobile) */
.about-desktop-img { display: none; }

/* About Help */
.about-help-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.section-overlay-white-30 { background-color: rgba(255, 255, 255, 0.3); }
.section-overlay-black-20  { background-color: rgba(0, 0, 0, 0.2); }

.about-help-section h2 { font-size: 1.875rem; line-height: 1.3; margin-bottom: 0.75rem; }
.about-commitment-row { margin-top: 2.5rem; }

/* About page — mobile fixes */
.about-hero-section h1 { font-size: 1.75rem; }
.about-hero-section h4 { font-size: 1rem; }

/* Cap the hero portrait image height on mobile */
.about-hero-section .col-img img {
  max-height: 420px;
  width: 100%;
  object-fit: cover;
  object-position: top;
}

/* About page responsive */
@media (min-width: 768px) {
  .about-hero-inner { padding-top: 3.125rem; padding-bottom: 0; }
  .about-hero-section h1 { font-size: 3rem; }
  .about-hero-section h4 { font-size: 1.5rem; }

  /* Reset image cap on desktop — let it flow naturally */
  .about-hero-section .col-img img {
    max-height: none;
    object-fit: unset;
    object-position: unset;
  }

  .about-journey-section h2 { font-size: 2.25rem; }
  .about-help-section h2    { font-size: 2.25rem; }

  .about-mobile-img    { display: none; }
  .about-desktop-img   { display: block; }

  .about-trust-row,
  .about-commitment-row { margin-top: 0; }
}

/* --------------------------------------------------------------------------
   22. Contact Page Sections
   -------------------------------------------------------------------------- */

/* ── Contact Page Hero ──────────────────────────────────────────────────── */

/* Shared section base — background set via wp_head inline style */
.contact-hero-section {
  position: relative;
  color: var(--color-white);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.contact-hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 0;
}
.contact-hero-section > * {
  position: relative;
  z-index: 1;
}

/* Mobile shows the mobile version; desktop version hidden until ≥768px */
.contact-hero-desktop { display: none; }
.contact-hero-mobile  { display: block; }

/* py-10 (2.5rem) on mobile — source: py-10 md:py-[100px] */
.contact-hero-inner {
  position: relative;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

/* max-w-[1340px] mx-auto px-2.5 on mobile */
.contact-hero-container {
  position: relative;
  max-width: 1340px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}

/* flex flex-wrap items-center justify-start */
.contact-hero-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}

/* w-full text-center p-2.5 on mobile; animate-slide-up triggers on the col */
.contact-hero-col {
  width: 100%;
  text-align: center;
  padding: 0.625rem;
}

/* overflow-hidden inner wrapper */
.contact-hero-content-inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
  text-align: center;
}

/* Typography */
.contact-hero-content-inner h2 {
  font-size: 2.25rem;
  line-height: 1.3;
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.contact-hero-content-inner p   { margin-bottom: 1rem; font-size: 1.25rem; line-height: 1.7; }
.contact-hero-content-inner .btn { margin-top: 0.5rem; }

/* ── Desktop (≥768px) ────────────────────────────────────────────────────── */
@media (min-width: 768px) {
  /* Swap visible version */
  .contact-hero-desktop { display: block; }
  .contact-hero-mobile  { display: none; }

  /* py-[100px] md:px-10 */
  .contact-hero-inner {
    padding-top: 6.25rem;
    padding-bottom: 6.25rem;
  }

  .contact-hero-container {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  /* w-6/12 (50%) text-start p-[15px] on desktop */
  .contact-hero-col {
    width: 50%;
    text-align: left;
    padding: 0.9375rem;
  }

  .contact-hero-content-inner {
    text-align: left;
  }

  .contact-hero-content-inner h2 { font-size: 2.75rem; }
}

/* --------------------------------------------------------------------------
   23. Site Footer
   -------------------------------------------------------------------------- */
.site-footer {
  position: relative;
  background-color: var(--color-black);
  color: var(--color-white);
  font-size: 1rem;
  line-height: 1.6;
}

.footer-content {
  padding: 1.25rem 0;
}

.footer-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
  gap: 0.625rem;
}

.copyright { flex-shrink: 0; margin: 0.625rem 0; }

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

.footer-nav-links,
.footer-links ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0;
}

.footer-nav-links li,
.footer-links ul li { list-style: none; }

.footer-nav-links a,
.footer-links ul a {
  display: inline-block;
  color: var(--color-white);
  padding: 0.25rem 0.625rem;
  transition: color var(--transition-base);
}

.footer-nav-links a:hover,
.footer-links ul a:hover { color: var(--color-amber-400); }

.footer-aside {
  font-size: 0.875rem;
  line-height: 1.4;
  text-align: center;
  padding: 0.5rem 0 1rem;
}

.footer-aside-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.footer-aside a { color: var(--color-black); }

.powered-by a { color: var(--color-neutral-400); }

/* --------------------------------------------------------------------------
   22. Inner Page Layout (sidebar pages)
   -------------------------------------------------------------------------- */
.page-wrapper {
  background-color: var(--color-white);
  color: var(--color-black);
}

.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2.5rem 0.625rem;
  gap: 2rem;
}

.content-area {
  flex: 1 1 300px;
  min-width: 0;
}

.widget-area {
  flex: 0 0 280px;
  min-width: 0;
}

/* Page header */
.page-header,
.archive-header {
  margin-bottom: 2rem;
}

.page-title {
  font-size: 2rem;
  line-height: 1.2;
  font-family: var(--font-heading);
  color: var(--color-red-800);
}

/* Blog archive — full width, no sidebar */
.blog-archive-wrap {
  max-width: 1340px;
  margin: 0 auto;
  padding: 2.5rem 0.625rem;
}

/* 1 col mobile → 2 col tablet → 3 col desktop */
.blog-archive-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 600px) {
  .blog-archive-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 769px) {
  .blog-archive-wrap { padding: 2.5rem; }
  .blog-archive-grid { grid-template-columns: repeat(3, 1fr); }
}

.blog-card {
  overflow: hidden;
  background-color: var(--color-black);
  color: var(--color-white);
}

.blog-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.blog-card-link:hover .blog-card-title h2 {
  color: var(--color-amber-400);
}

.blog-card-image img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.blog-card-title {
  padding: 0.875rem 1rem;
}

.blog-card-title h2 {
  font-size: 1.0625rem;
  line-height: 1.4;
  font-family: var(--font-heading);
  margin: 0;
  transition: color 0.2s;
}

.entry-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.entry-title a { color: var(--color-white); }
.entry-title a:hover { color: var(--color-amber-400); }

.entry-meta {
  font-size: 0.875rem;
  color: var(--color-neutral-400);
  margin-bottom: 0.75rem;
}

.entry-summary { flex: 1; margin-bottom: 1rem; }

/* Single post */
.single-post { max-width: 100%; }

.post-featured-image { margin-bottom: 1.5rem; }
.post-featured-image img { width: 100%; }

.entry-content {
  font-size: 1.0625rem;
  line-height: 1.7;
}

.entry-content h2, .entry-content h3, .entry-content h4 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.entry-content img { margin: 1rem 0; }
.entry-content ul, .entry-content ol { margin: 1rem 0; }

.entry-footer {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.1);
  font-size: 0.875rem;
  color: var(--color-neutral-400);
}

/* Post navigation */
.post-navigation, .posts-navigation {
  margin: 2rem 0;
  padding: 1rem 0;
  border-top: 1px solid rgba(0,0,0,0.1);
}

/* 404 */
.error-404 { padding: 2rem 0; }
.error-search { margin-top: 1.5rem; }

/* Search Form */
.search-form {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.search-field {
  flex: 1 1 200px;
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: 2px;
  font-size: 1rem;
}

/* Widgets */
.widget { margin-bottom: 2rem; }
.widget-title {
  font-size: 1.125rem;
  font-family: var(--font-heading);
  margin-bottom: 0.75rem;
  color: var(--color-red-800);
}

/* --------------------------------------------------------------------------
   23. Animations
   -------------------------------------------------------------------------- */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.animate-slide-up {
  animation: slideUp 0.8s ease-out both;
}

.animate-slide-down {
  animation: slideDown 0.5s ease-out both;
}

/* JS-controlled reveal */
.js-reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   24a. Responsive — Small tablet (600px+)
   -------------------------------------------------------------------------- */
@media (min-width: 600px) {

  /* Packages — 3-col on tablet and up */
  .package-card { width: calc(33.3333% - 0.834rem); }

  /* Blog section cards — 2-col on tablet */
  .blog-card { width: calc(50% - 0.625rem); padding: 0; }

  /* Newsletter — side-by-side earlier */
  .newsletter-img { width: 30%; }
  .newsletter-form-wrap { width: 65%; }
}

/* --------------------------------------------------------------------------
   24. Responsive — Tablet / Desktop (md: 768px+)
   -------------------------------------------------------------------------- */
@media (min-width: 768px) {

  /* Base */
  body { font-size: 1.125rem; line-height: 1.8; }

  /* Section inner */
  .section-inner {
    padding: var(--section-py-lg) 2.5rem;
  }

  /* Header */
  .navbar-inner { padding: 0 2.5rem; gap: 0.625rem; }
  .site-logo img { width: 300px; }

  .desktop-menu { display: flex; }
  .desktop-menu .nav-link,
  .desktop-menu ul a { font-size: 1.125rem; margin: 0 0.625rem; }

  .login-btn-wrap { display: block; }
  .mobile-menu-toggle { display: none; }

  /* Hero */
  .hero-desktop { display: block; }
  .hero-desktop .section-inner {
    padding-top: 9.375rem; /* 150px */
    padding-bottom: 9.375rem;
  }

  .hero-content {
    width: 50%;
    text-align: left;
    padding: 0.9375rem;
  }

  .hero-content h1 { font-size: 3rem; line-height: 1.2; }
  .hero-content h4 { font-size: 1.5rem; line-height: 1.4; }

  .hero-mobile { display: none; }

  /* Two-column layout */
  .col-img  { width: 41.6667%; }
  .col-text { width: 58.3333%; padding: 0.9375rem; }
  .col-order-first { order: 0; }
  .two-col-layout { gap: 0; }

  /* Statistics */
  .stats-inner { padding: 1.25rem 2.5rem; }
  .stats-tagline h4 { font-size: 1.5rem; }
  .stats-headline h2 { font-size: 2.25rem; }
  .stats-subheadline h4 { font-size: 1.5rem; }

  /* Course Intro */
  .course-intro-inner { margin-bottom: 3.75rem; }
  .course-intro-inner h2 { font-size: 2.25rem; }

  /* Course Details */
  .course-details-section .col-text h2 { font-size: 2.25rem; }
  .course-details-section .col-text h3 { font-size: 1.875rem; }

  /* Instructor */
  .instructor-section .col-text h1 { font-size: 3rem; }

  /* Coaching call */
  .coaching-call-content { max-width: 60%; text-align: left; }
  .coaching-call-content h4 { font-size: 1.5rem; }
  .coaching-call-content h3 { font-size: 1.875rem; }
  .coaching-call-content h2 { font-size: 2.25rem; }

  /* Packages */
  .package-card { width: calc(33.3333% - 0.834rem); }
  .packages-header h2 { font-size: 2.25rem; }

  /* Testimonials */
  .testi-desktop { display: block; }
  .testi-mobile  { display: none;  }
  .testi-inner   { padding: 100px 0; }
  .testi-container { padding: 0 2.5rem; }
  .testi-row     { margin: 0 -15px; }
  .testi-content-inner h4 {
    font-size: 1.5rem;
    line-height: 2.1rem;
    text-align: left;
  }
  .testi-content-inner p { text-align: left; }

  /* Beta Group */
  .beta-header h2 { font-size: 2.25rem; }
  .beta-cta { width: 66.6667%; margin: 3.125rem auto 0; }
  .beta-cta h3 { font-size: 1.875rem; }

  /* Blog */
  .blog-header h2 { font-size: 2.25rem; }
  .blog-header h4 { font-size: 1.5rem; }
  .blog-card { width: calc(33.3333% - 0.834rem); padding: 0; }
  .blog-card-body { padding: 1.875rem; }
  .blog-card-body h4 { font-size: 1.5rem; }

  /* Free Tools */
  .free-tools-header h2 { font-size: 2.25rem; }
  .tool-col { width: 33.3333%; }
  .tool-col-form { width: 66.6667%; text-align: left; }
  .tool-col-form h3 { font-size: 1.875rem; }

  /* Newsletter */
  .newsletter-img { width: 25%; }
  .newsletter-form-wrap { width: 66.6667%; text-align: left; }
  .newsletter-fields {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .newsletter-fields input {
    flex: 1;
    margin-bottom: 0;
  }
  .newsletter-fields .btn {
    flex: none;
    width: auto;
    margin-bottom: 0;
  }

  /* Footer */
  .footer-inner { flex-direction: row; padding: 0 2.5rem; }
  .copyright { margin: 0 0.625rem 0 0; }
  .footer-links { text-align: right; }
  .footer-nav-links, .footer-links ul { justify-content: flex-end; }
  .footer-aside { text-align: right; }
  .footer-aside-inner { padding: 0 2.5rem; }

  /* Content wrapper */
  .content-wrapper { padding: 2.5rem; }
}

/* --------------------------------------------------------------------------
   25. Responsive — Large screens
   -------------------------------------------------------------------------- */
@media (min-width: 1280px) {
  .hero-content h1 { font-size: 3.75rem; }
  .hero-content h4 { font-size: 1.75rem; }
}

/* --------------------------------------------------------------------------
   26. Responsive — Small phones (max 480px)
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
  /* Tighten hero mobile text */
  .hero-mobile-content h1 { font-size: 1.75rem; }
  .hero-mobile-content h4 { font-size: 1rem; }

  /* Coaching call full width on small phones */
  .coaching-call-content { max-width: 100%; }

  /* Reduce section vertical padding slightly */
  .section-inner { padding-top: 2rem; padding-bottom: 2rem; }
}

/* --------------------------------------------------------------------------
   27. Legal Pages (Terms of Use & Refund Policy)
   -------------------------------------------------------------------------- */

/* Hero */
.legal-hero-section {
  position: relative;
  background: url('../images/hero-bg.jpg') center center / cover no-repeat;
  background-color: var(--color-rose-950);
}
.legal-hero-inner {
  position: relative;
  padding: 4rem 1.25rem;
  text-align: center;
}
.legal-hero-container {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
}
.legal-hero-title {
  color: #fff;
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.legal-hero-sub {
  color: var(--color-amber-400);
  font-size: 1rem;
  font-style: italic;
  margin: 0;
}

@media (min-width: 768px) {
  .legal-hero-inner  { padding: 5rem 2.5rem; }
  .legal-hero-title  { font-size: 3rem; }
  .legal-hero-sub    { font-size: 1.125rem; }
}

/* Body sections */
.legal-section {
  background: #fff;
  padding: 3rem 1.25rem;
}
.legal-section-alt {
  background: #f9f9f9;
}
.legal-container {
  max-width: 860px;
  margin: 0 auto;
}
.legal-section-title {
  font-size: 1.75rem;
  color: var(--color-red-800);
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.legal-tagline {
  color: var(--color-amber-400);
  font-style: italic;
  margin-bottom: 2rem;
  font-size: 0.9375rem;
}
.legal-tagline a { color: var(--color-amber-400); }

/* Category badge */
.legal-badge {
  display: inline-block;
  background: var(--color-amber-400);
  color: #000;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  margin: 2rem 0 1.25rem;
}

/* Content block */
.legal-block {
  margin-bottom: 2rem;
}
.legal-block-title {
  font-size: 1.125rem;
  color: var(--color-red-800);
  margin-bottom: 0.25rem;
}
.legal-block-sub {
  color: var(--color-amber-400);
  font-style: italic;
  font-size: 0.9375rem;
  margin-bottom: 0.75rem;
}
.legal-rule {
  border: none;
  border-top: 1px solid var(--color-amber-400);
  margin: 0.75rem 0 1rem;
}
.legal-block p {
  margin-bottom: 0.875rem;
  line-height: 1.75;
  font-size: 0.9375rem;
  color: #1a1a1a;
}
.legal-cta-line {
  color: var(--color-red-800) !important;
  font-weight: 600;
}
.legal-cta-line a {
  color: var(--color-red-800);
  text-decoration: underline;
}
.legal-list {
  list-style: disc;
  padding-left: 1.5rem;
  margin: 0.75rem 0 1rem;
}
.legal-list li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
  font-size: 0.9375rem;
  color: #1a1a1a;
}
.legal-list a { color: var(--color-red-800); text-decoration: underline; }
.legal-caps {
  font-size: 0.875rem !important;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1.8 !important;
}
.legal-block a {
  color: var(--color-red-800);
  text-decoration: underline;
}

@media (min-width: 768px) {
  .legal-section      { padding: 4.5rem 2.5rem; }
  .legal-section-title { font-size: 2.25rem; }
  .legal-block-title  { font-size: 1.25rem; }
  .legal-block p,
  .legal-list li      { font-size: 1rem; }
}
