/* Police Satoshi de Fontshare */
/* Remplacer la ligne Satoshi par Public Sans */
@import url('https://fonts.googleapis.com/css2?family=Public+Sans:wght@400;500;600;700&display=swap');

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #000000;
  background-color: #FFFFFF;
  padding-top: 120px; /* header 60px + bannière ~50px */
}

/* OPTIMISATION MOBILE - Réduire padding-top */
@media (max-width: 768px) {
  body {
    padding-top: 95px;
  }
}

@media (max-width: 480px) {
  body {
    padding-top: 85px;
  }
}



.container {
  width: 100%;
  max-width: 1400px;
  margin: auto;
  padding: 2rem 0;
}

/* ========== HEADER - PAS DE CHANGEMENT ========== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  z-index: 1001;
  padding: 0;
  height: 60px;
}

/* ========== FOMO BANNER - PAS DE CHANGEMENT ========== */

@keyframes scrollBanner {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.fomo-banner {
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  background: #004aad;
  color: #ffffff;
  padding: 0.9rem 0;
  font-family: 'Public Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  z-index: 1000;
  overflow: hidden;
}

.fomo-scroll {
  display: flex;
  width: max-content;
  animation: scrollBanner 25s linear infinite;
  will-change: transform;
}

.fomo-content {
  display: inline-flex;
  align-items: center;
  padding: 0 2rem;
  white-space: nowrap;
  gap: 0.5rem;
}

.fomo-text {
  color: #ffffff;
}

.countdown {
  color: #FFD700;
  font-weight: 700;
  font-size: 1.05rem;
  display: inline-flex;
  gap: 0.25rem;
  align-items: center;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
  vertical-align: middle;
  line-height: 1;
}

/* ALIGNEMENT MOBILE - Assurer que le countdown est aligné avec le texte */
@media (max-width: 768px) {
  .countdown {
    display: inline-flex !important;
    align-items: center !important;
    vertical-align: middle !important;
    line-height: 1 !important;
    margin-top: 0 !important;
  }
}

.countdown span {
  min-width: 28px;
  display: inline-block;
  text-align: center;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  height: 100%;
  max-width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  padding-left: 1rem;
}

.logo img {
  height: 45px;
  width: auto;
  max-width: 180px;
  display: block;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e3a8a;
}

.nav-links {
  display: flex;
  align-items: center;
  padding-right: 1rem;
}

.nav-links a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: #1e3a8a;
  font-weight: 500;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: #1e3a8a;
  margin: 3px 0;
  transition: 0.3s;
}

/* ========== BOUTONS - GARDENT LA COULEUR #004aad ========== */
.nav-links .download-btn {
  background-color: #004aad;
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.25);
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-block;
}

.download-btn:hover {
  background-color: #004aad;
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(59, 130, 246, 0.25);
}

.cta-btn {
  background-color: #004aad;
  color: white;
  padding: 0.875rem 1.75rem;
  border-radius: 25px;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.cta-btn::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;
}

.cta-btn:hover::before {
  left: 100%;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
}

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

/* ========== HERO SECTION - Blanc ========== */
.hero {
  background: #FFFFFF;
  padding: 4rem 0;
  position: relative;
  z-index: 1;
}

/* OPTIMISATION MOBILE HERO - Réduire drastiquement les espaces */
@media (max-width: 768px) {
  .hero {
    padding: 1.5rem 0 1rem 0 !important;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 1rem 0 0.75rem 0 !important;
  }
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: center;
  max-width: 1200px;
}

/* OPTIMISATION MOBILE - Réduire gap du container hero */
@media (max-width: 768px) {
  .hero .container {
    gap: 0.75rem !important;
  }
}

