@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap");

:root {
  /* Light Mode Colors */
  --navy-dark: #0a1628;
  --navy: #1b2b44;
  --navy-light: #2c3e5a;
  --gold: #d4af37;
  --gold-light: #f4d56d;
  --gold-dark: #b8941f;
  --green: #22c55e;
  --green-dark: #15803d;
  --blue: #3B82F6;
  --cream: #faf9f6;
  --white: #ffffff;
  --gray: #64748b;
  --gray-light: #e2e8f0;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;

  /* Light Mode Aliases */
  --bg-primary: var(--cream);
  --bg-secondary: var(--white);
  --text-primary: var(--navy);
  --text-dark: var(--navy);
  --text-secondary: var(--gray);
  --border-color: var(--gray-light);
}

:root.dark-mode {
  --bg-primary: #121212;
  --bg-secondary: #1a1f2e;
  --text-primary: #e8eaed;
  --text-dark: #e8eaed;
  --text-secondary: #b0b3b8;
  --border-color: #2a2f3f;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-primary);
  background: var(--bg-primary);
  line-height: 1.6;
  overflow-x: hidden;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(250, 249, 246, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 0.5rem;
  transition: all 0.3s ease;
}

nav.scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

nav.scrolled .logo-icon {
  height: 50px;
  width: 50px;
}

:root.dark-mode nav {
  background: rgb(44, 49, 66);
  border-bottom-color: rgba(212, 175, 55, 0.1);
}

nav .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.logo-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgb(217, 181, 64));
  border-radius: 12px;
  transition: all 0.3s ease;
}

