/* ============================================
   PREMIUM REDESIGN - TOP SECTIONS ONLY
   Boundary: Everything BEFORE <section class="clients">
   Design: Superpower.com-inspired premium layout
   Colors: Matching existing dark theme (#051216, #1B3035, etc.)
   ============================================ */

/* Smooth scroll with offset for sticky header */
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

#program-section {
  scroll-margin-top: var(--header-height);
}

:root {
  /* Existing site colors - dark theme */
  --bg-dark: #051216;
  --bg-dark-alt: #1B3035;
  --bg-dark-surface: #16282D;
  --bg-dark-deep: #040F12;
  --text-light: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.7);
  --text-muted-strong: rgba(255, 255, 255, 0.85);
  --border-light: rgba(255, 255, 255, 0.15);
  --border-medium: rgba(255, 255, 255, 0.25);
  --accent-teal: #2bb3b1;
  --accent-teal-hover: #26a3a1;
  
  /* Scroll offset for sticky header */
  --header-height: 80px;
  
  /* Spacing scale (superpower-style) */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;
  
  /* Typography scale */
  --font-size-xs: 0.875rem;
  --font-size-sm: 1rem;
  --font-size-base: 1.125rem;
  --font-size-lg: 1.25rem;
  --font-size-xl: 1.5rem;
  --font-size-2xl: 2rem;
  --font-size-3xl: 2.5rem;
  --font-size-4xl: 3.5rem;
  --font-size-5xl: 4.5rem;
  
  /* Border radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 999px;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* ============================================
   GLOBAL RESET FOR REVAMPED SECTIONS
   ============================================ */
.revamp-shell {
  background: var(--bg-dark) !important;
  color: var(--text-light) !important;
  font-family: 'Comfortaa', cursive;
}

.revamp-shell * {
  box-sizing: border-box;
}

/* Override existing styles from style1.css for revamped sections */
.revamp-shell .main-header,
.revamp-shell .hero-section,
.revamp-shell .benefits-section,
.revamp-shell .info-bullets-section,
.revamp-shell .card-section,
.revamp-shell .compare-carousel-section,
.revamp-shell .comparison-table-section {
  background-image: none !important;
  background-color: var(--bg-dark) !important;
}

/* ============================================
   STICKY NAVIGATION (Glassy Blur)
   ============================================ */
.revamp-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(5, 18, 22, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  padding: var(--space-md) var(--space-lg);
  transition: all 0.3s ease;
}

.revamp-nav {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-lg);
}

.revamp-header .logo img {
  max-height: 40px;
  height: auto;
  width: auto;
  transition: transform 0.3s ease;
}

.revamp-header .logo:hover img {
  transform: scale(1.05);
}

.revamp-header .nav-links {
  display: flex;
  gap: var(--space-xl);
  align-items: center;
}

.revamp-header .nav-links a {
  color: var(--text-muted-strong);
  text-decoration: none;
  font-size: var(--font-size-sm);
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.revamp-header .nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-teal);
  transition: width 0.3s ease;
}

.revamp-header .nav-links a:hover {
  color: var(--text-light);
}

.revamp-header .nav-links a:hover::after {
  width: 100%;
}

.revamp-header .nav-actions {
  display: flex;
  align-items: center;
}

.revamp-header .btn-pill {
  padding: 0.75rem 1.75rem;
  background: var(--accent-teal);
  color: var(--text-light);
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--font-size-sm);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-block;
  box-shadow: 0 2px 12px rgba(43, 179, 177, 0.3);
  position: relative;
  overflow: hidden;
}

.revamp-header .btn-pill::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.revamp-header .btn-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(43, 179, 177, 0.4);
  background: var(--accent-teal-hover);
}

.revamp-header .btn-pill:hover::before {
  left: 100%;
}

@media (max-width: 968px) {
  .revamp-header {
    padding: var(--space-sm) var(--space-md);
  }
  
  .revamp-header .nav-links {
    display: none;
  }
  
  .revamp-header .btn-pill {
    padding: 0.625rem 1.25rem;
    font-size: var(--font-size-xs);
  }
  
  .revamp-header .logo img {
    max-height: 32px;
  }
}

