@charset "UTF-8";
/* ============================================================================
   UNISTEPS PAGE STYLES - Unifying Services
   ============================================================================

   UniSteps app landing page styles including:
   - Hero section with AR theme
   - App features and benefits
   - How it works steps
   - Join testers community section
   - Responsive design for all devices

   ============================================================================ */

/* App Gallery Section */
.app-gallery-section {
  padding: 80px 20px;
  background: var(--white);
  text-align: center;
}

.app-gallery-section h2 {
  color: var(--primary);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  margin-bottom: 3rem;
}

.app-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.app-screenshot {
  aspect-ratio: 9/16;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s, box-shadow 0.3s;
}

.app-screenshot:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.screenshot-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, #5a3560 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--white);
}

.screenshot-placeholder svg {
  opacity: 0.7;
}

.screenshot-placeholder span {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* AUG Section */
.aug-section {
  padding: 80px 20px;
  background: var(--white-alt);
}

.aug-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.aug-image {
  display: flex;
  justify-content: center;
}

.aug-placeholder {
  width: 280px;
  height: 280px;
  background: linear-gradient(135deg, var(--secondary) 0%, #e6b600 100%);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--primary);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.aug-placeholder svg {
  opacity: 0.8;
}

.aug-placeholder span {
  font-size: 1rem;
  font-weight: 600;
}

.aug-text h2 {
  color: var(--primary);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  margin-bottom: 0.5rem;
}

.aug-subtitle {
  color: var(--secondary);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, var(--primary), #5a3560);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.aug-description {
  color: var(--text);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.aug-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.aug-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.5;
}

.aug-features li svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Benefits Grid - Three Items */
.benefits-grid-three {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1000px;
}

/* Responsive for App Gallery */
@media (max-width: 1024px) {
  .app-gallery {
    grid-template-columns: repeat(2, 1fr);
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .app-gallery-section {
    padding: 60px 15px;
  }

  .app-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 400px;
  }

  .aug-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .aug-placeholder {
    width: 200px;
    height: 200px;
  }

  .aug-placeholder svg {
    width: 60px;
    height: 60px;
  }

  .aug-features li {
    justify-content: center;
    text-align: left;
  }

  .benefits-grid-three {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .app-gallery {
    grid-template-columns: 1fr 1fr;
    max-width: 300px;
  }

  .aug-placeholder {
    width: 160px;
    height: 160px;
  }

  .aug-placeholder svg {
    width: 48px;
    height: 48px;
  }

  .aug-placeholder span {
    font-size: 0.85rem;
  }
}

/* Hero Section */
.unisteps-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #5a3560 100%);
  color: var(--white);
  padding: 140px 20px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.unisteps-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: var(--secondary);
  color: var(--primary);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.unisteps-hero h1 {
  font-size: clamp(2rem, 6vw, 4rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.unisteps-hero .highlight {
  color: var(--secondary);
}

.unisteps-hero .hero-subtitle {
  font-size: clamp(1rem, 3vw, 1.4rem);
  margin-bottom: 2rem;
  color: #e0e0e0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.unisteps-hero .hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* About App Section */
.about-app-section {
  padding: 80px 20px;
  background: var(--white);
}

.about-app-content {
  max-width: 900px;
  margin: 0 auto;
}

.about-app-content h2 {
  color: var(--primary);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  margin-bottom: 1.5rem;
  text-align: center;
}

.about-app-content .lead-text {
  font-size: 1.25rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.about-app-content p {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.app-highlights {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--white-alt);
  padding: 1rem 1.5rem;
  border-radius: 50px;
  border: 2px solid var(--secondary);
}

.highlight-icon {
  width: 40px;
  height: 40px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.highlight-icon svg {
  color: var(--primary);
  width: 24px;
  height: 24px;
}

.highlight-item span {
  font-weight: 600;
  color: var(--primary);
}

/* How It Works Section */
.how-it-works-section {
  padding: 80px 20px;
  background: var(--white-alt);
}

.how-it-works-section h2 {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--primary);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
}

.how-it-works-section .subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.how-it-works-section .steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

.how-it-works-section .step-card {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  position: relative;
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1rem;
}

.how-it-works-section .step-icon {
  width: 64px;
  height: 64px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.5rem auto 1.5rem;
}

.how-it-works-section .step-card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.how-it-works-section .step-card p {
  color: var(--text);
  line-height: 1.6;
}

/* Features Section */
.features-section {
  padding: 80px 20px;
  background: var(--white);
}

.features-section h2 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 3rem;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  border: 2px solid #e8e8e8;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--secondary);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--secondary) 0%, #e6b600 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-icon svg {
  color: var(--primary);
}

.feature-card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

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

/* Benefits Section */
.benefits-section {
  padding: 80px 20px;
  background: var(--white-alt);
}

.benefits-section h2 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 3rem;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
}

.benefits-section .benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.benefits-section .benefit-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  border: 2px solid var(--secondary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.benefits-section .benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.benefit-icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary) 0%, #5a3560 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.benefit-icon-wrapper svg {
  color: var(--white);
}

.benefits-section .benefit-card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.benefits-section .benefit-card p {
  color: var(--text);
  line-height: 1.6;
}

/* Testers Section */
.testers-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--primary) 0%, #5a3560 100%);
  color: var(--white);
}

.testers-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.testers-content h2 {
  color: var(--white);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  margin-bottom: 1.5rem;
}

.testers-intro {
  font-size: 1.15rem;
  color: #e0e0e0;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.testers-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.tester-benefit {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem 1.25rem;
  border-radius: 10px;
  text-align: left;
}

.tester-benefit svg {
  color: var(--secondary);
  flex-shrink: 0;
}

.tester-benefit span {
  font-size: 0.95rem;
}

.testers-cta-text {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #e0e0e0;
}

.testers-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.tester-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
  min-height: 44px;
}

.tester-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.tester-btn:focus {
  outline: 3px solid var(--secondary);
  outline-offset: 3px;
}

.whatsapp-btn {
  background: #25D366;
  color: var(--white);
}

.whatsapp-btn:hover {
  background: #20bd5a;
}

.discord-btn {
  background: #5865F2;
  color: var(--white);
}

.discord-btn:hover {
  background: #4752c4;
}

/* CTA Section - inherits from home.css */
.cta-section {
  padding: 80px 20px;
  background: var(--primary);
  text-align: center;
  color: var(--white);
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
}

.cta-section p {
  font-size: 1.2rem;
  color: #e0e0e0;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Button Styles */
.btn-primary {
  background-color: var(--secondary);
  color: var(--primary);
  padding: 15px 40px;
  border-radius: 50px;
  border: none;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: opacity 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-primary:focus {
  outline: 3px solid var(--white);
  outline-offset: 3px;
}

.btn-secondary {
  background-color: transparent;
  color: var(--white);
  padding: 15px 40px;
  border-radius: 50px;
  border: 2px solid var(--white);
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
}

.btn-secondary:hover {
  background-color: var(--white);
  color: var(--primary);
}

.btn-secondary:focus {
  outline: 3px solid var(--secondary);
  outline-offset: 3px;
  background-color: rgba(255, 255, 255, 0.15);
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--secondary);
  color: var(--primary);
  padding: 8px 16px;
  text-decoration: none;
  font-weight: bold;
  z-index: 100;
  border-radius: 0 0 4px 0;
}

.skip-link:focus {
  top: 0;
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .unisteps-hero {
    padding: 120px 15px 60px;
    min-height: auto;
  }

  .unisteps-hero h1 {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }

  .unisteps-hero .hero-subtitle {
    font-size: clamp(0.95rem, 4vw, 1.1rem);
  }

  .unisteps-hero .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    padding: 12px 30px;
    font-size: 1rem;
    width: 100%;
    max-width: 300px;
  }

  .app-highlights {
    flex-direction: column;
    align-items: center;
  }

  .highlight-item {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .how-it-works-section .steps-grid,
  .features-grid,
  .benefits-section .benefits-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .testers-benefits {
    grid-template-columns: 1fr;
  }

  .testers-buttons {
    flex-direction: column;
    align-items: center;
  }

  .tester-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .about-app-section,
  .how-it-works-section,
  .features-section,
  .benefits-section,
  .testers-section,
  .cta-section {
    padding: 60px 15px;
  }
}

@media (max-width: 480px) {
  .unisteps-hero h1 {
    font-size: 1.5rem;
  }

  .hero-badge {
    padding: 6px 15px;
    font-size: 0.8rem;
  }

  .how-it-works-section .step-card,
  .feature-card,
  .benefits-section .benefit-card {
    padding: 1.5rem;
  }

  .step-number {
    width: 30px;
    height: 30px;
    font-size: 1rem;
    top: -12px;
  }

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

  .feature-icon svg {
    width: 28px;
    height: 28px;
  }

  .benefit-icon-wrapper {
    width: 64px;
    height: 64px;
  }

  .benefit-icon-wrapper svg {
    width: 36px;
    height: 36px;
  }

  .tester-benefit {
    padding: 0.875rem 1rem;
  }

  .about-app-section,
  .how-it-works-section,
  .features-section,
  .benefits-section,
  .testers-section,
  .cta-section {
    padding: 40px 15px;
  }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  .btn-primary,
  .btn-secondary,
  .tester-btn {
    min-height: 44px;
  }
}