.logo-text {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(
    135deg,
    var(--navy) 0%,
    var(--navy-light) 50%,
    var(--gold) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-name {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
}

.logo-name .tutor {
  color: var(--gold);
}

:root.dark-mode .logo-text {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

nav ul {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

@media (max-width: 768px) {
  nav .container {
    padding: 0 1rem;
  }
  
  .logo-icon {
    width: 50px;
    height: 50px;
  }
  
  .logo-name {
    font-size: 1.2rem;
  }
}

nav .nav-link {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  position: relative;
}

nav .nav-link:after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

nav .nav-link:hover:after {
  width: 100%;
}

/* Hamburger Menu */
.hamburger-menu {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  gap: 0.4rem;
  z-index: 1001;
}

.hamburger-menu span {
  width: 28px;
  height: 3px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
  display: block;
}

.hamburger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Navigation */
.nav-mobile {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-secondary);
  flex-direction: column;
  padding: 1.25rem;
  gap: 0.75rem;
  z-index: 999;
  overflow-y: auto;
  box-shadow: inset 0 4px 6px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(30px);
}

.nav-mobile.active {
  display: flex !important;
}

.nav-mobile a,
.nav-mobile button {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  padding: 0.75rem 0.9rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  background: var(--border-color);
  font-size: 0.9rem;
}

.nav-mobile a:hover,
.nav-mobile button:hover {
  background: var(--gold);
  color: var(--navy);
}

.nav-mobile .cta-button {
  background: var(--navy);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  text-align: center;
  margin-top: 0.75rem;
}

.nav-mobile .cta-button:hover {
  background: var(--gold);
  color: var(--navy);
}

/* Mobile Dark Mode Toggle */
.dark-mode-toggle-mobile {
  background: var(--border-color);
  border: 2px solid var(--gold);
  color: var(--gold);
  width: 100%;
  padding: 0.65rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  margin-top: 0.75rem;
}

.dark-mode-toggle-mobile:hover {
  background: var(--gold);
  color: var(--navy);
}

/* Dark Mode Mobile Navigation */
:root.dark-mode .nav-mobile {
  background: var(--bg-secondary);
}

:root.dark-mode .nav-mobile a,
:root.dark-mode .nav-mobile button {
  color: var(--text-primary);
  background: rgba(212, 175, 55, 0.15);
}


:root.dark-mode .nav-mobile a:hover,
:root.dark-mode .nav-mobile button:hover {
  background: var(--gold);
  color: var(--navy);
}

.nav-mobile .cta-button:hover {
  background: var(--gold);
  color: var(--navy);
}

.cta-button {
  background: var(--navy);
  color: var(--white);
  padding: 0.75rem 1.75rem;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--navy);
  text-decoration: none;
}

:root.dark-mode .cta-button {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.cta-button:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

:root.dark-mode .cta-button:hover {
  background: transparent;
  color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

/* Dark Mode Toggle */
.dark-mode-toggle {
  background: none;
  border: 2px solid var(--gold);
  color: var(--gold);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  margin-left: 1rem;
}

.dark-mode-toggle:hover {
  background: var(--gold);
  color: var(--navy);
  transform: scale(1.1);
}

:root.dark-mode .dark-mode-toggle {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

:root.dark-mode .dark-mode-toggle:hover {
  background: var(--gold-light);
  color: var(--navy-dark);
}

.dark-mode-toggle-mobile {
  margin-top: -5px;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(
    135deg,
    var(--navy-dark) 0%,
    var(--navy) 50%,
    var(--navy-light) 100%
  );
  position: relative;
  overflow: hidden;
  padding: 8rem 2rem 6rem;
  transition: background 0.3s ease;
}

:root.dark-mode .hero {
  background: linear-gradient(135deg, #1a1f2e 0%, #242a3e 50%, #2a3148 100%);
}

.hero:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(212, 175, 55, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(212, 175, 55, 0.08) 0%,
      transparent 50%
    );
}

.hero .container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-content .highlight {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  padding: 1rem 2.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-block;
  border: 2px solid var(--gold);
  font-family: "Poppins", sans-serif;
}

.btn-primary:hover {
  background: transparent;
  color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 1rem 2.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-block;
  border: 2px solid rgba(255, 255, 255, 0.3);
  font-family: "Poppins", sans-serif;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 2rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 20px 50px rgba(10, 22, 40, 0.08);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
  font-family: "Poppins", sans-serif;
}

.stat-label {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  margin-top: 0.5rem;
}

/* Trust Bar */
.trust-bar {
  background: var(--bg-secondary);
  padding: 3rem 2rem;
  border-bottom: 1px solid var(--border-color);
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease;
}

.trust-bar .container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
}

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

.trust-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.trust-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  font-family: "Poppins", sans-serif;
}

.trust-text {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Services Section */
.services {
  padding: 6rem 2rem;
  background: var(--bg-primary);
  transition: background-color 0.3s ease;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.section-description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.service-card {
  background: var(--bg-secondary);
  border: 2px solid var(--border-color);
  padding: 3rem;
  border-radius: 12px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

:root.dark-mode .service-card {
  background: #1a1f2e;
  border-color: #2a2f3f;
}

.service-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

/* :root.dark-mode .service-card:before {
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
} */

.service-card:hover:before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
  box-shadow: 0 20px 50px rgba(10, 22, 40, 0.1);
}

:root.dark-mode .service-card:hover {
  /* box-shadow: 0 20px 50px rgba(212, 175, 55, 0.15); */
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

:root.dark-mode .service-icon {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.service-card h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.service-card p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.service-features {
  list-style: none;
  margin-bottom: 2rem;
}

.service-features li {
  padding: 0.75rem 0;
  color: var(--text-primary);
  display: flex;
  align-items: start;
  gap: 0.75rem;
}

.service-features li:before {
  content: "✓";
  color: var(--gold);
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.service-link {
  color: var(--text-primary);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.service-link:hover {
  color: var(--gold);
  gap: 1rem;
}

/* Results Section */
.results {
  padding: 6rem 2rem;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s ease;
}

:root.dark-mode .results {
  background: linear-gradient(135deg, #1a1f2e 0%, #242a3e 100%);
}

.results:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      circle at 30% 20%,
      rgba(212, 175, 55, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 80%,
      rgba(212, 175, 55, 0.06) 0%,
      transparent 50%
    );
}

.results .container {
  position: relative;
  z-index: 1;
}

.results .section-label {
  color: var(--gold-light);
}

.results .section-title {
  color: var(--white);
}

.results .section-description {
  color: rgba(255, 255, 255, 0.8);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.result-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 2.5rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.result-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 20px 50px rgba(10, 22, 40, 0.08);
}

.result-metric {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--gold);
  font-family: "Poppins", sans-serif;
  margin-bottom: 0.5rem;
}

.result-description {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
}

/* Testimonials */
.testimonials {
  padding: 6rem 2rem;
  background: var(--bg-primary);
  transition: background-color 0.3s ease;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--bg-secondary);
  padding: 3rem;
  border-radius: 12px;
  border: 2px solid var(--border-color);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
 box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

:root.dark-mode .testimonial-card:hover {
   transform: translateY(-4px);
  border-color: var(--gold);
 box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Pain Point Card */
.pain-point {
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.pain-point:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.pain-point:hover:before {
  transform: scaleX(1);
}

.pain-point:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(10, 22, 40, 0.1);
}

/* Benefit Card */
.benefit-card {
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}



/* Module Card */
.module {
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Testimonial Card */
.testimonial {
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.testimonial:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.testimonial:hover:before {
  transform: scaleX(1);
}

/* Bonus Card */
.bonus-card {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.bonus-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(10, 22, 40, 0.1);
}

/* FAQ Item Card */
.faq-item {
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.faq-item:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
 box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Timeline Item Card */
.timeline-content {
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.timeline-content:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
background: linear-gradient(90deg, var(--gold-light), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.timeline-content:hover:before {
  transform: scaleX(1);
}

.timeline-content:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(10, 22, 40, 0.1);
}

/* Skill Card */
.skill-card {
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.skill-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.skill-card:hover:before {
  transform: scaleX(1);
}

.skill-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(212, 175, 55, 0.6);
  /* box-shadow: 0 20px 50px rgba(212, 175, 55, 0.15); */
}

/* Platform Card */
.platform-card {
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.platform-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.platform-card:hover:before {
  transform: scaleX(1);
}

.platform-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(10, 22, 40, 0.1);
}

/* Problem Card */
.management-problems .problem-card,
.tutoring-problems .problem-card {
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.management-problems .problem-card:hover,
.tutoring-problems .problem-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(10, 22, 40, 0.1);
}

/* Step Content Card */
.step-content {
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.step-content:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.step-content:hover:before {
  transform: scaleX(1);
}

.step-content:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(10, 22, 40, 0.1);
}

/* Included Card */
.audit-included-card {
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.audit-included-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
 background: linear-gradient(90deg, var(--gold-light), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.audit-included-card:hover:before {
  transform: scaleX(1);
}

.audit-included-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(10, 22, 40, 0.1);
}

.stars {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.testimonial-text {
  color: var(--text-primary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--gold));
}

:root.dark-mode .author-avatar {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.author-info h4 {
  color: var(--text-primary);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.author-info p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
}

:root.dark-mode .cta-section {
  background: linear-gradient(135deg, #1a1f2e 0%, #242a3e 100%);
}

.cta-section:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.15) 0%,
    transparent 70%
  );
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--white);
  margin-bottom: 1.5rem;
}

.cta-section p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo img {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgb(217, 181, 64));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}

.nav-logo-text span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.9;
  transition:
    opacity 0.2s,
    color 0.2s;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--gold);
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-dark);
  padding: 0.6rem 1.25rem;
  border-radius: 6px;
  font-weight: 600;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
  color: var(--navy-dark);
  opacity: 1;
}

.nav-mobile {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-mobile svg {
  width: 28px;
  height: 28px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
}

footer {
  background: var(--navy-dark);
  padding: 3rem 2rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer {
  background: var(--navy-dark);
  padding: 3rem 2rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 280px;
}

.footer-column h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.footer-column a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.35rem 0;
  transition: color 0.2s;
}

.footer-column a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--gold);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet - Medium devices (768px - 1024px) */
@media (max-width: 1024px) {
  nav .container {
    padding: 0 1.5rem;
  }

  .logo-icon {
    width: 50px;
    height: 50px;
  }

  .logo-text {
    font-size: 1.2rem;
  }

  nav ul {
    gap: 1.5rem;
  }

  nav .nav-link {
    font-size: 0.85rem;
  }

  .hero .container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-content h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .stat-card {
    padding: 1.5rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

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

  .service-card {
    padding: 2rem;
  }

  .trust-bar .container {
    gap: 2rem;
  }

  .trust-item {
    flex: 1;
    min-width: 150px;
  }

  .footer-main {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
  }
}

/* Mobile - Small devices (480px - 768px) */
@media (max-width: 768px) {
  /* Navigation */
  nav .container {
    padding: 0 1rem;
  }

  nav ul {
    display: none;
  }

  .hamburger-menu {
    display: flex;
  }

  nav .cta-button {
    display: none;
  }

  .dark-mode-toggle {
    margin-left: 0.5rem;
  }

  .logo {
    flex: 1;
  }

  .logo-icon {
    width: 45px;
    height: 45px;
  }

  .logo-text {
    font-size: 1rem;
  }

  .logo-name {
    font-size: 1rem;
  }

  /* Hero Section */
  .hero {
    min-height: auto;
    padding: 7rem 1.5rem 3rem;
  }

  .hero-content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .hero-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
    padding: 1rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
  }

  .stat-card {
    padding: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.85rem;
  }

  /* Trust Bar */
  .trust-bar .container {
    flex-direction: column;
    gap: 1.5rem;
  }

  .trust-item {
    width: 100%;
    flex-direction: row;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }

  .trust-icon {
    font-size: 2rem;
    margin-bottom: 0;
  }

  .trust-text {
    font-size: 0.8rem;
  }

  /* Services Section */
  .services {
    padding: 3rem 1.5rem;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .section-description {
    font-size: 1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .service-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .service-card h3 {
    font-size: 1.35rem;
  }

  .service-features li {
    font-size: 0.9rem;
  }

  /* Results Section */
  .results {
    padding: 3rem 1.5rem;
  }

  .results-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .result-metric {
    font-size: 2.5rem;
  }

  .result-description {
    font-size: 1rem;
  }

  /* Testimonials Section */
  .testimonials {
    padding: 3rem 1.5rem;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .testimonial-text {
    font-size: 0.95rem;
  }

  .author-avatar {
    width: 40px;
    height: 40px;
  }

  .author-info h4 {
    font-size: 0.9rem;
  }

  .author-info p {
    font-size: 0.8rem;
  }

  /* CTA Section */
  .cta-section {
    padding: 3rem 1.5rem;
  }

  .cta-section h2 {
    font-size: 1.75rem;
  }

  .cta-section p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .cta-section .btn-primary {
    width: 100%;
  }

  /* Footer */
  .footer-main {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-brand p {
    font-size: 0.85rem;
  }

  .footer-column h4 {
    font-size: 0.85rem;
  }

  .footer-column a {
    font-size: 0.85rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-bottom p {
    font-size: 0.8rem;
  }

  .footer-legal {
    gap: 1rem;
  }

  .footer-legal a {
    font-size: 0.8rem;
  }

  /* Blog Responsive */
  .blog-hero {
    padding: 5rem 1.5rem 3rem;
  }

  .blog-hero h1 {
    font-size: 1.75rem;
  }

  .blog-hero p {
    font-size: 0.95rem;
  }

  .search-form {
    flex-direction: column;
  }

  .search-input {
    padding: 0.75rem 1rem;
  }

  .search-btn {
    padding: 0.75rem 1rem;
  }

  .blog-container {
    grid-template-columns: 1fr;
    padding: 2rem 1.5rem;
    gap: 2rem;
  }

  .posts-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .featured-post {
    grid-template-columns: 1fr;
  }

  .featured-image {
    min-height: 150px;
  }

  .featured-content {
    padding: 1.5rem;
  }

  .featured-content h2 {
    font-size: 1.25rem;
  }

  .sidebar {
    grid-template-columns: 1fr !important;
  }

  .sidebar-cta {
    grid-column: span 1 !important;
  }

  .sidebar-section {
    padding: 1.25rem;
  }

  .post-card h3 {
    font-size: 0.95rem;
  }

  .post-card p {
    font-size: 0.8rem;
  }
}

/* Extra Small - Very small devices (< 480px) */
@media (max-width: 480px) {
  body {
    font-size: 14px;
  }

  nav .container {
    padding: 0 0.75rem;
  }

  .logo-icon {
    width: 40px;
    height: 40px;
  }

  .logo-text {
    font-size: 0.9rem;
  }

  .logo-name {
    font-size: 0.9rem;
  }

  .dark-mode-toggle {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .container {
    padding: 0 1rem;
  }

  .hero {
    min-height: auto;
    padding: 6.5rem 1rem 2rem;
  }

  .hero-content h1 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
  }

  .hero-content p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }

  .hero-buttons {
    gap: 0.75rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 0.85rem;
    font-size: 0.9rem;
  }

  .stat-number {
    font-size: 1.75rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .trust-bar .container {
    padding: 2rem 1rem;
  }

  .trust-number {
    font-size: 1.75rem;
  }

  .trust-text {
    font-size: 0.75rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .section-description {
    font-size: 0.9rem;
  }

  .service-card {
    padding: 1.25rem;
  }

  .service-card h3 {
    font-size: 1.1rem;
  }

  .service-card p {
    font-size: 0.9rem;
  }

  .result-metric {
    font-size: 2rem;
  }

  .result-description {
    font-size: 0.9rem;
  }

  .testimonial-card {
    padding: 1.25rem;
  }

  .testimonial-text {
    font-size: 0.9rem;
  }

  .cta-section h2 {
    font-size: 1.5rem;
  }

  .cta-section p {
    font-size: 0.9rem;
  }

  .blog-hero h1 {
    font-size: 1.5rem;
  }

  .blog-container {
    padding: 1.5rem 1rem;
  }
}

:root.dark-mode footer {
  background: var(--bg-secondary);
  border-top-color: var(--border-color);
}

:root.dark-mode .footer {
  background: var(--bg-secondary);
  border-top-color: var(--border-color);
}

:root.dark-mode .footer-brand p {
  color: var(--text-secondary);
}

:root.dark-mode .footer-column h4 {
  color: var(--text-primary);
}

:root.dark-mode .footer-column a {
  color: var(--text-secondary);
}

:root.dark-mode .footer-column a:hover {
  color: var(--gold);
}

:root.dark-mode .footer-bottom {
  border-top-color: var(--border-color);
}

:root.dark-mode .footer-bottom p {
  color: var(--text-secondary);
}

:root.dark-mode .footer-legal a {
  color: var(--text-secondary);
}

:root.dark-mode .footer-legal a:hover {
  color: var(--gold);
}

.hero-cta-group .btn-primary:hover,
.cta-button-group .btn-primary:hover {
  background: transparent;
  color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
  border: 2px solid var(--gold);
}

.cta-section .cta-container{
    position: relative;
    z-index: 1;
}

/* ===== BLOG PAGE STYLES ===== */

/* Blog Hero */
.blog-hero {
  background: var(--bg-secondary);
  padding: 10rem 2rem;
  padding-bottom: 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.blog-hero-content {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.blog-hero h1 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.blog-hero h1 .highlight {
  color: var(--gold);
}

.blog-hero p {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 2rem;
}

/* Search Bar */
.search-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.search-input {
  flex: 1;
  padding: 1rem 1.25rem;
  border: none;
  font-size: 1rem;
  font-family: inherit;
  color: var(--text-primary);
}

.search-input:focus {
  outline: none;
}

.search-input::placeholder {
  color: var(--text-secondary);
}

.search-btn {
  background: var(--navy-dark);
  color: var(--white);
  border: none;
  padding: 1rem 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-family: inherit;
  transition: background 0.2s;
}

.search-btn:hover {
  background: var(--navy);
}

.search-btn svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
}

/* Blog Container */
.blog-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

/* Featured Post */
.featured-post {
  background: var(--bg-secondary);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 2px solid var(--border-color);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.featured-post:hover {
  border-color: var(--gold);
  box-shadow: 0 15px 50px rgba(10, 22, 40, 0.1);
}

.featured-image {
  height: 100%;
  min-height: 300px;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 80%;
}

.featured-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}

.featured-image-placeholder {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.featured-image-placeholder img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  background: linear-gradient(135deg, rgb(217, 181, 64)); border-radius: 12px;
}

.featured-image-placeholder svg {
  width: 40px;
  height: 40px;
  fill: var(--gold);
}

.featured-snippet-preview {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 22, 40, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  border-radius: 12px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1;
}

.featured-snippet-preview p {
  color: var(--white);
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: center;
}

.featured-post:hover .featured-snippet-preview {
  opacity: 1;
  visibility: visible;
}

.featured-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.post-category {
  background: rgba(212, 175, 55, 0.15);
  color: var(--navy-dark);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-weight: 600;
}

.post-date {
  color: var(--text-secondary);
}

.post-read-time {
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.post-read-time svg {
  width: 14px;
  height: 14px;
  fill: var(--text-secondary);
}

.featured-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.featured-content h2 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.featured-content h2 a:hover {
  color: var(--gold);
}

.featured-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  transition: gap 0.2s;
}

.read-more:hover {
  gap: 0.6rem;
}

.read-more svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
}

/* Post Grid */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.post-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--border-color);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.post-card:hover {
  border-color: var(--gold);
  box-shadow: 0 10px 30px rgba(10, 22, 40, 0.08);
  transform: translateY(-3px);
}

.post-card:hover .post-card-snippet-preview {
  opacity: 1;
  visibility: visible;
}

.post-card-image {
  height: 160px;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.post-card-image-placeholder {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.post-card-image-placeholder img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  background: linear-gradient(135deg, rgb(217, 181, 64)); border-radius: 12px;
}

.post-card-image-placeholder svg {
  width: 24px;
  height: 24px;
  fill: var(--gold);
}

.post-card-snippet-preview {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 22, 40, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 2;
  overflow: hidden;
  background: white;
}

.post-card-snippet-preview img {
  width: 350px;
  height: 350px;
  object-fit: contain;
}

.post-card-snippet-preview p {
  color: var(--white);
  font-size: 0.9rem;
  line-height: 1.5;
  text-align: center;
  margin: 0;
}

.post-card-content {
  padding: 1.5rem;
}

.post-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.post-card h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.post-card h3 a:hover {
  color: var(--gold);
}

.post-card p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Sidebar */
.sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
}

.sidebar-section {
  background: var(--white);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border: 2px solid var(--border-color);
}

.sidebar-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--border-color);
}

/* CTA Box */
.sidebar-cta {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.sidebar-cta-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.sidebar-cta-icon svg {
  width: 30px;
  height: 30px;
  fill: var(--navy-dark);
}

.sidebar-cta h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.sidebar-cta p {
  font-size: 0.85rem;
  opacity: 0.85;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.sidebar-cta-btn {
  display: block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-dark);
  padding: 0.85rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.sidebar-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

/* Popular Posts */
.popular-posts {
  list-style: none;
}

.popular-post {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
}

.popular-post:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.popular-post:first-child {
  padding-top: 0;
}

.popular-number {
  width: 32px;
  height: 32px;
  background: var(--border-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--navy-dark);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.popular-post-content h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: 0.25rem;
  line-height: 1.4;
}

.popular-post-content h4 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.popular-post-content h4 a:hover {
  color: var(--gold);
}

.popular-post-content span {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

/* Topics */
.topics-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.topic-tag {
  padding: 0.4rem 0.85rem;
  background: var(--border-color);
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--text-dark);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  border: 1px solid var(--border-color);
}

.topic-tag:hover {
  background: var(--navy-dark);
  color: var(--white);
  border-color: var(--navy-dark);
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.pagination-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--border-color);
  background: var(--white);
  border-radius: 8px;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
}

.pagination-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.pagination-btn.active {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  color: var(--white);
}

.pagination-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Dark Mode Blog */
:root.dark-mode .featured-post {
  background: var(--bg-secondary);
  border-color: var(--border-color);
}

:root.dark-mode .featured-post:hover {
  border-color: var(--gold);
}

:root.dark-mode .featured-content h2,
:root.dark-mode .featured-content h2 a {
  color: var(--text-primary);
}

:root.dark-mode .featured-content p {
  color: var(--text-secondary);
}

:root.dark-mode .post-meta {
  color: var(--text-secondary);
}

:root.dark-mode .post-category {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold);
}

:root.dark-mode .post-date,
:root.dark-mode .post-read-time {
  color: var(--text-secondary);
}

:root.dark-mode .post-card {
  background: var(--bg-secondary);
  border-color: var(--border-color);
}

:root.dark-mode .post-card:hover {
  border-color: var(--gold);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}

:root.dark-mode .post-card h3,
:root.dark-mode .post-card h3 a {
  color: var(--text-primary);
}

:root.dark-mode .post-card p {
  color: var(--text-secondary);
}

:root.dark-mode .sidebar-section {
  background: var(--bg-secondary);
  border-color: var(--border-color);
}

:root.dark-mode .sidebar-title {
  color: var(--gold);
  border-bottom-color: var(--border-color);
}

:root.dark-mode .popular-post {
  border-bottom-color: var(--border-color);
}

:root.dark-mode .popular-number {
  background: var(--border-color);
  color: var(--gold);
}

:root.dark-mode .popular-post-content h4,
:root.dark-mode .popular-post-content h4 a {
  color: var(--text-primary);
}

:root.dark-mode .popular-post-content h4 a:hover {
  color: var(--gold);
}

:root.dark-mode .popular-post-content span {
  color: var(--text-secondary);
}

:root.dark-mode .topic-tag {
  background: var(--border-color);
  color: var(--text-primary);
  border-color: var(--border-color);
}

:root.dark-mode .topic-tag:hover {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}

:root.dark-mode .category-btn {
  background: var(--bg-secondary);
  border-color: var(--border-color);
  color: var(--text-secondary);
}

:root.dark-mode .category-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

:root.dark-mode .category-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-dark);
}

:root.dark-mode .pagination-btn {
  background: var(--bg-secondary);
  border-color: var(--border-color);
  color: var(--text-primary);
}

:root.dark-mode .pagination-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

:root.dark-mode .pagination-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-dark);
}

:root.dark-mode .search-input {
  background: var(--bg-secondary);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

:root.dark-mode .search-input::placeholder {
  color: var(--text-secondary);
}

:root.dark-mode .search-btn {
  background: var(--gold);
  color: var(--navy-dark);
}

:root.dark-mode .search-btn:hover {
  background: var(--gold-light);
}

/* ===== INDEX PAGE STYLES ===== */

/* Hero Section - Index */
.hero-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 205px 24px 100px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero-heading {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease both;
}

.hero-description {
  font-size: 19px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-buttons-group {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  background: linear-gradient(135deg, var(--gold), #b8941f);
  color: var(--navy-dark);
  border: none;
  border-radius: 14px;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
  cursor: pointer;
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  background: transparent;
  color: var(--cream);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 14px;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.hero-btn-secondary:hover {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.1);
}

/* Stats Bar - Index */
.stats-bar {
    background: var(--bg-primary);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: 40px 24px;
  color-scheme: light dark;
}

.stats-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

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

.stat-value {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-dark);
}

.stat-label {
  font-size: 14px;
  color: var(--text-muted);
}

/* About Section - Index */
.about-section {
  padding: 80px 24px;
  background: var(--bg-secondary);
  color-scheme: light dark;
}

.about-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 50px;
  align-items: center;
}

.about-image {
  width: 300px;
  height: 300px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--navy), #243751);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

.about-content h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.about-content p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.credentials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.credential-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-primary);
  padding: 10px 16px;
  border-radius: 50px;
  font-size: 14px;
  color: var(--text-dark);
  border: 1px solid rgba(0,0,0,0.08);
}

.credential-badge svg {
  color: #22c55e;
  /* fill: var(--gold); */
}

/* Services Section - Index */
.services-section-index {
  padding: 100px 24px;
  background: var(--cream);
  background: var(--bg-primary);
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: #b8941f;
  margin-bottom: 20px;
}

.services-heading {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.services-subheading {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 550px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card-index {
  background: var(--bg-secondary);
  border: 1px solid var(--bg-secondary);
  border-radius: 24px;
  padding: 36px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card-index:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.service-icon-index {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--navy), #243751);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
}

.service-title-index {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.service-description-index {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-ideal-for {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.service-ideal-strong {
  color: var(--text-dark);
  font-weight: 600;
}

.service-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: var(--cream);
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(27, 43, 68, 0.3);
}

/* Testimonials Section - Index */
.testimonials-section-index {
  padding: 100px 24px;
  background: var(--bg-secondary);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: #b8941f;
  margin-bottom: 20px;
}

.testimonials-heading {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card-index {
  background: var(--bg-primary);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 20px;
  padding: 28px;
  transition: all 0.3s ease;
}

.testimonial-card-index:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);

}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.star {
  color: var(--gold);
}

.testimonial-quote {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #b8941f);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy-dark);
}

.testimonial-author-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
}

.testimonial-author-title {
  font-size: 13px;
  color: var(--text-muted);
}

/* CTA Section - Index */
.cta-section-index {
  padding: 100px 24px;
  background: var(--bg-secondary);
  text-align: center;
  position: relative;
}

.cta-section-index::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 60%);
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 650px;
  margin: 0 auto;
}

.cta-heading {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.cta-description {
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 32px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  background: linear-gradient(135deg, var(--gold), #b8941f);
  color: var(--navy-dark);
  border: none;
  border-radius: 14px;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
  cursor: pointer;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

/* Responsive - Index Page */
@media (max-width: 1024px) {
  .about-container {
    grid-template-columns: 1fr;
  }

  .about-image {
    width: 180px;
    height: 180px;
  }

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

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 120px 16px 60px;
  }

  .hero-heading {
    font-size: clamp(28px, 4vw, 42px);
  }

  .hero-description {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .hero-buttons-group {
    flex-direction: column;
  }

  .hero-btn,
  .hero-btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .stats-container {
    gap: 30px;
  }

  .stat-value {
    font-size: 28px;
  }

  .about-container {
    gap: 20px;
  }

  .about-image {
    width: 150px;
    height: 150px;
    font-size: 48px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card-index {
    padding: 24px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .cta-heading {
    font-size: clamp(22px, 4vw, 32px);
  }

  .cta-description {
    font-size: 16px;
  }
}

/* Responsive Blog */
@media (max-width: 1024px) {
  .blog-container {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .sidebar-cta {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .featured-post {
    grid-template-columns: 1fr;
  }

  .featured-image {
    min-height: 200px;
  }

  .posts-grid {
    grid-template-columns: 1fr;
  }

  .sidebar {
    grid-template-columns: 1fr;
  }

  .sidebar-cta {
    grid-column: span 1;
  }

  .blog-hero {
    padding: 3rem 2rem;
  }
}

/* ===== COURSE PAGE STYLES ===== */

/* Section Containers */
.section-dark {
  background: var(--bg-primary);
  color: var(--text-dark);
  padding: 5rem 2rem;
}

.section-cream {
  background: var(--bg-secondary);
  color: var(--text-primary);
  padding: 5rem 2rem;
  text-align: center;
}

.section-navy {
  background: var(--bg-primary);
  color: var(--text-dark);
  padding: 5rem 2rem;
}

.section-navy1 {
  background: var(--bg-secondary);
  color: var(--text-dark);
  padding: 5rem 2rem;
}

:root.dark-mode .section-cream {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

/* :root.dark-mode .section-navy {
  background: var(--bg-secondary);
  color: var(--text-primary);
} */

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.section-label svg {
  width: 16px;
  height: 16px;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--text-dark);

}

.section-title .highlight {
  color: var(--gold);
}

.section-subtitle {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-dark);
}

.section-cream .section-subtitle {
  color: var(--text-dark);
    width: 75%;
    margin: 0 auto 2rem;
}

.section-cream .section-title {
  color: var(--text-primary);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%),
    radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.15), transparent);
  padding: 8rem 2rem 4rem;
  text-align: center;
  color: var(--white);
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-container {
  max-width: 800px;
  margin: 0 auto;
  z-index: 1;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
  }
  50% {
    box-shadow: 0 0 20px 10px rgba(212, 175, 55, 0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-12px) rotate(1deg);
  }
  75% {
    transform: translateY(-8px) rotate(-1deg);
  }
}

@keyframes floatBadge {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-8px) scale(1.02);
  }
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes wiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-3deg); }
  75% { transform: rotate(3deg); }
}

@keyframes glowPulse {
  0%, 100% {
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.3));
  }
  50% {
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.6));
  }
}

@keyframes borderGlow {
  0%, 100% {
    border-color: rgba(212, 175, 55, 0.3);
  }
  50% {
    border-color: rgba(212, 175, 55, 0.8);
  }
}

@keyframes typewriter {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes blink {
  50% { opacity: 0; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 0.75rem 1.25rem;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero-badge-icon {
  width: 18px;
  height: 18px;
  fill: var(--gold);
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.hero h1 .highlight {
  color: var(--gold);
  display: block;
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
}

.hero-proof {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.hero-proof-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.hero-proof-item svg {
  width: 20px;
  height: 20px;
  fill: var(--gold);
}

.hero-cta-group {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, #c9a027 100%);
  color: var(--navy-dark);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn-primary-course {
    background: linear-gradient(135deg, var(--gold) 0%, #c9a027 100%);
  color: var(--navy-dark);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
}

.btn-primary-course:hover {
  transform: translateY(-2px);
}

/* Video Section */
.video-section {
  background: var(--bg-secondary);
  color: var(--text-dark);
  padding: 5rem 2rem;
}

.video-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.video-wrapper {
  margin-bottom: 2rem;
}

.video-placeholder {
  background: linear-gradient(135deg, rgba(27, 43, 68, 0.3), rgba(212, 175, 55, 0.1));
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 16px;
  padding: 5rem 2rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 400px;
  gap: 1rem;
}

.video-play-btn {
  width: 80px;
  height: 80px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.video-play-btn:hover {
  transform: scale(1.1);
}

.video-play-btn svg {
  width: 36px;
  height: 36px;
  fill: var(--navy-dark);
}

.video-placeholder p {
  font-size: 1.1rem;
  color: var(--text-dark);
}

.video-caption {
  font-size: 1.05rem;
  color: var(--text-dark);
  line-height: 1.6;
}

/* Pain Points */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1.5rem;
}

.pain-card {
  background: var(--bg-primary);
  border: 1px solid var(--bg-secondary);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.pain-card:hover {
  transform: translateY(-8px);
   border-color: var(--gold);
 box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.pain-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.pain-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
}

.pain-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.pain-card p {
  color: var(--text-dark);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Benefit Cards */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.benefit-card {
  background: var(--bg-primary);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
  border: 1px solid var(--bg-secondary);
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

:root.dark-mode .benefit-card {
  background: var(--bg-primary);
  /* border-color: rgba(212, 175, 55, 0.15); */
}

.benefit-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.benefit-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
}

.benefit-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--navy-dark);
}

:root.dark-mode .benefit-card h3 {
  color: var(--white);
}

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

/* Curriculum/Modules */
.curriculum-grid {
  display: grid;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.module {
  background: var(--bg-secondary);
  border: 1px solid var(--bg-primary);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.module:hover {
  transform: translateY(-4px);
   border-color: var(--gold);
 box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.module-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  cursor: pointer;
}

.module-number {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--navy-dark);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.module-info {
  flex: 1;
}

.module-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.module-meta {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.module-lessons {
  padding: 0 1.5rem 1.5rem 5rem;
}

.module-lessons ul {
  list-style: none;
}

.module-lessons li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.module-lessons li svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
  flex-shrink: 0;
}

/* Bonus Cards */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.bonus-card {
  background: var(--bg-secondary);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid var(--bg-secondary);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.bonus-card:hover {
  transform: translateY(-4px);
   border-color: var(--gold);
 box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

:root.dark-mode .bonus-card {
  background: var(--bg-primary);
}

.bonus-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
}

.bonus-icon {
  width: 56px;
  height: 56px;
  background: var(--bg-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.bonus-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
}

.bonus-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--navy-dark);
}

:root.dark-mode .bonus-card h3 {
  color: var(--white);
}

.bonus-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.bonus-value {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold);
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--navy-dark);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.testimonial-info h4 {
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.testimonial-info p {
  font-size: 0.875rem;
  color: var(--text-dark);
}

/* Pricing Section */
.pricing-section {
  padding: 5rem 2rem;
  background: var(--bg-secondary);
}

:root.dark-mode .pricing-section {
  background: linear-gradient(180deg, #1a1f2e 0%, #0f1419 100%);
}

.pricing-container {
  max-width: 700px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--white);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(27, 43, 68, 0.15);
  border: 2px solid var(--gold);
  position: relative;
  overflow: hidden;
}

:root.dark-mode .pricing-card {
  background: #1a1f2e;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.pricing-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 1rem;
}

:root.dark-mode .pricing-title {
  color: var(--white);
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.pricing-currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy-dark);
}

:root.dark-mode .pricing-currency {
  color: var(--white);
}

.pricing-number {
  font-size: 4rem;
  font-weight: 800;
  color: var(--navy-dark);
  line-height: 1;
}

:root.dark-mode .pricing-number {
  color: var(--white);
}

.pricing-note {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(27, 43, 68, 0.08);
}

:root.dark-mode .pricing-features li {
  border-bottom-color: rgba(212, 175, 55, 0.1);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li svg {
  width: 20px;
  height: 20px;
  fill: #22c55e;
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-features li span {
  color: var(--text-primary);
  font-size: 0.95rem;
}

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

.pricing-cta .btn {
  width: 100%;
  padding: 1.25rem 2rem;
  font-size: 1.1rem;
}

.pricing-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.pricing-guarantee svg {
  width: 18px;
  height: 18px;
  fill: #22c55e;
}

/* .pricing-section .section-title {
  color: var(--text-dark)
} */

/* FAQ Section */
.faq-grid {
  display: grid;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-primary);
  border: 1px solid var(--bg-secondary);
  border-radius: 12px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
  transition: background 0.2s;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.03);
}

.faq-question h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  padding-right: 1rem;
}

.faq-question svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-dark);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Final CTA */
.final-cta {
  padding: 5rem 2rem;
  background: var(--bg-primary);
  text-align: center;
}

.final-cta-container {
  max-width: 700px;
  margin: 0 auto;
}

.final-cta h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.final-cta p {
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* Footer */
.footer {
  background: var(--navy-dark);
  padding: 3rem 2rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo img {
  height: 40px;
  width: auto;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-copy {
  width: 100%;
  text-align: center;
  padding-top: 2rem;
  margin-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

/* ===== COURSE PAGE STYLES ===== */

/* Course Hero Section */
.course-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 150px 24px 100px;
  position: relative;
  overflow: hidden;
}

.course-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.12) 0%, transparent 50%);
  pointer-events: none;
}

.course-hero-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}

.course-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 10px 24px;
  border-radius: 50px;
  margin-bottom: 32px;
  animation: fadeInUp 0.8s ease, pulseGlow 3s ease-in-out infinite;
}

.course-hero-badge-dot {
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.course-hero-badge span {
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  font-family: 'Poppins', sans-serif;
}

.course-hero-badge-icon {
  width: 16px;
  height: 16px;
  fill: var(--gold);
}

.course-hero-container h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.2s both;
  font-family: 'Poppins', sans-serif;
}

.course-hero-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease 0.4s both;
  font-family: 'Poppins', sans-serif;
}

.course-hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 48px;
  animation: fadeInUp 0.8s ease 0.6s both;
  flex-wrap: wrap;
}

.course-hero-stat {
  text-align: center;
  position: relative;
}

.course-hero-stat::after {
  content: '';
  position: absolute;
  right: -24px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

.course-hero-stat:last-child::after {
  display: none;
}

.course-hero-stat-value {
  display: block;
  font-size: 36px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.2;
  font-family: 'Poppins', sans-serif;
}

.course-hero-stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
}

.course-hero-proof {
  display: none;
}

.course-hero-proof-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

.course-hero-proof-item svg {
  width: 20px;
  height: 20px;
  fill: #22c55e;
  flex-shrink: 0;
}

.course-hero-cta-group {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 50px;
  animation: fadeInUp 0.8s ease 0.8s both;
}

.course-hero-features {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 1s both;
}

.course-hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
}

.course-hero-feature svg {
  width: 22px;
  height: 22px;
  color: var(--green);
  flex-shrink: 0;
}

.btn-primary-course {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  padding: 18px 40px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
  position: relative;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  border: none;
}

.btn-primary-course::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease;
}

.btn-primary-course:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.5);
}

