/* * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #6366f1;
  --primary-dark: #4f46e5;
  --accent-color: #bd3972;
  --accent-dark: #bd3972;
  --text-primary: #2d2d2d;
  --text-secondary: #6b7280;
  --text-light: #9ca3af;
  --bg-primary: #f5f1eb;
  --bg-secondary: #ffffff;
  --bg-dark: #2d2d2d;
  --border-color: #e5e7eb;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(245, 241, 235, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(245, 241, 235, 0.98);
  box-shadow: var(--shadow-md);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: 800;
  color: var(--accent-dark);
  text-decoration: none;
}

.nav-logo i {
  margin-right: 8px;
  font-size: 28px;
}

.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 32px;
}

.nav-link {
  text-decoration: none;
  color: var(--accent-dark);
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--primary-color);
}

.cta-button {
  background: var(--accent-color);
  color: white !important;
  padding: 12px 24px;
  border-radius: 25px;
  transition: all 0.3s ease;
  font-weight: 600;
}

.cta-button:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  margin: 3px 0;
  transition: 0.3s;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 70px;
  background: var(--bg-primary);
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-content {
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.brand-highlight {
  color: var(--accent-dark);
}

.hero-description {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 32px;
  color: var(--text-secondary);
  max-width: 500px;
}

.btn {
  padding: 16px 32px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

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

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.hero-stats-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 20px;
  margin-top: 40px;
  display: flex;
  gap: 32px;
  box-shadow: var(--shadow-md);
  max-width: 400px;
}

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

.stat-label {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.stat-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
}

.hero-image {
  display: flex;
  justify-content: center;
  animation: fadeInRight 1s ease-out 0.3s both;
}

.phone-mockup {
  width: 300px;
  height: 600px;
  background: #1a1a1a;
  border-radius: 40px;
  padding: 8px;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
}

.app-interface {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  height: 100%;
  color: white;
  padding: 20px;
}

.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-top: 20px;
}

.time {
  font-weight: 600;
  font-size: 16px;
}

.status-icons {
  display: flex;
  gap: 6px;
  font-size: 14px;
}

.greeting {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.search-bar {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.7);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.section-header span:first-child {
  font-weight: 600;
  font-size: 18px;
}

.see-all {
  color: var(--accent-color);
  font-size: 14px;
}

.destination-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px;
}

.card-image {
  width: 100%;
  height: 80px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  border-radius: 8px;
  margin-bottom: 12px;
}

.card-info {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.features-grid-section {
  padding: 80px 0;
  background: var(--bg-primary);
}

.features-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  border-radius: 20px;
  padding: 32px;
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-4px);
}

.large-card {
  background: var(--bg-secondary);
  box-shadow: var(--shadow-md);
  display: flex;
  justify-content: space-between;
}

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

.dark-card {
  background: var(--bg-dark);
  color: white;
}

.card-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.card-content p {
  line-height: 1.6;
  opacity: 0.9;
}

.route-planning {
  width: 120px;
  height: 120px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  border-radius: 12px;
  flex-shrink: 0;
}

.confidence-section {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.confidence-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.confidence-text h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.confidence-text p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.confidence-images {
  position: relative;
}

.image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.grid-image {
  height: 120px;
  border-radius: 12px;
  background: linear-gradient(45deg, #667eea, #764ba2);
}

.mountain-1 {
  background: linear-gradient(45deg, #43cea2, #185a9d);
}

.mountain-2 {
  background: linear-gradient(45deg, #fa709a, #fee140);
}

.mountain-3 {
  background: linear-gradient(45deg, #90cac7, #fed6e3);
  grid-column: span 2;
  margin-top: 12px;
  padding:16px;
}

.mountain-3 h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
  line-height: 1.2;
}

.mountain-3  p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  width: 70%;
}

.phone-preview {
  position: absolute;
  bottom: -20px;
  right: -20px;
}

.phone-mockup-small {
  width: 180px;
  height: 360px;
  background: #1a1a1a;
  border-radius: 30px;
  padding: 6px;
  box-shadow: var(--shadow-xl);
}

.phone-screen-small {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-radius: 24px;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.preview-stats {
  display: flex;
  justify-content: space-between;
  width: 100%;
  color: white;
  font-size: 12px;
  font-weight: 600;
}

.stats-section {
  padding: 80px 0;
  background: var(--bg-primary);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.stat-card {
  border-radius: 20px;
  padding: 32px;
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
}

.phone-mockup-stat {
  width: 200px;
  height: 400px;
  background: #1a1a1a;
  border-radius: 30px;
  padding: 6px;
  margin: 0 auto;
}

.phone-screen-stat {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-radius: 24px;
  padding: 20px;
  color: white;
}

.highlight-card {
  background: var(--accent-color);
  color: white;
  text-align: center;
}

.dark-stat-card {
  background: var(--bg-dark);
  color: white;
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  display: block;
  margin-bottom: 8px;
}

.stat-description {
  font-size: 1rem;
  opacity: 0.9;
}

.explore-section {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.explore-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.explore-section p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.reviews-section {
  padding: 80px 0;
  background: var(--bg-dark);
  color: white;
}

.reviews-content {
  max-width: 1200px;
  margin: 0 auto;
}

.reviews-text {
  margin-bottom: 60px;
}

.reviews-text h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 32px;
  max-width: 600px;
}

.reviews-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.review-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
  backdrop-filter: blur(10px);
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.reviewer-avatar {
  width: 48px;
  height: 48px;
  background: var(--primary-color);
  border-radius: 50%;
}

.reviewer-name {
  font-weight: 600;
  margin-bottom: 4px;
}

.reviewer-rating {
  color: #fbbf24;
  font-size: 14px;
}

.review-text {
  line-height: 1.6;
  opacity: 0.9;
}

.footer {
  background: var(--bg-dark);
  color: white;
  padding: 60px 0 24px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 60px;
  margin-bottom: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-logo {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 16px;
}

.footer-logo i {
  margin-right: 8px;
  font-size: 28px;
}

.footer-description {
  color: #9ca3af;
  line-height: 1.6;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.footer-section h4 {
  font-weight: 600;
  margin-bottom: 16px;
  color: white;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 8px;
}

.footer-section a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary-color);
}

.app-downloads {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.download-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: white;
  text-decoration: none;
  transition: background 0.3s ease;
  font-size: 14px;
}

.download-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 24px;
  text-align: center;
  color: #9ca3af;
  max-width: 1200px;
  margin: 0 auto;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

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

  .confidence-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: var(--bg-primary);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: var(--shadow-lg);
    padding: 20px 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 16px 0;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .phone-mockup {
    width: 250px;
    height: 500px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

  .hero-stats-card {
    flex-direction: column;
    gap: 16px;
  }

  .phone-mockup {
    width: 200px;
    height: 400px;
  }

  .footer-links-grid {
    grid-template-columns: 1fr;
  }
} */


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #6366f1;
  --primary-dark: #4f46e5;
  --accent-color: #bd3972;
  --accent-dark: #bd3972;
  --text-primary: #2d2d2d;
  --text-secondary: #6b7280;
  --text-light: #9ca3af;
  --bg-primary: #f5f1eb;
  --bg-secondary: #ffffff;
  --bg-dark: #2d2d2d;
  --border-color: #e5e7eb;
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Common Styles */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.section-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(245, 241, 235, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(245, 241, 235, 0.98);
  box-shadow: var(--shadow-md);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: 800;
  color: var(--accent-dark);
  text-decoration: none;
}