@media (max-width: 768px) {
  .revamp-header .nav-actions {
    flex: 1;
    justify-content: flex-end;
  }
  
  .revamp-header .btn-pill {
    padding: 0.5rem 1rem;
    font-size: 0.7rem;
    white-space: nowrap;
    max-width: 100%;
  }
  
  .revamp-header .btn-pill#open-email-modal-header {
    font-size: clamp(0.65rem, 2.5vw, 0.75rem);
    padding: 0.45rem 0.85rem;
    line-height: 1.3;
  }
}

/* ============================================
   HERO SECTION (Background Video - Superpower Style)
   ============================================ */
.revamp-hero {
  position: relative;
  min-height: 90vh !important;
  display: flex !important;
  align-items: center;
  background: var(--bg-dark) !important;
  overflow: hidden;
  padding: 0 !important;
  height: auto !important;
}

.revamp-hero .hero-content {
  display: none !important; /* Hide old hero-content structure */
}

/* Background Video */
.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-video-bg video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
}

@media (max-width: 768px) {
  .hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }
}

.hero-video-bg .desktop-video {
  display: block;
}

.hero-video-bg .mobile-video {
  display: none;
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(5, 18, 22, 0.5) 0%, rgba(5, 18, 22, 0.3) 50%, rgba(5, 18, 22, 0.5) 100%);
  z-index: 2;
}

/* Hero Content Wrapper */
.hero-content-wrapper {
  position: relative;
  z-index: 3;
  max-width: 100%;
  margin: 0;
  padding: var(--space-4xl) 0 var(--space-4xl) 80px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 90vh;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-width: 600px;
  margin: 0;
}

.hero-copy .eyebrow {
  font-size: var(--font-size-xs);
  font-weight: 600;
  color: var(--accent-teal);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-xs);
}

.hero-copy h1 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--text-light);
  margin: 0;
  white-space: nowrap;
}

.hero-copy p {
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  line-height: 1.6;
  color: var(--text-muted-strong);
  margin: 0;
  max-width: 100%;
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-top: var(--space-sm);
}

.hero-actions .btn-primary {
  padding: 0.75rem 1.5rem;
  background: var(--accent-teal);
  color: var(--text-light);
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--font-size-sm);
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(43, 179, 177, 0.3);
  border: none;
  cursor: pointer;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

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

.hero-actions .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(43, 179, 177, 0.4);
  background: var(--accent-teal-hover);
}

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

.hero-actions .btn-ghost {
  padding: 0.75rem 1.5rem;
  background: transparent;
  color: var(--text-light);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--font-size-sm);
  transition: all 0.3s ease;
  display: inline-block;
}

.hero-actions .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent-teal);
  transform: translateY(-2px);
}

.hero-note {
  font-size: var(--font-size-xs);
  color: var(--text-muted);
  margin-top: var(--space-xs);
}

@media (max-width: 968px) {
  .revamp-hero {
    min-height: 70vh !important;
    align-items: flex-start !important;
  }
  
  .hero-video-bg video {
    object-fit: cover;
    min-width: 100%;
    min-height: 100%;
    width: 100%;
    height: 100%;
  }
  
  .hero-content-wrapper {
    padding: var(--space-md) var(--space-md) var(--space-lg);
    min-height: auto;
    margin-left: 0;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: var(--space-md);
  }
  
  .hero-copy {
    max-width: 100%;
    gap: 0.375rem;
    margin: 0;
    text-align: center;
    align-items: center;
    width: 100%;
  }
  
  .hero-copy .eyebrow {
    font-size: 0.55rem;
    margin-bottom: 0.25rem;
    line-height: 1.2;
  }
  
  .hero-copy h1 {
    font-size: clamp(0.875rem, 3.5vw, 1.1rem);
    line-height: 1.2;
    margin: 0;
    white-space: nowrap;
  }
  
  .hero-copy p {
    font-size: clamp(0.65rem, 2.5vw, 0.75rem);
    line-height: 1.4;
    max-width: 100%;
    margin: 0;
  }
  
  .hero-actions {
    flex-direction: column;
    gap: var(--space-sm);
    width: 100%;
    align-items: center;
  }
  
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost {
    width: 100%;
    text-align: center;
    padding: 0.625rem 1.25rem;
    font-size: var(--font-size-xs);
  }
  
  .hero-video-bg .desktop-video {
    display: none;
  }
  
  .hero-video-bg .mobile-video {
    display: block;
  }
}

/* ============================================
   BENEFITS SECTION (Minimalistic - Superpower "How it works" Style)
   ============================================ */
