/* ====================================================
   🌟 RESET & BASE STYLES – Start with a clean slate!
   ==================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* Make width and height include padding & border */
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.5;
  color: #333;
  background: #fff;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  /* Center the page content */
}

/* =================
     🚀 NAVBAR MAGIC
   ================= */
.site-header {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 100;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  /* Soft drop-shadow */

  height: 84px;
  /* fixed navbar height */
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo img {
  display: block;
  height: 80px;
  /* maintain aspect ratio */
  width: auto;
}

/* Disable hover enlargement for carousel images only */
.carousel-image:hover {
  transform: none !important;
}

/* Disable hover enlargement for carousel images only */
.image-container:hover {
  transform: none !important;
}

/* Optional: Also disable for the entire carousel wrapper */
.hero-carousel img:hover {
  transform: none !important;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  font-weight: bold;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  padding: 0.3rem;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #ff7800;
  /* Accent orange on hover */
}

/* Sign-in button inside nav */
.nav-links a.btn-signin {
  background: #fb7f41;
  color: #fff;
  padding: 0.6rem 1.4rem;
  border-radius: 9999px;
  font-weight: bold;
  transition: background 0.3s, transform 0.1s, box-shadow 0.3s;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

.nav-links a.btn-signin:hover {
  background: #e06700;
  /* Darker orange */
  transform: translateY(-1px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

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

/* =====================
     🎬 HERO SECTION
   ===================== */
.hero {
  display: flex;
  align-items: center;
  background-color: #f5f7fa;
  gap: 2rem;
  padding: 4rem 0;
  animation: fadeIn 1s ease-out;
  /* Gentle entrance */
}

.hero-bg {
  align-items: center;
  background-color: #f5f7fa;
}

.hero-text {
  flex: 1;
  min-width: 280px;
}

.hero-text h1 {
  font-size: 2.75rem;
  margin-bottom: 1rem;
  animation: slideIn 1s ease-out;
  /* Slide in from left */
}

.highlight {
  color: #ff7800;
  /* Brand accent color */
}

.subhead {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: #666;
}

.btn-download {
  background: #ff7800;
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.3s;
}

.btn-download:hover {
  transform: translateY(-3px);
  /* Lift on hover */
}

.hero-image {
  flex: 1;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  animation: fadeIn 1.5s ease-out 0.5s;
  /* Delayed fade-in */
}

/* Play Store badge & text */
.play_store {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* center the <p> over the <img> */
  text-align: center;
  gap: 0.5rem;

  align-self: flex-start;
  margin-top: 2rem;
  /* left-align the container but keep its contents centered */
}

.play_store p {
  margin: 0;
  /* remove default p-margins */
  font-size: 0.9rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.play_store img {
  display: block;
  /* removes any inline-img whitespace */
  height: 60px;
  /* size to taste */
  width: auto;
}

/* —— Hero CTA Buttons —— */
.hero-ctas {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
}

.btn-download {
  background: #ff7800;
  color: #fff;
  padding: 0.75rem 1.75rem;
  border-radius: 9999px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s;
}
.btn-download:hover {
  background: #e06700;
}

.btn-outline {
  background: transparent;
  color: #333;
  border: 2px solid #333;
  padding: 0.75rem 1.75rem;
  border-radius: 9999px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}
.btn-outline:hover {
  background: #333;
  color: #fff;
}

/* —— Store badges —— */
.store-label {
  margin-top: 1.5rem;
  color: #777;
  font-size: 0.9rem;
}

.store-badges {
  margin-top: 0.5rem;
  display: flex;
  gap: 0.75rem;
}

.store-badges img {
  height: 40px;
  width: auto;
  display: block;
  transition: transform 0.2s ease;
}

.store-badges img:hover {
  transform: translateY(-2px);
}

/* —— MOBILE: center CTAs & badges —— */
@media (max-width: 768px) {
  /* Mobile logo sizing - Force proper sizing */
  .logo img,
  .navbar .logo img {
    height: clamp(80px, 10vw, 100px) !important; /* Bigger logo size for mobile */
    min-height: 80px !important; /* Ensure minimum size */
    display: block !important;
    width: auto !important;
    max-width: none !important;
  }
  
  /* Additional mobile logo optimizations */
  .navbar {
    padding: 0.5rem 0;
  }
  
  .site-header {
    height: 80px; /* Adjust header height for mobile */
  }
  
  /* center the two hero buttons */
  .hero-ctas {
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
  }

  /* center the label & badges */
  .store-badges {
    justify-content: center;
    padding-left: 0px;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .store-label {
    justify-content: center;
  }

  /* Mobile typography optimizations */
  .hero-text h1 {
    font-size: 2.5rem;
    line-height: 1.1;
    text-align: center;
  }

  .subhead {
    font-size: 1.1rem;
    line-height: 1.4;
    text-align: center;
  }

  .btn-download,
  .btn-outline {
    font-size: 1rem;
    padding: 1rem 2rem;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

  /* Mobile section titles */
  .section-title,
  .features-grid-title,
  .pricing-title,
  .faq-title,
  .contact-title {
    font-size: 1.8rem;
    line-height: 1.2;
    text-align: center;
  }

  .mobile-app__title {
    font-size: 1.6rem;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 1.5rem;
  }

  /* Mobile feature cards */
  .feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    text-align: center;
  }

  .feature-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    text-align: center;
  }

  .feature-card img {
    width: 200px;
    margin-bottom: 0.8rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  /* Mobile cards */
  .card-content h3 {
    font-size: 1.2rem;
    text-align: center;
  }

  .card-content p {
    font-size: 0.9rem;
    line-height: 1.6;
    text-align: center;
  }

  /* Mobile pricing */
  .card-title {
    font-size: 1.2rem;
    text-align: center;
  }

  .card-price {
    font-size: 1.8rem;
    text-align: center;
  }

  .card-features li {
    font-size: 0.85rem;
    line-height: 1.5;
    text-align: left;
    padding: 0.5rem 0;
  }

  /* Mobile FAQ */
  .faq-question h3 {
    font-size: 1.1rem;
    line-height: 1.4;
    padding-right: 2rem;
  }

  .faq-answer p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  /* Mobile form elements */
  .form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    font-size: 1rem;
    padding: 1rem;
    min-height: 48px;
    border-radius: 8px;
    border: 2px solid #e1e5e9;
  }

  .form-group select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7a90' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
    appearance: none;
  }

  /* Mobile buttons */
  .btn {
    font-size: 0.95rem;
    padding: 1rem 1.5rem;
    min-height: 48px;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .btn-contact {
    font-size: 0.95rem;
    padding: 1rem 1.5rem;
    min-height: 48px;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

  .btn-learn-more {
    font-size: 0.9rem;
    padding: 0.8rem 1.5rem;
    min-height: 44px;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
  }

  .pricing-btn {
    font-size: 0.9rem;
    padding: 0.8rem 1.5rem;
    min-height: 44px;
    width: 100%;
    margin-top: 0.5rem;
  }

  /* Mobile spacing adjustments */
  .container {
    padding: 0 1rem;
  }

  .hero {
    padding: 2rem 0;
    text-align: center;
  }

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

  .feature-card {
    padding: 1.5rem;
    margin: 0 auto;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }

  .card {
    padding: 1.5rem;
    text-align: center;
  }

  .pricing-card {
    padding: 1.5rem;
    text-align: center;
  }

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

  /* Mobile navigation */
  .nav-links a {
    font-size: 0.9rem;
    padding: 0.8rem 1rem;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .nav-links a.btn-signin {
    font-size: 0.85rem;
    padding: 0.6rem 0.8rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .logo img {
    max-height: 35px;
  }

  /* Mobile app section */
  .mobile-app__content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .mobile-app__img-wrap {
    margin-bottom: 1rem;
    text-align: center;
    order: 2;
  }

  .mobile-app__img-wrap img {
    max-width: 280px;
    width: 100%;
    height: auto;
    margin: 0 auto;
  }

  .mobile-app__features {
    text-align: center;
    max-width: 100%;
    order: 1;
  }

  .mobile-app__features li {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }

  .mobile-app__features .checkmark {
    flex-shrink: 0;
  }

  /* Mobile stats */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .stats-grid .stat {
    text-align: center;
    padding: 1rem;
  }

  /* Mobile contact form */
  .contact-form-section {
    padding: 1.5rem;
    margin: 1rem;
  }

  .growth-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .growth-features > div {
    text-align: center;
    padding: 1rem;
  }

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

  .footer-store-badges {
    justify-content: center;
    gap: 0.5rem;
  }

  /* Mobile calculator modal */
  .modal-content {
    margin: 5% auto;
    padding: 1.5rem;
    width: 95%;
    max-height: 90vh;
  }

  .calculator-actions {
    flex-direction: column;
    gap: 1rem;
  }

  .btn-calculate,
  .btn-reset {
    width: 100%;
    min-height: 48px;
  }
}

/* Additional mobile breakpoints for logo sizing */
@media (max-width: 480px) {
  .logo img {
    height: clamp(85px, 12vw, 110px) !important; /* Even bigger for small mobile */
    min-height: 85px !important;
  }
  
  .site-header {
    height: 85px;
  }
  
  /* Force logo visibility and sizing */
  .navbar .logo img {
    display: block !important;
    height: clamp(85px, 12vw, 110px) !important;
    min-height: 85px !important;
    width: auto !important;
    max-width: none !important;
  }
}

@media (max-width: 360px) {
  .logo img {
    height: clamp(90px, 15vw, 120px) !important; /* Maximum size for very small screens */
    min-height: 90px !important;
  }
  
  .site-header {
    height: 90px;
  }
  
  /* Force logo visibility and sizing */
  .navbar .logo img {
    display: block !important;
    height: clamp(90px, 15vw, 120px) !important;
    min-height: 90px !important;
    width: auto !important;
    max-width: none !important;
  }
}

/* ============================
     🤝 PARTNERS SHOWCASE - Updated
   ============================ */
.partners {
  text-align: center;
  padding: 2rem 0;
  background-color: #f8f9fa;
}

.partners h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.partners-sub {
  color: #777;
  margin-bottom: 1.5rem;
}

.partners-logos {
  display: flex;
  justify-content: center;
  gap: 2rem;
  /* Reduced gap for better spacing */
  flex-wrap: wrap;
  align-items: center;
}

/* Default mobile styles - keep existing behavior */
.partners-logos img {
  max-height: 80px;
  object-fit: contain;
  margin: 0 1rem;
}

.partners-logo img {
  max-height: 60px;
}

/* Special styling for bank_5.png to make it larger on mobile */
.bank-5-logo {
  max-height: 100px !important;
}

/* Special styling for bank_2.png to make it smaller on mobile */
.bank-2-logo {
  max-height: 50px !important;
}

/* Desktop-only styles: vertical orientation */
@media (min-width: 769px) {
  .partners-logos {
    gap: 3rem;
    /* More space on desktop */
  }

  .partners-logos img {
    width: 120px;
    /* Fixed width */
    height: 160px;
    /* Taller height for vertical aspect */
    object-fit: contain;
    /* Maintain aspect ratio within bounds */
    object-position: center;
    /* Center the logo within the container */
    margin: 0 1rem;
    transition: transform 0.3s ease;
    /* Smooth hover effect */
  }

  .partners-logo img {
    width: 100px;
    /* Slightly smaller for nested logos */
    height: 140px;
  }

  /* Optional: Add hover effect on desktop */
  .partners-logos img:hover {
    transform: scale(1.05);
  }
}

/* Large desktop: even more space and bigger logos */
@media (min-width: 1200px) {
  .partners-logos {
    gap: 4rem;
  }

  .partners-logos img {
    width: 140px;
    height: 180px;
  }

  .partners-logo img {
    width: 120px;
    height: 160px;
  }
  
  /* Special styling for bank_5.png to make it larger */
  .bank-5-logo {
    width: 160px !important;
    height: 200px !important;
  }
  
  /* Special styling for bank_2.png to make it slightly smaller */
  .bank-2-logo {
    width: 100px !important;
    height: 140px !important;
  }
}

/*--------------------------------------------------
  FEATURES INTRO 
--------------------------------------------------*/
.features-intro-bg {
  background-color: #f8f9fa;
}

.features-intro {
  text-align: center;
}

/* Title styling */
.intro-title {
  font-size: 2.25rem;
  font-weight: 600;
  color: #040404;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.accent {
  color: #ff7800; /* your orange accent */
}

/* Subtitle/description */
.intro-sub {
  max-width: 700px;
  margin: 0 auto 2rem;
  color: #040404;
  font-size: 1rem;
  line-height: 1.5;
}

/* CTA buttons wrapper */
.intro-ctas {
  display: inline-flex;
  gap: 1rem;
}

/* Dark filled pill */
.btn-dark {
  background: #ff7800;
  color: #fff;
  padding: 0.75rem 1.75rem;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s, transform 0.2s;
}
.btn-dark:hover {
  background: #ff7800;
  transform: translateY(-2px);
}

/* Dark outline pill */
.btn-outline-dark {
  background: transparent;
  color: #ff7800;
  padding: 0.75rem 1.75rem;
  border: 2px solid #ff7800;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s, color 0.3s, transform 0.2s;
}
.btn-outline-dark:hover {
  background: #ff7800;
  color: #fff;
  transform: translateY(-2px);
}

/* Make sure it stays responsive */
@media (max-width: 600px) {
  .intro-title {
    font-size: 1.75rem;
  }
  .intro-ctas {
    flex-direction: column;
  }
  .intro-ctas .btn {
    width: 100%;
    text-align: center;
  }
}

/* ============================
     🎨 FEATURES GRID – with background image!
   ============================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: 1.5rem;
  padding: 2rem 0;
}

.features-bg {
  background-color: white;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

/* Hide any cards beyond the sixth – keep it a perfect 3×2! */
.features-grid > .feature-card:nth-child(n + 7) {
  display: none;
}

.feature-card {
  background: #fff;
  border-radius: 8px;
  /* box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1); */
  padding: 1.5rem;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  align-items: center;
  transition: all 0.6s ease-out;
  overflow: hidden;
}

.feature-card.reveal {
  opacity: 1;
  transform: translateY(0);
}

.feature-card:hover {
  transform: translateY(-5px);
  /* Interactive pop */
}

.feature-card__img-wrap:hover img {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Individual card image sizes */
.feature-card:nth-child(1) img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.feature-card:nth-child(2) img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.feature-card:nth-child(3) img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.feature-card:nth-child(4) img {
  width: 100%;
  height: 280px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.feature-card:nth-child(5) img {
  width: 100%;
  height: 280px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.feature-card:nth-child(6) img {
  width: 100%;
  height: 280px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.feature-card h3 {
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: #333;
  font-size: 0.95rem;
}

/* Responsive grid tweaks */
@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 601px) and (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, minmax(240px, 1fr));
  }
}

@media (min-width: 901px) {
  .features-grid {
    grid-template-columns: repeat(3, minmax(240px, 1fr));
  }
}

/*--------------------------------------------------
  FEATURES GRID Title
--------------------------------------------------*/
.features-grid-title {
  font-family: "Playfair Display", serif;
  font-weight: 600; /* semibold */
  font-size: 52px;
  text-align: center;
  margin-bottom: 2rem;
  color: #222;
  line-height: 1.2;
}

/* Ensure you've loaded the semibold weight: */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Inter:wght@400;600&display=swap");

/*--------------------------------------------------
  Stats Section: four-column bar with Outfit font
--------------------------------------------------*/
.stats-section {
  background: #444; /* dark charcoal */
  color: #fff;
  padding: 1rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 1rem;
}

.stats-grid .stat h3 {
  font-family: "Outfit", sans-serif;
  font-weight: 700; /* Bold */
  font-size: 46px;
  margin-bottom: 0.25rem;
  line-height: 1.1;
}

.stats-grid .stat p {
  font-family: "Outfit", sans-serif;
  font-weight: 400; /* Regular */
  font-size: 30px;
  margin: 0;
  color: #fff; /* lighter subtitle */
}

.stat-title {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
  background: linear-gradient(90deg, #fff 30%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stats-grid .stat:nth-child(1) .stat-title {
  animation-delay: 0.1s;
}
.stats-grid .stat:nth-child(2) .stat-title {
  animation-delay: 0.3s;
}
.stats-grid .stat:nth-child(3) .stat-title {
  animation-delay: 0.5s;
}
.stats-grid .stat:nth-child(4) .stat-title {
  animation-delay: 0.7s;
}

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

/* single vertical divider between the first two and last two items */
.stats-grid .stat:nth-child(2) {
  border-left: 1px solid rgba(255, 255, 255, 0.5);
}
/* single vertical divider between the first two and last two items */
.stats-grid .stat:nth-child(3) {
  border-left: 1px solid rgba(255, 255, 255, 0.5);
}

/* single vertical divider between the first two and last two items */
.stats-grid .stat:nth-child(4) {
  border-left: 1px solid rgba(255, 255, 255, 0.5);
}

.mobile-app__features {
  list-style: none;
  padding-left: 0;
}

.mobile-app__features li {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
}

.checkmark {
  color: #ff7a00; /* ZakPay orange */
  margin-right: 0.75rem;
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

/* Responsive: 2 columns on tablet, 1 on mobile */
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/*--------------------------------------------------
  Mobile App Showcase Section
--------------------------------------------------*/
.mobile-app {
  padding: 4rem 0;
}

.mobile-app__title {
  font-family: "Playfair Display", serif;
  font-weight: 600; /* Semibold */
  font-size: 48px;
  text-align: center;
  margin-bottom: 2.5rem;
  color: #222;
  line-height: 1.2;
}

.mobile-app__content {
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* image wrapper with background circle */
.mobile-app__img-wrap img {
  position: relative;
  width: 100%;
  max-width: 500px; /* increased size */
  height: auto; /* maintains aspect ratio */
  margin: 0 0 0 -4rem; /* moved to the left */
  z-index: 1;
}

/* feature list */
.mobile-app__features {
  list-style: none;
  max-width: 500px;
  padding: 0;
}
.mobile-app__features li {
  font-family: "Outfit", sans-serif;
  font-weight: 600; /* Bold */
  font-size: 17px;
  color: #555;
  margin-bottom: 1rem;
  line-height: 1.4;
}

/* responsive: stack on small screens */
@media (max-width: 768px) {
  .mobile-app__content {
    flex-direction: column;
  }
  .mobile-app__img-wrap {
    margin-bottom: 2rem;
  }
}

/* ============================
   🚀 GET STARTED SECTION
   ============================ */
.get-started {
  padding: 6rem 0;
  background: #f9f9f9;
}

.get-started .section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #222;
}

.get-started .section-subtitle {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
  color: #555;
  line-height: 1.6;
}

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

.card {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.card-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  /* background: #e8e8e8; */
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}

.card-icon img {
  width: 100%;
  height: 100%;
}

.card-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #222;
}

.card-content p {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.5;
  flex-grow: 1;
}

.card-footer {
  margin-top: 1.5rem;
}

.card-footer h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: #222;
}

.card-footer p {
  font-size: 0.85rem;
  color: #555;
}

/* App Store Icons in Card Footer */
.app-store-icons {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
}

.app-store-icons a {
  display: inline-block;
  transition: transform 0.2s ease;
}

.app-store-icons a:hover {
  transform: translateY(-2px);
}

.app-store-icons img {
  height: 40px;
  width: auto;
  border-radius: 6px;
}

/* Verification Icons in Card Footer */
.verification-icons {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
}

.verification-icons img {
  height: 40px;
  width: auto;
  opacity: 0.8;
  transition: transform 0.2s ease;
}

.verification-icons img:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.verification-icons span {
  font-size: 0.8rem;
  color: #666;
  font-weight: 500;
}

.icon-id-card,
.icon-document {
  width: 40px;
  height: 40px;
  color: #ff7800;
  opacity: 0.8;
  transition: transform 0.2s ease;
}

.icon-id-card:hover,
.icon-document:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* Payment Methods in Card Footer */
.payment-methods {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
}

.icon-qr,
.icon-link,
.icon-transfer {
  width: 40px;
  height: 40px;
  color: #ff7800;
  opacity: 0.8;
  transition: transform 0.2s ease;
}

.icon-qr:hover,
.icon-link:hover,
.icon-transfer:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* Responsive tweaks */
@media (max-width: 480px) {
  .get-started {
    padding: 2rem 0;
  }
  .get-started .section-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  /* Extra small mobile optimizations */
  .hero-text h1 {
    font-size: 2rem;
    line-height: 1.1;
  }

  .subhead {
    font-size: 1rem;
    line-height: 1.4;
  }

  .section-title,
  .features-grid-title,
  .mobile-app__title,
  .pricing-title,
  .faq-title,
  .contact-title {
    font-size: 1.5rem;
    line-height: 1.2;
  }

  .feature-card h3 {
    font-size: 1.2rem;
  }

  .feature-card p {
    font-size: 0.85rem;
  }

  .feature-card img {
    width: 180px;
  }

  .card-content h3 {
    font-size: 1.1rem;
  }

  .card-content p {
    font-size: 0.85rem;
  }

  .card-title {
    font-size: 1.1rem;
  }

  .card-price {
    font-size: 1.6rem;
  }

  .card-features li {
    font-size: 0.8rem;
  }

  .faq-question h3 {
    font-size: 1rem;
  }

  .faq-answer p {
    font-size: 0.85rem;
  }

  .btn {
    font-size: 0.9rem;
    padding: 0.7rem 1.2rem;
  }

  .btn-contact {
    font-size: 0.9rem;
    padding: 0.8rem 1.2rem;
  }

  .container {
    padding: 0 0.8rem;
  }

  .feature-card {
    padding: 1rem;
  }

  .card {
    padding: 1.2rem;
  }

  .pricing-card {
    padding: 1.2rem;
  }

  .nav-links a {
    font-size: 0.85rem;
    padding: 0.4rem 0.6rem;
  }

  .logo img {
    max-height: 30px;
  }

  /* Mobile app features */
  .mobile-app__features li {
    font-size: 0.85rem;
  }

  /* Stats section */
  .stats-grid .stat h3 {
    font-size: 1.8rem;
  }

  .stats-grid .stat p {
    font-size: 0.8rem;
  }
}

/* -------------------
   Feature Cards Section
   ------------------- */
.feature-cards-section {
  padding: 4rem 0;
  background: #f9f9f9;
}

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

/* Individual Card */
.feature-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  /* box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08); */
  box-shadow: 0 6px 32px rgba(44, 62, 80, 0.1),
    0 1.5px 6px rgba(44, 62, 80, 0.06);
}

/* Image wrapper with enhanced background */
.feature-card__img-wrap {
  background: linear-gradient(145deg, #f8f9fa, #e9ecef);
  padding: 1rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.feature-card__img-wrap img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: contain;
  margin: 0 auto;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

/* Title */
.feature-card__title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: #222;
}

/* Text */
.feature-card__text {
  flex-grow: 1; /* push the button to the bottom */
  color: #333;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.btn-learn-more {
  display: inline-block;
  margin-top: 1.2rem;
  background: #fff;
  color: #ff7800;
  border: 2px solid #ff7800;
  border-radius: 50px;
  padding: 0.6rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(255, 120, 0, 0.06);
}
.btn-learn-more:hover {
  background: #ff7800;
  color: #fff;
  border-color: #ff7800;
  transform: translateY(-2px) scale(1.04);
}

/* Responsive tweak: tighter gaps on small screens */
@media (max-width: 480px) {
  .feature-cards {
    gap: 1.5rem;
  }
}

/* ============================
     Text SECTION
   ============================ */

.section-heading {
  padding: 4rem 0; /* adjust vertical spacing as needed */
  text-align: center;
  background: #f9f9f9; /* optional background */
}

.section-heading__title {
  font-family: "Playfair Display", serif;
  font-weight: 600; /* semibold */
  font-size: 54px;
  line-height: 1.2;
  color: #222; /* your heading color */
  margin: 0 auto;
  max-width: 800px; /* constrain line length */
}

/* mobile-friendly scaling */
@media (max-width: 768px) {
  .section-heading__title {
    font-size: 36px;
  }
}
@media (max-width: 480px) {
  .section-heading__title {
    font-size: 28px;
  }
}

/* ============================
     📈 GROWTH HIGHLIGHT
   ============================ */
.growth {
  background: #f9f9f9;
  padding: 1rem 0;
  margin-top: -1rem;
}

.growth-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 2rem;
}

.growth-text h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.growth-text .growth-sub {
  color: #f9f9f9;
  margin-bottom: 1.5rem;
}

.growth-features {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  row-gap: 3rem;
  column-gap: 6rem;
}

.growth-features > div {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.growth-features img {
  width: 64px;
  height: auto;
}

.growth-features div > div {
  font-size: 1.3rem;
  line-height: 1.4;
}

.growth-features div > div strong {
  font-size: 1.5rem;
  font-weight: 700;
}

.growth-content {
  margin-top: 6rem;
}

/* Modern Contact Form Styles */
.contact-form-section {
  max-width: 600px;
  background: #ffffff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  margin-top: 2rem;
}

.contact-title {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: #222;
  font-weight: 700;
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  position: relative;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #555;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
  padding: 1rem 1.25rem;
  border: 2px solid #e1e5e9;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
  background: #f8f9fa;
  color: #666;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ff7800;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(255, 120, 0, 0.1);
  transform: translateY(-2px);
}

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

/* Checkbox group styles */
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border: 2px solid #e1e5e9;
  border-radius: 8px;
  background: #f8f9fa;
  transition: all 0.3s ease;
  cursor: pointer;
}

.checkbox-item:hover {
  border-color: #ff7800;
  background: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(255, 120, 0, 0.1);
}

.checkbox-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #ff7800;
  cursor: pointer;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
}

.checkbox-item label {
  margin: 0;
  cursor: pointer;
  font-weight: 500;
  color: #555;
  font-size: 0.95rem;
  text-transform: none;
  letter-spacing: normal;
  flex: 1;
}

.checkbox-item:has(input:checked) {
  border-color: #ff7800;
  background: rgba(255, 120, 0, 0.05);
  box-shadow: 0 0 0 2px rgba(255, 120, 0, 0.1);
}

/* Conditional text input styling */
#other-specify {
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(-10px);
}

#other-specify.show {
  opacity: 1;
  transform: translateY(0);
}

.btn-contact {
  background: linear-gradient(135deg, #ff7800 0%, #ff9500 100%);
  color: #fff;
  padding: 1rem 2rem;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 20px rgba(255, 120, 0, 0.3);
}

.btn-contact:hover {
  background: linear-gradient(135deg, #e06700 0%, #ff7800 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 120, 0, 0.4);
}
/* Responsive adjustments for contact section */
@media (max-width: 768px) {
  .contact-form-section {
    max-width: 100%;
    padding: 2rem;
  }

  .contact-title {
    font-size: 1.5rem;
  }
}

/* ============================
     🎯 FINAL CALL-TO-ACTION
   ============================ */
.final-cta {
  text-align: center;
  padding: 6rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  position: relative;
  overflow: hidden;
  margin: 2rem 0;
  border-radius: 20px;
  margin-left: 1rem;
  margin-right: 1rem;
}

.final-cta::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="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
  border-radius: 20px;
}

.final-cta .container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.final-cta h2 {
  font-size: 3rem;
  color: white;
  margin-bottom: 1.5rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  line-height: 1.2;
}

.final-cta p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.final-cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.final-cta .btn {
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.final-cta .btn-primary {
  background: #ff7800;
  color: white;
  box-shadow: 0 4px 20px rgba(255, 120, 0, 0.4);
}

.final-cta .btn-primary:hover {
  background: #e06700;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 120, 0, 0.6);
}

.final-cta .btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.final-cta .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .final-cta {
    padding: 4rem 1rem;
    margin: 1rem;
  }

  .final-cta h2 {
    font-size: 2.2rem;
  }

  .final-cta p {
    font-size: 1.1rem;
  }

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

  .final-cta .btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
}

/* ============================
     🦶 FOOTER & BOTTOM DEMO
   ============================ */
.site-footer {
  background: linear-gradient(135deg, #232526 0%, #414345 100%);
  color: #eee;
  padding: 3.5rem 0 1.5rem;
  box-shadow: 0 -2px 24px rgba(0, 0, 0, 0.08);
  margin-top: 4rem;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-brand h3 {
  color: #fff;
  margin-bottom: 0.5rem;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.footer-brand p {
  font-size: 1rem;
  margin-bottom: 1.2rem;
  color: #bbb;
}

.footer-links {
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
}

.footer-links h4 {
  color: #fff;
  margin-bottom: 0.7rem;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links a {
  color: #eee;
  text-decoration: none;
  font-size: 1.05rem;
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #ff7800;
}

.footer-app-stores {
  margin-top: 1.5rem;
}

.footer-app-stores p {
  color: #eee;
  font-size: 1rem;
  margin-bottom: 0.7rem;
}

.footer-store-badges {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.footer-store-badges img {
  height: 38px;
  width: auto;
  display: block;
  filter: brightness(0.95);
  transition: filter 0.3s, transform 0.2s;
}

.footer-store-badges img:hover {
  filter: brightness(1.1);
  transform: translateY(-2px) scale(1.07);
}

.social-icons {
  display: flex;
  gap: 1.1rem;
  margin-top: 1.2rem;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #232526;
  color: #ff7800;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 1.3rem;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(255, 120, 0, 0.07);
}

.social-icons a:hover {
  background: #ff7800;
  color: #fff;
  transform: translateY(-2px) scale(1.1);
}

.footer-divider {
  border: none;
  border-top: 1.5px solid #444;
  margin: 2.5rem 0 1.5rem 0;
}

@media (max-width: 900px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    padding: 0 1rem;
  }
  .footer-links {
    gap: 2.5rem;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .site-footer {
    padding: 2.5rem 0 1rem;
  }
  .footer-brand h3 {
    font-size: 1.4rem;
  }
  .footer-links h4 {
    font-size: 1rem;
  }
  .footer-links a {
    font-size: 0.98rem;
  }
  .footer-app-stores p {
    font-size: 0.95rem;
  }
}

.newsletter input,
.newsletter button {
  padding: 0.5rem;
  border: none;
  border-radius: 4px;
}

.newsletter input {
  width: 70%;
  margin-right: 0.5rem;
}

.newsletter button {
  background: #ff7800;
  color: #fff;
  cursor: pointer;
}

.bottom-demo {
  text-align: center;
  padding: 2rem 0;
}

.btn-demo {
  background: #ff7800;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-demo:hover {
  background: #e06700;
}

/* ============================
   📱 SIMPLE MOBILE NAVIGATION
   ============================ */

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

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

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    flex-direction: column;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    z-index: 1000;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    display: block;
    padding: 1rem;
    color: #333;
    text-decoration: none;
    font-weight: bold;
    width: 100%;
  }

  .nav-links a:hover {
    color: #ff7800;
  }

  .nav-links a.btn-signin {
    background: transparent;
    color: #ff7800;
    border: 2px solid #ff7800;
    margin: 0.5rem auto;
    border-radius: 9999px;
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 120px;
    display: block;
    text-align: center;
    font-weight: 600;
    transition: background 0.3s, color 0.3s;
  }

  .nav-links a.btn-signin:hover {
    background: #ff7800;
    color: #fff;
  }

  .nav-links a.btn-signup {
    background: transparent;
    color: #ff7800;
    border: 2px solid #ff7800;
    margin: 0.5rem auto;
    border-radius: 9999px;
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 120px;
    display: block;
    text-align: center;
    font-weight: 600;
    transition: background 0.3s, color 0.3s;
  }

  .nav-links a.btn-signup:hover {
    background: #ff7800;
    color: #fff;
  }
}

/* ============================
         🎠 HERO CAROUSEL STYLES
         ============================ */

.hero-carousel {
  position: relative;
  .logo img {
    height: 60px; /* Smaller logo on very small screens */
  }
}

.carousel-wrapper {
  position: relative;
  overflow: hidden;
}

.carousel-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.carousel-image.active {
  opacity: 1;
  position: relative;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 120, 0, 0.3);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #ff7800;
}

.dot:hover {
  background-color: rgba(255, 120, 0, 0.7);
}

/* ============================
     ✨ ANIMATIONS
   ============================ */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }

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

/* ============================
     📱 RESPONSIVE BREAKPOINTS
   ============================ */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: #fff;
  }

  .nav-links.open {
    display: flex;
  }

  .mobile-menu-toggle {
    display: block;
  }

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

  .hero-text h1 {
    font-size: 2rem;
  }

  .play_store {
    /* center the container in its parent */
    align-self: center !important;
    /* or, if you'd rather use auto margins: */
    /* margin: 2rem auto 0; */
  }

  /* Stack the text and icon grid vertically */
  .growth-grid {
    grid-template-columns: 1fr;
    row-gap: 2rem;
    /* space between the two sections */
  }

  /* Make parent container flexbox for mobile order swapping */
  .mobile-app__content {
    display: flex;
    flex-direction: column;
  }

  /* Center mobile app image on mobile */
  .mobile-app__img-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    order: 1; /* Move image to FIRST position on mobile */
  }

  .mobile-app__img-wrap img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
  }

  /* Move feature card to second position on mobile */
  .feature-card {
    order: 2; /* Move feature card to SECOND position on mobile */
  }

  /* Increase top margin for mobile app title on mobile */
  .mobile-app__title {
    margin-top: 7rem; /* Add more top margin to move title lower */
  }

  /* Reorder signup hero sections on mobile - image first, then text */
  .signup-content {
    display: flex;
    flex-direction: column;
  }

  .signup-image {
    order: 1; /* Move image to first position on mobile */
  }

  .signup-text {
    order: 2; /* Move text to second position on mobile */
  }

  /* Reduce gap between insight section images on mobile */
  .insights-section .insights-grid {
    gap: 16px !important; /* Reduce gap from 32px to 16px on mobile */
  }

  /* Alternative approach - target the specific section */
  section.insights-section .insights-grid {
    gap: 16px !important;
  }

  /* Further reduce gap on smaller mobile screens */
  @media (max-width: 480px) {
    .insights-section .insights-grid,
    section.insights-section .insights-grid {
      gap: 12px !important; /* Even smaller gap for very small screens */
    }
  }

  @media (max-width: 360px) {
    .insights-section .insights-grid,
    section.insights-section .insights-grid {
      gap: 8px !important; /* Minimal gap for very small screens */
    }
  }

  /* Reduce spacing between checkmarks and text on mobile */
  .mobile-app__features.two-column li .checkmark {
    margin-right: 0.13rem; 
    margin-left: 0.13rem;/* Even more reduced spacing */
    font-size: 0.8rem; /* Smaller tick marks for mobile */
    width: 16px; /* Smaller width */
    height: 16px; /* Smaller height */
  }
}

@media (max-width: 480px) {
  .growth-features {
    grid-template-columns: 1fr;
    row-gap: 1.5rem;
  }
}

/* ============================
     ✨ IMAGE HOVER ENLARGEMENT
   ============================ */
/* give all images a smooth transform transition */
img {
  transition: transform 0.3s ease;
}

/* only scale <img> elements on hover */
img:hover {
  transform: scale(1.15);
}

.mobile-app__features.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem 3rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-app__features.two-column li {
  display: flex;
  align-items: center;
  margin-bottom: 0.7rem;
  font-size: 1.18rem;
  font-weight: 600;
  color: #223046;
  line-height: 1.5;
}

.mobile-app__features .checkmark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff3e6;
  color: #ff7800;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  font-size: 1.2rem;
  margin-right: 0.9em;
  font-weight: bold;
  box-shadow: 0 1px 4px rgba(255, 120, 0, 0.07);
}

/* Stat card hover effect */
.stats-grid .stat {
  transition: box-shadow 0.3s, transform 0.3s;
}
.stats-grid .stat:hover {
  box-shadow: 0 8px 32px rgba(44, 62, 80, 0.13);
  transform: translateY(-6px) scale(1.03);
}

/* Stat description animation */
.stat-desc {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUpDesc 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
.stats-grid .stat:nth-child(1) .stat-desc {
  animation-delay: 0.5s;
}
.stats-grid .stat:nth-child(2) .stat-desc {
  animation-delay: 0.7s;
}
.stats-grid .stat:nth-child(3) .stat-desc {
  animation-delay: 0.9s;
}
.stats-grid .stat:nth-child(4) .stat-desc {
  animation-delay: 1.1s;
}

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

/* ====================================================
   ❓ FAQ SECTION
   ==================================================== */
.faq-section {
  padding: 4rem 0;
  background: #f8f9fa;
  margin-top: 6rem;
  margin-bottom: 6rem;
}

.faq-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
}

.faq-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 3rem;
}

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

.faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

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

.faq-question h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.faq-toggle {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ff7800;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 2rem 1.5rem;
  margin: 0;
  line-height: 1.6;
  color: #666;
}

@media (max-width: 768px) {
  .faq-title {
    font-size: 2rem;
  }
  
  .faq-question {
    padding: 1rem 1.5rem;
  }
  
  .faq-question h3 {
    font-size: 1rem;
  }
  
  .faq-answer p {
    padding: 0 1.5rem 1rem;
  }
}

/* ====================================================
   📄 PDF MODAL STYLES
   ==================================================== */
.pdf-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}