@media (max-width: 480px) {
  .hero .container {
    gap: 0.5rem !important;
  }
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero-content .platform-badges {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

/* OPTIMISATION MOBILE - Réduire marges badges */
@media (max-width: 768px) {
  .hero-content .platform-badges {
    margin-top: 0.75rem !important;
    gap: 0.5rem !important;
  }
}

@media (max-width: 480px) {
  .hero-content .platform-badges {
    margin-top: 0.5rem !important;
  }
}

.hero-content .store-badge {
  display: inline-block;
  transition: transform 0.3s ease, opacity 0.3s ease;
  text-decoration: none;
}

.hero-content .store-badge:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.hero-content .store-badge img {
  height: 45px;
  width: auto;
  display: block;
}

.hero h1 {
  font-size: 2.5rem;
  color: #000000;
  margin-bottom: 1rem;
  line-height: 1.2;
}

/* OPTIMISATION MOBILE - Réduire marges titre */
@media (max-width: 768px) {
  .hero h1 {
    margin-bottom: 0.5rem !important;
    line-height: 1.1 !important;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    margin-bottom: 0.4rem !important;
  }
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* OPTIMISATION MOBILE - Réduire marges paragraphe */
@media (max-width: 768px) {
  .hero p {
    margin-bottom: 0.75rem !important;
    line-height: 1.3 !important;
  }
}

@media (max-width: 480px) {
  .hero p {
    margin-bottom: 0.6rem !important;
  }
}

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

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 120px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000000;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: #000000;
  margin-top: 0.25rem;
  font-weight: 500;
}

.hero ul {
  margin-bottom: 1.5rem;
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  list-style: none;
  padding: 0;
  overflow-x: auto;
}

.hero li {
  margin-bottom: 0;
  font-size: 1rem;
  white-space: nowrap;
  flex: 0 0 auto;
}

.pricing {
  font-size: 1.1rem;
  color: #000000;
  margin-bottom: 1rem;
  font-weight: 600;
}

.phone-mockup {
  flex: 1;
  text-align: center;
  position: static;
  top: auto;
  right: auto;
}

/* ALIGNEMENT PARFAIT MOBILE - Centrer l'image hero */
@media (max-width: 768px) {
  .phone-mockup {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    margin: 0 auto !important;
  }
}

.phone-image {
  width: 300px;
  max-width: 90%;
}

/* OPTIMISATION MOBILE - Agrandir l'image du téléphone pour meilleure visibilité */
@media (max-width: 768px) {
  .phone-image {
    width: 240px !important;
    display: block !important;
    margin: 0 auto !important;
  }
}

@media (max-width: 480px) {
  .phone-image {
    width: 220px !important;
    display: block !important;
    margin: 0 auto !important;
  }
}

.phone-placeholder {
  font-size: 1.5rem;
  color: #1e3a8a;
}

/* ========== WHY BEZOTT SECTION - Gris clair ========== */
.why-bezott {
  padding: 4rem 0;
  background: #F5F5F7;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 1;
}

.why-bezott h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #000000;
}

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

.problem-card {
  background-color: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.problem-card:hover {
  transform: translateY(-5px);
}

.problem-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* ========== FEATURES SECTION - Blanc ========== */
.features {
  padding: 4rem 0 2rem 0;
  background: #FFFFFF;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 1;
}

/* Réduire le padding bas sur mobile */
@media (max-width: 768px) {
  .features {
    padding: 3rem 0 1rem 0 !important;
  }
}

@media (max-width: 480px) {
  .features {
    padding: 2rem 0 0.5rem 0 !important;
  }
}

.features h2 {
  font-size: 2rem;
  margin-bottom: 3rem;
  color: #000000;
  text-align: center;
}

.feature-section {
  display: flex;
  align-items: center;
  margin-bottom: 4rem;
  gap: 3rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

/* Réduire l'espace sous la dernière feature section */
.feature-section:last-of-type {
  margin-bottom: 2rem;
}

/* ALIGNEMENT PARFAIT MOBILE - Centrer les sections features */
@media (max-width: 768px) {
  .feature-section {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    padding: 0 1rem !important;
    margin-bottom: 2rem !important;
  }
  
  .feature-section:last-of-type {
    margin-bottom: 1rem !important;
  }
}

@media (max-width: 480px) {
  .feature-section {
    margin-bottom: 1.5rem !important;
  }
  
  .feature-section:last-of-type {
    margin-bottom: 0.5rem !important;
  }
}
 
.feature-text {
  flex: 1;
  text-align: left;
  max-width: 450px;
  line-height: 1.6;
}

.feature-text h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #000000;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.feature-text p {
  font-size: 1.3rem;
  color: #000000;
  line-height: 1.6;
}

.feature-image {
  flex: 1;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ALIGNEMENT PARFAIT MOBILE - Centrer toutes les images features */
@media (max-width: 768px) {
  .feature-image {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 0 auto !important;
    padding: 0 !important;
  }
}

.feature-img {
  width: 400px;
  max-width: 100%;
  height: auto;
  display: block;
}

/* Taille pour tablettes */
@media (max-width: 1200px) {
  .feature-img {
    width: 350px;
  }
}

/* OPTIMISATION MOBILE - Agrandir les images features pour meilleure visibilité */
@media (max-width: 768px) {
  .feature-img {
    width: 320px !important;
    max-width: 95% !important;
    display: block !important;
    margin: 0 auto !important;
  }
}

@media (max-width: 480px) {
  .feature-img {
    width: 280px !important;
    max-width: 90% !important;
    display: block !important;
    margin: 0 auto !important;
  }
}

.feature-image.left {
  order: -1;
}

.feature-image.right {
  order: 1;
}

.image-placeholder {
  font-size: 1.5rem;
  color: #000000;
}

/* ========== HOW IT WORKS - Gris clair ========== */
.how-it-works {
  padding: 4rem 0;
  background: #F5F5F7;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 1;
}

.how-it-works h2 {
  font-size: 2rem;
  margin-bottom: 2.5rem;
  color: #000000;
}

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

.step-card {
  background-color: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.step-number {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(0, 74, 173, 0.1);
  line-height: 1;
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.step-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: #000000;
}

.step-card p {
  font-size: 1rem;
  color: #000000;
  line-height: 1.6;
}

/* ========== PRICING SECTION - Blanc ========== */
.pricing-section {
  padding: 4rem 0;
  background: #FFFFFF;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 1;
}

.pricing-section h2 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  color: #000000;
}

.pricing-subtitle {
  font-size: 1.2rem;
  color: #666666;
  margin-bottom: 2rem;
}

.pricing-card {
  max-width: 500px;
  margin: 0 auto;
  background: white;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  border: 2px solid #F5F5F7;
}

.pricing-badge {
  background: #DC2626;
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.price-container {
  margin-bottom: 2rem;
}

.old-price {
  font-size: 1.3rem;
  color: #999999;
  text-decoration: line-through;
  margin-bottom: 0.5rem;
}

.new-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000000;
  align-self: flex-start;
  margin-top: 0.5rem;
}

.amount {
  font-size: 4rem;
  font-weight: 700;
  color: #000000;
  line-height: 1;
}

.period {
  font-size: 1.2rem;
  color: #666666;
  font-weight: 500;
  align-self: flex-end;
  margin-bottom: 1rem;
}

.savings {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: 600;
  display: inline-block;
}

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

.features-list li {
  padding: 0.75rem 0;
  font-size: 1rem;
  color: #333333;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.features-list li::before {
  content: '✓';
  background: #004aad;
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
  flex-shrink: 0;
}

.pricing-cta {
  background-color: #004aad;
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 25px;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 74, 173, 0.3);
  border: none;
  cursor: pointer;
  width: 100%;
  margin-top: 1rem;
}

.pricing-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 74, 173, 0.4);
}