.revamp-benefits {
  padding: var(--space-3xl) 0 !important;
  background: var(--bg-dark-alt) !important;
  position: relative;
  border-bottom: none !important;
  width: 100%;
}

.revamp-benefits .container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  text-align: center;
}

.section-head {
  text-align: center;
  margin-bottom: var(--space-2xl);
  padding: 0 var(--space-lg);
}

.revamp-benefits .section-head {
  text-align: center !important;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.revamp-benefits .section-head h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-light);
  margin-bottom: var(--space-sm);
  text-align: center !important;
  width: 100%;
}

.revamp-benefits .section-head p {
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  line-height: 1.6;
  color: var(--text-muted);
  max-width: none !important;
  margin: 0 auto !important;
  white-space: normal;
  text-align: center !important;
  width: 100% !important;
  display: block;
  margin-left: auto !important;
  margin-right: auto !important;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.section-head p {
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  line-height: 1.6;
  color: var(--text-muted);
  max-width: none;
  margin: 0 auto;
  text-align: center;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-lg);
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  width: 100%;
}

.benefit-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  opacity: 0;
  transform: translateY(20px);
}

.benefit-card.animated {
  opacity: 1;
  transform: translateY(0);
}

.benefit-card:hover {
  transform: translateY(-4px);
}

.benefit-card img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(0) invert(1);
  margin-bottom: var(--space-xs);
  transform: scale(0.9);
}

.benefit-card.animated img {
  transform: scale(1);
}

.benefit-card:hover img {
  transform: scale(1.1) rotate(5deg);
}

.benefit-card h3 {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--text-light);
  margin: 0;
  line-height: 1.3;
  margin-bottom: var(--space-xs);
}

.benefit-card p {
  font-size: var(--font-size-xs);
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 1200px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
  }
}

@media (max-width: 768px) {
  .revamp-benefits {
    padding: var(--space-2xl) 0 !important;
  }
  
  .revamp-benefits .container {
    padding: 0;
    max-width: 100%;
  }
  
  .section-head {
    margin-bottom: var(--space-lg);
    padding: 0 var(--space-md);
    text-align: center;
  }
  
  .section-head h2 {
    font-size: clamp(1.1rem, 4vw, 1.3rem);
    margin-bottom: var(--space-xs);
  }
  
  .section-head p {
    font-size: clamp(0.75rem, 3vw, 0.875rem);
    text-align: center !important;
  }
  
  .revamp-benefits .section-head p {
    white-space: normal;
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--space-sm);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  /* Scroll Indicators - Show on Mobile */
  .benefits-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-md) 0 var(--space-sm);
    margin-top: var(--space-xs);
  }
  
  /* Horizontal Scrollable Carousel for Mobile - Infinite Scroll */
  .benefits-grid {
    display: flex;
    flex-direction: row;
    gap: var(--space-md);
    padding: var(--space-md);
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    scroll-padding: 0;
    position: relative;
    scroll-behavior: smooth;
  }
  
  .benefits-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
  }
  
  .benefit-card {
    flex: 0 0 calc(75vw - var(--space-md) * 2);
    max-width: calc(75vw - var(--space-md) * 2);
    min-width: calc(75vw - var(--space-md) * 2);
    scroll-snap-align: center;
    scroll-snap-stop: normal;
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
    margin: 0;
    box-sizing: border-box;
  }
  
  .benefit-card-clone {
    flex: 0 0 calc(75vw - var(--space-md) * 2);
    max-width: calc(75vw - var(--space-md) * 2);
    min-width: calc(75vw - var(--space-md) * 2);
  }
  
  .indicator-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
  }
  
  .indicator-dot.active {
    width: 24px;
    height: 6px;
    border-radius: 3px;
    background: var(--accent-teal);
    box-shadow: 0 0 8px rgba(43, 179, 177, 0.5);
  }
  
  .benefit-card:active {
    transform: scale(0.98);
  }
  
  .benefit-card img {
    width: 36px;
    height: 36px;
    margin-bottom: var(--space-sm);
  }
  
  .benefit-card h3 {
    font-size: clamp(0.8rem, 3vw, 0.875rem);
    font-weight: 600;
    margin-bottom: var(--space-xs);
    line-height: 1.3;
  }
  
  .benefit-card p {
    font-size: clamp(0.7rem, 2.5vw, 0.75rem);
    line-height: 1.4;
    color: var(--text-muted);
  }
  
  /* Remove hover effects on mobile */
  .benefit-card:hover {
    transform: translateY(0);
  }
  
  .benefit-card:hover img {
    transform: scale(1);
  }
}

