/* ==========================================
   YouSense Special Styles
   Dark Aurora Theme with Energy Orb Animation
   ========================================== */

:root {
  /* YouSense Color Palette */
  --youSense-primary: #00d9ff; /* Cyan Blue */
  --youSense-secondary: #ff00ff; /* Magenta */
  --youSense-accent: #9d4edd; /* Purple */
  --youSense-pink: #ff006e; /* Pink */

  /* Dark Theme */
  --youSense-bg-dark: #0a0e27; /* Deep dark with blue tint */
  --youSense-bg-darker: #050a1a; /* Even darker */
  --youSense-text-light: #e0e6ff; /* Light text */
  --youSense-text-muted: #8892b0; /* Muted text */

  /* Gradients */
  --youSense-gradient-aurora: linear-gradient(
    135deg,
    #0a0e27 0%,
    #1a0a3a 50%,
    #0a2a4a 100%
  );
  --youSense-gradient-orb: conic-gradient(
    from 0deg,
    #00d9ff,
    #9d4edd,
    #ff006e,
    #00d9ff
  );
}

.youSense-body {
  background: var(--youSense-gradient-aurora);
  color: var(--youSense-text-light);
}

/* ==========================================
   Navigation - Dark Theme
   ========================================== */
.nav-dark {
  background-color: rgba(10, 14, 39, 0.8);
  border-bottom: 1px solid rgba(0, 217, 255, 0.1);
}

.nav-dark .nav-links a {
  color: var(--youSense-text-light);
}

.nav-dark .nav-links a:hover {
  color: var(--youSense-primary);
  text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

/* ==========================================
   Hero Section - YouSense
   ========================================== */
.hero-youSense {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--youSense-gradient-aurora);
  position: relative;
  overflow: hidden;
  padding: var(--spacing-lg) 0;
}

.orb-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

/* Energy Orb - Main Visual Element */
.energy-orb {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 0 auto;
  filter: drop-shadow(0 0 80px rgba(0, 217, 255, 0.6))
    drop-shadow(0 0 40px rgba(157, 78, 221, 0.4));
  animation: orbBreathing 4s ease-in-out infinite;
}

.orb-core {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(0, 217, 255, 0.8),
    rgba(157, 78, 221, 0.3)
  );
  box-shadow:
    inset -30px -30px 60px rgba(0, 0, 0, 0.4),
    inset 20px 20px 60px rgba(0, 217, 255, 0.2),
    0 0 120px rgba(0, 217, 255, 0.4);
  animation: orbGlow 3s ease-in-out infinite;
}

.orb-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.orb-ring-1 {
  width: 120%;
  height: 120%;
  border-color: rgba(0, 217, 255, 0.3);
  animation: orbRotate 8s linear infinite;
}

.orb-ring-2 {
  width: 140%;
  height: 140%;
  border-color: rgba(157, 78, 221, 0.2);
  animation: orbRotate 12s linear infinite reverse;
}

.orb-particle {
  position: absolute;
  width: 100%;
  height: 100%;
}

.orb-particle::before,
.orb-particle::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, var(--youSense-primary), transparent);
  animation: particleFloat 6s ease-in-out infinite;
}

.orb-particle::before {
  width: 20px;
  height: 20px;
  top: 10%;
  left: 50%;
  animation-delay: 0s;
  box-shadow: 0 0 30px rgba(0, 217, 255, 0.8);
}

.orb-particle::after {
  width: 15px;
  height: 15px;
  bottom: 15%;
  right: 10%;
  animation-delay: 2s;
  background: radial-gradient(circle, var(--youSense-accent), transparent);
  box-shadow: 0 0 20px rgba(157, 78, 221, 0.6);
}

/* Hero Content */
.hero-content-youSense {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: 100px;
}

.hero-title-youSense {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
  letter-spacing: -0.02em;
  animation: fadeInUp 0.8s ease-out;
}

