@import url('/assets/css/nexatel-design.css');

/* Landing page layout — uses NexaTel design tokens only */

.hero {
  background: var(--gradient-hero);
  color: var(--color-white);
  padding: var(--space-20) 0 var(--space-16);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero-emoji {
  font-size: 4rem;
  margin-bottom: var(--space-4);
  display: block;
}

.hero h1 {
  font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
  font-weight: var(--weight-extrabold);
  line-height: var(--leading-tight);
  margin-bottom: var(--space-4);
}

.hero p {
  font-size: clamp(var(--text-base), 2vw, var(--text-lg));
  opacity: 0.95;
  margin-bottom: var(--space-8);
}

.hero-ctas {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

.hero .btn-primary {
  background: var(--color-white);
  color: var(--color-orange);
}

.hero .btn-secondary {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.hero .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-white);
  color: var(--color-white);
}

.hero-counter {
  margin-top: var(--space-10);
  font-size: var(--text-sm);
  opacity: 0.9;
}

.hero-counter strong {
  font-weight: var(--weight-extrabold);
  font-size: var(--text-xl);
}

section {
  padding: var(--space-20) 0;
}

.section-title {
  text-align: center;
  font-size: clamp(var(--text-2xl), 3vw, var(--text-4xl));
  font-weight: var(--weight-extrabold);
  margin-bottom: var(--space-4);
}

.section-subtitle {
  text-align: center;
  color: var(--color-gray-600);
  font-size: var(--text-lg);
  margin-bottom: var(--space-12);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.bg-gray {
  background: var(--color-gray-50);
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  text-align: center;
  transition: all var(--duration-base) var(--ease-out);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-orange);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-4);
  background: var(--gradient-button);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-2xl);
  color: var(--color-white);
}

.feature-card h3 {
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  margin-bottom: var(--space-2);
}

.feature-card p {
  color: var(--color-gray-600);
}

.steps {
  max-width: 800px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: var(--space-6);
  align-items: flex-start;
  margin-bottom: var(--space-8);
  padding: var(--space-6);
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-xl);
  transition: all var(--duration-base) var(--ease-out);
}

.step:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-orange);
}

.step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--gradient-button);
  color: var(--color-white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--weight-extrabold);
  font-size: var(--text-xl);
}

.step-content h3 {
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  margin-bottom: var(--space-1);
}

.step-content p {
  color: var(--color-gray-600);
}

.prizes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-6);
  max-width: 1000px;
  margin: 0 auto;
}

.prize-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--duration-base) var(--ease-out);
}

.prize-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.prize-image {
  height: 200px;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--color-white);
}

.prize-body {
  padding: var(--space-6);
}

.prize-body h3 {
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  margin-bottom: var(--space-1);
}

.prize-body p {
  color: var(--color-gray-600);
  font-size: var(--text-sm);
  margin-bottom: var(--space-2);
}

.prize-value {
  color: var(--color-orange);
  font-weight: var(--weight-bold);
  font-size: var(--text-xl);
}

.final-cta {
  background: var(--gradient-hero);
  color: var(--color-white);
  text-align: center;
  border-radius: var(--radius-2xl);
  padding: var(--space-16) var(--space-8);
  margin: var(--space-8) auto;
  max-width: 1000px;
}

.final-cta h2 {
  font-size: clamp(var(--text-2xl), 3vw, var(--text-4xl));
  font-weight: var(--weight-extrabold);
  margin-bottom: var(--space-4);
}

.final-cta p {
  font-size: var(--text-lg);
  opacity: 0.95;
  margin-bottom: var(--space-8);
}

.final-cta .btn-primary {
  background: var(--color-white);
  color: var(--color-orange);
}

footer {
  background: var(--color-dark);
  color: var(--color-gray-400);
  padding: var(--space-12) 0 var(--space-8);
  margin-top: var(--space-16);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-8);
  margin-bottom: var(--space-8);
}

.footer-section h4 {
  color: var(--color-white);
  margin-bottom: var(--space-4);
  font-size: var(--text-base);
  font-weight: var(--weight-bold);
}

.footer-section a {
  color: var(--color-gray-400);
  text-decoration: none;
  display: block;
  margin-bottom: var(--space-2);
  transition: color var(--duration-fast) var(--ease-out);
}

.footer-section a:hover {
  color: var(--color-orange);
}

.footer-bottom {
  border-top: 1px solid var(--color-gray-800);
  padding-top: var(--space-6);
  text-align: center;
  font-size: var(--text-sm);
}

@media (max-width: 768px) {
  .hero { padding: var(--space-12) 0 var(--space-16); }
  section { padding: var(--space-12) 0; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
}
