/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #ed5708;
  --primary-dark: #d14807;
  --primary-light: #ff6b1a;
  --secondary-color: #1a365d;
  --accent-color: #4299e1;
  --text-primary: #2d3748;
  --text-secondary: #718096;
  --text-light: #a0aec0;
  --bg-primary: #ffffff;
  --bg-secondary: #f7fafc;
  --bg-accent: #ebf5ff;
  --border-color: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
  --gradient-primary: linear-gradient(135deg, #ed5708 0%, #ff6b1a 100%);
  --gradient-secondary: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
  --gradient-accent: linear-gradient(135deg, #ebf5ff 0%, #bee3f8 100%);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    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;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

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

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  max-height: 72px;
}

.nav-logo .logo-img {
  height: 40px;
  width: auto;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 250px;
  z-index: 2000;
  background-color: #fff;
  box-shadow: -10px 0px 10px rgba(0, 0, 0, 0.1);
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 20px 30px;
}

.sidebar a {
  width: 100%;
}

.cross {
  min-height: auto;
}

.sidebar .nav-buttons {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  margin-top: -25px;
}

.sidebar .nav-menu {
  flex-direction: column;
  margin-bottom: 20px;
  gap: 0rem;
}

.menu-button {
  display: none;
}

.material-symbols-outlined {
  color: black;
  height: 26px;
  width: 26px;
  font-variation-settings: "FILL" 0, "wght" 600, "GRAD" 0, "opsz" 28;
}

.nav-link {
    text-decoration: none;
    color: #020202;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.btn-secondary {
  background: none;
  border: 1px solid var(--border-color);
  color: #090909;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--gradient-primary);
  border: none;
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Better button styles */
.btn-primary,
.btn-secondary {
  position: relative;
  overflow: hidden;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary::before,
.btn-secondary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);
  transition: left 0.5s;
}

.btn-primary:hover::before,
.btn-secondary:hover::before {
  left: 100%;
}

/* .hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  transition: all 0.3s ease;
} */

/* Better hamburger animation */
/* .hamburger {
  width: 30px;
  height: 30px;
  position: relative;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--text-primary);
  border-radius: 3px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 0px;
}

.hamburger span:nth-child(2) {
  top: 10px;
}

.hamburger span:nth-child(3) {
  top: 20px;
}

.hamburger.active span:nth-child(1) {
  top: 10px;
  transform: rotate(135deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.hamburger.active span:nth-child(3) {
  top: 10px;
  transform: rotate(-135deg);
} */

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--gradient-accent);
  padding-top: 80px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.hero-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: var(--gradient-primary);
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 200px;
  height: 200px;
  background: var(--gradient-secondary);
  bottom: 20%;
  left: 5%;
  animation-delay: 2s;
}

.shape-3 {
  width: 150px;
  height: 150px;
  background: var(--accent-color);
  top: 50%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text {
  animation: slideInLeft 1s ease-out;
}

.welcome-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary-color);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 500;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg,
      var(--text-primary) 0%,
      var(--primary-color) 50%,
      var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
  0% {
    filter: brightness(1);
  }

  100% {
    filter: brightness(1.1);
  }
}

.highlight {
  color: var(--primary-color);
  position: relative;
}

.highlight::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.download-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.download-btn {
  transition: all 0.3s ease;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.download-btn:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.download-btn img {
  height: 60px;
  width: auto;
  display: block;
}

.hero-stats {
  display: flex;
  gap: 2rem;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
}

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

.hero-image {
  position: relative;
  animation: slideInRight 1s ease-out;
}

.phone-mockup {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
  animation: phoneFloat 3s ease-in-out infinite;
}

@keyframes phoneFloat {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.floating-card {
  position: absolute;
  background: white;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: cardFloat 4s ease-in-out infinite;
}

.card-1 {
  top: 20%;
  left: -20%;
  animation-delay: 0s;
}

.card-2 {
  bottom: 30%;
  right: -20%;
  animation-delay: 2s;
}

@keyframes cardFloat {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-15px) rotate(2deg);
  }
}

.card-icon {
  font-size: 1.5rem;
}

.card-text span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.card-text strong {
  font-size: 1rem;
  color: var(--text-primary);
}

