* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
  --primary-color: #4361ee;
  --secondary-color: #3a0ca3;
  --accent-color: #4cc9f0;
  --light-color: #f8f9fa;
  --dark-color: #212529;
  --gray-color: #6c757d;
  --success-color: #2ecc71;
}

html {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  line-height: 1.6;
  color: var(--dark-color);
  background-color: var(--light-color);
}

/* Header and Navigation */
header {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding-bottom: 60px;
}


nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  display: flex;
  align-items: center;
}

.logo-icon {
  height: 32px;
  width: 32px;
  margin-right: 10px;
  border-radius: 6px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  margin-left: 30px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  color: var(--accent-color);
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  padding: 60px 5%;
  max-width: 1400px;
  margin: 0 auto;
  radial-gradient(circle at 50% 0,#fdffec 3%,#ffebe6 38%,#fff 77%)
}

.hero-content {
  flex: 1;
  padding-right: 40px;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  max-width: 600px;
}

.cta-buttons {
  display: flex;
  gap: 15px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

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

.secondary {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid white;
}

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

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

/* Phone Mockup */
.phone {
  width: 300px;
  height: 600px;
  background-color: #222;
  border-radius: 40px;
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  border: 8px solid #111;
}

.phone-screen {
  background-color: white;
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  bottom: 12px;
  border-radius: 28px;
  overflow: hidden;
}

.app-ui {
  width: 100%;
  height: 100%;
  background-color: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
}

.code-display {
  text-align: center;
  width: 80%;
  padding: 30px;
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.code-display h3 {
  margin-bottom: 20px;
  color: var(--dark-color);
}

.digits {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.digits span {
  display: inline-block;
  width: 35px;
  height: 50px;
  line-height: 50px;
  background-color: var(--light-color);
  margin: 0 3px;
  border-radius: 8px;
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--dark-color);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.timer {
  height: 6px;
  background-color: #eee;
  border-radius: 3px;
  margin-bottom: 10px;
  overflow: hidden;
}

.timer-bar {
  height: 100%;
  background-color: var(--primary-color);
  width: 100%;
}

/* Features Section */
section {
  padding: 80px 5%;
}

.features {
  background-color: white;
  text-align: center;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  text-align: center;
  color: var(--dark-color);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background-color: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(67, 97, 238, 0.15);
}

.feature-card i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--dark-color);
}

/* How It Works Section */
.how-it-works {
  background-color: #f8fafc;
}

.steps {
  max-width: 800px;
  margin: 0 auto;
}

.step {
  display: flex;
  margin-bottom: 50px;
  align-items: flex-start;
}

.step-number {
  background-color: var(--primary-color);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin-right: 25px;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--dark-color);
}

/* Download Section */
.download {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  text-align: center;
}

.download h2,
.download p {
  color: white;
}

.download p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.app-icon-showcase {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.app-showcase-icon {
  width: 120px;
  height: 120px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.app-showcase-icon:hover {
  transform: scale(1.05);
}

.recommended-download {
  text-align: center;
  margin-bottom: 40px;
  background-color: rgba(0, 0, 0, 0.1);
  padding: 20px;
  border-radius: 15px;
}

.recommended-download h3 {
  color: white;
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.primary-download {
  background-color: var(--success-color);
  color: white !important;
  /* transform: scale(1.1); */
  padding: 15px 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.primary-download .download-text {
  color: black;
}

.primary-download i {
  font-size: 2rem;
  margin-right: 10px;
  color: black;
}

.primary-download:hover {
  transform: translateY(-5px) scale(1.1);
}

.download-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.download-btn {
  display: flex;
  align-items: center;
  background-color: white;
  color: var(--dark-color);
  padding: 12px 25px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.download-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.download-btn i {
  font-size: 2rem;
  margin-right: 10px;
}

.download-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.download-text small {
  font-size: 0.8rem;
}

/* FAQ Section */
.faq {
  background-color: white;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}

.faq-question {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  cursor: pointer;
  color: var(--dark-color);
}

.faq-question:hover {
  color: var(--primary-color);
}

.faq-answer {
  color: var(--gray-color);
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: white;
  padding: 40px 5%;
  text-align: center;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 0;
}

.social-icons a {
  color: white;
  margin-left: 15px;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: var(--accent-color);
}

/* Responsive Design */
@media (max-width: 1000px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    padding-right: 0;
    margin-bottom: 50px;
  }

  .cta-buttons {
    justify-content: center;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
  }
}

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

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .social-icons {
    margin-top: 20px;
  }

  .social-icons a:first-child {
    margin-left: 0;
  }
}