:root {
  --primary: #2563eb; /* Main brand blue */
  --primary-dark: #1e40af; /* Darker blue */
  --accent: #60a5fa; /* Accent lighter blue */
  --deep-navy: #1a3657; /* Strong navy for headings/contrast */
  --muted-teal: #2d5d5d; /* Muted teal accent */
  --soft-white: #f8fafc; /* Light background */
  --light-gray: #e2e8f0; /* Border/neutral gray */
  --text-dark: #1e293b; /* Main text */
  --text-light: #64748b; /* Secondary text */
  --white: #ffffff; /* White */
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 8px 16px rgba(0, 0, 0, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Nunito Sans", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--soft-white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  line-height: 1.2;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, var(--white), var(--light-gray));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-button {
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.phone-preview {
  width: 100%;
  height: 100%;
  border-radius: 18px; /* match phone-screen rounded corners */
}

.downloadButtons {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.cta-primary {
  background: linear-gradient(45deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: var(--shadow);
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.cta-secondary {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--primary);
}

.cta-secondary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.phone-mockup {
  text-align: center;
  position: relative;
}

.phone-frame {
  width: 280px;
  height: 560px;
  border-radius: 30px;
  margin: 0 auto;
  position: relative;
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

/* Key Highlights Section */
.highlights {
  padding: 80px 0;
  background: var(--white);
}

.highlights-otherPages {
  padding-top: 140px;
  padding-bottom: 60px;
  background: var(--primary-dark);
}

.contact-hero {
  padding: 80px 0;
  background: var(--primary-dark);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title-otherPages {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title-otherPages h2 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.section-title-otherPages p {
  font-size: 1.1rem;
  color: var(--white);
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--deep-navy);
  margin-bottom: 1rem;
}

.section-title p {
  font-size: 1.1rem;
  color: var(--text-light);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.highlight-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--light-gray);
}

.highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.highlight-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--white);
  font-size: 2rem;
}

.highlight-card h3 {
  color: var(--deep-navy);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.highlight-card p {
  color: var(--text-light);
}

/* Social Proof Section */
.social-proof {
  padding: 80px 0;
  background: var(--soft-white);
}

.proof-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.proof-content h2 {
  font-size: 2rem;
  color: var(--deep-navy);
  margin-bottom: 1rem;
}

.ratings {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.rating-badge {
  background: var(--white);
  padding: 1rem 1.5rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.stars {
  color: #ffd700;
}

/* How It Works Section */
.how-it-works {
  padding: 80px 0;
  background: var(--white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.step-card {
  background: var(--soft-white);
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  position: relative;
  border: 2px solid var(--light-gray);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

.step-card h3 {
  color: var(--deep-navy);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.step-card p {
  color: var(--text-light);
}

/* Features Section */
.feature-page {
  padding: 80px 0;
  background: var(--soft-white);
}

.features {
  padding: 80px 0;
  background: var(--soft-white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.feature-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, var(--primary), var(--primary-dark));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
}

.feature-card h3 {
  color: var(--deep-navy);
  font-size: 1.25rem;
}

.feature-card p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.feature-screenshot {
  width: 100%;
  height: 200px;
  background: linear-gradient(45deg, var(--light-gray), var(--soft-white));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-weight: 600;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: var(--white);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-form {
  background: var(--soft-white);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--deep-navy);
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--light-gray);
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.3);
  outline: none;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  background: linear-gradient(45deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--soft-white);
  border-radius: 15px;
  border: 1px solid var(--light-gray);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, var(--muted-teal), var(--deep-navy));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.contact-icon-share {
  width: 60px;
  height: 60px;
}

.contact-details h4 {
  color: var(--deep-navy);
  margin-bottom: 0.25rem;
}

.contact-details p {
  color: var(--text-light);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* Footer */
.footer {
  background: var(--primary-dark);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  margin-bottom: 1rem;
  color: var(--white);
  font-size: 24px;
  font-weight: 800;
}

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  margin-bottom: 0.5rem;
  display: block;
}

.footer-section a:hover {
  color: var(--accent);
}

.store-badge {
  width: 140px; /* adjust size */
  height: 40px;
  transition: transform 0.3s ease;
  border-radius: 12px;
}

.upper-badge {
  margin: 0.2rem 0 0 0;
  transition: transform 0.3s ease;
}

.store-badge:hover {
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeInUp 0.6s ease forwards;
}

/* Responsive Footer */
@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
  }

  .footer-section {
    align-items: center;
  }

  .store-badge {
    margin: 0.5rem auto;
    display: block;
  }
}

@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .cta-buttons {
    justify-content: center;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .phone-frame {
    width: 280px;
    height: 680px;
  }
}

@media (max-width: 600px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .footer-section h3 {
    font-size: 20px;
  }

  .footer-section p,
  .footer-section a {
    font-size: 15px;
  }

  .footer-bottom {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-button {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}