.pricing-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #666666;
}

/* ========== FAQ SECTION - Gris clair ========== */
.faq {
  padding: 4rem 0;
  background: #F5F5F7;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 1;
}

.faq h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #000000;
  text-align: center;
}

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

.faq-item {
  background-color: white;
  border-radius: 15px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: transform 0.2s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #000000;
  background: none;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background-color: #f3f4f6;
}

.faq-question::after {
  content: '\203A';
  font-size: 1.5rem;
  color: #000000;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}

.faq-question.active::after {
  transform: rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 1.25rem 1.25rem;
  font-size: 1rem;
  color: #000000;
}

/* ========== EMAIL SIGNUP SECTION ========== */
.email-signup {
  padding: 0.5rem 0 4rem 0;
  background: #E8E8E8;
  text-align: center;
  position: relative;
  z-index: 1;
}

.email-signup h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #000000;
}

.email-signup p {
  font-size: 1.1rem;
  color: #000000;
  margin-bottom: 2rem;
  opacity: 0.8;
}

.email-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.email-form input[type="email"] {
  flex: 1;
  min-width: 250px;
  padding: 0.875rem 1.25rem;
  border: 2px solid #e0e0e0;
  border-radius: 25px;
  font-size: 1rem;
  font-family: 'Public Sans', sans-serif;
  transition: all 0.3s ease;
  outline: none;
}