.btn-primary-course:hover::before {
  left: 100%;
}

.btn-primary-course svg {
  transition: transform 0.3s ease;
}

.btn-primary-course:hover svg {
  transform: translateX(5px);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 1rem 2.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  font-family: "Poppins", sans-serif;
}

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

.course span.highlight {
    color: var(--gold);
}

/* Course Video Section */
.course-video-section {
  padding: 4rem 2rem;
  background: var(--bg-secondary);
  width: 100%;
}

.course-video-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding: 0 1rem;
}

.course-video-wrapper {
  width: 100%;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.course-video-player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: #000;
}

.course-video-caption {
  font-size: 1.05rem;
  color: var(--text-dark);
  line-height: 1.6;
}

.tutoring-video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.tutoring-video-column {
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  .tutoring-video-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Course Section Styles */
.course-section-dark,
.course-section-dark2 {
  padding: 4rem 2rem;
  background: var(--bg-secondary);
}

.course-section-cream,
.course-section-cream2 {
  padding: 4rem 2rem;
  background: #f9f7f2;
}

.course-section-navy {
  padding: 4rem 2rem;
  background: var(--bg-secondary);
  color: var(--white);
}

.course-section-navy1 {
  padding: 4rem 2rem;
  background: var(--bg-secondary);
  color: var(--white);
}

.course-container {
  max-width: 1200px;
  margin: 0 auto;
}

.course-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.course-section-header .course-section-title {
  color: var(--text-primary);
}

.course-section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold);
  padding: 0.65rem 1.25rem;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.course-section-label svg {
  width: 16px;
  height: 16px;
}

.course-section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.course-section-subtitle {
  font-size: 1.1rem;
  color: var(--text-primary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
  text-align: center;
}

/* Pain Grid */
.course-pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.course-pain-card {
  background: var(--bg-primary);
  border: 1px solid var(--bg-secondary);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.course-pain-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.course-pain-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.course-pain-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
}

.course-pain-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.course-pain-card p {
  color: var(--text-dark);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Benefit Grid */
.course-benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.course-benefit-card {
  background: var(--bg-primary);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
  border: 1px solid var(--bg-secondary);
}

.course-benefit-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.course-benefit-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.course-benefit-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
}

.course-benefit-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--navy-dark);
}

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

.course-solution-intro {
  margin-bottom: 3rem;
}

.course-highlight {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Curriculum Grid */
.course-curriculum-grid {
  display: grid;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.course-module {
  background: var(--bg-primary);
  border: 1px solid var(--bg-primary);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.course-module:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.course-module-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  cursor: pointer;
}

.course-module-number {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--navy-dark);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.course-module-info {
  flex: 1;
}

.course-module-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.course-module-meta {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.course-module-lessons {
  padding: 0 1.5rem 1.5rem 5rem;
}

.course-module-lessons ul {
  list-style: none;
}

.course-module-lessons li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.course-module-lessons li svg {
  width: 16px;
  height: 16px;
  fill: #22c55e;
  flex-shrink: 0;
}

.course .course-module-lessons li:before {
  content: "✓";
    color: #4CAF50;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Bonus Grid */
.course-bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.course-bonus-card {
  background: var(--bg-secondary);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid var(--bg-secondary);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.course-bonus-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.course-bonus-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
}

.course-bonus-icon {
  width: 56px;
  height: 56px;
  background: var(--bg-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.course-bonus-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
}

.course-bonus-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--navy-dark);
}

.course-bonus-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.course-bonus-value {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold);
}

/* Course Testimonials */
.course .testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.5rem;
}

.course .testimonial-card {
  background: var(--bg-primary);
  border: 1px solid var(--bg-primary);
  border-radius: 12px;
  padding: 2rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.course .testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.course .testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.course .testimonial-stars svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
  flex-shrink: 0;
}

.course .testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-style: italic;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
}