.gradient-text {
  background: linear-gradient(
    90deg,
    var(--youSense-primary),
    var(--youSense-accent),
    var(--youSense-pink)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease infinite;
}

.hero-subtitle-youSense {
  font-size: 1.5rem;
  color: var(--youSense-primary);
  margin-bottom: var(--spacing-sm);
  font-weight: 300;
  letter-spacing: 0.05em;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero-description-youSense {
  font-size: 1.125rem;
  color: var(--youSense-text-muted);
  margin-bottom: var(--spacing-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.cta-buttons-youSense {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--spacing-md);
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-note {
  font-size: var(--font-size-small);
  color: var(--youSense-text-muted);
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* ==========================================
   Buttons - YouSense
   ========================================== */
.btn-youSense {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary.btn-youSense {
  background: linear-gradient(
    135deg,
    var(--youSense-primary),
    var(--youSense-accent)
  );
  color: white;
  box-shadow: 0 8px 24px rgba(0, 217, 255, 0.3);
  border: none;
}

.btn-primary.btn-youSense:hover {
  transform: translateY(-3px);
  box-shadow:
    0 12px 36px rgba(0, 217, 255, 0.5),
    0 0 20px rgba(157, 78, 221, 0.3);
}

.btn-secondary.btn-youSense {
  background-color: transparent;
  color: var(--youSense-primary);
  border: 2px solid var(--youSense-primary);
}

.btn-secondary.btn-youSense:hover {
  background-color: rgba(0, 217, 255, 0.1);
  border-color: var(--youSense-accent);
  color: var(--youSense-accent);
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.2);
}

/* ==========================================
   Section Styles
   ========================================== */
.section-dark {
  background-color: var(--youSense-bg-darker);
}

.section-dark .section-title-youSense {
  background: linear-gradient(
    90deg,
    var(--youSense-primary),
    var(--youSense-accent)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header-youSense {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.section-title-youSense {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  letter-spacing: -0.02em;
}

.section-subtitle-youSense {
  font-size: 1.125rem;
  color: var(--youSense-text-muted);
}

/* ==========================================
   Capabilities Grid
   ========================================== */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.capability-card {
  padding: var(--spacing-md);
  background: linear-gradient(
    135deg,
    rgba(0, 217, 255, 0.05),
    rgba(157, 78, 221, 0.05)
  );
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.capability-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: var(--border-radius);
}

.capability-card:hover {
  transform: translateY(-8px);
  border-color: var(--youSense-primary);
  box-shadow: 0 12px 40px rgba(0, 217, 255, 0.2);
}

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

.capability-icon {
  width: 50px;
  height: 50px;
  margin-bottom: var(--spacing-md);
  color: var(--youSense-primary);
  opacity: 0.8;
}

.capability-icon svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 8px rgba(0, 217, 255, 0.4));
}

.capability-card h3 {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-sm);
  font-weight: 600;
}

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

/* ==========================================
   Coordinate System
   ========================================== */
.coordinate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.coordinate-animal {
  padding: var(--spacing-md);
  background: rgba(0, 217, 255, 0.05);
  border: 1px solid rgba(0, 217, 255, 0.15);
  border-radius: var(--border-radius);
  text-align: center;
  transition: all 0.3s ease;
}

.coordinate-animal:hover {
  background: rgba(0, 217, 255, 0.1);
  border-color: var(--youSense-primary);
  transform: scale(1.05);
}

.animal-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-sm);
}

.coordinate-animal h4 {
  font-size: 1.125rem;
  margin-bottom: var(--spacing-xs);
  color: var(--youSense-primary);
}

.coordinate-animal p {
  color: var(--youSense-text-muted);
  font-size: 0.9rem;
}

.coordinate-note {
  text-align: center;
  color: var(--youSense-text-muted);
  font-style: italic;
}

/* ==========================================
   Steps Grid
   ========================================== */
.steps-grid-youSense {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: var(--spacing-lg);
}

.step-card-youSense {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  padding: var(--spacing-md);
  background: linear-gradient(
    135deg,
    rgba(0, 217, 255, 0.08),
    rgba(157, 78, 221, 0.08)
  );
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: var(--border-radius);
  text-align: center;
  transition: all 0.3s ease;
}

.step-card-youSense:hover {
  transform: translateY(-6px);
  border-color: var(--youSense-primary);
  box-shadow: 0 12px 36px rgba(0, 217, 255, 0.15);
}

.step-number-youSense {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--youSense-primary),
    var(--youSense-accent)
  );
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto var(--spacing-md);
}

.step-card-youSense h3 {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-sm);
}

.step-card-youSense p {
  color: var(--youSense-text-muted);
  line-height: 1.6;
}

.step-arrow {
  font-size: 2rem;
  color: var(--youSense-primary);
  opacity: 0.6;
}

/* ==========================================
   Report Preview
   ========================================== */
.report-preview {
  margin-top: var(--spacing-lg);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.report-placeholder {
  padding: var(--spacing-lg);
  background: linear-gradient(
    135deg,
    rgba(0, 217, 255, 0.08),
    rgba(157, 78, 221, 0.08)
  );
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: var(--border-radius);
  backdrop-filter: blur(10px);
}

.report-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
  padding-bottom: var(--spacing-md);
  border-bottom: 1px solid rgba(0, 217, 255, 0.1);
}