/* Hide indicators on desktop */
@media (min-width: 769px) {
  .benefits-indicators {
    display: none;
  }
}

@media (max-width: 480px) {
  .benefits-grid {
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-sm);
    scroll-padding: var(--space-sm);
  }
  
  .benefit-card {
    flex: 0 0 calc(70vw - var(--space-sm) * 2);
    max-width: calc(70vw - var(--space-sm) * 2);
    min-width: calc(70vw - var(--space-sm) * 2);
    padding: var(--space-md);
  }
  
  .benefit-card-clone {
    flex: 0 0 calc(70vw - var(--space-sm) * 2);
    max-width: calc(70vw - var(--space-sm) * 2);
    min-width: calc(70vw - var(--space-sm) * 2);
  }
  
  .benefit-card img {
    width: 32px;
    height: 32px;
  }
  
  .indicator-dot {
    width: 5px;
    height: 5px;
  }
  
  .indicator-dot.active {
    width: 20px;
    height: 5px;
  }
}

/* ============================================
   MINDSTILLNESS SECTION (Unique Design with GSAP Animations)
   ============================================ */
.revamp-mindstillness {
  padding: var(--space-4xl) 0 !important;
  background: var(--bg-dark) !important;
  position: relative;
  border-bottom: none !important;
  width: 100%;
  overflow: hidden;
  isolation: isolate;
}

/* Animated Background Elements */
.mindstillness-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.bg-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43, 179, 177, 0.1) 0%, transparent 70%);
  filter: blur(60px);
  opacity: 0;
}

.bg-circle-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  left: 10%;
  animation: float 20s ease-in-out infinite;
}

.bg-circle-2 {
  width: 300px;
  height: 300px;
  bottom: -50px;
  right: 15%;
  animation: float 15s ease-in-out infinite reverse;
  animation-delay: -5s;
}

.bg-circle-3 {
  width: 250px;
  height: 250px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: float 18s ease-in-out infinite;
  animation-delay: -10s;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

.mindstillness-grid {
  position: relative;
  z-index: 2;
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
  padding: 0 var(--space-lg);
  width: 100%;
}

.mindstillness-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
  background: transparent;
  padding: 0;
  margin: 0;
  transform-style: preserve-3d;
}

.image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(43, 179, 177, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.mindstillness-image-wrapper:hover .image-glow {
  opacity: 1;
}

.mindstillness-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  position: relative;
  z-index: 1;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.4));
  border: none;
  outline: none;
}

.mindstillness-image-wrapper:hover .mindstillness-img {
  transform: scale(1.05) translateY(-10px);
}

.mindstillness-copy {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  padding: var(--space-xl) 0;
}

.mindstillness-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-light);
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25em;
}

.title-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
}

.title-word.highlight {
  background: linear-gradient(135deg, var(--accent-teal), #3dd5d3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.title-word.highlight::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-teal), transparent);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease;
}

.mindstillness-title.animated .title-word.highlight::after {
  transform: scaleX(1);
}

.mindstillness-description {
  font-size: clamp(0.95rem, 1.4vw, 1.125rem);
  line-height: 1.7;
  color: var(--text-muted-strong);
  margin: 0;
  opacity: 0;
  transform: translateY(20px);
}

.pill-row {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-top: var(--space-sm);
}

.pill {
  padding: 0.5rem 1rem;
  background: var(--bg-dark-surface);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-pill);
  font-size: var(--font-size-sm);
  color: var(--text-muted-strong);
  font-weight: 500;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(15px) scale(0.9);
  position: relative;
  overflow: hidden;
}

.pill::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(43, 179, 177, 0.2), transparent);
  transition: left 0.6s ease;
}

.pill:hover::before {
  left: 100%;
}

.pill:hover {
  background: rgba(43, 179, 177, 0.15);
  border-color: var(--accent-teal);
  color: var(--text-light);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 4px 12px rgba(43, 179, 177, 0.2);
}

