/*
Theme Name: Apex Medical Group
Theme URI: https://apexmedicalgroup.us
Author: Apex Medical Group
Author URI: https://apexmedicalgroup.us
Description: Custom theme for Apex Medical Group - Telehealth Hormone Health Clinic
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: apex-medical
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4

Apex Medical Group - Telehealth hormone therapy for men and women across all 50 states.
*/

/* ========================================
   CSS VARIABLES
   ======================================== */
:root {
  --color-navy: #0B2545;
  --color-navy-light: #1a3a5c;
  --color-blue: #1F6FEB;
  --color-blue-hover: #1a5fd4;
  --color-gray-light: #E6E8EB;
  --color-gray-50: #f9fafb;
  --color-gray-100: #f3f4f6;
  --color-gray-200: #e5e7eb;
  --color-gray-300: #d1d5db;
  --color-gray-400: #9ca3af;
  --color-gray-500: #6b7280;
  --color-gray-600: #4b5563;
  --color-gray-700: #374151;
  --color-pink-400: #f472b6;
  --color-pink-500: #ec4899;
  --color-pink-600: #db2777;
  --color-green-100: #dcfce7;
  --color-green-500: #22c55e;
  --color-green-600: #16a34a;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Libre Baskerville', Georgia, serif;
}

/* ========================================
   RESET & BASE (with !important for WordPress conflicts)
   ======================================== */
*, *::before, *::after {
  box-sizing: border-box !important;
}

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body,
body.home-page,
body.mens-health-page,
body.womens-health-page {
  font-family: var(--font-sans) !important;
  font-size: 16px !important;
  line-height: 1.6 !important;
  color: var(--color-gray-700) !important;
  background-color: #fff !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0 !important;
  padding: 0 !important;
}

#page.site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-content {
  flex: 1;
}

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

a {
  color: var(--color-blue);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--color-blue-hover);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-navy);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

@media (max-width: 768px) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.875rem; }
  h3 { font-size: 1.25rem; }
}

/* ========================================
   UTILITIES
   ======================================== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-center { text-align: center; }
.text-white { color: #fff; }
.text-gray-400 { color: var(--color-gray-400); }
.text-gray-500 { color: var(--color-gray-500); }
.text-gray-600 { color: var(--color-gray-600); }

.bg-white { background-color: #fff; }
.bg-gray-50 { background-color: var(--color-gray-50); }
.bg-navy { background-color: var(--color-navy); }

.font-bold { font-weight: 700; }
.font-medium { font-weight: 500; }
.font-serif { font-family: var(--font-serif); }

.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }

.shadow-sm { box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05); }
.shadow { box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25); }

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--color-blue);
  color: #fff;
}

.btn-primary:hover {
  background-color: var(--color-blue-hover);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
  background-color: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}

.btn-pink {
  background-color: var(--color-pink-500);
  color: #fff;
}

.btn-pink:hover {
  background-color: var(--color-pink-600);
  color: #fff;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

/* ========================================
   HEADER
   ======================================== */
.site-header {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 100 !important;
  padding: 1rem 0 !important;
  background: transparent !important;
  width: 100% !important;
}

.site-header.sticky {
  position: fixed;
  background-color: rgba(11, 37, 69, 0.95);
  backdrop-filter: blur(10px);
}

/* Interior pages - white header with dark logo */
.site-header.header-white {
  position: relative !important;
  background-color: #FFFFFF !important;
  border-bottom: 1px solid var(--color-gray-100) !important;
}

.site-header.header-white.sticky {
  position: fixed !important;
  background-color: #FFFFFF !important;
}

/* Get Started page - no sticky header */
.page-template-page-get-started .site-header,
.page-template-page-get-started .site-header.sticky {
  position: relative !important;
}

.header-white .main-nav a {
  color: var(--color-gray-600) !important;
}

.header-white .main-nav a:hover {
  color: var(--color-navy) !important;
}

.header-white .mobile-menu-toggle {
  color: var(--color-navy) !important;
}

.header-white .header-cta .btn-outline {
  border-color: var(--color-navy) !important;
  color: var(--color-navy) !important;
}

.header-white .header-cta .btn-outline:hover {
  background-color: var(--color-navy) !important;
  color: #fff !important;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.site-logo img {
  height: 3rem;
  width: auto;
}

.main-nav {
  display: none;
}

@media (min-width: 1024px) {
  .main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}

.main-nav a {
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: #fff;
}

.header-cta {
  display: none;
}

@media (min-width: 1024px) {
  .header-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
}

.header-cart-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: opacity 0.2s ease;
  padding: 0.25rem;
  margin-left: 0.25rem;
}

.header-cart-link:hover {
  opacity: 0.8;
}

.header-white .header-cart-link {
  color: var(--color-navy);
}

.header-cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--color-blue);
  color: white;
  font-size: 0.625rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.mobile-cart-link {
  display: none;
  position: relative;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 0.25rem;
}

.header-white .mobile-cart-link {
  color: var(--color-navy);
}

.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
}

@media (max-width: 1023px) {
  .mobile-cart-link {
    display: flex;
  }
}

@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }
  .mobile-cart-link {
    display: none;
  }
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-navy);
  z-index: 100;
  padding: 2rem;
}

.mobile-menu.active {
  display: flex;
  flex-direction: column;
}

.mobile-menu-close {
  align-self: flex-end;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 3rem;
}

.mobile-menu-nav a {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 500;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at 70% 50%, rgba(31, 111, 235, 0.15) 0%, transparent 50%);
}