.email-form input[type="email"]:focus {
  border-color: #004aad;
  box-shadow: 0 0 0 3px rgba(0, 74, 173, 0.1);
}

.email-submit-btn {
  background-color: #004aad;
  color: white;
  padding: 0.875rem 1.75rem;
  border-radius: 25px;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
  white-space: nowrap;
}

.email-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
}

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

/* Responsive email section */
@media (max-width: 768px) {
  .email-signup {
    padding: 0.5rem 0 3rem 0;
  }

  .email-signup h2 {
    font-size: 1.6rem;
  }

  .email-signup p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .email-form {
    flex-direction: column;
    padding: 0 1rem;
  }

  .email-form input[type="email"] {
    width: 100%;
  }

  .email-submit-btn {
    width: 100%;
    padding: 0.8rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .email-signup h2 {
    font-size: 1.4rem;
  }

  .email-signup p {
    font-size: 0.95rem;
  }

  .email-form input[type="email"] {
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
  }

  .email-submit-btn {
    font-size: 0.95rem;
    padding: 0.75rem 1.25rem;
  }
}

/* ========== EMPOWERMENT SECTION - Blanc (sans le clip-path bizarre) ========== */
.empowerment {
  padding: 4rem 0;
  background: #FFFFFF;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 1;
}

.empowerment h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #000000;
}

.empowerment p {
  font-size: 1.2rem;
  color: #000000;
  margin-bottom: 1.5rem;
}

/* ========== FOOTER - Gris clair ========== */
footer {
  background: #F5F5F7;
  padding: 2rem 0;
  font-size: 0.9rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 1;
}

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

.footer-text {
  color: #000000;
}

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