.pill-animate.animated {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (max-width: 968px) {
  .revamp-mindstillness {
    padding: var(--space-3xl) 0 !important;
  }
  
  .revamp-mindstillness {
    padding: var(--space-2xl) 0 !important;
  }
  
  .mindstillness-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    padding: 0 var(--space-md);
  }
  
  .mindstillness-image-wrapper {
    order: -1;
    margin-bottom: 0;
  }
  
  .mindstillness-copy {
    padding: var(--space-md) 0 0;
    gap: var(--space-md);
    text-align: center;
    align-items: center;
  }
  
  .mindstillness-description {
    text-align: center;
  }
  
  .bg-circle-1,
  .bg-circle-2,
  .bg-circle-3 {
    width: 200px;
    height: 200px;
  }

  .mindstillness-title {
    justify-content: center;
    text-align: center;
  }
  
  .pill-row {
    justify-content: center;
    gap: var(--space-xs);
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 var(--space-xs);
    width: 100%;
  }
  
  .pill-row::-webkit-scrollbar {
    display: none;
  }
  
  .pill {
    padding: 0.375rem 0.75rem;
    font-size: 0.7rem;
    white-space: nowrap;
    flex-shrink: 0;
  }
}

/* ============================================
   COMPARE MODALITIES SECTION (Full Width - Minimalistic)
   ============================================ */
.revamp-compare {
  padding: var(--space-2xl) 0 !important;
  background: var(--bg-dark-alt) !important;
  position: relative;
  border-bottom: none !important;
  width: 100%;
}

.revamp-compare .container {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  padding: 0 var(--space-lg);
  width: 100%;
}

.revamp-compare .section-head {
  margin-bottom: var(--space-2xl);
  padding: 0;
}

.revamp-compare .section-head h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-light);
  margin-bottom: var(--space-sm);
}

.revamp-compare .section-head p {
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
}

.revamp-compare .compare-note {
  font-size: var(--font-size-xs);
  color: var(--text-muted);
  margin-top: var(--space-sm);
  font-style: italic;
  display: none; /* Hide the note for minimalistic design */
}

/* Horizontal Scrolling Cards - Calendar/Journal Style */
.compare-cards-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: var(--space-lg) 0;
  margin-bottom: 0;
}

.compare-cards-grid {
  display: flex;
  flex-direction: row;
  gap: var(--space-lg);
  width: max-content;
  padding: 0 var(--space-lg);
  will-change: transform;
}

.compare-card {
  background: var(--bg-dark-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  width: 520px;
  min-width: 520px;
  height: auto;
  position: relative;
  isolation: isolate;
  opacity: 0;
  transform: translateX(50px);
}

.compare-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(43, 179, 177, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
  pointer-events: none;
}

.compare-card:hover::before {
  opacity: 1;
}

.compare-card:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(43, 179, 177, 0.2);
  border-color: var(--accent-teal);
  z-index: 10;
}

.compare-card-image {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

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

.compare-card-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(5, 18, 22, 0.3) 100%);
  transition: opacity 0.5s ease;
}

.compare-card:hover .compare-card-image::after {
  opacity: 0.7;
}

.compare-card-content {
  padding: var(--space-md);
  background: var(--bg-dark-surface);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  position: relative;
  z-index: 1;
  overflow: visible;
  min-height: 0;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.compare-side-by-side {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--space-sm);
  align-items: start;
  flex: 1;
  min-height: 0;
}

.compare-column {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  min-width: 0;
  align-items: flex-start;
}

.modality-label,
.mindstillness-label {
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: var(--text-light);
  margin: 0 0 var(--space-xs) 0;
  letter-spacing: -0.01em;
  text-align: left;
  line-height: 1.3;
  min-height: 1.5rem;
  display: flex;
  align-items: center;
  width: 100%;
}

.compare-divider-vertical {
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--accent-teal), transparent);
  opacity: 0.5;
  flex-shrink: 0;
  margin: 0 var(--space-xs);
}

.compare-card-title {
  font-size: var(--font-size-base);
  font-weight: 700;
  color: var(--text-light);
  margin: 0 0 var(--space-xs) 0;
  letter-spacing: -0.02em;
  text-align: center;
}

.compare-card-details {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.detail-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.375rem 0;
  border-bottom: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.detail-item:last-child {
  border-bottom: none;
}

.detail-item.highlight {
  background: rgba(43, 179, 177, 0.08);
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  border-bottom: none;
  margin-top: 0.25rem;
}

.detail-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

.detail-value {
  font-size: 0.8rem;
  color: var(--text-muted-strong);
  line-height: 1.4;
}

.detail-item.highlight .detail-value {
  color: var(--text-light);
  font-weight: 500;
}

/* Removed old divider and mindstillness wrapper - using side-by-side layout now */

.mindstillness-label span {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--accent-teal);
  margin-left: 0.25rem;
}