/* Full-width hero with background image */
.hero.hero-fullwidth {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero.hero-fullwidth::before {
  display: none;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
  z-index: 1;
}

.hero-content-centered {
  position: relative;
  z-index: 10;
  max-width: 600px;
  padding: 10rem 0 6rem;
  text-align: left;
}

.hero-content-centered h1 {
  color: #fff;
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-content-centered h1 {
    font-size: 3.5rem;
  }
}

.hero-content-centered p {
  color: rgba(255,255,255,0.9);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-content-centered .hero-buttons {
  margin-bottom: 0;
}

.hero .container {
  position: relative;
  z-index: 10;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  padding: 8rem 0 4rem;
}

@media (min-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
    padding: 0;
  }
}

.hero-text h1 {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-text h1 {
    font-size: 3.5rem;
  }
}

.hero-text p {
  color: rgba(255,255,255,0.8);
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 1rem;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
}

.hero-trust-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--color-blue);
}

.hero-image {
  display: none;
}

@media (min-width: 1024px) {
  .hero-image {
    display: block;
    position: relative;
  }
}

.hero-image img {
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

.hero-price-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: #fff;
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

.hero-price-badge .price {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--color-navy);
}

.hero-price-badge .price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-gray-500);
}

.hero-price-badge .label {
  font-size: 0.875rem;
  color: var(--color-gray-500);
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--color-gray-600);
}

/* ========================================
   CARDS
   ======================================== */
.card {
  background: #fff;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
  border: 1px solid var(--color-gray-100);
  transition: box-shadow 0.2s ease;
}

.card:hover {
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

.card-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(31, 111, 235, 0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--color-blue);
}

.card h3 {
  margin-bottom: 0.5rem;
}

.card p {
  color: var(--color-gray-600);
}

/* ========================================
   GRID LAYOUTS
   ======================================== */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

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

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

@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

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

@media (min-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ========================================
   TWO COLUMN LAYOUT
   ======================================== */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .two-col {
    grid-template-columns: repeat(2, 1fr);
  }
}

.two-col img {
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

/* ========================================
   BENEFITS LIST
   ======================================== */
.benefits-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .benefits-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.benefit-check {
  width: 1.5rem;
  height: 1.5rem;
  background: var(--color-green-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-check svg {
  width: 1rem;
  height: 1rem;
  color: var(--color-green-600);
}

.benefit-item span {
  color: var(--color-navy);
  font-weight: 500;
}

/* ========================================
   PRICING CARD
   ======================================== */
.pricing-card {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  padding: 2rem;
  border-radius: 1rem;
  color: #fff;
}

@media (min-width: 768px) {
  .pricing-card {
    padding: 3rem;
  }
}

.pricing-card h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.pricing-card .price {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-card .price span {
  font-size: 1.25rem;
  font-weight: 400;
  opacity: 0.7;
}

.pricing-card .subtitle {
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
}

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

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
}

.pricing-features svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--color-blue);
}

.pricing-card .btn {
  width: 100%;
}

.pricing-card .disclaimer {
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  margin-top: 1rem;
}

/* Women's pricing card variant */
.pricing-card.pink {
  background: linear-gradient(135deg, #3d2a4d 0%, #5a3d6a 100%);
}

/* ========================================
   HOW IT WORKS
   ======================================== */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step {
  text-align: center;
}

.step-number {
  font-size: 3rem;
  font-weight: 700;
  color: rgba(31, 111, 235, 0.2);
  margin-bottom: 1rem;
}

.step h3 {
  margin-bottom: 0.5rem;
}

.step p {
  color: var(--color-gray-600);
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-list {
  max-width: 48rem;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-gray-200);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-navy);
}

.faq-question svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--color-gray-400);
  transition: transform 0.2s ease;
}

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

.faq-answer {
  display: none;
  padding-bottom: 1.5rem;
  color: var(--color-gray-600);
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  display: block;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  padding: 5rem 0;
  text-align: center;
}

.cta-section h2 {
  color: #fff;
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255,255,255,0.8);
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  background-color: var(--color-navy);
  color: var(--color-gray-400);
  padding: 4rem 0 2rem;
}

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

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-col h4 {
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  font-family: var(--font-sans);
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.75rem;
}

.footer-col a {
  color: var(--color-gray-400);
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #fff;
}

.footer-logo img {
  height: 2.5rem;
  width: auto;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
}

/* ========================================
   LEGAL PAGES
   ======================================== */
.legal-page {
  padding: 8rem 0 4rem;
  background-color: #FFFFFF !important;
  min-height: 100vh;
}

.legal-page h1 {
  margin-bottom: 0.5rem;
}

.legal-page .effective-date {
  color: var(--color-gray-500);
  margin-bottom: 3rem;
}

.legal-content {
  max-width: 48rem;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.legal-content h3 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.legal-content p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.legal-content ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.legal-content .notice {
  padding: 1rem 1.5rem;
  border-left: 4px solid;
  margin: 2rem 0;
}

.legal-content .notice.warning {
  background-color: #fef3c7;
  border-color: #f59e0b;
}

.legal-content .notice.error {
  background-color: #fee2e2;
  border-color: #ef4444;
}

.legal-content .notice.info {
  background-color: #dbeafe;
  border-color: #3b82f6;
}

/* ========================================
   WOOCOMMERCE COMPATIBILITY
   ======================================== */
.woocommerce-page .site-header {
  position: relative;
  background-color: var(--color-navy);
}

.woocommerce .button,
.woocommerce input.button,
.woocommerce button.button {
  background-color: var(--color-blue) !important;
  color: #fff !important;
  border-radius: 9999px !important;
  padding: 0.875rem 2rem !important;
  font-weight: 600 !important;
}

.woocommerce .button:hover,
.woocommerce input.button:hover,
.woocommerce button.button:hover {
  background-color: var(--color-blue-hover) !important;
}

/* ========================================
   CHECKOUT PAGE
   ======================================== */
.apex-checkout-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}

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