.course .testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
  min-width: 0;
}

.course .testimonial-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--navy-dark);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.course .testimonial-info {
  min-width: 0;
  overflow: hidden;
}

.course .testimonial-info h4 {
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.course .testimonial-info p {
  font-size: 0.875rem;
  color: var(--text-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Pricing Section */
.course-pricing-section {
  padding: 5rem 2rem;
  background: var(--bg-primary);
}

.course-pricing-container {
  max-width: 700px;
  margin: 0 auto;
}

.course-pricing-card {
  background: var(--white);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(27, 43, 68, 0.15);
  border: 2px solid var(--gold);
  position: relative;
  overflow: hidden;
}

.course-pricing-header {
  text-align: center;
  margin-bottom: 2rem;
}

.course-pricing-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.course-pricing-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 1rem;
}

.course-pricing-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.course-pricing-currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy-dark);
}

.course-pricing-number {
  font-size: 4rem;
  font-weight: 800;
  color: var(--navy-dark);
  line-height: 1;
}

.course-pricing-note {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.course-pricing-features {
  list-style: none;
  margin-bottom: 2rem;
}

.course-pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(27, 43, 68, 0.08);
}

.course-pricing-features li:last-child {
  border-bottom: none;
}

.course-pricing-features li svg {
  width: 20px;
  height: 20px;
  fill: #22c55e;
  flex-shrink: 0;
  margin-top: 2px;
}

.course-pricing-features li span {
  color: var(--text-primary);
  font-size: 0.95rem;
}

.course-pricing-cta {
  text-align: center;
}

.course-pricing-cta .btn {
  width: 100%;
  padding: 1.25rem 2rem;
  font-size: 1.1rem;
}

.course-pricing-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.course-pricing-guarantee svg {
  width: 18px;
  height: 18px;
  fill: #22c55e;
}

/* FAQ Section */
.course-faq-grid {
  display: grid;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.course-faq-item {
  background: var(--bg-primary);
  border: 1px solid var(--bg-secondary);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  color: var(--text-primary);
}

.course-faq-item:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.course-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
  transition: background 0.2s;
}

.course-faq-question:hover {
  background: rgba(255, 255, 255, 0.03);
}

.course-faq-question h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  padding-right: 1rem;
}

.course-faq-question svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.course-faq-item.active .course-faq-question svg {
  transform: rotate(180deg);
}

.course-faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  color: var(--text-dark);
  font-size: 0.95rem;
  line-height: 1.7;
  padding: 0 1.5rem;
}

.course-faq-item.active .course-faq-answer {
  max-height: 500px;
  opacity: 1;
  visibility: visible;
  padding: 1.5rem 1.5rem;
}

/* Final CTA */
.course-final-cta {
  padding: 5rem 2rem;
  background: var(--bg-primary);
  text-align: center;
}

.course-final-cta-container {
  max-width: 700px;
  margin: 0 auto;
}

.course-final-cta h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.course-final-cta p {
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* ===== COURSE PAGE DARK MODE ===== */

:root.dark-mode .course-hero {
  background: linear-gradient(135deg, #0A1628 0%, #1B2B44 100%);
}

:root.dark-mode .course-hero-badge {
  background: rgba(212, 175, 55, 0.2);
  border-color: rgba(212, 175, 55, 0.4);
  color: var(--gold);
}

:root.dark-mode .course-section-cream,
:root.dark-mode .course-section-cream2 {
  background: var(--bg-primary);
}

:root.dark-mode .course-pain-card {
  background: var(--bg-primary);
}

:root.dark-mode .course-pain-card h3,
:root.dark-mode .course-pain-card p {
  color: var(--text-primary);
}

:root.dark-mode .course-benefit-card {
  background: var(--bg-secondary);
}

:root.dark-mode .course-benefit-card h3 {
  color: var(--white);
}

:root.dark-mode .course-benefit-card p {
  color: var(--text-secondary);
}

:root.dark-mode .course-module-title {
  color: var(--text-dark);
}

:root.dark-mode .course-module-meta {
  color: var(--text-secondary);
}

:root.dark-mode .course-module-lessons li {
  color: var(--text-secondary);
}

:root.dark-mode .course-bonus-card {
  background: var(--bg-secondary);
}

:root.dark-mode .course-bonus-card h3 {
  color: var(--white);
}

:root.dark-mode .course-bonus-card p {
  color: var(--text-secondary);
}

:root.dark-mode .course .testimonial-text {
  color: var(--text-primary);
}

:root.dark-mode .course .testimonial-info h4,
:root.dark-mode .course .testimonial-info p {
  color: var(--text-primary);
}

:root.dark-mode .course-pricing-section {
  background: var(--bg-primary);
}

:root.dark-mode .course-pricing-card {
  background: #1a1f2e;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border-color: var(--gold);
}

:root.dark-mode .course-pricing-label {
  color: var(--gold);
}

:root.dark-mode .course-pricing-title {
  color: var(--white);
}

:root.dark-mode .course-pricing-currency,
:root.dark-mode .course-pricing-number {
  color: var(--white);
}

:root.dark-mode .course-pricing-features li {
  border-bottom-color: rgba(212, 175, 55, 0.1);
}

:root.dark-mode .course-pricing-features li span {
  color: var(--text-primary);
}

:root.dark-mode .course-faq-item {
  background: var(--bg-primary);
}

:root.dark-mode .course-faq-question h3 {
  color: var(--text-primary);
}

:root.dark-mode .course-faq-question:hover {
  background: rgba(212, 175, 55, 0.05);
}

:root.dark-mode .course-faq-answer {
  color: var(--text-primary);
}

:root.dark-mode .course-final-cta h2 {
  color: var(--white);
}

:root.dark-mode .course-final-cta p {
  color: var(--text-primary);
}

:root.dark-mode .course-video-placeholder {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.03));
  border-color: rgba(212, 175, 55, 0.25);
}

:root.dark-mode .course-video-placeholder p {
  color: var(--text-primary);
}

:root.dark-mode .course-video-caption {
  color: var(--text-primary);
}

/* Course Responsive Design */
@media (max-width: 1024px) {
  .course-pain-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .course .testimonial-card {
    padding: 1.5rem;
  }

  .course .testimonial-text {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
  }

  .course .testimonial-avatar {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }

  .course .testimonial-info h4 {
    font-size: 0.95rem;
  }

  .course .testimonial-info p {
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  .course-hero-stats {
    flex-direction: column;
    gap: 24px;
  }

  .course-hero-stat {
    width: 100%;
  }

  .course-hero-stat::after {
    display: none;
  }

  .course-hero-features {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .course-pain-grid {
    grid-template-columns: 1fr;
  }

  .course .testimonial-card {
    padding: 1.25rem;
  }

  .course .testimonial-text {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }

  .course .testimonial-author {
    gap: 0.75rem;
  }

  .course .testimonial-avatar {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

  .course .testimonial-stars svg {
    width: 16px;
    height: 16px;
  }

  .course .testimonial-info h4 {
    font-size: 0.9rem;
    margin-bottom: 0.1rem;
  }

  .course .testimonial-info p {
    font-size: 0.75rem;
  }

  .hero {
    padding: 7rem 1.5rem 4rem;
  }

  .hero h1 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
  }

  .hero-proof {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-cta-group {
    flex-direction: column;
    gap: 1rem;
  }

  .btn {
    width: 100%;
  }

  section {
    padding: 3.5rem 1.5rem;
  }

  .pain-grid {
    grid-template-columns: 1fr;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .bonus-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    padding: 2rem;
  }

  .pricing-number {
    font-size: 3rem;
  }

  .module-lessons {
    padding-left: 1.5rem;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .video-placeholder {
    padding: 2rem;
    min-height: auto;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }

  .footer-copy {
    padding-top: 1rem;
    margin-top: 0;
  }
}

@media (max-width: 373px) {
  .course .testimonial-card {
    width: 100%;
    max-width: 310px;
  }
}

/* ===== MANAGEMENT PAGE STYLES ===== */

/* Management Hero */
.management-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 150px 24px 100px;
  position: relative;
  overflow: hidden;
}

.management-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.12) 0%, transparent 50%);
  pointer-events: none;
}

.management-hero-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}

.management-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 10px 24px;
  border-radius: 50px;
  margin-bottom: 32px;
  animation: fadeInUp 0.8s ease, pulseGlow 3s ease-in-out infinite;
}

.management-hero-badge-dot {
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.management-hero-badge span {
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  font-family: 'Poppins', sans-serif;
}

.management-hero-container h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.2s both;
  font-family: 'Poppins', sans-serif;
}

.management-hero h1 .highlight {
  color: var(--gold);
}

.management-hero-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease 0.4s both;
  font-family: 'Poppins', sans-serif;
}

.management-hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 48px;
  animation: fadeInUp 0.8s ease 0.6s both;
  flex-wrap: wrap;
}

.management-hero-stat {
  text-align: center;
  position: relative;
}

.management-hero-stat::after {
  content: '';
  position: absolute;
  right: -24px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

.management-hero-stat:last-child::after {
  display: none;
}

.management-hero-stat-value {
  display: block;
  font-size: 36px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.2;
  font-family: 'Poppins', sans-serif;
}

.management-hero-stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
}

.management-hero-cta-group {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 50px;
  animation: fadeInUp 0.8s ease 0.8s both;
}

.management-hero-features {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 1s both;
}

.management-hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
}

.management-hero-feature svg {
  width: 22px;
  height: 22px;
  color: var(--green);
  flex-shrink: 0;
}

.btn-primary-management {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  padding: 18px 40px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
  position: relative;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  border: none;
}

.btn-primary-management::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease;
}

.btn-primary-management:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.5);
}

.btn-primary-management:hover::before {
  left: 100%;
}

.btn-primary-management svg {
  transition: transform 0.3s ease;
}

.btn-primary-management:hover svg {
  transform: translateX(5px);
}

/* Management Problems Section */
.management-problems {
  padding: 4rem 2rem;
  background: var(--bg-primary);
}

.management-problems .section-header {
  margin-bottom: 3rem;
}

.management-problems .section-title {
  color: var(--text-dark);
}

.management-problems .problems-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.management-problems .problem-card {
  background: var(--bg-secondary);
  border: 1px solid var(--bg-secondary);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.management-problems .problem-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.management-problems .problem-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
}

.management-problems .problem-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.management-problems .problem-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Management What You Get Section */
.management-what-you-get {
  padding: 4rem 2rem;
  background: var(--bg-secondary);
}

.management-what-you-get .section-header {
  margin-bottom: 3rem;
}

.management-what-you-get .section-title {
  color: var(--text-primary);
}

.get-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.get-card {
  background: var(--bg-primary);
  border-radius: 12px;
  border: 1px solid var(--bg-secondary);
  padding: 2rem;
  transition: all 0.3s ease;
}

.get-card:hover {
  transform: translateY(-8px);
   border-color: var(--gold);
 box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.get-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
}

.get-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.get-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Management How It Works */
.management-how {
  padding: 4rem 2rem;
  background: var(--bg-primary);
}