/* Hide old carousel navigation - using grid now */
.revamp-compare .owl-nav,
.revamp-compare .owl-dots {
  display: none !important;
}

@media (max-width: 768px) {
  .revamp-compare {
    padding: var(--space-2xl) 0 !important;
  }
  
  .revamp-compare .container {
    padding: 0;
    max-width: 100%;
  }
  
  .revamp-compare .section-head {
    padding: 0 var(--space-md);
    margin-bottom: var(--space-lg);
    text-align: center;
  }
  
  /* Mobile Carousel - No Pin, Simple Scroll */
  .compare-cards-wrapper {
    overflow-x: auto;
    overflow-y: visible;
    padding: var(--space-md) 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  
  .compare-cards-wrapper::-webkit-scrollbar {
    display: none;
  }
  
  .compare-cards-grid {
    display: flex;
    flex-direction: row;
    gap: var(--space-md);
    padding: 0 var(--space-md);
    width: max-content;
    scroll-snap-type: x mandatory;
    scroll-padding: var(--space-md);
  }
  
  .compare-card {
    width: 85vw;
    min-width: 85vw;
    max-width: 85vw;
    flex-shrink: 0;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    height: auto;
    opacity: 1;
    transform: translateX(0);
  }
  
  .compare-card-image {
    height: 180px;
  }
  
  .compare-card-content {
    padding: var(--space-md);
    max-height: none;
    overflow: visible;
  }
  
  .compare-card-title {
    font-size: clamp(0.9rem, 3vw, 1rem);
    margin-bottom: var(--space-sm);
  }
  
  .compare-side-by-side {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }
  
  .compare-divider-vertical {
    display: none;
  }
  
  .modality-label,
  .mindstillness-label {
    font-size: clamp(0.75rem, 2.5vw, 0.85rem);
    min-height: 1.2rem;
  }
  
  .detail-item {
    padding: 0.3rem 0;
  }
  
  .detail-label {
    font-size: 0.65rem;
  }
  
  .detail-value {
    font-size: 0.7rem;
  }
  
  /* Add padding at end for better scroll */
  .compare-cards-grid::after {
    content: '';
    flex: 0 0 var(--space-md);
    min-width: var(--space-md);
  }
  
  .compare-column {
    width: 100%;
  }
  
  /* Scroll Indicators - Show on Mobile */
  .compare-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-md) 0 var(--space-sm);
    margin-top: var(--space-xs);
  }
  
  .compare-indicators .indicator-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
  }
  
  .compare-indicators .indicator-dot.active {
    width: 24px;
    height: 6px;
    border-radius: 3px;
    background: var(--accent-teal);
    box-shadow: 0 0 8px rgba(43, 179, 177, 0.5);
  }
}

/* Hide indicators on desktop */
@media (min-width: 769px) {
  .compare-indicators {
    display: none;
  }
}

/* ============================================
   COMPARISON TABLE SECTION (Premium Media Frame)
   ============================================ */
.revamp-table {
  padding: var(--space-4xl) 0 !important;
  background: var(--bg-dark) !important;
  position: relative;
  border-bottom: none !important;
  width: 100%;
}

.revamp-table.section {
  border-bottom: none !important;
}

.revamp-table-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  width: 100%;
}

.revamp-table .section-head {
  margin-bottom: var(--space-3xl);
  text-align: center;
}

.revamp-table .section-head h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-light);
  margin-bottom: var(--space-sm);
}

.revamp-table .section-head p {
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
}