.apex-checkout-header h1 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-navy);
  margin: 0 0 0.5rem;
}

.apex-checkout-header p {
  font-size: 1.05rem;
  color: var(--color-gray-500);
  margin: 0;
}

.apex-checkout-steps-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 2.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.apex-checkout-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.apex-checkout-step span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-gray-400);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.apex-checkout-step.completed span,
.apex-checkout-step.active span {
  color: var(--color-navy);
}

.apex-checkout-step-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  background: var(--color-gray-200);
  color: var(--color-gray-500);
}

.apex-checkout-step.completed .apex-checkout-step-icon {
  background: var(--color-green-500);
  color: white;
}

.apex-checkout-step.active .apex-checkout-step-icon {
  background: var(--color-blue);
  color: white;
}

.apex-checkout-step-line {
  flex: 1;
  height: 3px;
  background: var(--color-gray-200);
  min-width: 60px;
  margin: 0 0.5rem;
  margin-bottom: 1.5rem;
  border-radius: 3px;
}

.apex-checkout-step-line.completed {
  background: var(--color-green-500);
}

.apex-checkout-step-line.active {
  background: linear-gradient(to right, var(--color-green-500), var(--color-blue));
}

.apex-checkout-single-col {
  max-width: 680px;
  margin: 0 auto;
}

.apex-checkout-section {
  background: white;
  border: 1px solid var(--color-gray-200);
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.apex-checkout-section h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-navy);
  margin: 0 0 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--color-gray-100);
}

.apex-checkout-order-summary {
  background: white;
  border: 1px solid var(--color-gray-200);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 1.25rem;
}

.apex-checkout-order-summary h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-navy);
  margin: 0 0 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--color-gray-100);
}

.apex-checkout-guarantee {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
  border: 1.5px solid #bbf7d0;
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.25rem;
}

.apex-checkout-guarantee-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-green-500);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}

.apex-checkout-guarantee-icon svg {
  width: 22px;
  height: 22px;
}

.apex-checkout-guarantee-content strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.25rem;
}

.apex-checkout-guarantee-content p {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--color-gray-600);
  margin: 0;
}

.apex-checkout-trust {
  background: var(--color-gray-50);
  border: 1px solid var(--color-gray-200);
  border-radius: 1rem;
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}

.apex-checkout-trust-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.4rem 0;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-gray-600);
}

.apex-checkout-trust-item svg {
  color: var(--color-green-500);
  flex-shrink: 0;
}

.apex-checkout-next-steps {
  background: linear-gradient(135deg, #f0f4ff 0%, #f8faff 100%);
  border: 1px solid #dbe4f0;
  border-radius: 1rem;
  padding: 1.5rem;
}

.apex-checkout-next-steps h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-navy);
  margin: 0 0 1.25rem;
}

.apex-next-steps-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.apex-next-step {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
}

.apex-next-step-number {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-navy);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.apex-next-step-content strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.2rem;
}

.apex-next-step-content p {
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--color-gray-600);
  margin: 0;
}

/* WooCommerce Form Field Overrides */
.apex-checkout-form .woocommerce-billing-fields__field-wrapper,
.apex-checkout-form .woocommerce-shipping-fields__field-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.apex-checkout-form .woocommerce-billing-fields__field-wrapper .form-row-wide,
.apex-checkout-form .woocommerce-shipping-fields__field-wrapper .form-row-wide {
  grid-column: 1 / -1;
}

.apex-checkout-form .form-row {
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  float: none !important;
}

.apex-checkout-form .form-row-first,
.apex-checkout-form .form-row-last {
  width: 100% !important;
  float: none !important;
}

.apex-checkout-form .form-row input,
.apex-checkout-form .form-row select,
.apex-checkout-form .form-row textarea {
  width: 100% !important;
}

.apex-checkout-form label {
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  color: var(--color-navy) !important;
  margin-bottom: 0.35rem !important;
  display: block !important;
}

.apex-checkout-form label .optional {
  font-weight: 400 !important;
  color: var(--color-gray-400) !important;
  font-size: 0.8rem !important;
}

.apex-checkout-form input.input-text,
.apex-checkout-form select,
.apex-checkout-form textarea {
  width: 100% !important;
  padding: 0.75rem 1rem !important;
  border: 1.5px solid var(--color-gray-300) !important;
  border-radius: 0.625rem !important;
  font-size: 0.95rem !important;
  font-family: var(--font-sans) !important;
  background: white !important;
  color: var(--color-navy) !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
  outline: none !important;
  -webkit-appearance: none !important;
}

.apex-checkout-form input.input-text:focus,
.apex-checkout-form select:focus,
.apex-checkout-form textarea:focus {
  border-color: var(--color-blue) !important;
  box-shadow: 0 0 0 3px rgba(31, 111, 235, 0.1) !important;
}

.apex-checkout-form .select2-container--default .select2-selection--single {
  height: auto !important;
  padding: 0.75rem 1rem !important;
  border: 1.5px solid var(--color-gray-300) !important;
  border-radius: 0.625rem !important;
  background: white !important;
}