.nav-logo i {
  margin-right: 8px;
  font-size: 28px;
}

.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 32px;
}

.nav-link {
  text-decoration: none;
  color: var(--accent-dark);
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--primary-color);
}

.cta-button {
  background: var(--accent-color);
  color: white !important;
  padding: 12px 24px;
  border-radius: 25px;
  transition: all 0.3s ease;
  font-weight: 600;
}

.cta-button:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  margin: 3px 0;
  transition: 0.3s;
}

/* Buttons */
.btn {
  padding: 16px 32px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  text-align: center;
  justify-content: center;
}

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

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.btn-outline {
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
}

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

.btn-large {
  padding: 20px 40px;
  font-size: 18px;
}

.btn-small {
  padding: 8px 16px;
  font-size: 14px;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 70px;
  background: var(--bg-primary);
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-content {
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.brand-highlight {
  color: var(--accent-dark);
}

.hero-description {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 32px;
  color: var(--text-secondary);
  max-width: 500px;
}

.hero-image {
  display: flex;
  justify-content: center;
  animation: fadeInRight 1s ease-out 0.3s both;
}

/* Features Grid Section */
.features-grid-section {
  padding: 80px 0;
  background: var(--bg-primary);
}

.features-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  border-radius: 20px;
  padding: 32px;
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-4px);
}