.management-how .section-header {
  margin-bottom: 3rem;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.step-card {
  background: var(--bg-secondary);
  border: 1px solid var(--bg-secondary);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.step-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.step-number {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin: 0 auto 1.5rem;
}

.step-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.step-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Management Comparison Section */
.management-comparison {
  padding: 100px 24px;
  background: var(--bg-primary);
}

.management-comparison .section-header {
  margin-bottom: 3rem;
}

.management-comparison .section-title {
  color: var(--text-dark);
}

:root.dark-mode .management-comparison .section-title {
  color: var(--text-primary);
}

.comparison-table {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

:root.dark-mode .comparison-table {
  background: #1a1f2e;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.comparison-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  background: var(--navy-dark);
}

:root.dark-mode .comparison-header {
  background: var(--navy);
}

.comparison-header > div {
  padding: 24px;
  text-align: center;
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
}

.comparison-header > div:first-child {
  text-align: left;
}

.comparison-header .highlight2 {
  background: var(--gold);
  color: var(--text-primary);
}

.comparison-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  border-bottom: 1px solid #e5e7eb;
}

:root.dark-mode .comparison-row {
  border-bottom-color: rgba(212, 175, 55, 0.1);
}

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

.comparison-row > div {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #374151;
}

.comparison-row > div:first-child {
  justify-content: flex-start;
  font-weight: 500;
}

.comparison-row .highlight {
  background: rgba(212, 175, 55, 0.12);
  color: var(--text-primary);
  font-weight: 600;
}

:root.dark-mode .comparison-row .highlight {
  background: rgba(212, 175, 55, 0.2);
  color: var(--white);
}

.check {
  width: 28px;
  height: 28px;
  background: #6ee7b7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.check svg {
  width: 16px;
  height: 16px;
  color: var(--white);
  stroke: var(--white);
}

.cross {
  width: 28px;
  height: 28px;
  background: #d1d5db;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cross svg {
  width: 14px;
  height: 14px;
  color: #9ca3af;
  stroke: #9ca3af;
}

.maybe {
  font-size: 12px;
  color: var(--text-primary);
}

/* Management Ideal Section */
.management-ideal {
  padding: 4rem 2rem;
  background: var(--bg-secondary);
}

.management-ideal .section-header {
  margin-bottom: 3rem;
}

.ideal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.ideal-content {
  background: var(--bg-secondary);
  border-radius: 12px;
  padding: 2rem;
}

.ideal-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.ideal-list {
  list-style: none;
  margin-bottom: 2rem;
}

.ideal-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.75rem 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.ideal-list li svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.ideal-image {
  background: linear-gradient(135deg, var(--navy), #243751);
  border-radius: 12px;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  text-align: center;
  position: relative;
}

.ideal-image-placeholder {
  width: 120px;
  height: 120px;
  background: rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  font-size: 3rem;
}

.ideal-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.ideal-stat {
  background: rgba(212, 175, 55, 0.1);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
}

.ideal-stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  font-family: "Poppins", sans-serif;
}

.ideal-stat-value {
  font-size: 2rem;
  color: var(--gold);
  font-weight: 800;
}

.ideal-stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.5rem;
}

/* Management Testimonials */
.management-testimonials {
  padding: 4rem 2rem;
  background: var(--bg-primary);
}

.management-testimonials .section-header {
  margin-bottom: 3rem;
}

.management-testimonials .section-title {
  color: var(--text-primary);
}

/* Management Testimonials Grid Styles */
.management-testimonials .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.management-testimonials .testimonial-card {
  background: var(--bg-secondary);
  border: 2px solid var(--bg-secondary);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.management-testimonials .testimonial-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.management-testimonials .testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.management-testimonials .testimonial-rating svg {
  width: 20px;
  height: 20px;
  fill: var(--gold);
}

.management-testimonials .testimonial-text {
  font-size: .9rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.management-testimonials .testimonial-result {
  background: linear-gradient(135deg, rgba(34, 197, 94, .1), rgba(34, 197, 94, .05));
  border: 1px solid rgba(34, 197, 94, .3);
  border-radius: 10px;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}

.management-testimonials .testimonial-result-label {
  font-size: 0.85rem;
  color: #22c55e;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.management-testimonials .testimonial-result-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
  font-family: "Poppins", sans-serif;
}

.management-testimonials .testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.management-testimonials .testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #b8860b);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-dark);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.management-testimonials .testimonial-author-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.management-testimonials .testimonial-author-info p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Management Testimonial Card Alternative Style */
.management-testimonials .management-testimonial-card {
  background: var(--bg-secondary);
  border: 2px solid var(--bg-primary);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* .management-testimonials .testimonial-card {
  background: var(--bg-primary) !important;
  border: 2px solid var(--bg-secondary) !important;
} */

.management-testimonials .management-testimonial-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.management-testimonials .management-testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.management-testimonials .management-testimonial-rating svg {
  width: 20px;
  height: 20px;
  fill: var(--gold);
}

/* Management Case Studies */
.management-case-studies {
  padding: 4rem 2rem;
  background: var(--bg-primary);
}

.management-case-studies .section-header {
  margin-bottom: 3rem;
}

.management-case-studies .section-header h2 {
  font-size: 2.5rem;
  color: var(--text-dark);
}

.management-case-studies .section-header .highlight {
  color: var(--gold);
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.case-study-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 300px;
  background: var(--bg-secondary);
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
  cursor: pointer;
}

.case-study-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.case-study-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .case-studies-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .case-study-card {
    height: 250px;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .case-studies-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .case-study-card {
    height: 250px;
  }
  
  .management-case-studies .section-header h2 {
    font-size: 1.8rem;
  }
}

/* Management FAQ */
.management-faq {
  padding: 4rem 2rem;
  background: var(--bg-primary);
}

.management-faq .section-header {
  margin-bottom: 3rem;
}

.faq-grid-management {
  display: grid;
  /* grid-template-columns: repeat(2, 1fr); */
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

/* Management FAQ Items - Toggle Style */
.management-faq-item {
  background: var(--bg-secondary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.management-faq-item:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.15);
}

.management-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
  transition: background 0.2s ease;
  gap: 1rem;
}

.management-faq-question:hover {
  background: rgba(212, 175, 55, 0.05);
}

:root.dark-mode .management-faq-question:hover {
  background: rgba(212, 175, 55, 0.1);
}

.management-faq-question h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  margin: 0;
}

.management-faq-question svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.management-faq-item.active .management-faq-question svg {
  transform: rotate(180deg);
}

.management-faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 1.5rem 0 1.5rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.management-faq-item.active .management-faq-answer {
  max-height: 500px;
  opacity: 1;
  visibility: visible;
  padding: 1.5rem 1.5rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.management-faq-answer p {
  margin: 0;
}

/* Management CTA Section */
.management-cta {
  padding: 4rem 2rem;
  background: var(--bg-secondary);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.management-cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.management-cta p {
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.management-cta .cta-features {
  display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.management-cta .cta-feature {
      display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
}

.management-cta .cta-feature svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  margin-bottom: 0.5rem;
  display: block;
}

/* Management Responsive */
@media (max-width: 1024px) {
  .ideal-grid {
    grid-template-columns: 1fr;
  }

  .comparison-header,
  .comparison-row {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .cta-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .management-hero {
    padding: 120px 16px 80px;
  }

  .management-hero-container h1 {
    font-size: clamp(24px, 5vw, 36px);
  }

  .management-hero-subtitle {
    font-size: 16px;
  }

  .management-hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .management-hero-stat {
    width: 100%;
  }

  .management-hero-stat::after {
    display: none;
  }

  .management-hero-features {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .problems-grid {
    grid-template-columns: 1fr;
  }

  .get-grid {
    grid-template-columns: 1fr;
  }

  .steps-container {
    grid-template-columns: 1fr;
  }

  .ideal-grid {
    grid-template-columns: 1fr;
  }

  .ideal-content {
    width: 100%;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: 12px;
  }

  .ideal-content h2 {
    font-size: 1.3rem;
  }

  .ideal-content p {
    font-size: 0.95rem;
  }

  .ideal-list li {
    font-size: 0.9rem;
  }

  .ideal-image {
    width: 100%;
    min-height: 250px;
    padding: 2rem 1rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .tutoring-testimonials-swiper {
    padding: 0;
  }

  .tutoring-testimonials .testimonial-card {
    min-height: 380px;
  }

  .comparison-header,
  .comparison-row {
    grid-template-columns: 1fr;
  }

  .comparison-header-cell,
  .comparison-cell {
    text-align: left;
    justify-content: flex-start;
    padding: 1rem;
  }

  .comparison-header-cell.ads-tutor {
    background: rgba(212, 175, 55, 0.1);
  }

  .management-cta h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }

  .management-cta p {
    font-size: 1rem;
  }

  .cta-features {
    grid-template-columns: 1fr;
  }

  .management-problems,
  .management-what-you-get,
  .management-how,
  .management-comparison,
  .management-ideal,
  .management-testimonials,
  .management-faq,
  .management-cta {
    padding: 3rem 1.5rem;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-title {
    font-size: 1.5rem;
  }
}

:root.dark-mode .management-hero {
  background: linear-gradient(135deg, #0A1628 0%, #1B2B44 100%);
}

:root.dark-mode .ideal-image {
  background: linear-gradient(135deg, #0A1628, #1B2B44);
}

/* ===== TUTORING PAGE STYLES ===== */

.tutoring {
  font-family: 'Poppins', sans-serif;
}

/* Hero Section */
.tutoring-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 150px 24px 100px;
  position: relative;
  overflow: hidden;
}

.tutoring-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.12) 0%, transparent 50%);
  pointer-events: none;
}

.tutoring-hero-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}

.tutoring-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 10px 24px;
  border-radius: 50px;
  margin-bottom: 32px;
  animation: fadeInUp 0.8s ease, pulseGlow 3s ease-in-out infinite;
}

.tutoring-hero-badge-dot {
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.tutoring-hero-badge span {
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  font-family: 'Poppins', sans-serif;
}

.tutoring-hero-container h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.2s both;
  font-family: 'Poppins', sans-serif;
}

.tutoring-hero h1 .highlight {
  color: var(--gold);
}

.tutoring-hero-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease 0.4s both;
  font-family: 'Poppins', sans-serif;
}

.tutoring-hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 48px;
  animation: fadeInUp 0.8s ease 0.6s both;
  flex-wrap: wrap;
}

.tutoring-hero-stat {
  text-align: center;
  position: relative;
}

.tutoring-hero-stat::after {
  content: '';
  position: absolute;
  right: -24px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

.tutoring-hero-stat:last-child::after {
  display: none;
}

.tutoring-hero-stat-value {
  display: block;
  font-size: 36px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.2;
  font-family: 'Poppins', sans-serif;
}

.tutoring-hero-stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
}

.tutoring-hero-cta-group {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 50px;
  animation: fadeInUp 0.8s ease 0.8s both;
}

.tutoring-hero-features {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 1s both;
}

.tutoring-hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
}

.tutoring-hero-feature svg {
  width: 22px;
  height: 22px;
  color: var(--green);
  flex-shrink: 0;
}

.tutoring span.highlight {
    color: var(--gold);
}

/* Problems Section */
.tutoring-problems {
  padding: 4rem 2rem;
  background: var(--bg-secondary);
}

.tutoring-problems .problem-card {
  background: var(--bg-primary);
  border: 1px solid var(--bg-secondary) !important;
}

.tutoring-problems .problem-card:hover {
   border-color: var(--gold) !important;
 box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1) !important;
}

:root.dark-mode .tutoring-problems {
  background: #1a1f2e;
}

.tutoring-problems .section-header {
  margin-bottom: 3rem;
}

.tutoring-problems .problems-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.tutoring-problems .problem-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  transition: all 0.3s ease;
}

:root.dark-mode .tutoring-problems .problem-card {
  background: #252d3d;
  border-color: rgba(212, 175, 55, 0.2);
}

.tutoring-problems .problem-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.15);
}

.tutoring-problems .problem-icon {
  font-size: 24px;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tutoring-problems .problem-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.tutoring-problems .problem-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Solution Section */
.tutoring-solution {
  padding: 4rem 2rem;
  background: var(--bg-primary);
}

.tutoring-solution .benefit-card {
  border: 1px solid var(--bg-secondary) !important;
}

.tutoring-solution .benefit-card:hover {
  border-color: var(--gold) !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1) !important;
}

:root.dark-mode .tutoring-solution {
  background: #0f1a2e;
}

.tutoring-solution .section-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.benefit-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

:root.dark-mode .benefit-card {
  background: #1a1f2e;
  border-color: rgba(212, 175, 55, 0.2);
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--gold);
}

.benefit-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.benefit-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
}

.benefit-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* How Section */
.tutoring-how {
  padding: 4rem 2rem;
  background: var(--bg-secondary);
}

.tutoring-how .step-card {
  border: 1px solid var(--bg-primary) !important;
}

.tutoring-how .step-card:hover {
  border-color: var(--gold) !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1) !important;
}

:root.dark-mode .tutoring-how {
  background: #1a1f2e;
}

.tutoring-how .section-header {
  margin-bottom: 3rem;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.step-card {
  background: var(--bg-secondary);
  border: 1px solid var(--bg-primary);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}

.step-number {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--gold), #b8860b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  color: var(--navy-dark);
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
}

.step-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
}

.step-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Topics Section */
.tutoring-topics {
  padding: 4rem 2rem;
  background: var(--bg-secondary);
}

.tutoring-topics .section-header {
  margin-bottom: 3rem;
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.topic-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

:root.dark-mode .topic-card {
  background: #1a1f2e;
  border: 1px solid var(--bg-secondary);
}

:root.dark-mode .topic-card:hover {
  transform: translateY(-4px);
   border-color: var(--gold);
 box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.topic-card:hover {
  transform: translateY(-4px);
   border-color: var(--gold);
 box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.topic-icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.topic-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-family: 'Poppins', sans-serif;
}

.topic-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.tutoring-how .step-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

/* Comparison Section */
.tutoring-comparison {
  padding: 4rem 2rem;
  background: var(--bg-primary);
}

.tutoring-comparison .section-header {
  margin-bottom: 3rem;
}

.comparison-table {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--bg-primary);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

:root.dark-mode .comparison-table {
  background: #252d3d;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.comparison-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  background: var(--navy-dark);
  border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

:root.dark-mode .comparison-header {
  background: var(--navy);
}

.comparison-header > div {
  padding: 1.5rem;
  text-align: center;
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
}

.comparison-header > div:first-child {
  text-align: left;
}

.comparison-header .highlight2 {
  background: var(--gold);
  color: var(--text-primary);
}

.comparison-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  border-bottom: 1px solid var(--border-color);
}

:root.dark-mode .comparison-row {
  border-bottom-color: rgba(212, 175, 55, 0.1);
}

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

.comparison-row > div {
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text-dark);
  font-family: 'Poppins', sans-serif;
}

.comparison-row > div:first-child {
  justify-content: flex-start;
  font-weight: 500;
  text-align: left;
}

.comparison-row .highlight {
  background: rgba(212, 175, 55, 0.12);
  color: var(--text-dark);
  font-weight: 600;
}

.comparison-row .highlight2 {
  background: rgba(212, 175, 55, 0.12);
    color: var(--text-dark);
    font-weight: 600;
}

:root.dark-mode .comparison-row .highlight {
  background: rgba(212, 175, 55, 0.2);
  color: var(--white);
}

:root.dark-mode .comparison-row .highlight2 {
  background: rgba(212, 175, 55, 0.2);
  color: var(--white);
}

.cross {
  width: 28px;
  height: 28px;
  background: var(--gray-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

:root.dark-mode .cross {
  background: rgba(212, 175, 55, 0.1);
}

.cross svg {
  width: 16px;
  height: 16px;
  color: #999;
  stroke: #999;
}

:root.dark-mode .cross svg {
  color: rgba(212, 175, 55, 0.4);
  stroke: rgba(212, 175, 55, 0.4);
}

/* Testimonials Section */
.tutoring-testimonials {
  padding: 4rem 2rem;
  background: var(--bg-secondary);
}

.tutoring-testimonials .section-header {
  margin-bottom: 3rem;
}

.tutoring-testimonials .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.tutoring-testimonials-swiper {
  height: fit-content;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.swiper-wrapper {
  padding: 0;
}

.tutoring-testimonials .swiper-slide {
  height: 500px;
  display: flex;
  flex-direction: column;
}

.tutoring-testimonials .testimonial-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 500px;
  overflow-y: auto;
  /* height: 100%; */
}

.tutoring-testimonials .testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.1);
}

.tutoring-testimonials .testimonial-rating {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.tutoring-testimonials .testimonial-rating svg {
  width: 20px;
  height: 20px;
  fill: var(--gold);
}

.tutoring-testimonials .testimonial-text {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
  flex-grow: 1;
}

.tutoring-testimonials .testimonial-result {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(34, 197, 94, 0.05));
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 10px;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  margin-top: auto;
}

:root.dark-mode .tutoring-testimonials .testimonial-result {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(34, 197, 94, 0.08));
  border-color: rgba(34, 197, 94, 0.4);
}

.tutoring-testimonials .testimonial-result-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}

.tutoring-testimonials .testimonial-result-value {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gold);
  font-family: 'Poppins', sans-serif;
}

.tutoring-testimonials .testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
}

.tutoring-testimonials .testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #b8860b);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-dark);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
  border: 2px solid var(--gold);
}

.tutoring-testimonials .testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.tutoring-testimonials .testimonial-author-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
  font-family: 'Poppins', sans-serif;
}

.tutoring-testimonials .testimonial-author-info p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Swiper Custom Styles for Tutoring Testimonials */
.tutoring-testimonials-swiper .swiper-pagination-bullet {
  background: rgba(212, 175, 55, 0.5);
  opacity: 0.6;
}

.swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
    position: absolute;
    bottom: 0;
}

.tutoring-testimonials-swiper .swiper-pagination-bullet-active {
  background: var(--gold);
  opacity: 1;
}

.tutoring-testimonials-swiper .swiper-pagination {
  position: relative;
  margin-top: 2rem;
}

/* FAQ Section */
.tutoring-faq {
  padding: 4rem 2rem;
  background: var(--bg-primary);
}

:root.dark-mode .tutoring-faq {
  background: #0f1a2e;
}

.tutoring-faq .section-header {
  margin-bottom: 3rem;
}