.apex-checkout-form .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 1.4 !important;
  color: var(--color-navy) !important;
  padding: 0 !important;
  font-family: var(--font-sans) !important;
  font-size: 0.95rem !important;
}

.apex-checkout-form .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100% !important;
  right: 0.75rem !important;
}

/* Order Review Table */
.apex-checkout-order-summary .woocommerce-checkout-review-order-table {
  width: 100% !important;
  border: none !important;
  margin: 0 !important;
}

.apex-checkout-order-summary .woocommerce-checkout-review-order-table th,
.apex-checkout-order-summary .woocommerce-checkout-review-order-table td {
  border: none !important;
  padding: 0.6rem 0 !important;
  font-size: 0.9rem !important;
  color: var(--color-gray-600) !important;
  background: transparent !important;
}

.apex-checkout-order-summary .woocommerce-checkout-review-order-table thead th {
  font-weight: 600 !important;
  color: var(--color-gray-500) !important;
  font-size: 0.8rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.03em !important;
  border-bottom: 1px solid var(--color-gray-200) !important;
  padding-bottom: 0.5rem !important;
}

.apex-checkout-order-summary .woocommerce-checkout-review-order-table tfoot th {
  font-weight: 600 !important;
  color: var(--color-navy) !important;
}

.apex-checkout-order-summary .woocommerce-checkout-review-order-table .order-total th,
.apex-checkout-order-summary .woocommerce-checkout-review-order-table .order-total td {
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  color: var(--color-navy) !important;
  border-top: 2px solid var(--color-gray-200) !important;
  padding-top: 0.75rem !important;
}

/* Place Order Button */
.apex-checkout-form #place_order {
  width: 100% !important;
  padding: 1rem 2rem !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
  border-radius: 0.75rem !important;
  background: var(--color-blue) !important;
  color: white !important;
  border: none !important;
  cursor: pointer !important;
  transition: background 0.2s ease, transform 0.1s ease !important;
  margin-top: 0.5rem !important;
}

.apex-checkout-form #place_order:hover {
  background: var(--color-blue-hover) !important;
  transform: translateY(-1px) !important;
}

.apex-checkout-form #place_order:active {
  transform: translateY(0) !important;
}

/* Payment Methods */
.apex-checkout-form .wc_payment_methods {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.apex-checkout-form .wc_payment_method {
  border: 1.5px solid var(--color-gray-200) !important;
  border-radius: 0.75rem !important;
  margin-bottom: 0.75rem !important;
  padding: 1rem 1.25rem !important;
  background: white !important;
  transition: border-color 0.2s ease !important;
}

.apex-checkout-form .wc_payment_method:last-child {
  margin-bottom: 0 !important;
}

.apex-checkout-form .wc_payment_method.payment_method_selected,
.apex-checkout-form .wc_payment_method:has(input:checked) {
  border-color: var(--color-blue) !important;
  background: #f8fbff !important;
}

.apex-checkout-form .wc_payment_method label {
  font-weight: 600 !important;
  cursor: pointer !important;
}

.apex-checkout-form .payment_box {
  padding: 0.75rem 0 0 !important;
  margin: 0 !important;
  background: transparent !important;
  color: var(--color-gray-500) !important;
  font-size: 0.85rem !important;
}

.apex-checkout-form .payment_box::before {
  display: none !important;
}

.apex-checkout-form .wc_payment_method .wc-stripe-elements-field,
.apex-checkout-form .wc_payment_method .stripe-card-group,
.apex-checkout-form .wc_payment_method #wc-stripe-card-element,
.apex-checkout-form .wc_payment_method #stripe-card-element,
.apex-checkout-form .wc_payment_method .wc-stripe-upe-element,
.apex-checkout-form .wc_payment_method [id*="stripe"] {
  background: #ffffff !important;
  border-radius: 0.5rem !important;
  padding: 0.5rem !important;
}

.apex-checkout-form .wc_payment_method .payment_box label,
.apex-checkout-form .wc_payment_method .wc-stripe-elements-field label,
.apex-checkout-form #payment label,
.apex-checkout-form .payment_method_stripe label,
.apex-checkout-form .payment_method_stripe p,
.apex-checkout-form .payment_method_stripe span,
.apex-checkout-form .woocommerce-SavedPaymentMethods-saveNew label {
  color: #1a1a1a !important;
}

.apex-checkout-form .payment_method_stripe .payment_box,
.apex-checkout-form .payment_method_stripe .wc-stripe-upe-element,
.apex-checkout-form .payment_method_stripe .wc-stripe-elements-field {
  background: #ffffff !important;
}

.apex-checkout-form .woocommerce-SavedPaymentMethods-saveNew {
  color: #1a1a1a !important;
  margin-top: 0.75rem !important;
}

/* Coupon toggle */
.woocommerce-checkout .woocommerce-form-coupon-toggle {
  margin-bottom: 1.5rem;
}

.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info {
  display: flex !important;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-gray-50) !important;
  border: 1px solid var(--color-gray-200) !important;
  border-radius: 0.75rem !important;
  padding: 0.875rem 1.25rem !important;
  color: var(--color-gray-600) !important;
  font-size: 0.9rem !important;
}

.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info::before {
  display: none !important;
}

.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info a {
  color: var(--color-blue) !important;
  font-weight: 600 !important;
}