.table-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(43, 179, 177, 0.1);
  padding: var(--space-2xl);
  background: var(--bg-dark-surface);
  border: 1px solid var(--border-light);
  margin-bottom: var(--space-lg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.table-frame:hover {
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(43, 179, 177, 0.3);
  transform: translateY(-4px);
  border-color: var(--accent-teal);
}

.table-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.table-frame img,
.table-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.table-frame:hover .table-img {
  transform: scale(1.02);
}

.table-frame .mobile-image {
  display: none;
}

.table-caption {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  font-style: italic;
}

@media (max-width: 767px) {
  .revamp-table {
    padding: var(--space-3xl) 0 !important;
  }
  
  .revamp-table-container {
    padding: 0 var(--space-md);
  }
  
  .table-frame {
    padding: var(--space-md);
  }
  
  .table-frame .desktop-image {
    display: none;
  }
  
  .table-frame .mobile-image {
    display: block;
  }
}

/* ============================================
   GSAP ANIMATION INITIAL STATES
   ============================================ */
.revamp-reveal {
  opacity: 0;
  transform: translateY(24px);
}

.revamp-stagger {
  opacity: 0;
  transform: translateY(18px);
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .revamp-reveal,
  .revamp-stagger,
  .benefit-card,
  .revamp-compare article.card,
  .revamp-header .btn-pill,
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost {
    transition: none !important;
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/* ============================================
   EMAIL MODAL POPUP - CRYSTAL DESIGN
   ============================================ */
.email-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 18, 22, 0.6);
  backdrop-filter: blur(25px) saturate(200%);
  -webkit-backdrop-filter: blur(25px) saturate(200%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
  padding: var(--space-md);
}

.email-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.email-modal-container {
  position: relative;
  background: linear-gradient(135deg, 
    rgba(27, 48, 53, 0.4) 0%, 
    rgba(22, 40, 45, 0.5) 50%,
    rgba(16, 32, 37, 0.4) 100%);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  border: 1px solid rgba(43, 179, 177, 0.3);
  border-radius: 24px;
  max-width: 600px;
  width: 100%;
  padding: var(--space-3xl);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(43, 179, 177, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 0 80px rgba(43, 179, 177, 0.1);
  transform: scale(0.9) translateY(30px) rotateX(5deg);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s;
  opacity: 0;
  overflow: hidden;
  overflow-y: hidden;
  overflow-x: hidden;
}

.email-modal-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%,
    rgba(43, 179, 177, 0.6) 25%,
    rgba(64, 224, 208, 0.8) 50%,
    rgba(43, 179, 177, 0.6) 75%,
    transparent 100%);
  opacity: 0.8;
  box-shadow: 0 0 20px rgba(43, 179, 177, 0.5);
}

.email-modal-container::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, 
    rgba(43, 179, 177, 0.15) 0%,
    rgba(64, 224, 208, 0.1) 30%,
    transparent 70%);
  animation: pulse 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1) translate(0, 0);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.1) translate(10px, 10px);
    opacity: 0.5;
  }
}

.email-modal-overlay.active .email-modal-container {
  transform: scale(1) translateY(0) rotateX(0);
  opacity: 1;
}

.email-modal-close {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  background: rgba(43, 179, 177, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(43, 179, 177, 0.3);
  color: rgba(43, 179, 177, 0.9);
  cursor: pointer;
  padding: var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 44px;
  height: 44px;
  z-index: 10;
}

.email-modal-close:hover {
  color: var(--accent-teal);
  background: rgba(43, 179, 177, 0.2);
  border-color: rgba(43, 179, 177, 0.5);
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 4px 16px rgba(43, 179, 177, 0.4);
}

.email-modal-close svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.5;
}

.email-modal-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.email-modal-title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 1) 0%,
    rgba(43, 179, 177, 0.9) 50%,
    rgba(64, 224, 208, 0.95) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
  filter: drop-shadow(0 0 10px rgba(43, 179, 177, 0.3));
}

.email-modal-description {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  color: var(--text-muted-strong);
  line-height: 1.7;
  margin: 0;
  opacity: 0.9;
}

.email-modal-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.email-input-wrapper {
  position: relative;
}

.email-input-wrapper::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-md);
  padding: 2px;
  background: linear-gradient(135deg, 
    rgba(43, 179, 177, 0.5) 0%,
    rgba(64, 224, 208, 0.6) 25%,
    rgba(43, 179, 177, 0.5) 50%,
    rgba(64, 224, 208, 0.6) 75%,
    rgba(43, 179, 177, 0.5) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  box-shadow: 0 0 15px rgba(43, 179, 177, 0.4);
}

.email-input-wrapper:focus-within::before {
  opacity: 1;
}

.email-input {
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(5, 18, 22, 0.3);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(43, 179, 177, 0.2);
  border-radius: var(--radius-md);
  color: var(--text-light);
  font-size: var(--font-size-base);
  font-family: inherit;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
  box-shadow: 
    inset 0 2px 4px rgba(0, 0, 0, 0.1),
    0 1px 0 rgba(43, 179, 177, 0.1);
}

.email-input::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}