.tutoring-faq .faq-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.tutoring-faq-item {
  background: var(--bg-secondary);
  border: 1px solid var(--bg-secondary);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

:root.dark-mode .tutoring-faq-item {
  background: #1a1f2e;
  border: 1px solid var(--bg-secondary);
}

.tutoring-faq-item:hover {
   border-color: var(--gold);
 box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);;
}

.tutoring-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
  transition: all .3s ease;
  gap: 1rem;
}

.tutoring-faq-question:hover {
  transform: translateY(-4px);
  background: rgba(212, 175, 55, 0.05);
}

:root.dark-mode .tutoring-faq-question:hover {
  background: rgba(212, 175, 55, 0.1);
}

.tutoring-faq-question h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

:root.dark-mode .tutoring-faq-question h3 {
  color: var(--white);
}

.tutoring-faq-question svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.tutoring-faq-item.active .tutoring-faq-question svg {
  transform: rotate(180deg);
}

.tutoring-faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 1.5rem 0 1.5rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  font-family: 'Poppins', sans-serif;
}

.tutoring-faq-item.active .tutoring-faq-answer {
  max-height: 500px;
  opacity: 1;
  visibility: visible;
  padding: 1.5rem 1.5rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.tutoring-faq-answer p {
  margin: 0;
}

/* CTA Section */
.tutoring-cta {
  padding: 4rem 2rem;
  background: var(--bg-primary);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.tutoring-cta h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  font-family: 'Poppins', sans-serif;
}

.tutoring-cta p {
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-bottom: 2rem;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.tutoring-cta .cta-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.tutoring-cta .cta-feature svg {
  width: 18px;
  height: 18px;
  color: #22c55e;
}

/* Button Styles for Tutoring */
.btn-primary-tutoring {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  padding: 18px 40px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
  position: relative;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  border: none;
}

.btn-primary-tutoring::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease;
}

.btn-primary-tutoring:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.5);
}

.btn-primary-tutoring:hover::before {
  left: 100%;
}

.btn-primary-tutoring svg {
  transition: transform 0.3s ease;
}

.btn-primary-tutoring:hover svg {
  transform: translateX(5px);
}

/* Responsive Design for Tutoring */
@media (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .steps-container {
    grid-template-columns: 1fr;
  }

  .topics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tutoring-testimonials .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .tutoring-testimonials .testimonial-card {
    min-height: 400px;
  }

  .tutoring-faq .faq-grid {
    grid-template-columns: 1fr;
  }

  .cta-features {
    flex-direction: column;
    gap: 1rem;
  }
}

/* ===== AUDIT PAGE STYLES ===== */

/* Audit Hero Section */
.audit-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 150px 24px 100px;
  position: relative;
  overflow: hidden;
}

.audit-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.12) 0%, transparent 50%);
  animation: gradientMove 15s ease infinite;
  background-size: 200% 200%;
}

:root.dark-mode .audit-hero {
  background: linear-gradient(135deg, #0A1628 0%, #1B2B44 100%);
}

.audit-hero-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.audit-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 10px 24px;
  border-radius: 50px;
  margin-bottom: 32px;
  animation: fadeInUp 0.8s ease, pulseGlow 3s ease-in-out infinite;
}

.audit-hero-badge-dot {
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.audit-hero-badge span {
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  font-family: 'Poppins', sans-serif;
}

.audit-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.2s both;
  font-family: 'Poppins', sans-serif;
}

.audit-hero h1 .highlight {
  color: var(--gold);
  position: relative;
}

.audit-hero-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease 0.4s both;
  font-family: 'Poppins', sans-serif;
}

.audit-hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 48px;
  animation: fadeInUp 0.8s ease 0.6s both;
  flex-wrap: wrap;
}

.audit-hero-stat {
  text-align: center;
  position: relative;
}

.audit-hero-stat::after {
  content: '';
  position: absolute;
  right: -24px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

.audit-hero-stat:last-child::after {
  display: none;
}

.audit-hero-stat-value {
  display: block;
  font-size: 36px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.2;
  font-family: 'Poppins', sans-serif;
}

.audit-hero-stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
}

.audit-hero-cta-group {
  animation: fadeInUp 0.8s ease 0.8s both;
}

.btn-primary-audit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  padding: 18px 40px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
  position: relative;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

.btn-primary-audit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease;
}

.btn-primary-audit:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.5);
}

.btn-primary-audit:hover::before {
  left: 100%;
}

.btn-primary-audit svg {
  transition: transform 0.3s ease;
}

.btn-primary-audit:hover svg {
  transform: translateX(5px);
}

.audit-hero-trust {
  display: block;
  margin-top: 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-family: 'Poppins', sans-serif;
}

/* Audit Problem Section */
.audit-problem-section {
  padding: 100px 24px;
  background: var(--bg-secondary);
}

:root.dark-mode .audit-problem-section {
  background: #1a1f2e;
}

.audit-problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.audit-problem-card {
  background: var(--bg-primary);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid var(--bg-secondary);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.audit-problem-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
 box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.audit-problem-card:hover::before {
  transform: scaleX(1);
}

.audit-problem-icon {
  font-size: 40px;
  margin-bottom: 20px;
  display: inline-block;
  transition: transform 0.4s ease;
}

.audit-problem-card:hover .audit-problem-icon {
  transform: scale(1.2) rotate(5deg);
}

.audit-problem-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  font-family: 'Poppins', sans-serif;
}

:root.dark-mode .audit-problem-card h3 {
  color: var(--white);
}

.audit-problem-card p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
  font-family: 'Poppins', sans-serif;
}

/* Audit Solution Section */
.audit-solution-section {
  padding: 100px 24px;
  background: var(--bg-primary);
}

:root.dark-mode .audit-solution-section {
  background: #0f1a2e;
}

.audit-solution-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 900px) {
  .audit-solution-content {
    grid-template-columns: 1fr;
  }
}

.audit-solution-text h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
  font-family: 'Poppins', sans-serif;
}

:root.dark-mode .audit-solution-text h2 {
  color: var(--white);
}

.audit-solution-text h2 span {
  color: var(--gold);
}

.audit-solution-text > p {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.8;
  font-family: 'Poppins', sans-serif;
}

.audit-solution-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.audit-solution-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.audit-solution-feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.audit-solution-feature:hover .audit-solution-feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.audit-solution-feature-icon svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}

.audit-solution-feature-text h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
  font-family: 'Poppins', sans-serif;
}

:root.dark-mode .audit-solution-feature-text h4 {
  color: var(--white);
}

.audit-solution-feature-text p {
  font-size: 15px;
  color: var(--text-secondary);
  font-family: 'Poppins', sans-serif;
}

/* Audit Preview */
.floating-badge {
  position: absolute;
  background: var(--white);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--border-color);
  animation: floatBadge 4s ease-in-out infinite;
  z-index: 10;
  font-family: 'Poppins', sans-serif;
}

:root.dark-mode .floating-badge {
  background: #252d3d;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.floating-badge-top-right {
  top: 30px;
  right: -30px;
  animation-delay: 0.5s;
}

.floating-badge-bottom-left {
  bottom: 30px;
  left: -30px;
  animation-delay: 1s;
}

.floating-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.floating-badge:hover .floating-badge-icon {
  transform: scale(1.15) rotate(10deg);
}

.floating-badge-icon.green {
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
  color: var(--green-dark);
}

.floating-badge-icon.gold {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  color: var(--gold-dark);
}

.floating-badge-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
  font-family: 'Poppins', sans-serif;
}

:root.dark-mode .floating-badge-text {
  color: var(--white);
}

.floating-badge-text span {
  display: block;
  font-weight: 400;
  color: var(--text-secondary);
  font-size: 13px;
  font-family: 'Poppins', sans-serif;
}

/* Audit Preview */
.audit-preview {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--border-color);
  animation: float 6s ease-in-out infinite;
  position: relative;
}

:root.dark-mode .audit-preview {
  background: #252d3d;
  border-color: rgba(212, 175, 55, 0.1);
}

.audit-preview-header {
  background: #f3f4f6;
  padding: 14px 18px;
  display: flex;
  gap: 8px;
}

:root.dark-mode .audit-preview-header {
  background: #1a1f2e;
}

.audit-preview-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gray-300);
  transition: all 0.3s ease;
}

.audit-preview-dot:nth-child(1) { background: #ff5f57; }
.audit-preview-dot:nth-child(2) { background: #febc2e; }
.audit-preview-dot:nth-child(3) { background: #28c840; }

.audit-preview:hover .audit-preview-dot {
  animation: bounceIn 0.5s ease;
}

.audit-preview-content {
  padding: 28px;
}

.audit-preview-title {
  font-weight: 700;
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
}

:root.dark-mode .audit-preview-title {
  color: var(--white);
}

.audit-preview-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.audit-preview-metric {
  text-align: center;
  padding: 20px;
  background: var(--bg-primary);
  border-radius: 12px;
  transition: all 0.4s ease;
}

.floating-badge.top-right {
  top: 30px;
    right: -30px;
    animation-delay: 0.5s;
}

.floating-badge.bottom-left {
    bottom: 30px;
    left: -30px;
    animation-delay: 1s;
}

:root.dark-mode .audit-preview-metric {
  background: #1a1f2e;
}

.audit-preview-metric:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, var(--bg-secondary), rgba(212, 175, 55, 0.05));
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

:root.dark-mode .audit-preview-metric:hover {
  background: linear-gradient(135deg, #252d3d, rgba(212, 175, 55, 0.1));
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.audit-preview-metric-value {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.audit-preview-metric-value.gold { color: var(--gold); }

.audit-preview-metric:hover .audit-preview-metric-value {
  transform: scale(1.1);
}

.audit-preview-metric-value.gold { color: var(--gold); }
.audit-preview-metric-value.negative { color: #ef4444; }
.audit-preview-metric-value.positive { color: var(--green); }

.audit-preview-metric-label {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 4px;
  font-family: 'Poppins', sans-serif;
}

/* Audit How Section */
.audit-how-section {
  padding: 100px 24px;
  background: var(--bg-secondary);
}

:root.dark-mode .audit-how-section {
  background: #1a1f2e;
}

.audit-steps-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.audit-steps-container::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 12%;
  right: 12%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--blue), var(--green), var(--gold));
  background-size: 300% 100%;
  animation: gradientMove 5s ease infinite;
  z-index: 0;
  border-radius: 2px;
}

@media (max-width: 900px) {
  .audit-steps-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .audit-steps-container::before {
    display: none;
  }
}

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

.audit-step-card {
  background: var(--bg-primary);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  position: relative;
  z-index: 1;
  border: 1px solid var(--bg-primary);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.audit-step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
  border-color: var(--gold);
}

:root.dark-mode .audit-step-card:hover {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  border-color: var(--gold);
}

.audit-step-number {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  margin: 0 auto 20px;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35);
  transition: all 0.4s ease;
  font-family: 'Poppins', sans-serif;
}

.audit-step-card:hover .audit-step-number {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
}

.audit-step-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  font-family: 'Poppins', sans-serif;
}

:root.dark-mode .audit-step-card h3 {
  color: var(--white);
}

.audit-step-card p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
  font-family: 'Poppins', sans-serif;
}

.audit-step-note {
  font-size: 12px;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 8px;
  display: block;
  font-family: 'Poppins', sans-serif;
}

/* Audit Credibility Section */
.audit-credibility-section {
  padding: 100px 24px;
  background: var(--bg-primary);
}

:root.dark-mode .audit-credibility-section {
  background: #0f1a2e;
}

.audit-credibility-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 900px) {
  .audit-credibility-content {
    grid-template-columns: 1fr;
  }
}

.audit-credibility-avatar {
  width: 250px;
  height: 250px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  transition: all 0.4s ease;
  overflow: hidden;
}

.audit-credibility-avatar:hover {
  transform: scale(1.05);
}

.audit-credibility-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  transition: transform 0.4s ease;
}

.audit-credibility-avatar:hover .audit-credibility-img {
  transform: scale(1.08);
}

.audit-credibility-placeholder {
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.audit-credibility-placeholder svg {
  width: 60px;
  height: 60px;
  color: rgba(255, 255, 255, 0.5);
}

.audit-credibility-stats-mini {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 24px;
}

.audit-stat-mini {
  background: var(--bg-secondary);
  padding: 16px 24px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

:root.dark-mode .audit-stat-mini {
  background: #252d3d;
  border-color: rgba(212, 175, 55, 0.1);
}

.audit-stat-mini:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-color: var(--gold);
}

.audit-stat-mini-value {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: var(--text-dark);
  font-family: 'Poppins', sans-serif;
}

:root.dark-mode .audit-stat-mini-value {
  color: var(--white);
}

.audit-stat-mini-label {
  font-size: 13px;
  color: var(--text-secondary);
  font-family: 'Poppins', sans-serif;
}

.audit-credibility-text h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
  font-family: 'Poppins', sans-serif;
}

:root.dark-mode .audit-credibility-text h2 {
  color: var(--white);
}

.audit-credibility-text p {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.8;
  font-family: 'Poppins', sans-serif;
}

.audit-credibility-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.audit-proof-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-secondary);
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  transition: all 0.3s ease;
  border: 1px solid transparent;
  font-family: 'Poppins', sans-serif;
}

:root.dark-mode .audit-proof-item {
  background: #252d3d;
  color: var(--white);
}

.audit-proof-item:hover {
  border-color: var(--green);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(34, 197, 94, 0.15);
}

.audit-proof-item svg {
  width: 20px;
  height: 20px;
  color: var(--green);
}

/* Audit Cost Section */
.audit-cost-section {
  padding: 80px 24px;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  position: relative;
  overflow: hidden;
}

.audit-cost-section::before {
  content: '⚠️';
  position: absolute;
  font-size: 200px;
  opacity: 0.1;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  animation: pulse 3s ease-in-out infinite;
}

:root.dark-mode .audit-cost-section {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
}

.audit-cost-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.audit-cost-icon {
  font-size: 56px;
  margin-bottom: 20px;
  animation: wiggle 2s ease-in-out infinite;
}

.audit-cost-content h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

:root.dark-mode .audit-cost-content h2 {
  color: var(--white);
}

.audit-cost-content p {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 24px;
  font-family: 'Poppins', sans-serif;
}

:root.dark-mode .audit-cost-content p {
  color: var(--text-secondary);
}

.audit-cost-content p strong {
  color: #ef4444;
}

.audit-cost-calc {
  background: var(--white);
  border-radius: 16px;
  padding: 24px 32px;
  display: inline-flex;
  gap: 32px;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 24px;
}

:root.dark-mode .audit-cost-calc {
  background: #252d3d;
}

.audit-cost-calc-item {
  text-align: center;
}

.audit-calc-label {
  display: block;
  font-size: 12px;
  color: var(--gray-500);
  margin-bottom: 4px;
  font-family: 'Poppins', sans-serif;
}