/* Privacy policy text */
.apex-checkout-form .woocommerce-terms-and-conditions-wrapper {
  font-size: 0.8rem !important;
  color: var(--color-gray-500) !important;
  margin-top: 0.75rem !important;
}

.apex-checkout-form .woocommerce-privacy-policy-text p {
  font-size: 0.8rem !important;
  color: var(--color-gray-500) !important;
}

/* Responsive checkout */
@media (max-width: 900px) {
  .apex-checkout-header h1 {
    font-size: 1.5rem;
  }

  .apex-checkout-steps-bar {
    max-width: 360px;
  }

  .apex-checkout-step-line {
    min-width: 40px;
  }
}

@media (max-width: 600px) {
  .apex-checkout-form .woocommerce-billing-fields__field-wrapper,
  .apex-checkout-form .woocommerce-shipping-fields__field-wrapper {
    grid-template-columns: 1fr;
  }
  
  .apex-checkout-section {
    padding: 1.25rem;
  }
  
  .apex-checkout-wrapper {
    padding: 0 1rem 3rem;
  }
}

/* ========================================
   RESPONSIVE UTILITIES
   ======================================== */
.hidden { display: none; }
.block { display: block; }

@media (min-width: 768px) {
  .md\:block { display: block; }
  .md\:hidden { display: none; }
}

@media (min-width: 1024px) {
  .lg\:block { display: block; }
  .lg\:hidden { display: none; }
}

/* ========================================
   HOMEPAGE HERO (EXACT REACT MATCH)
   ======================================== */
.hero-home {
  position: relative !important;
  min-height: 85vh !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  overflow: hidden !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

.hero-background {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
}

.hero-bg-image {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: top !important;
}

.hero-gradient-right {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(11, 37, 69, 0.9) 0%, rgba(11, 37, 69, 0.4) 50%, transparent 100%);
}

.hero-gradient-bottom {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 37, 69, 1) 0%, transparent 50%, transparent 100%);
  opacity: 0.8;
}

.hero-content-wrapper {
  position: relative;
  z-index: 10;
  color: #fff;
  padding-top: 5rem;
}

.hero-home .hero-content {
  max-width: 42rem;
  padding: 0;
  display: block;
  text-align: left;
}

.hero-home h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #fff;
}

@media (min-width: 768px) {
  .hero-home h1 {
    font-size: 4.5rem;
  }
}

.hero-description {
  font-size: 1.25rem;
  color: #e5e7eb;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  max-width: 42rem;
  font-weight: 300;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.5rem;
  }
}

.hero-cta-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.hero-home .hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  margin-bottom: 0;
}

@media (min-width: 640px) {
  .hero-home .hero-buttons {
    flex-direction: row;
    width: auto;
  }
}

.btn-hero {
  height: 3.5rem;
  padding: 0 2.5rem;
  font-size: 1.125rem;
  font-weight: 700;
}