/* Features Section */
.features {
  padding: 6rem 0;
  background: var(--bg-primary);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

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

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 6rem;
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.feature-card::before,
.pricing-card::before,
.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg,
      transparent,
      rgba(237, 87, 8, 0.05),
      transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover::before,
.pricing-card:hover::before,
.testimonial-card:hover::before {
  opacity: 1;
}

.feature-icon {
  margin-bottom: 1.5rem;
}

.icon-bg {
  width: 80px;
  height: 80px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.feature-card:hover .icon-bg {
  background: var(--gradient-primary);
  transform: scale(1.1);
}

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

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

.features-showcase {
  background: var(--bg-secondary);
  border-radius: 24px;
  padding: 4rem;
  margin-top: 4rem;
}

.showcase-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.showcase-text h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

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

.feature-list {
  list-style: none;
}

.feature-list li {
  padding: 0.5rem 0;
  color: var(--text-secondary);
  font-weight: 500;
}

.showcase-phone {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

/* How It Works Section */
.how-it-works {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.steps-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.step {
  text-align: center;
  flex: 1;
  position: relative;
}

.step-number {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-md);
  animation: stepPulse 2s infinite;
}

@keyframes stepPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.step:nth-child(odd) .step-number {
  animation-delay: 0s;
}

.step:nth-child(even) .step-number {
  animation-delay: 1s;
}

.step-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

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

.step-connector {
  width: 100px;
  height: 2px;
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.step-connector::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.8),
      transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

/* App Showcase Section */
.app-showcase {
  padding: 6rem 0;
  background: var(--bg-primary);
}

.showcase-grid {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.showcase-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.showcase-item.reverse {
  direction: rtl;
}

.showcase-item.reverse>* {
  direction: ltr;
}

.showcase-image img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease;
}

.showcase-image img:hover {
  transform: scale(1.05);
}

.showcase-content h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

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

.showcase-content ul {
  list-style: none;
}

.showcase-content li {
  padding: 0.5rem 0;
  color: var(--text-secondary);
  font-weight: 500;
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  background: var(--gradient-secondary);
  color: white;
}

.cta-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.cta-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.cta-text p {
  font-size: 1.2rem;
  opacity: 0.9;
  line-height: 1.7;
}

.early-access-form {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow-xl);
}

.form-group {
  margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
  /* color: var(--text-primary); */
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(237, 87, 8, 0.1);
}

/* Improved form styling */
.form-group input,
.form-group select,
.form-group textarea {
  border: 2px solid var(--border-color);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 16px;
  /* Prevents zoom on iOS */
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(237, 87, 8, 0.1);
  transform: translateY(-2px);
}

.btn-cta {
  width: 100%;
  background: var(--gradient-primary);
  border: none;
  color: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-cta:active {
  transform: translateY(0);
}

.btn-loader {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-left: 10px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.btn-cta.loading .btn-loader {
  display: inline-block;
}

.btn-cta.loading span {
  opacity: 0.7;
}

/* Footer */
.footer {
    background: #404c5d;
    color: #fff;
    padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  height: 50px;
  margin-bottom: 1rem;
}

.footer-brand p {
  opacity: 0.8;
  line-height: 1.6;
}

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

.footer-column h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-column a {
    display: block;
    color: rgb(245 241 241 / 80%);
    text-decoration: none;
    padding: 0.25rem 0;
    transition: color 0.3s ease;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  opacity: 0.8;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* Animations */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Pricing Section */
.pricing-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

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

.pricing-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  text-align: center;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

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

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

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

.price {
  margin-bottom: 2rem;
}

.currency {
  font-size: 1.5rem;
  color: var(--text-secondary);
  vertical-align: top;
}

.amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
}

.period {
  font-size: 1rem;
  color: var(--text-secondary);
}

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

.pricing-features li {
  padding: 0.5rem 0;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-color);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-btn {
  width: 100%;
  padding: 1rem 2rem;
  border: 2px solid var(--primary-color);
  background: white;
  color: var(--primary-color);
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pricing-btn:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

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

.pricing-btn.primary:hover {
  background: var(--primary-dark);
}

/* Testimonials Section */
.testimonials {
  padding: 6rem 0;
  background: var(--bg-primary);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

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

.testimonial-content {
  margin-bottom: 1.5rem;
}

.testimonial-content p {
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1.1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.author-info h4 {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.author-info span {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Form enhancements */
.form-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 1rem;
}

/* Footer enhancements */
.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social .social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social .social-link:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
}

.footer-badges {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.badge {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Enhanced Mobile Responsiveness and UI Improvements */

/* Enhanced Mobile Styles */
@media (max-width: 1200px) {
  .container {
    padding: 0 24px;
  }

  .hero-content,
  .showcase-content,
  .cta-content {
    gap: 3rem;
  }

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

@media (max-width: 1024px) {
  /* Navigation improvements */

  /* .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
  } */

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

  .nav-menu .nav-link {
    padding: 1.5rem 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  } */
  /* 
  .nav-buttons {
    display: none;
  } */

  .menu-button {
    display: block;
  }

  .hideOnMobile {
    display: none;
  }

  /* Layout adjustments */
  .hero-content,
  .showcase-content,
  .cta-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero-image {
    order: -1;
  }

  .showcase-item.reverse {
    direction: ltr;
  }

  .steps-container {
    flex-direction: column;
    gap: 2rem;
  }

  .step-connector {
    width: 2px;
    height: 40px;
    transform: rotate(90deg);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .pricing-card.featured {
    transform: none;
    order: -1;
  }
}

@media (max-width: 768px) {
  .menu-button {
    display: block;
  }

  .nav-container .hideOnMobile {
    display: none;
  }

  /* Typography scaling */
  .hero-title {
    font-size: 2.5rem;
    line-height: 1.2;
  }

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

  .hero-description {
    font-size: 1.1rem;
  }

  /* Spacing adjustments */
  .hero,
  .features,
  .how-it-works,
  .app-showcase,
  .cta-section,
  .pricing-section,
  .testimonials {
    padding: 4rem 0;
  }

  /* .container {
    padding: 0 20px;
  } */

  /* Grid improvements */
  .features-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .features-showcase {
    padding: 2rem;
    margin-top: 2rem;
  }

  .showcase-content {
    gap: 2rem;
  }

  /* Card improvements */
  .feature-card,
  .testimonial-card,
  .pricing-card {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }

  /* Stats layout */
  .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .stat {
    min-width: 120px;
  }

  /* Download buttons */
  .download-buttons {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .download-btn img {
    height: 50px;
  }

  /* Footer improvements */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

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

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

  .footer-badges {
    flex-wrap: wrap;
    justify-content: center;
  }

  /* Form improvements */
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .early-access-form {
    padding: 2rem;
  }

  /* Floating elements - hide on mobile */
  .floating-card {
    display: none;
  }

  /* Better button sizing */
  .btn-primary,
  .btn-secondary {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  /* Container adjustments */
  /* .container {
    padding: 0 16px;
  }

  .nav-container {
    padding: 1rem 16px;
  } */

  .menu-button {
    display: block;
  }

  .sidebar {
    width: 70%;
  }

  .hideOnMobile {
    display: none;
  }

  /* Hero section */
  .hero {
    padding-top: 80px;
    min-height: auto;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero-description {
    font-size: 1rem;
    line-height: 1.6;
  }

  .welcome-badge {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }

  /* Section spacing */
  .features,
  .how-it-works,
  .app-showcase,
  .cta-section,
  .pricing-section,
  .testimonials {
    padding: 3rem 0;
  }

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

  .section-subtitle {
    font-size: 1rem;
  }

  /* Cards */
  .feature-card,
  .testimonial-card,
  .pricing-card {
    padding: 1.25rem;
  }

  /* Steps */
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Forms */
  .early-access-form {
    padding: 1.5rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.875rem;
    font-size: 16px;
    /* Prevents zoom on iOS */
  }

  /* Buttons */
  .btn-cta {
    padding: 1rem;
    font-size: 1rem;
  }

  /* Footer */
  .footer-brand {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

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

  .footer-social {
    justify-content: center;
  }

  .footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  /* CTA section */
  .cta-text h2 {
    font-size: 1.75rem;
    line-height: 1.3;
  }

  .cta-text p {
    font-size: 1rem;
  }

  /* Showcase improvements */
  .showcase-item {
    display: flex;
    flex-direction: column;
  }

  .showcase-grid {
    gap: 3rem;
  }

  .item2 {
    flex-direction: column-reverse;
  }

  .showcase-content {
    gap: 0rem;
  }

  .showcase-content h3 {
    font-size: 1.5rem;
  }

  .showcase-content p {
    font-size: 1rem;
  }

  /* Pricing */
  .amount {
    font-size: 2rem;
  }

  .pricing-features {
    font-size: 0.9rem;
  }

  /* Stats */
  .stat-number {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  /* Navigation menu improvements */
  .nav-menu .nav-link {
    font-size: 1.25rem;
    padding: 1rem 0;
    /* display: none; */
  }

  .nav-container .hideOnMobile {
    display: none;
  }
}

/* Landscape orientation fixes */
@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 2rem 0;
  }

  .hero-content {
    gap: 1.5rem;
  }

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

  .nav-menu {
    height: 100vh;
    overflow-y: auto;
  }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {

  .feature-card:hover,
  .testimonial-card:hover,
  .pricing-card:hover {
    transform: none;
    box-shadow: var(--shadow-sm);
  }

  .btn-primary:hover,
  .btn-secondary:hover,
  .pricing-btn:hover {
    transform: none;
  }

  .download-btn:hover {
    transform: none;
  }

  /* Larger touch targets */
  .btn-primary,
  .btn-secondary,
  .pricing-btn,
  .btn-cta {
    min-height: 44px;
    min-width: 44px;
  }

  .nav-link {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
}

/* Better focus states for accessibility */
.btn-primary:focus,
.btn-secondary:focus,
.pricing-btn:focus,
.btn-cta:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
}

/* Improved loading states */
.btn-cta.loading {
  pointer-events: none;
  opacity: 0.7;
}

.btn-cta.loading::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  margin: auto;
  border: 2px solid transparent;
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

/* Better scroll behavior */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

/* Prevent horizontal scroll */
body {
  overflow-x: hidden;
}

/* Better image handling */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Improved animations for mobile */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Dark mode support preparation */
@media (prefers-color-scheme: dark) {
  :root {
    --bg-primary: #1a1a1a;
    --bg-secondary: #2d2d2d;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --border-color: #404040;
  }
}