:root.dark-mode .audit-calc-label {
  color: var(--text-secondary);
}

.audit-calc-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  font-family: 'Poppins', sans-serif;
}

:root.dark-mode .audit-calc-value {
  color: var(--white);
}

.audit-calc-value.negative {
  color: #ef4444;
}

.audit-cost-calc-item.total .audit-calc-value {
  color: #ef4444;
  font-size: 24px;
}

.audit-cost-cta {
  font-weight: 600;
  color: var(--navy);
  font-family: 'Poppins', sans-serif;
}

:root.dark-mode .audit-cost-cta {
  color: var(--white);
}

/* Audit Trust Section */
.audit-trust-section {
  padding: 40px 24px;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
}

:root.dark-mode .audit-trust-section {
  background: #0f1a2e;
  border-bottom-color: rgba(212, 175, 55, 0.1);
}

.audit-trust-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.audit-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.audit-trust-item:hover {
  color: var(--text-dark);
  transform: scale(1.05);
}

:root.dark-mode .audit-trust-item:hover {
  color: var(--white);
}

.audit-trust-item svg {
  width: 24px;
  height: 24px;
  color: var(--green);
}

/* Audit Pricing Section */
.audit-pricing-section {
  padding: 100px 24px;
  background: var(--bg-secondary);
}

:root.dark-mode .audit-pricing-section {
  background: #1a1f2e;
}

.audit-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

@media (max-width: 900px) {
  .audit-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }
}

.audit-pricing-card {
  background: var(--bg-primary);
  border-radius: 24px;
  padding: 36px;
  border: 2px solid var(--bg-secondary);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 650px;
}

.audit-pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
  border-color: var(--gold);
}

:root.dark-mode .audit-pricing-card:hover {
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.audit-pricing-card.featured {
  border-color: var(--gold);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
  transform: scale(1.02);
}

:root.dark-mode .audit-pricing-card.featured {
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.15);
}

.audit-pricing-card.featured:hover {
  transform: scale(1.02) translateY(-8px);
  box-shadow: 0 35px 70px rgba(212, 175, 55, 0.25);
}

:root.dark-mode .audit-pricing-card.featured:hover {
  box-shadow: 0 35px 70px rgba(212, 175, 55, 0.2);
}

.audit-pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
  animation: pulseGlow 2s ease-in-out infinite;
  font-family: 'Poppins', sans-serif;
}

.audit-pricing-header {
  text-align: center;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 28px;
}

:root.dark-mode .audit-pricing-header {
  border-bottom-color: rgba(212, 175, 55, 0.1);
}

.audit-pricing-tier {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  font-family: 'Poppins', sans-serif;
}

.audit-pricing-name {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  font-family: 'Poppins', sans-serif;
}

:root.dark-mode .audit-pricing-name {
  color: var(--white);
}

.audit-pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.audit-pricing-currency {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-dark);
  font-family: 'Poppins', sans-serif;
}

:root.dark-mode .audit-pricing-currency {
  color: var(--white);
}

.audit-pricing-amount {
  font-size: 56px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
  font-family: 'Poppins', sans-serif;
}

:root.dark-mode .audit-pricing-amount {
  color: var(--white);
}

.audit-pricing-card.featured .audit-pricing-amount {
  color: var(--gold-dark);
}

.audit-pricing-value {
  margin-top: 12px;
}

.audit-value-total {
  font-size: 14px;
  color: var(--text-secondary);
  text-decoration: line-through;
  font-family: 'Poppins', sans-serif;
}

.audit-pricing-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
  flex-grow: 1;
}

.audit-pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-secondary);
  font-family: 'Poppins', sans-serif;
}

:root.dark-mode .audit-pricing-feature {
  color: var(--text-secondary);
}

.audit-pricing-feature svg {
  width: 20px;
  height: 20px;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
}

.audit-pricing-cta-wrapper {
  margin-top: auto;
}

.audit-pricing-cta {
  display: block;
  width: 100%;
  padding: 16px 24px;
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

.audit-pricing-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.audit-pricing-cta:hover::before {
  left: 100%;
}

.audit-pricing-cta.primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35);
}

.audit-pricing-cta.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.45);
}

.audit-pricing-cta.secondary {
  background: var(--navy);
  color: var(--white);
}

:root.dark-mode .audit-pricing-cta.secondary {
  background: #243751;
}

.audit-pricing-cta.secondary:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
}

.audit-pricing-note {
  text-align: center;
  margin-top: 12px;
  font-size: 13px;
  color: var(--text-secondary);
  font-family: 'Poppins', sans-serif;
}

.audit-pricing-urgency {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  padding: 12px 24px;
  border-radius: 50px;
  margin-top: 20px;
  font-size: 14px;
  color: var(--navy);
  animation: pulseGlow 3s ease-in-out infinite;
  font-family: 'Poppins', sans-serif;
}

:root.dark-mode .audit-pricing-urgency {
  background: rgba(212, 175, 55, 0.2);
  color: var(--gold);
}

.audit-urgency-dot {
  width: 10px;
  height: 10px;
  background: #ef4444;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.audit-pricing-bonus {
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 20px;
  text-align: center;
}

:root.dark-mode .audit-pricing-bonus {
  background: rgba(34, 197, 94, 0.15);
}

.audit-bonus-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: 0.5px;
  margin-bottom: 4px;
  font-family: 'Poppins', sans-serif;
}

:root.dark-mode .audit-bonus-label {
  color: var(--green);
}

.audit-bonus-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  font-family: 'Poppins', sans-serif;
}

:root.dark-mode .audit-bonus-text {
  color: var(--white);
}

/* Audit Included Section */
.audit-included-section {
  padding: 100px 24px;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.audit-included-section .section-title {
  color: var(--text-primary);
}

.audit-included-section .section-subtitle {
  color: var(--text-primary);
}

.audit-included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  .audit-included-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .audit-included-grid {
    grid-template-columns: 1fr;
  }
}

.audit-included-card {
  background: var(--bg-secondary);
  border: 1px solid var(--bg-secondary);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.audit-included-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.audit-included-card:hover {
  border-color: var(--gold);
 box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.audit-included-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  transition: transform 0.4s ease;
}

.audit-included-card:hover .audit-included-icon {
  transform: scale(1.15) rotate(5deg);
}

.audit-included-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  font-family: 'Poppins', sans-serif;
}

.audit-included-card p {
  color: var(--text-primary);
  font-size: 15px;
  line-height: 1.7;
  font-family: 'Poppins', sans-serif;
}

/* Audit Testimonials Section */
.audit-testimonials-section {
  padding: 100px 24px;
  background: var(--bg-secondary);
}

:root.dark-mode .audit-testimonials-section {
  background: #1a1f2e;
}

.audit-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}

.audit-testimonial-card {
  background: var(--bg-primary);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid var(--bg-secondary);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.audit-testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
  border-color: var(--gold);
}

:root.dark-mode .audit-testimonial-card:hover {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.audit-testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.audit-testimonial-stars svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  fill: var(--gold);
}

.audit-testimonial-quote {
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
  font-family: 'Poppins', sans-serif;
}

:root.dark-mode .audit-testimonial-quote {
  color: var(--text-secondary);
}

.audit-testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.audit-testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.audit-testimonial-avatar.blue {
  background: linear-gradient(135deg, #3B82F6, #2563eb);
  color: var(--white);
}

.audit-testimonial-avatar.green {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
}

.audit-testimonial-avatar.gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
}

.audit-testimonial-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
  font-family: 'Poppins', sans-serif;
}

:root.dark-mode .audit-testimonial-info h4 {
  color: var(--white);
}

.audit-testimonial-info p {
  font-size: 14px;
  color: var(--text-secondary);
  font-family: 'Poppins', sans-serif;
}

.audit-testimonial-result {
  display: inline-block;
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
  color: var(--green-dark);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-top: 16px;
  font-family: 'Poppins', sans-serif;
}

:root.dark-mode .audit-testimonial-result {
  background: rgba(34, 197, 94, 0.2);
  color: var(--green);
}

/* Audit FAQ Section */
.audit-faq-section {
  padding: 100px 24px;
  background: var(--bg-primary);
}

:root.dark-mode .audit-faq-section {
  background: #0f1a2e;
}

.audit-faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.audit-faq-item {
  border-bottom: 1px solid var(--border-color);
}

:root.dark-mode .audit-faq-item {
  border-bottom-color: rgba(212, 175, 55, 0.1);
}

.audit-faq-question {
  width: 100%;
  padding: 24px 0;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
}

.audit-faq-question:hover {
  color: var(--gold-dark);
}

.audit-faq-question h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  padding-right: 20px;
  transition: color 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

:root.dark-mode .audit-faq-question h3 {
  color: var(--white);
}

.audit-faq-question:hover h3 {
  color: var(--gold-dark);
}

.audit-faq-question svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.audit-faq-item.active .audit-faq-question svg {
  transform: rotate(180deg);
}

.audit-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.audit-faq-item.active .audit-faq-answer {
  max-height: 500px;
}

.audit-faq-answer p {
  padding-bottom: 24px;
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-family: 'Poppins', sans-serif;
}