.btn-outline-white {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.btn-outline-white:hover {
  background: #fff;
  color: var(--color-navy);
}

.hero-subtext {
  font-size: 0.875rem;
  color: #d1d5db;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 0.5rem;
}

.icon-blue {
  color: var(--color-blue);
}

/* ========================================
   TRUST BADGES SECTION
   ======================================== */
.trust-badges {
  background-color: var(--color-gray-light);
  padding: 4rem 0;
}

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

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

@media (min-width: 1024px) {
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.trust-icon {
  width: 4rem;
  height: 4rem;
  background-color: var(--color-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 1rem;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

.trust-icon svg {
  width: 2rem;
  height: 2rem;
}

.trust-item h3 {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
  font-family: var(--font-sans);
}

.trust-item p {
  font-size: 0.875rem;
  color: var(--color-gray-600);
  line-height: 1.6;
}

/* ========================================
   PHILOSOPHY SECTION
   ======================================== */
.philosophy-section {
  background-color: var(--color-navy);
  color: #fff;
  padding: 6rem 1.5rem;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 80rem;
  margin: 0 auto;
}

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

.philosophy-text {
  order: 2;
}

@media (min-width: 1024px) {
  .philosophy-text {
    order: 1;
  }
}

.philosophy-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #fff;
}

@media (min-width: 768px) {
  .philosophy-text h2 {
    font-size: 3rem;
  }
}

.philosophy-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.philosophy-content p {
  font-size: 1.125rem;
  color: #d1d5db;
  line-height: 1.7;
}

.philosophy-content strong {
  color: #fff;
  font-weight: 600;
}

.philosophy-highlight {
  font-weight: 700;
  color: #fff !important;
  font-size: 1.25rem !important;
}

.philosophy-italic {
  font-style: italic;
  color: #9ca3af !important;
}

.philosophy-cta {
  margin-top: 3rem;
}

.philosophy-cta .btn {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  border-radius: 0.375rem;
}

.philosophy-images {
  order: 1;
  position: relative;
}

@media (min-width: 1024px) {
  .philosophy-images {
    order: 2;
  }
}

.philosophy-img-main {
  position: relative;
  z-index: 10;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  border: 4px solid rgba(255, 255, 255, 0.1);
  transform: rotate(2deg);
  transition: transform 0.5s ease;
}

.philosophy-img-main:hover {
  transform: rotate(0deg);
}

.philosophy-img-main img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.philosophy-img-overlay {
  display: none;
  position: absolute;
  bottom: -2.5rem;
  left: -2.5rem;
  width: 66%;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  border: 4px solid rgba(255, 255, 255, 0.1);
  z-index: 20;
  transform: rotate(-3deg);
  transition: transform 0.5s ease;
}

@media (min-width: 768px) {
  .philosophy-img-overlay {
    display: block;
  }
}

.philosophy-img-overlay:hover {
  transform: rotate(0deg);
}

.philosophy-img-overlay img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.philosophy-glow {
  position: absolute;
  top: -2.5rem;
  right: -2.5rem;
  width: 100%;
  height: 100%;
  background: rgba(31, 111, 235, 0.2);
  border-radius: 50%;
  filter: blur(3rem);
  z-index: -1;
}

/* ========================================
   PRICING TABS SECTION
   ======================================== */
.pricing-section {
  padding: 6rem 1.5rem;
  background-color: var(--color-gray-light);
}

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

.section-header-center h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 1rem;
}

.section-header-center p {
  font-size: 1.25rem;
  color: var(--color-gray-600);
}

.tabs-container {
  max-width: 56rem;
  margin: 0 auto;
}

.tabs-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 24rem;
  margin: 0 auto 3rem;
  background: #fff;
  padding: 0.25rem;
  border-radius: 0.5rem;
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}

.tab-trigger {
  padding: 0.75rem 1.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  border: none;
  background: transparent;
  color: var(--color-gray-500);
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tab-trigger.active {
  background-color: var(--color-navy);
  color: #fff;
}

.tab-trigger.active.women {
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.pricing-section .pricing-card {
  background: linear-gradient(to bottom right, var(--color-navy) 0%, var(--color-blue) 100%);
  border-radius: 1rem;
  padding: 2rem;
  color: #fff;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  max-width: 48rem;
  margin: 0 auto;
}

.pricing-section .pricing-card.pricing-card-women {
  background: linear-gradient(to bottom right, #5b21b6 0%, #7c3aed 50%, #a855f7 100%) !important;
}

.pricing-section .pricing-card.pricing-card-women .pricing-initial {
  color: #e9d5ff;
}

@media (min-width: 768px) {
  .pricing-section .pricing-card {
    padding: 3rem;
  }
}

.pricing-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

@media (min-width: 768px) {
  .pricing-header {
    flex-direction: row;
    align-items: center;
  }
}

.pricing-header h3 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
  font-family: var(--font-sans);
}

.pricing-initial {
  color: #bfdbfe;
}

.pricing-amount {
  margin-top: 1rem;
  text-align: left;
}

@media (min-width: 768px) {
  .pricing-amount {
    margin-top: 0;
    text-align: right;
  }
}

.pricing-amount .price {
  font-size: 3rem;
  font-weight: 700;
}

.pricing-amount .price-period {
  font-size: 1.5rem;
  font-weight: 500;
  color: #bfdbfe;
}

.pricing-section .pricing-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .pricing-section .pricing-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pricing-section .pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0;
}

.check-icon {
  width: 1.5rem;
  height: 1.5rem;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0.25rem;
}

.check-icon svg {
  width: 1rem;
  height: 1rem;
  color: var(--color-blue);
}

.pricing-section .pricing-features li span:last-child {
  font-size: 1.125rem;
}

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

.btn-dark {
  background-color: var(--color-navy);
  color: #fff;
}

.btn-dark:hover {
  background-color: rgba(0, 0, 0, 0.2);
  color: #fff;
}

.btn-pricing {
  width: 100%;
  padding: 1rem 3rem;
  font-size: 1.125rem;
  border-radius: 0.375rem;
}

@media (min-width: 768px) {
  .btn-pricing {
    width: auto;
  }
}

/* ========================================
   HOW IT WORKS (EXACT REACT MATCH)
   ======================================== */
.how-it-works {
  padding: 6rem 1.5rem;
  background-color: #fff;
}

.how-it-works .section-header-center h2 {
  font-size: 2.5rem;
}

.how-it-works .section-header-center p {
  font-size: 1.25rem;
}

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

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

@media (min-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step-card {
  text-align: center;
  background: #fff;
  padding: 1.5rem;
  border-radius: 0.75rem;
  transition: box-shadow 0.2s ease;
}

.step-card:hover {
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

.step-icon {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1.5rem;
  background: var(--color-gray-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-navy);
}

.step-icon svg {
  width: 2.5rem;
  height: 2.5rem;
}

.step-card h3 {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--color-navy);
  font-family: var(--font-sans);
}

.step-card p {
  color: var(--color-gray-600);
  line-height: 1.6;
}

.section-cta {
  text-align: center;
  margin-top: 3rem;
}

.section-cta .btn {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  border-radius: 0.375rem;
}

/* ========================================
   APEX DIFFERENCE SECTION
   ======================================== */
.apex-difference {
  background-color: var(--color-gray-light);
  padding: 6rem 1.5rem;
}

.apex-difference h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-navy);
  text-align: center;
  margin-bottom: 3rem;
}

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

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

@media (min-width: 1024px) {
  .difference-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.difference-card {
  background: #fff;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

.difference-image {
  height: 16rem;
  overflow: hidden;
}

.difference-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.difference-card:hover .difference-image img {
  transform: scale(1.05);
}

.difference-content {
  padding: 2rem;
}

.difference-content h3 {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-navy);
  margin-bottom: 0.75rem;
  font-family: var(--font-sans);
}

.difference-content p {
  color: var(--color-gray-600);
}

/* ========================================
   WHAT'S INCLUDED SECTION
   ======================================== */
.whats-included {
  padding: 6rem 1.5rem;
  background: #fff;
}

.included-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 80rem;
  margin: 0 auto;
}

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

.included-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .included-content h2 {
    font-size: 2.5rem;
  }
}