.large-card {
  background: var(--bg-secondary);
  box-shadow: var(--shadow-md);
  display: flex;
  justify-content: space-between;
}

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

.dark-card {
  background: var(--bg-dark);
  color: white;
}

.card-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.card-content p {
  line-height: 1.6;
  opacity: 0.9;
}

/* Why Us Section */
.why-us-section {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.why-us-card {
  background: var(--bg-primary);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.why-us-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.why-us-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-color), #763f5b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 32px;
  color: white;
}

.why-us-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}

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

/* Confidence Section */
.confidence-section {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.confidence-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.confidence-text h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.confidence-text p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.confidence-images {
  position: relative;
}

.image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.grid-image {
  height: 120px;
  border-radius: 12px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  overflow: hidden;
}

.grid-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.mountain-3 {
  background: linear-gradient(45deg, #90cac7, #fed6e3);
  grid-column: span 2;
  margin-top: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mountain-3 h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
  line-height: 1.2;
}

.mountain-3 p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  width: 70%;
}

.phone-preview {
  position: absolute;
  bottom: -20px;
  right: -20px;
}

/* Features Section */
.features-section {
  padding: 80px 0;
  background: var(--bg-primary);
}

.features-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 60px;
}

.tab-button {
  padding: 12px 24px;
  border: 2px solid var(--border-color);
  background: var(--bg-secondary);
  color: var(--text-secondary);
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

.tab-button.active {
  background: var(--accent-color);
  color: white;
  border-color: var(--accent-color);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

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

.feature-item {
  background: var(--bg-secondary);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  position: relative;
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-item.upcoming {
  opacity: 0.8;
  border-style: dashed;
}

.feature-icon-small {
  width: 48px;
  height: 48px;
  background: var(--accent-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
}

.feature-content h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.feature-content p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 8px;
}

.coming-soon-badge {
  background: var(--warning-color);
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  position: absolute;
  top: 16px;
  right: 16px;
}

/* About Section */
.about-section {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.7;
}

.about-stats {
  display: flex;
  gap: 48px;
  margin-top: 40px;
}

.about-stat {
  text-align: center;
}

.about-stat .stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-color);
  margin-bottom: 4px;
}

.about-stat .stat-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.about-card {
  background: var(--bg-primary);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.about-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.about-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}

.about-feature i {
  color: var(--accent-color);
  font-size: 18px;
  width: 20px;
}

/* Pricing Section */
.pricing-section {
  padding: 80px 0;
  background: var(--bg-primary);
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto 80px;
}

.pricing-card {
  background: var(--bg-secondary);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
  border-color: var(--accent-color);
  transform: scale(1.05);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--warning-color);
  color: white;
  padding: 8px 24px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
}

.pricing-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.pricing-header p {
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.pricing-price {
  margin-bottom: 32px;
}

.pricing-price .price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-color);
}

.pricing-price .period {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-left: 8px;
}

.pricing-price .original-price {
  display: block;
  font-size: 1rem;
  color: var(--text-light);
  text-decoration: line-through;
  margin-top: 8px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
  text-align: left;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 1rem;
}

.pricing-features i {
  font-size: 16px;
}

.pricing-features .fa-check {
  color: var(--success-color);
}

.pricing-features .fa-times {
  color: var(--text-light);
}

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

.pricing-faq h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: var(--text-primary);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
}

.faq-item {
  background: var(--bg-secondary);
  border-radius: 16px;
  padding: 24px;
  text-align: left;
}

.faq-item h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.faq-item p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 24px;
}

.cta-content p {
  font-size: 1.25rem;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
}

.cta-buttons .btn-primary {
  background: white;
  color: var(--accent-color);
}

.cta-buttons .btn-primary:hover {
  background: var(--bg-primary);
}

.cta-buttons .btn-outline {
  border-color: white;
  color: white;
}

.cta-buttons .btn-outline:hover {
  background: white;
  color: var(--accent-color);
}

.app-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.app-badge img {
  height: 60px;
  transition: transform 0.3s ease;
}

.app-badge:hover img {
  transform: scale(1.05);
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg-primary);
  border-radius: 16px;
  padding: 24px;
  height: 250px;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: var(--accent-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
}