/* Audit CTA Section */
.audit-cta-section {
  padding: 100px 24px;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.audit-cta-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.audit-cta-content h2 {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
  font-family: 'Poppins', sans-serif;
}

.audit-cta-content h2 span {
  color: var(--gold);
}

.audit-cta-content p {
  font-size: 18px;
  color: var(--text-primary);
  margin-bottom: 40px;
  line-height: 1.8;
  font-family: 'Poppins', sans-serif;
}

.audit-cta-guarantee {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.1);
  padding: 16px 28px;
  border-radius: 16px;
  margin-top: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.audit-cta-guarantee svg {
  width: 40px;
  height: 40px;
  color: var(--gold);
  animation: glowPulse 2s ease-in-out infinite;
}

.audit-cta-guarantee-text {
  text-align: left;
}

.audit-cta-guarantee-text strong {
  display: block;
  color: var(--text-primary);
  font-size: 16px;
  margin-bottom: 2px;
  font-family: 'Poppins', sans-serif;
}

.audit-cta-guarantee-text span {
  color: var(--text-primary);
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
}

/* Audit Responsive */
@media (max-width: 768px) {
  .audit-hero-stats {
    flex-direction: column;
    gap: 24px;
  }

  .audit-hero-stat::after {
    display: none;
  }

  .audit-credibility-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .audit-credibility-proof {
    justify-content: center;
  }

  .audit-cost-calc {
    flex-direction: column;
    gap: 16px;
  }

  .audit-pricing-card {
    min-height: auto;
  }

  .audit-trust-container {
    gap: 24px;
  }
}

/* 393px Mobile Responsive */
@media (max-width: 393px) {
  .audit-hero {
    padding: 120px 16px 80px;
  }

  .audit-hero h1 {
    font-size: clamp(24px, 5vw, 36px);
  }

  .audit-hero-subtitle {
    font-size: 16px;
  }

  .audit-hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .audit-hero-stat {
    width: 100%;
  }

  .audit-hero-stat::after {
    display: none;
  }

  .audit-problem-section {
    padding: 60px 16px;
  }

  .audit-problem-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .audit-solution-section {
    padding: 60px 16px;
  }

  .audit-solution-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .audit-solution-text h2 {
    font-size: clamp(22px, 4vw, 32px);
  }

  .audit-solution-features {
    gap: 16px;
  }

  .audit-how-section {
    padding: 60px 16px;
  }

  .audit-steps-container {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .audit-steps-container::before {
    display: none;
  }

  .audit-credibility-section {
    padding: 60px 16px;
  }

  .audit-credibility-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .audit-credibility-avatar {
    width: 180px;
    height: 180px;
    margin: 0 auto;
  }

  .audit-credibility-text h2 {
    font-size: clamp(20px, 4vw, 30px);
  }

  .audit-credibility-stats-mini {
    flex-direction: column;
    gap: 12px;
  }

  .audit-cost-section {
    padding: 60px 16px;
  }

  .audit-cost-content h2 {
    font-size: clamp(20px, 4vw, 28px);
  }

  .audit-cost-content p {
    font-size: 15px;
  }

  .audit-cost-calc {
    flex-direction: column;
    gap: 12px;
    padding: 16px;
  }

  .audit-trust-section {
    padding: 30px 16px;
  }

  .audit-trust-container {
    flex-direction: column;
    gap: 12px;
  }

  .audit-trust-item {
    justify-content: center;
    width: 100%;
  }

  .audit-pricing-section {
    padding: 60px 16px;
  }

  .audit-pricing-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .audit-pricing-card {
    padding: 24px;
    min-height: auto;
  }

  .audit-pricing-cta {
    padding: 12px 20px;
    font-size: 14px;
  }

  .audit-included-section {
    padding: 60px 16px;
  }

  .audit-included-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .audit-included-card {
    padding: 20px;
  }

  .audit-testimonials-section {
    padding: 60px 16px;
  }

  .audit-testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .audit-testimonial-card {
    padding: 20px;
  }

  .audit-faq-section {
    padding: 60px 16px;
  }

  .audit-faq-container {
    max-width: 100%;
  }

  .audit-faq-question h3 {
    font-size: 16px;
  }

  .audit-cta-section {
    padding: 60px 16px;
  }

  .audit-cta-content h2 {
    font-size: clamp(20px, 4vw, 32px);
  }

  .audit-cta-content p {
    font-size: 15px;
  }

  .audit-cta-guarantee {
    flex-direction: column;
    gap: 12px;
    padding: 12px 16px;
  }

  .audit-cta-guarantee svg {
    width: 32px;
    height: 32px;
  }

  .floating-badge {
    padding: 12px 16px;
    font-size: 12px;
    gap: 10px;
    /* top: 20px !important; */
    right: 10px !important;
  }

  .floating-badge.bottom-left {
    position: absolute;
    bottom: 20px !important;
    left: 10px !important;
    height: 70px;
    width: 220px;
  }

  .floating-badge-icon {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }

  /* Management 393px Mobile Styles */
  .ideal-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .ideal-content {
    width: 100%;
    padding: 1rem;
  }

  .ideal-content h2 {
    font-size: 1.2rem;
  }

  .ideal-list li {
    font-size: 0.85rem;
    padding: 0.5rem 0;
  }

  .ideal-image {
    width: 100%;
    min-height: 200px;
    padding: 1.5rem;
  }

  .ideal-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .ideal-stat {
    width: 100%;
  }
  
}

@media (max-width: 768px) {
  .tutoring-hero {
    padding: 120px 16px 80px;
  }

  .tutoring-hero-container h1 {
    font-size: clamp(24px, 5vw, 36px);
  }

  .tutoring-hero-subtitle {
    font-size: 16px;
  }

  .tutoring-hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .tutoring-hero-stat {
    width: 100%;
  }

  .tutoring-hero-stat::after {
    display: none;
  }

  .tutoring-hero-features {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .problems-grid {
    grid-template-columns: 1fr;
  }

  .topics-grid {
    grid-template-columns: 1fr;
  }
}

/* Responsive Video Player */
@media (max-width: 768px) {
  .course-video-section {
    padding: 3rem 1rem;
  }

  .course-video-wrapper {
    padding-bottom: 56.25%;
  }

  .course-video-caption {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .course-video-section {
    padding: 2rem 1rem;
  }

  .course-video-container {
    max-width: 100%;
  }

  .course-video-caption {
    font-size: 0.9rem;
  }
}

/* WordPress Theme Specific Styles */

/* Site Header */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(250, 249, 246, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: none;
}

.site-header.scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.site-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-branding {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-branding .custom-logo {
  height: auto;
  width: auto;
  max-width: 60px;
}

.site-logo-text {
  color: var(--navy);
  font-weight: 700;
  font-size: 1.5rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-logo-text:hover {
  color: var(--gold);
}

.site-navigation {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.site-navigation ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.site-navigation a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.site-navigation a:hover {
  color: var(--gold);
}

.header-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.dark-mode-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: color 0.3s ease;
}

.dark-mode-toggle:hover {
  color: var(--gold);
}

/* Dark Mode Header */
:root.dark-mode .site-header {
  background: rgba(26, 31, 46, 0.95);
  color: #e8eaed;
}

:root.dark-mode .site-branding {
  color: #e8eaed;
}

:root.dark-mode .site-logo-text {
  color: #e8eaed;
}

:root.dark-mode .site-logo-text:hover {
  color: var(--gold);
}

:root.dark-mode .site-navigation a {
  color: #e8eaed;
}

:root.dark-mode .site-navigation a:hover {
  color: var(--gold);
}

:root.dark-mode .dark-mode-toggle {
  color: #e8eaed;
}

/* Site Footer */
.site-footer {
  background-color: var(--navy);
  color: var(--white);
  padding: 3rem 2rem;
  margin-top: auto;
  border-top: 2px solid var(--gold);
}

.footer-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-brand {
  margin-bottom: 1rem;
}

.footer-brand h3 {
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.footer-brand .custom-logo {
  max-height: 60px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-content {
  display: contents;
}

.footer-content .widget {
  margin-bottom: 2rem;
}

.footer-content .widget-title {
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-content a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-content a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-bottom nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.footer-bottom nav a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom nav a:hover {
  color: var(--gold);
}

.footer-copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.footer-copyright a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-copyright a:hover {
  text-decoration: underline;
}

/* Dark Mode Footer */
:root.dark-mode .site-footer {
  background-color: var(--navy-dark);
  border-top-color: var(--gold);
}

/* Ensure main content has top padding for fixed header */
.site-content {
  margin-top: 80px;
  flex: 1;
}

/* Mobile header adjustments */
@media (max-width: 768px) {
  .site-header {
    padding: 0.5rem 1rem;
  }

  .site-header-inner {
    padding: 0 1rem;
  }

  .site-navigation {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .site-navigation.active {
    max-height: 400px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .site-navigation ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .site-navigation li {
    border-bottom: 1px solid var(--gray-light);
  }

  .site-navigation a {
    display: block;
    padding: 1rem;
  }

  :root.dark-mode .site-navigation {
    background: var(--navy-dark);
  }

  :root.dark-mode .site-navigation li {
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }

  .footer-wrapper {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Blog Article Content Styles */
.wp-content-post-type-post .entry-content .comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

.wp-content-post-type-post .entry-content .comparison-card {
  background: var(--white);
  border-radius: 12px;
  padding: 1.5rem;
  border: 2px solid transparent;
}

.wp-content-post-type-post .entry-content .comparison-card.coaching {
  border-color: var(--gold);
}

.wp-content-post-type-post .entry-content .comparison-card.course {
  border-color: var(--navy);
}

.wp-content-post-type-post .entry-content .comparison-card h4 {
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.2rem;
}

.wp-content-post-type-post .entry-content .comparison-card.coaching h4 {
  color: var(--gold);
}

.wp-content-post-type-post .entry-content .comparison-card.course h4 {
  color: var(--navy);
}

.wp-content-post-type-post .entry-content .comparison-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.wp-content-post-type-post .entry-content .comparison-card li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(10, 22, 40, 0.08);
  color: var(--text-dark);
}

.wp-content-post-type-post .entry-content .comparison-card li:last-child {
  border-bottom: none;
}

.wp-content-post-type-post .entry-content .comparison-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: bold;
}

.wp-content-post-type-post .entry-content .scenario-box {
  background: #f5e6b8;
  border-radius: 12px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-left: 4px solid var(--gold);
}

.wp-content-post-type-post .entry-content .scenario-box h4 {
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.wp-content-post-type-post .entry-content .scenario-box p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.6;
}

.wp-content-post-type-post .entry-content .callout {
  background: var(--gray-100);
  border-left: 4px solid var(--gold);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 8px;
}

.wp-content-post-type-post .entry-content .callout p {
  margin: 0;
  color: var(--text-dark);
  line-height: 1.8;
  font-size: 1.05rem;
}

.wp-content-post-type-post .entry-content .article-cta {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  border-radius: 16px;
  padding: 3rem;
  margin: 3rem 0;
  text-align: center;
  color: white;
}

.wp-content-post-type-post .entry-content .article-cta h3 {
  color: white;
  font-size: 1.75rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.wp-content-post-type-post .entry-content .article-cta p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.wp-content-post-type-post .entry-content .cta-button {
  display: inline-flex;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold), #e8c766);
  color: var(--navy-dark);
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.wp-content-post-type-post .entry-content .cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
  text-decoration: none;
  color: var(--navy-dark);
}

/* Dark Mode Blog Styles */
:root.dark-mode .wp-content-post-type-post .entry-content .comparison-card {
  background: #2a2a2a;
  border-color: rgba(212, 175, 55, 0.3);
}

:root.dark-mode .wp-content-post-type-post .entry-content .comparison-card.coaching {
  border-color: var(--gold);
}

:root.dark-mode .wp-content-post-type-post .entry-content .comparison-card.course {
  border-color: #5a9ab8;
}

:root.dark-mode .wp-content-post-type-post .entry-content .comparison-card h4 {
  color: var(--text-dark);
}

:root.dark-mode .wp-content-post-type-post .entry-content .comparison-card.coaching h4 {
  color: var(--gold);
}

:root.dark-mode .wp-content-post-type-post .entry-content .comparison-card.course h4 {
  color: #7db8d8;
}

:root.dark-mode .wp-content-post-type-post .entry-content .comparison-card li {
  color: #c0c0c0;
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

:root.dark-mode .wp-content-post-type-post .entry-content .scenario-box {
  background: rgba(212, 175, 55, 0.15);
  border-left-color: var(--gold);
}

:root.dark-mode .wp-content-post-type-post .entry-content .scenario-box h4 {
  color: var(--gold);
}

:root.dark-mode .wp-content-post-type-post .entry-content .scenario-box p {
  color: #c0c0c0;
}

:root.dark-mode .wp-content-post-type-post .entry-content .callout {
  background: rgba(10, 22, 40, 0.5);
  border-left-color: var(--gold);
}

:root.dark-mode .wp-content-post-type-post .entry-content .callout p {
  color: #c0c0c0;
}

:root.dark-mode .wp-content-post-type-post .entry-content .article-cta {
  background: linear-gradient(135deg, #1a3a4a, #2a5a6a);
}

:root.dark-mode .wp-content-post-type-post .entry-content .article-cta h3,
:root.dark-mode .wp-content-post-type-post .entry-content .article-cta p {
  color: #e0e0e0;
}

/* Responsive Blog Styles */
@media (max-width: 768px) {
  .wp-content-post-type-post .entry-content .comparison-grid {
    grid-template-columns: 1fr;
  }

  .wp-content-post-type-post .entry-content .article-cta {
    padding: 2rem 1.5rem;
  }

  .wp-content-post-type-post .entry-content .article-cta h3 {
    font-size: 1.5rem;
  }
}

/* ============================================
   Product Page Styles (Facebook Ads Course)
   ============================================ */

.pfac-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.pfac-hero {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(27, 43, 68, 0.05) 100%);
  padding: 100px 20px;
  text-align: center;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pfac-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--text-primary);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.2;
}

.pfac-hero p {
  font-size: 1.3rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Main Product Section */
.pfac-main {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin: 60px auto;
  align-items: start;
}

.pfac-content p {
  line-height: 1.8;
  margin-bottom: 15px;
  color: var(--text-primary);
  font-size: 1rem;
}

/* Pricing Card */
.pfac-pricing-card {
  background: var(--bg-primary);
  border-radius: 12px;
  padding: 30px;
  height: fit-content;
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.pfac-pricing-card h3 {
  margin-top: 0;
  margin-bottom: 5px;
  color: var(--text-primary);
  font-size: 1.5rem;
}

.pfac-pricing-card > p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 15px;
}

/* Price Display */
.pfac-price {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin: 25px 0;
  font-weight: 800;
}

.pfac-price .currency {
  font-size: 1.3rem;
  color: var(--text-primary);
}

.pfac-price .amount {
  font-size: 3rem;
  color: var(--gold);
}

/* Features List */
.pfac-features-list {
  list-style: none;
  padding: 20px 0;
  margin: 20px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.pfac-features-list li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.pfac-features-list svg {
  width: 18px;
  height: 18px;
  color: var(--green);
  flex-shrink: 0;
}

/* CTA Button */
.pfac-cta {
  width: 100%;
  padding: 16px 20px;
  background: var(--gold);
  color: var(--navy-dark);
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.pfac-cta:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.pfac-cta:active {
  transform: translateY(0);
}

/* Guarantee Badge */
.pfac-guarantee {
  text-align: center;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.pfac-guarantee svg {
  width: 20px;
  height: 20px;
  color: var(--green);
}

/* Curriculum Section */
.pfac-curriculum-section {
  margin-top: 60px;
}

.pfac-curriculum-section h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--text-primary);
  font-weight: 700;
}

.pfac-curriculum-accordion {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Lesson Items */
.pfac-lesson-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  background: var(--bg-primary);
}

.pfac-lesson-toggle {
  background: var(--bg-primary);
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  color: var(--text-primary);
  transition: all ease 0.3s;
  width: 100%;
  text-align: left;
  border: none;
  font-size: 1rem;
}

.pfac-lesson-toggle:hover {
  background-color: rgba(212, 175, 55, 0.08);
  color: var(--gold);
}

.pfac-lesson-toggle svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s;
  color: var(--gold);
  flex-shrink: 0;
  margin-left: 10px;
}

.pfac-lesson-item.active .pfac-lesson-toggle {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(27, 43, 68, 0.05) 100%);
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
}

.pfac-lesson-item.active .pfac-lesson-toggle svg {
  transform: rotate(180deg);
}

.pfac-lesson-content {
  display: none;
  padding: 20px;
  background: var(--bg-secondary);
  color: var(--text-primary);
  line-height: 1.8;
  border-top: 1px solid var(--border-color);
}

.pfac-lesson-content ul {
  list-style: none;
  padding: 0;
}

.pfac-lesson-content li {
  padding: 12px 0;
  padding-left: 30px;
  position: relative;
  color: var(--text-primary);
}

.pfac-lesson-content li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
}

/* FAQ Section */
.pfac-faq-section {
  background: var(--bg-primary);
}

.pfac-faq-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: var(--text-primary);
  font-weight: 800;
}

.pfac-faq-container {
  max-width: 700px;
  margin: 0 auto;
}

/* FAQ Items */
.pfac-faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  background: var(--bg-secondary);
}

.pfac-faq-question {
  background: var(--bg-secondary);
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  color: var(--text-primary);
  transition: all ease 0.3s;
  gap: 20px;
}

.pfac-faq-question:hover {
  background-color: rgba(212, 175, 55, 0.08);
  color: var(--gold);
}

.pfac-faq-question svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.pfac-faq-item.active .pfac-faq-question {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(27, 43, 68, 0.05) 100%);
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
}

.pfac-faq-item.active .pfac-faq-question svg {
  transform: rotate(180deg);
}

.pfac-faq-answer {
  display: none;
  padding: 20px;
  background: var(--bg-secondary);
  color: var(--text-primary);
  line-height: 1.8;
  border-top: 1px solid var(--border-color);
  font-size: 0.95rem;
}

/* Dark Mode - Product Styles */
:root.dark-mode .pfac-pricing-card {
  background: var(--bg-secondary);
  border-color: var(--border-color);
}

:root.dark-mode .pfac-pricing-card h3 {
  color: var(--text-primary);
}

:root.dark-mode .pfac-features-list li {
  color: var(--text-primary);
}

:root.dark-mode .pfac-lesson-toggle:hover {
  background-color: rgba(212, 175, 55, 0.15);
}

:root.dark-mode .pfac-lesson-item.active .pfac-lesson-toggle {
  background: rgba(212, 175, 55, 0.15);
}

:root.dark-mode .pfac-lesson-content {
  background: rgba(10, 22, 40, 0.3);
  border-color: var(--border-color);
}

:root.dark-mode .pfac-faq-question:hover {
  background-color: rgba(212, 175, 55, 0.15);
}

:root.dark-mode .pfac-faq-item.active .pfac-faq-question {
  background: rgba(212, 175, 55, 0.15);
}

:root.dark-mode .pfac-faq-answer {
  background: rgba(10, 22, 40, 0.3);
  border-color: var(--border-color);
}

/* Responsive Product Styles */
@media (max-width: 1024px) {
  .pfac-hero h1 {
    font-size: 2.2rem;
  }

  .pfac-main {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .pfac-hero {
    padding: 60px 20px;
    min-height: auto;
  }

  .pfac-hero h1 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .pfac-hero p {
    font-size: 1rem;
  }

  .pfac-main {
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 40px auto;
  }

  .pfac-pricing-card {
    position: static;
    width: 100%;
    order: 3;
  }

  .pfac-content {
    order: 1;
  }

  .pfac-curriculum-section {
    order: 2;
    margin-top: 40px;
  }

  .pfac-lesson-toggle {
    font-size: 0.95rem;
    padding: 15px;
  }

  .pfac-faq-question {
    font-size: 0.95rem;
    padding: 15px;
  }

  .pfac-faq-section h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .pfac-hero h1 {
    font-size: 1.5rem;
  }

  .pfac-price .amount {
    font-size: 2rem;
  }

  .pfac-lesson-toggle,
  .pfac-faq-question {
    padding: 12px;
    font-size: 0.9rem;
  }

  .pfac-lesson-content,
  .pfac-faq-answer {
    padding: 15px;
  }
}