.social-icon {
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-links a:hover .social-icon {
  transform: scale(1.1);
  opacity: 0.8;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ========== MEDIA QUERIES MOBILE ========== */

@media (max-width: 1024px) {
  .container {
    width: 95%;
    padding: 1.5rem 0;
  }
  
  nav {
    padding: 0.5rem 0.5rem;
  }
  
  .nav-links .download-btn {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    white-space: nowrap;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .feature-section {
    gap: 1.5rem;
  }
  
  .feature-img {
    width: 320px;
  }
}

@media (max-width: 768px) {
  header {
    height: 60px;
  }
  
  .logo img {
    height: 40px;
    max-width: 180px;
  }
  
  .fomo-banner {
    font-size: 0.8rem;
    padding: 0.6rem 0.5rem;
    top: 60px;
    display: flex;
    align-items: center;
  }
  
  .countdown {
    font-size: 0.8rem !important;
    margin-top: 0 !important;
  }
  
  .nav-links {
    position: fixed;
    top: 60px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 60px);
    background-color: #ffffff;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 2rem;
    transition: left 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .nav-links a {
    margin: 1rem 0;
    font-size: 1.2rem;
  }
  
  .nav-links .download-btn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    margin: 1rem 0;
    white-space: nowrap;
  }
  
  .hero .container {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-content {
    order: 2;
  }
  
  .hero-content .platform-badges {
    justify-content: center;
  }
  
  .phone-mockup {
    order: 1;
  }
  
  .hero h1 {
    font-size: 1.6rem !important;
  }
  
  .hero p {
    font-size: 0.95rem !important;
  }
  
  .hero ul {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }
  
  .hero li {
    font-size: 0.9rem;
    white-space: normal;
  }
  
  .hero-content .store-badge img {
    height: 32px !important;
  }
  
  .feature-section {
    flex-direction: column;
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .feature-text {
    text-align: center;
    max-width: 100%;
  }
  
  .feature-text h3 {
    font-size: 1.3rem;
  }
  
  .feature-text p {
    font-size: 1.1rem;
  }
  
  .feature-image.left {
    order: 1;
  }
  
  .feature-image.right {
    order: 1;
  }
  
  .feature-img {
    width: 320px !important;
  }
  
  .cta-btn {
    padding: 0.65rem 1.3rem !important;
    font-size: 0.9rem !important;
  }
  
  .nav-links .download-btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.7rem;
    margin: 1rem 0;
  }
  
  .pricing-section h2 {
    font-size: 1.8rem;
  }
  
  .pricing-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .pricing-card {
    padding: 2rem 1.5rem;
    margin: 0 1rem;
  }
  
  .amount {
    font-size: 3rem;
  }
  
  .currency {
    font-size: 1.3rem;
  }
  
  .period {
    font-size: 1rem;
    margin-top: 1.2rem;
  }
  
  .savings {
    font-size: 0.95rem;
    padding: 0.35rem 0.9rem;
  }
  
  .features-list li {
    font-size: 0.9rem;
  }

  .features-list li::before {
    width: 20px;
    height: 20px;
    font-size: 12px;
    margin-right: 10px;
  }
  
  .pricing-cta {
    font-size: 0.95rem;
    padding: 0.8rem 1.8rem;
  }
  
  .faq-question {
    font-size: 1rem;
    padding: 1rem;
  }
  
  .faq-answer p {
    padding: 0 1rem 1rem;
    font-size: 0.9rem;
  }
  
  .footer-container {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  header {
    height: 50px !important;
  }
  
  .logo img {
    height: 32px !important;
    max-width: 140px;
  }
  
  .fomo-banner {
    font-size: 0.65rem !important;
    padding: 0.4rem 0.3rem !important;
    top: 50px !important;
    display: flex;
    align-items: center;
  }
  
  .countdown {
    font-size: 0.65rem !important;
    margin-top: 0 !important;
  }
  
  .container {
    width: 95%;
    padding: 0.5rem 0 !important;
  }
  
  .hero h1 {
    font-size: 1.4rem !important;
    line-height: 1.15 !important;
  }
  
  .hero p {
    font-size: 0.85rem !important;
  }
  
  .hero-content .store-badge img {
    height: 28px !important;
  }
  
  .feature-text h3 {
    font-size: 1.2rem;
  }
  
  .feature-text p {
    font-size: 1rem;
  }
  
  .feature-img {
    width: 280px !important;
  }
  
  .cta-btn {
    padding: 0.55rem 1.1rem !important;
    font-size: 0.85rem !important;
  }
  
  .faq-question {
    font-size: 0.95rem;
    padding: 0.875rem;
  }
  
  .problems-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }
  
  .empowerment {
    padding: 4rem 0 3rem;
  }
  
  .pricing-section h2 {
    font-size: 1.6rem;
  }
  
  .pricing-card {
    padding: 1.75rem 1rem;
  }
  
  .amount {
    font-size: 2.75rem;
  }
  
  .old-price {
    font-size: 1.1rem;
  }
  
  .savings {
    font-size: 0.85rem;
  }
  
  .features-list li {
    font-size: 0.85rem;
    padding: 0.5rem 0;
  }

  .features-list li::before {
    width: 18px;
    height: 18px;
    font-size: 11px;
    margin-right: 8px;
  }
  
  .pricing-cta {
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
  }
  
  .empowerment h2 {
    font-size: 1.6rem;
  }
  
  .empowerment p {
    font-size: 1rem;
  }
}