.contact-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.contact-card p {
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.contact-form {
  background: var(--bg-primary);
  border-radius: 20px;
  padding: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  font-size: 16px;
  transition: border-color 0.3s ease;
  background: var(--bg-secondary);
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Stats Section */
.stats-section {
  padding: 80px 0;
  background: var(--bg-primary);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.stat-card {
  border-radius: 20px;
  padding: 32px;
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
}

.phone-mockup-stat {
  width: 200px;
  height: 400px;
  background: #1a1a1a;
  border-radius: 30px;
  padding: 6px;
  margin: 0 auto;
}

.phone-screen-stat {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-radius: 24px;
  padding: 20px;
  color: white;
}

.highlight-card {
  background: var(--accent-color);
  color: white;
  text-align: center;
}

.dark-stat-card {
  background: var(--bg-dark);
  color: white;
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  display: block;
  margin-bottom: 8px;
}

.stat-description {
  font-size: 1rem;
  opacity: 0.9;
}

.explore-section {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.explore-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.explore-section p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

/* Reviews Section */
.reviews-section {
  padding: 80px 0;
  background: var(--bg-dark);
  color: white;
}

.reviews-content {
  max-width: 1200px;
  margin: 0 auto;
}

.reviews-text {
  margin-bottom: 60px;
}

.reviews-text h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 32px;
  max-width: 600px;
}

.reviews-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.review-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-4px);
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.reviewer-avatar {
  width: 48px;
  height: 48px;
  background: var(--primary-color);
  border-radius: 50%;
}

.reviewer-name {
  font-weight: 600;
  margin-bottom: 4px;
}

.reviewer-rating {
  color: #fbbf24;
  font-size: 14px;
}

.review-text {
  line-height: 1.6;
  opacity: 0.9;
}

/* Footer */
.footer {
  background: var(--bg-dark);
  color: white;
  padding: 60px 0 24px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 60px;
  margin-bottom: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-logo {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 16px;
}

.footer-logo i {
  margin-right: 8px;
  font-size: 28px;
}

.footer-description {
  color: #9ca3af;
  line-height: 1.6;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.footer-section h4 {
  font-weight: 600;
  margin-bottom: 16px;
  color: white;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 8px;
}

.footer-section a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary-color);
}

.app-downloads {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.download-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: white;
  text-decoration: none;
  transition: background 0.3s ease;
  font-size: 14px;
}

.download-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 24px;
  text-align: center;
  color: #9ca3af;
  max-width: 1200px;
  margin: 0 auto;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

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

  .confidence-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .why-us-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

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

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

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

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: var(--bg-primary);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: var(--shadow-lg);
    padding: 20px 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 16px 0;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .about-stats {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
  }

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

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

  .section-title {
    font-size: 1.75rem;
  }

  .cta-content h2 {
    font-size: 1.75rem;
  }

  .footer-links-grid {
    grid-template-columns: 1fr;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }

  .why-us-grid {
    grid-template-columns: 1fr;
  }

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

  .app-badges {
    gap: 12px;
  }

  .app-badge img {
    height: 50px;
  }
}

/* Waitlist Section */
.waitlist-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--accent-color), #763f5b);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.waitlist-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.waitlist-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.waitlist-content h2 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 24px;
  background: linear-gradient(45deg, #ffffff, #f0f0f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.waitlist-content p {
  font-size: 1.25rem;
  margin-bottom: 50px;
  opacity: 0.9;
  line-height: 1.6;
}

.waitlist-form {
  margin-bottom: 60px;
}

.form-input-group {
  display: flex;
  max-width: 500px;
  margin: 0 auto 16px;
  gap: 12px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-input-group input {
  flex: 1;
  padding: 16px 24px;
  border: none;
  background: transparent;
  color: white;
  font-size: 16px;
  border-radius: 50px;
  outline: none;
}

.form-input-group input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-input-group .btn {
  flex-shrink: 0;
  margin: 0;
  white-space: nowrap;
}

.form-input-group .btn-primary {
  background: white;
  color: var(--accent-color);
  border-radius: 50px;
}

.form-input-group .btn-primary:hover {
  background: var(--bg-primary);
  transform: translateY(-2px);
}

.waitlist-disclaimer {
  font-size: 14px;
  opacity: 0.8;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.waitlist-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-bottom: 60px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.15);
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.benefit-text h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.benefit-text p {
  font-size: 0.875rem;
  opacity: 0.8;
  margin: 0;
}

.waitlist-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.waitlist-counter {
  text-align: center;
}