.email-input:focus {
  background: rgba(5, 18, 22, 0.5);
  border-color: rgba(43, 179, 177, 0.6);
  box-shadow: 
    0 0 0 4px rgba(43, 179, 177, 0.2),
    0 0 20px rgba(43, 179, 177, 0.3),
    inset 0 2px 4px rgba(0, 0, 0, 0.1),
    0 1px 0 rgba(43, 179, 177, 0.2);
  transform: translateY(-1px);
}

.email-submit-btn {
  width: 100%;
  padding: 1rem 2rem;
  font-size: var(--font-size-base);
  font-weight: 600;
  cursor: pointer;
  border: none;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, 
    var(--accent-teal) 0%,
    #26a3a1 100%);
  color: var(--text-light);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 4px 16px rgba(43, 179, 177, 0.4),
    0 2px 8px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.email-submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 100%);
  transition: left 0.5s ease;
}

.email-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 6px 24px rgba(43, 179, 177, 0.5),
    0 4px 12px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  background: linear-gradient(135deg, 
    #2cc5c3 0%,
    var(--accent-teal) 100%);
}

.email-submit-btn:hover::before {
  left: 100%;
}

.email-submit-btn:active {
  transform: translateY(0);
  box-shadow: 
    0 2px 8px rgba(43, 179, 177, 0.4),
    inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .email-modal-overlay {
    padding: var(--space-sm);
    align-items: center;
    padding-top: var(--space-sm);
    overflow-y: hidden;
    overflow-x: hidden;
  }
  
  .email-modal-container {
    padding: var(--space-md) var(--space-sm);
    max-width: calc(100% - var(--space-sm) * 2);
    width: 100%;
    border-radius: 20px;
    margin: auto;
    max-height: none;
    height: auto;
    overflow: hidden;
    overflow-y: hidden;
    overflow-x: hidden;
    transform: scale(0.95) translateY(20px);
  }
  
  .email-modal-overlay.active .email-modal-container {
    transform: scale(1) translateY(0);
  }
  
  .email-modal-title {
    font-size: clamp(1.25rem, 4.5vw, 1.5rem);
    line-height: 1.2;
    margin-bottom: 0.5rem;
  }
  
  .email-modal-description {
    font-size: clamp(0.85rem, 3vw, 0.95rem);
    line-height: 1.5;
    margin-bottom: 0.5rem;
  }
  
  .email-modal-close {
    top: var(--space-sm);
    right: var(--space-sm);
    width: 36px;
    height: 36px;
    padding: var(--space-xs);
  }
  
  .email-modal-close svg {
    width: 18px;
    height: 18px;
  }
  
  .email-modal-content {
    gap: var(--space-xs);
    overflow: hidden;
  }
  
  .email-input {
    padding: 0.7rem 0.8rem;
    font-size: 16px; /* Prevents zoom on iOS */
  }
  
  .email-submit-btn {
    padding: 0.7rem 1.1rem;
    font-size: 0.85rem;
  }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
  .email-modal-overlay {
    padding: var(--space-xs);
    padding-top: var(--space-xs);
    align-items: center;
    overflow: hidden;
  }
  
  .email-modal-container {
    padding: var(--space-sm) var(--space-xs);
    max-width: calc(100% - var(--space-xs) * 2);
    border-radius: 16px;
    max-height: none;
    height: auto;
    overflow: hidden;
  }
  
  .email-modal-title {
    font-size: 1.1rem;
    line-height: 1.2;
    margin-bottom: 0.4rem;
  }
  
  .email-modal-description {
    font-size: 0.8rem;
    line-height: 1.4;
    margin-bottom: 0.4rem;
  }
  
  .email-modal-close {
    top: var(--space-xs);
    right: var(--space-xs);
    width: 32px;
    height: 32px;
  }
  
  .email-modal-content {
    gap: 0.5rem;
    overflow: hidden;
  }
  
  .email-input {
    padding: 0.65rem 0.75rem;
    font-size: 16px;
  }
  
  .email-submit-btn {
    padding: 0.65rem 1rem;
    font-size: 0.8rem;
  }
}

/* FORCE CENTER ALIGNMENT - HIGHEST PRIORITY */
.benefits-section.revamp-benefits .container .section-head.revamp-reveal p,
.benefits-section.revamp-benefits .container .section-head p,
.revamp-benefits .container .section-head p,
.revamp-benefits .section-head.revamp-reveal p,
.revamp-benefits .section-head p {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: block !important;
  direction: ltr !important;
  width: 100% !important;
  max-width: none !important;
}