.report-header h3 {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
}

.report-mbti {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(
    90deg,
    var(--youSense-primary),
    var(--youSense-accent)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.report-sections {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.report-section {
  padding: var(--spacing-md);
  background: rgba(0, 0, 0, 0.3);
  border-left: 3px solid var(--youSense-primary);
  border-radius: 4px;
}

.report-section h4 {
  color: var(--youSense-primary);
  margin-bottom: var(--spacing-sm);
  font-size: 1.1rem;
}

.report-section p {
  color: var(--youSense-text-light);
  line-height: 1.6;
}

/* Dimensions Chart */
.dimensions-chart {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.dimension-bar {
  display: grid;
  grid-template-columns: 80px 1fr 50px;
  align-items: center;
  gap: var(--spacing-sm);
}

.dimension-bar span:first-child {
  font-size: 0.9rem;
  color: var(--youSense-text-muted);
}

.bar-fill {
  height: 8px;
  background: linear-gradient(
    90deg,
    var(--youSense-primary),
    var(--youSense-accent)
  );
  border-radius: 4px;
  animation: fillAnimation 1s ease-out;
}

.dimension-bar .value {
  text-align: right;
  color: var(--youSense-primary);
  font-weight: 600;
  font-size: 0.9rem;
}

.report-note {
  text-align: center;
  color: var(--youSense-text-muted);
  font-size: 0.9rem;
  margin-top: var(--spacing-md);
}

.section-header-tight {
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
}

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

.youSense-screenshot-grid {
  margin-top: var(--spacing-md);
}

.youSense-screenshot-grid .screenshot-card {
  background: linear-gradient(
    135deg,
    rgba(0, 217, 255, 0.08),
    rgba(157, 78, 221, 0.08)
  );
  border: 1px solid rgba(0, 217, 255, 0.2);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.youSense-screenshot-grid .screenshot-card img {
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(0, 217, 255, 0.15);
}

.youSense-screenshot-grid figcaption {
  color: var(--youSense-text-muted);
}

/* ==========================================
   Reviews Grid
   ========================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.review-card {
  padding: var(--spacing-md);
  background: linear-gradient(
    135deg,
    rgba(0, 217, 255, 0.05),
    rgba(157, 78, 221, 0.05)
  );
  border: 1px solid rgba(0, 217, 255, 0.15);
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: var(--youSense-primary);
  box-shadow: 0 8px 24px rgba(0, 217, 255, 0.1);
}

.review-header {
  margin-bottom: var(--spacing-md);
}

.review-rating {
  font-size: 1.1rem;
}

.review-text {
  color: var(--youSense-text-light);
  margin-bottom: var(--spacing-md);
  line-height: 1.7;
  font-style: italic;
}

.review-author {
  color: var(--youSense-primary);
  font-size: 0.9rem;
  font-weight: 600;
}

/* ==========================================
   Pricing Grid
   ========================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.pricing-card {
  padding: var(--spacing-lg);
  background: linear-gradient(
    135deg,
    rgba(0, 217, 255, 0.05),
    rgba(157, 78, 221, 0.05)
  );
  border: 1px solid rgba(0, 217, 255, 0.15);
  border-radius: var(--border-radius);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  border-color: var(--youSense-primary);
  transform: translateY(-8px);
}

.pricing-card-featured {
  border: 2px solid var(--youSense-primary);
  background: linear-gradient(
    135deg,
    rgba(0, 217, 255, 0.1),
    rgba(157, 78, 221, 0.08)
  );
  box-shadow: 0 0 30px rgba(0, 217, 255, 0.2);
  transform: scale(1.02);
}

.pricing-badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(0, 217, 255, 0.2);
  color: var(--youSense-primary);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  width: fit-content;
}

.pricing-badge-pro {
  background: linear-gradient(
    135deg,
    rgba(0, 217, 255, 0.3),
    rgba(157, 78, 221, 0.3)
  );
  color: var(--youSense-primary);
}

.pricing-name {
  font-size: 1.5rem;
  font-weight: 600;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(
    90deg,
    var(--youSense-primary),
    var(--youSense-accent)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.currency {
  font-size: 1.5rem;
}

.amount {
  margin: 0 0.25rem;
}

.period {
  font-size: 1rem;
  margin-left: 0.5rem;
}

.pricing-description {
  color: var(--youSense-text-muted);
  font-size: 0.95rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  flex-grow: 1;
}

.pricing-features li {
  color: var(--youSense-text-light);
}

.pricing-features li::before {
  content: "✓ ";
  color: var(--youSense-primary);
  font-weight: bold;
  margin-right: 0.5rem;
}

.pricing-features li:has(::before) {
  display: flex;
}

.pricing-note {
  font-size: 0.85rem;
  color: var(--youSense-text-muted);
  text-align: center;
}

/* ==========================================
   FAQ
   ========================================== */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.faq-item {
  padding: var(--spacing-md);
  background: linear-gradient(
    135deg,
    rgba(0, 217, 255, 0.05),
    rgba(157, 78, 221, 0.05)
  );
  border: 1px solid rgba(0, 217, 255, 0.15);
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--youSense-primary);
}

.faq-item[open] {
  background: linear-gradient(
    135deg,
    rgba(0, 217, 255, 0.1),
    rgba(157, 78, 221, 0.08)
  );
  border-color: var(--youSense-primary);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--spacing-md);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--youSense-text-light);
  list-style: none;
}

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

.faq-icon {
  color: var(--youSense-primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  margin-top: var(--spacing-md);
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(0, 217, 255, 0.1);
  color: var(--youSense-text-muted);
  line-height: 1.7;
}

/* ==========================================
   CTA Final
   ========================================== */
.cta-final-youSense {
  padding: var(--spacing-xl) 0;
  background: linear-gradient(
    135deg,
    rgba(0, 217, 255, 0.1),
    rgba(157, 78, 221, 0.1)
  );
  border-top: 1px solid rgba(0, 217, 255, 0.2);
  border-bottom: 1px solid rgba(0, 217, 255, 0.2);
}

.cta-content-youSense {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-content-youSense h2 {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-md);
  background: linear-gradient(
    90deg,
    var(--youSense-primary),
    var(--youSense-accent)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-content-youSense p {
  color: var(--youSense-text-muted);
  font-size: 1.125rem;
  margin-bottom: var(--spacing-lg);
}

.cta-buttons-final {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-md);
}

.btn-large {
  padding: 16px 48px;
  font-size: 1.125rem;
}

.cta-note {
  font-size: 0.9rem;
  color: var(--youSense-text-muted);
}

/* ==========================================
   Footer - Dark
   ========================================== */
.footer-dark {
  background-color: var(--youSense-bg-darker);
  border-top: 1px solid rgba(0, 217, 255, 0.1);
}

.footer-dark a {
  color: var(--youSense-text-muted);
}

.footer-dark a:hover {
  color: var(--youSense-primary);
}

/* ==========================================
   Animations
   ========================================== */
@keyframes orbBreathing {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05);
  }
}

@keyframes orbGlow {
  0%,
  100% {
    box-shadow:
      inset -30px -30px 60px rgba(0, 0, 0, 0.4),
      inset 20px 20px 60px rgba(0, 217, 255, 0.2),
      0 0 120px rgba(0, 217, 255, 0.4);
  }
  50% {
    box-shadow:
      inset -30px -30px 60px rgba(0, 0, 0, 0.4),
      inset 20px 20px 60px rgba(0, 217, 255, 0.4),
      0 0 160px rgba(0, 217, 255, 0.6),
      0 0 80px rgba(157, 78, 221, 0.4);
  }
}

@keyframes orbRotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes particleFloat {
  0%,
  100% {
    transform: translate(0, 0);
    opacity: 0.8;
  }
  25% {
    transform: translate(30px, -30px);
    opacity: 0.5;
  }
  50% {
    transform: translate(0, -60px);
    opacity: 0;
  }
  75% {
    transform: translate(-30px, -30px);
    opacity: 0.5;
  }
}

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

@keyframes gradientShift {
  0%,
  100% {
    filter: hue-rotate(0deg);
  }
  50% {
    filter: hue-rotate(10deg);
  }
}

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

/* ==========================================
   Responsive Design
   ========================================== */
@media (max-width: 768px) {
  .hero-youSense {
    padding: var(--spacing-md) 0;
  }

  .hero-title-youSense {
    font-size: 2.5rem;
  }

  .hero-subtitle-youSense {
    font-size: 1.25rem;
  }

  .energy-orb {
    width: 200px;
    height: 200px;
  }

  .hero-content-youSense {
    margin-top: 60px;
  }

  .steps-grid-youSense {
    gap: 1rem;
  }

  .step-arrow {
    display: none;
  }

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

  .cta-buttons-youSense {
    flex-direction: column;
  }

  .section-title-youSense {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-title-youSense {
    font-size: 2rem;
  }

  .hero-subtitle-youSense {
    font-size: 1rem;
  }

  .energy-orb {
    width: 150px;
    height: 150px;
  }

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

  .pricing-card-featured {
    transform: scale(1);
  }

  .btn-youSense {
    width: 100%;
  }
}