.pdf-modal-content {
  position: relative;
  background-color: #fff;
  margin: 2% auto;
  padding: 0;
  width: 90%;
  max-width: 900px;
  height: 90%;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  animation: pdfModalSlideIn 0.3s ease-out;
}

@keyframes pdfModalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.pdf-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #e0e0e0;
  background: linear-gradient(135deg, #ff7800, #fb7f41);
  color: white;
  border-radius: 12px 12px 0 0;
}

.pdf-modal-header h2 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
}

.pdf-close {
  color: white;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.pdf-close:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.pdf-modal-body {
  padding: 0;
  height: calc(100% - 80px);
  overflow: hidden;
}

/* Terms Content Styling */
.terms-content {
  padding: 2rem;
  height: 100%;
  overflow-y: auto;
  background: white;
  line-height: 1.6;
}

.terms-content h3 {
  color: #333;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
  border-bottom: 2px solid #ff7800;
  padding-bottom: 1rem;
}

.terms-content h4 {
  color: #ff7800;
  font-size: 1.3rem;
  font-weight: 600;
  margin: 2rem 0 1rem 0;
  border-left: 4px solid #ff7800;
  padding-left: 1rem;
}

.terms-content p {
  color: #555;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.terms-content strong {
  color: #333;
  font-weight: 600;
}

.terms-footer {
  margin-top: 2rem;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #ff7800;
}

.terms-footer p {
  margin: 0;
  color: #666;
  font-size: 0.9rem;
}

.terms-footer a {
  color: #ff7800;
  text-decoration: none;
  font-weight: 600;
}

.terms-footer a:hover {
  text-decoration: underline;
}

/* List styling for terms */
.terms-content ul {
  margin: 1rem 0 1rem 2rem;
  padding: 0;
}

.terms-content li {
  color: #555;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.terms-content li:last-child {
  margin-bottom: 1rem;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
  .pdf-modal-content {
    width: 95%;
    height: 95%;
    margin: 2.5% auto;
  }
  
  .pdf-modal-header {
    padding: 1rem 1.5rem;
  }
  
  .pdf-modal-header h2 {
    font-size: 1.3rem;
  }
  
  .pdf-close {
    font-size: 1.8rem;
  }
}
