
/* Consumer Page Specific Styles */

:root {
  --qa-blue: #0A84FF;
  --qa-dark: #001e3c;
  --qa-light: #F0F9FF;
}

.qa-consumer-scope {
  background: var(--bg);
  overflow-x: hidden;
}

/* Hero */
.consumer-hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: var(--space-8);
  background: radial-gradient(circle at 80% 20%, rgba(10,132,255,0.08) 0%, transparent 60%);
}

.hero-text h1 {
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #0B1220 0%, #0A84FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: var(--space-4);
}

.hero-text .lead {
  font-size: clamp(18px, 2vw, 22px);
  color: var(--muted);
  max-width: 500px;
  margin-bottom: var(--space-6);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

.phone-3d-container {
  position: relative;
  width: 300px;
  transform-style: preserve-3d;
  /* Initial state for animation */
  transform: rotateY(-15deg) rotateX(5deg);
  filter: drop-shadow(20px 30px 50px rgba(10,132,255,0.25));
}

.phone-3d-container img.phone-frame {
  width: 100%;
  position: relative;
  z-index: 2;
}

.phone-3d-container img.phone-screen {
  position: absolute;
  top: 1.7%;
  left: 2.2%;
  width: 95%;
  height: 97%;
  object-fit: cover;
  border-radius: 38px;
  z-index: 1;
}

@media (max-width: 768px) {
  .consumer-hero {
    flex-direction: column;
    text-align: center;
    padding-top: var(--space-6);
    min-height: auto;
  }
  .hero-text { margin-bottom: var(--space-8); }
  .hero-text h1 { font-size: 42px; }
  .phone-3d-container { width: 240px; margin: 0 auto; }
}

/* Horizontal Scroll Showcase */
.scroll-showcase {
  padding: var(--space-10) 0;
  overflow: hidden;
}

.showcase-intro {
  text-align: center;
  margin-bottom: var(--space-8);
}
.showcase-intro h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: var(--space-2);
}

.features-track {
  display: flex;
  flex-direction: column;
  gap: var(--space-10);
}

.feature-panel {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  /* sticky-like behavior handled by JS or simple stacking */
}

.panel-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-5);
  align-items: center;
}

.panel-text {
  order: 1;
}
.panel-image {
  order: 2;
  display: flex;
  justify-content: center;
}
/* Alternating layout */
.feature-panel:nth-child(even) .panel-text { order: 2; }
.feature-panel:nth-child(even) .panel-image { order: 1; }

.panel-image img {
  max-width: 100%;
  width: 320px;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  transition: transform 0.3s ease;
}

.panel-image img:hover {
  transform: scale(1.02);
}

.tag {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 20px;
  background: rgba(10,132,255,0.1);
  color: var(--qa-blue);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-3);
}

.panel-text h3 {
  font-size: 32px;
  margin-bottom: var(--space-3);
}

@media (max-width: 768px) {
  .panel-content { grid-template-columns: 1fr; text-align: center; }
  .panel-text, .panel-image { order: unset !important; }
  .feature-panel { min-height: auto; padding-bottom: var(--space-8); }
}

/* Details Grid */
.details-section {
  background: var(--bg-subtle);
  padding: var(--space-9) 0;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.detail-card {
  background: #fff;
  padding: var(--space-6);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.detail-card h4 { margin-top: 0; color: var(--qa-blue); }

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

/* Final CTA */
.final-cta {
  padding: var(--space-10) 0;
  text-align: center;
}
.final-cta h2 { font-size: 42px; margin-bottom: var(--space-2); }

.center.col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.store-link {
  display: inline-block;
  transition: opacity 0.2s;
}
.store-link:hover { opacity: 0.8; }

/* Animation Utility Classes */
.reveal-text { opacity: 0; transform: translateY(20px); }