.included-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.included-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--color-gray-50);
  border-radius: 0.5rem;
  border: 1px solid var(--color-gray-100);
  transition: all 0.2s ease;
}

.included-item:hover {
  border-color: rgba(31, 111, 235, 0.3);
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}

.included-check {
  width: 1.5rem;
  height: 1.5rem;
  background: rgba(31, 111, 235, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.included-check svg {
  width: 1rem;
  height: 1rem;
  color: var(--color-blue);
}

.included-item span {
  font-weight: 500;
  color: var(--color-navy);
}

.included-image {
  position: relative;
  display: flex;
  justify-content: center;
}

.included-image-wrapper {
  position: relative;
  z-index: 10;
  max-width: 24rem;
}

.included-image-wrapper img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 25px 25px rgb(0 0 0 / 0.15));
}

.included-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: rgba(239, 246, 255, 0.5);
  border-radius: 50%;
  filter: blur(3rem);
  z-index: -1;
}

/* ========================================
   CTA FULLWIDTH SECTION
   ======================================== */
.cta-fullwidth {
  position: relative;
  padding: 8rem 1.5rem;
  overflow: hidden;
}

.cta-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 37, 69, 0.8);
}

.cta-fullwidth .cta-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: #fff;
}

.cta-fullwidth h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #fff;
}

@media (min-width: 768px) {
  .cta-fullwidth h2 {
    font-size: 3rem;
  }
}

.cta-fullwidth p {
  font-size: 1.25rem;
  color: #e5e7eb;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .cta-fullwidth p {
    font-size: 1.5rem;
  }
}

.cta-fullwidth .btn {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  border-radius: 0.375rem;
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

/* ========================================
   FAQ SECTION (EXACT REACT MATCH)
   ======================================== */
.faq-section {
  padding: 6rem 1.5rem;
  background-color: var(--color-gray-light);
}

.faq-section h2 {
  font-size: 1.875rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.5rem;
  color: var(--color-navy);
}

.faq-section .faq-list {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-section .faq-item {
  background: #fff;
  border-radius: 0.5rem;
  border: none;
  overflow: hidden;
}

.faq-section .faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-navy);
}

.faq-chevron {
  transition: transform 0.2s ease;
}

.faq-section .faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-section .faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  color: var(--color-gray-600);
  line-height: 1.7;
}

.faq-section .faq-item.active .faq-answer {
  display: block;
}

/* ========================================
   MEN'S HEALTH PAGE
   ======================================== */
.mens-hero {
  background: linear-gradient(to bottom right, var(--color-navy) 0%, #1a3a5c 100%) !important;
  min-height: 90vh !important;
  display: flex !important;
  align-items: center !important;
  padding: 8rem 0 5rem !important;
  width: 100% !important;
  margin: 0 !important;
}

.mens-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .mens-hero-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.mens-hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-weight: 500;
  font-size: 0.875rem;
  width: fit-content;
}

.hero-badge.blue {
  background: rgba(31, 111, 235, 0.2);
  color: var(--color-blue);
}

.hero-badge.pink {
  background: rgba(236, 72, 153, 0.2);
  color: #f472b6;
}

.mens-hero h1, .womens-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}

@media (min-width: 768px) {
  .mens-hero h1, .womens-hero h1 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .mens-hero h1, .womens-hero h1 {
    font-size: 3.75rem;
  }
}

.text-blue {
  color: var(--color-blue);
}

.text-pink {
  color: #f472b6;
}

.hero-desc {
  font-size: 1.25rem;
  color: #d1d5db;
  max-width: 32rem;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 1rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #9ca3af;
  font-size: 0.875rem;
}

.icon-blue {
  color: var(--color-blue);
}

.icon-pink {
  color: #f472b6;
}

.icon-green {
  color: #22c55e;
}

.mens-hero-image, .womens-hero-image {
  display: none;
  position: relative;
}

@media (min-width: 1024px) {
  .mens-hero-image, .womens-hero-image {
    display: block;
  }
}

.mens-hero-image img, .womens-hero-image img {
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  max-width: 32rem;
  margin: 0 auto;
}

.price-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: #fff;
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

.price-amount {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--color-navy);
  margin: 0;
}

.price-amount span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-gray-500);
}

.price-label {
  font-size: 0.875rem;
  color: var(--color-gray-500);
  margin: 0;
}

/* ========================================
   WOMEN'S HEALTH PAGE
   ======================================== */
.womens-hero {
  background: linear-gradient(to bottom right, #2d1f3d 0%, #3d2a4d 50%, #4a3259 100%) !important;
  min-height: 90vh !important;
  display: flex !important;
  align-items: center !important;
  padding: 8rem 0 5rem !important;
  width: 100% !important;
  margin: 0 !important;
}

.womens-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .womens-hero-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.womens-hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* ========================================
   SYMPTOMS SECTION
   ======================================== */
.symptoms-section {
  background-color: var(--color-gray-50);
  padding: 5rem 1.5rem;
}

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

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

@media (min-width: 1024px) {
  .symptoms-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.symptom-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  border: 1px solid var(--color-gray-100);
  transition: box-shadow 0.2s ease;
}

.symptom-card:hover {
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

.symptom-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.symptom-icon.blue {
  background: rgba(31, 111, 235, 0.1);
  color: var(--color-blue);
}

.symptom-icon.pink {
  background: rgba(236, 72, 153, 0.1);
  color: var(--color-pink-500);
}

.symptom-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
  font-family: var(--font-sans);
}

.symptom-card p {
  color: var(--color-gray-600);
}

/* ========================================
   BENEFITS SECTION
   ======================================== */
.benefits-section {
  padding: 5rem 1.5rem;
  background: #fff;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

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

.benefits-grid.reverse .benefits-content {
  order: 1;
}

.benefits-grid.reverse .benefits-image {
  order: 2;
}

@media (min-width: 1024px) {
  .benefits-grid.reverse .benefits-content {
    order: 1;
  }
  .benefits-grid.reverse .benefits-image {
    order: 2;
  }
}

.benefits-image img {
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
  width: 100%;
}

.benefits-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .benefits-content h2 {
    font-size: 2.5rem;
  }
}

.benefits-desc {
  font-size: 1.125rem;
  color: var(--color-gray-600);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.benefits-checklist {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .benefits-checklist {
    grid-template-columns: repeat(2, 1fr);
  }
}

.benefit-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.benefit-check {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-check.green {
  background: #dcfce7;
  color: #16a34a;
}

.benefit-check.pink {
  background: #fce7f3;
  color: var(--color-pink-600);
}

.benefit-row span {
  font-weight: 500;
  color: var(--color-navy);
}

/* ========================================
   PRICING TWO COL SECTION
   ======================================== */
.pricing-two-col {
  background: var(--color-gray-50);
  padding: 5rem 1.5rem;
}

.pricing-two-col-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .pricing-two-col-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pricing-text h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .pricing-text h2 {
    font-size: 2.5rem;
  }
}

.pricing-text p {
  font-size: 1.125rem;
  color: var(--color-gray-600);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.pricing-image {
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
  width: 100%;
}

.pricing-card-full {
  background: linear-gradient(to bottom right, var(--color-navy) 0%, #1a3a5c 100%);
  padding: 2rem;
  border-radius: 1rem;
  color: #fff;
}

@media (min-width: 768px) {
  .pricing-card-full {
    padding: 3rem;
  }
}

.pricing-card-full.pink {
  background: linear-gradient(to bottom right, #3d2a4d 0%, #5a3d6a 100%);
}

.pricing-card-full h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #fff;
  font-family: var(--font-sans);
}

.price-large {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.price-large span {
  font-size: 1.25rem;
  font-weight: 400;
  opacity: 0.7;
}

.price-subtitle {
  color: #d1d5db;
  margin-bottom: 2rem;
}

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

.pricing-checklist li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
  padding: 1rem;
  border-radius: 0.75rem;
}

.price-disclaimer {
  text-align: center;
  font-size: 0.875rem;
  color: #9ca3af;
  margin-top: 1rem;
}

/* ========================================
   HOW IT WORKS ALT SECTION
   ======================================== */
.how-it-works-alt {
  background: var(--color-gray-50);
  padding: 5rem 1.5rem;
}

.steps-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .steps-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

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

.step-number-large {
  font-size: 3rem;
  font-weight: 700;
  color: rgba(31, 111, 235, 0.2);
  margin-bottom: 1rem;
}

.step-number-large.pink {
  color: rgba(236, 72, 153, 0.3);
}

.step-item h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
  font-family: var(--font-sans);
}

.step-item p {
  color: var(--color-gray-600);
}

/* ========================================
   WHAT'S INCLUDED ALT SECTION
   ======================================== */
.whats-included-alt {
  background: #fff;
  padding: 5rem 1.5rem;
}

.included-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .included-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .included-cards {
    grid-template-columns: repeat(4, 1fr);
  }
}

.included-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid var(--color-gray-100);
  text-align: center;
}

.included-card-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: #fff;
}

.included-card-icon.navy {
  background: var(--color-navy);
}

.included-card-icon.purple {
  background: #3d2a4d;
}

.included-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
  font-family: var(--font-sans);
}

.included-card p {
  color: var(--color-gray-600);
  font-size: 0.875rem;
}

/* ========================================
   FAQ SECTION ALT
   ======================================== */
.faq-section-alt {
  background: var(--color-gray-50);
  padding: 5rem 1.5rem;
}

.faq-section-alt .faq-list {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-section-alt .faq-item {
  background: #fff;
  border-radius: 0.75rem;
  border: 1px solid var(--color-gray-100);
  overflow: hidden;
}

/* ========================================
   CTA FULLWIDTH VARIANTS
   ======================================== */
.mens-cta {
  background: var(--color-navy);
  padding: 5rem 1.5rem;
}

.womens-cta {
  background: linear-gradient(to bottom right, #3d2a4d 0%, #5a3d6a 100%);
  padding: 5rem 1.5rem;
}

.cta-fullwidth .cta-content h2 {
  color: #fff;
}

.cta-fullwidth .cta-content p {
  color: #d1d5db;
  font-size: 1.25rem;
  max-width: 42rem;
  margin: 0 auto 2rem;
}

.cta-disclaimer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: #9ca3af;
}

/* Hide WooCommerce "added to cart" notice on checkout */
.woocommerce-checkout .woocommerce-message,
.woocommerce-checkout .wc-block-components-notice-banner,
body.woocommerce-checkout .woocommerce-info {
  display: none !important;
}

/* Hide WooCommerce default billing/shipping headings (we use our own) */
.apex-checkout-form .woocommerce-billing-fields > h3,
.apex-checkout-form .woocommerce-shipping-fields > h3,
.apex-checkout-form #ship-to-different-address {
  display: none !important;
}
