/* -------------------------------------------------------------
   GLOBAL
------------------------------------------------------------- */
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background: #f5f7fa;
    color: #1c1c1c;
    line-height: 1.4;
}

/* -------------------------------------------------------------
   HERO WRAPPER
------------------------------------------------------------- */
.hero {
    width: 90%;
    padding: 20px;
    background: linear-gradient(135deg, #dff2ff, #e9e2ff);
    border-radius: 30px;
    box-sizing: border-box;
    margin: 5%;
}

.hero-content {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

/* -------------------------------------------------------------
   LEFT SIDE
------------------------------------------------------------- */
.hero-left {
    flex: 1;
    max-width: 520px;
}

.app-logo {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 20px;
}

.subtitle {
    font-size: 18px;
    color: #4a4a4a;
    margin-bottom: 32px;
}

/* -------------------------------------------------------------
   DOWNLOAD + QR SECTION
------------------------------------------------------------- */
.download-section {
    display: flex;
    gap: 20px;
    /*margin-bottom: 25px;*/
}

/*.store-column {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    align-items: center;*/
/*}*/

.store-icn {
    height: 150px;
    transition: transform 0.2s ease;
}

.store-icn:hover {
    transform: scale(1.05);
}

/* QR CODES — hidden by default */
.qr-store {
    width: 150px;
    height: 150px;
    margin-top: 12px;
    display: none;
}

/* Show QR only on screens ≥ 1300px */
@media (min-width: 1300px) {
    .hero {
        padding: 60px 20px;
    }
    .qr-store {
        display: block;
    }
}

/* Ratings */
.rating-row {
    font-size: 16px;
    color: #333;
    margin-top: 10px;
}

/* -------------------------------------------------------------
   RIGHT SIDE
------------------------------------------------------------- */
.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-img {
    width: 100%;
    max-width: 450px;
    border-radius: 26px;
    /*box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);*/
}

/* -------------------------------------------------------------
   RESPONSIVE BEHAVIOR
------------------------------------------------------------- */

/* ≤ 900px — stack layout */
@media (max-width: 900px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-left {
        max-width: 100%;
    }

    .download-section {
        justify-content: center;
    }

    .hero-img {
        max-width: 330px;
        margin-top: 20px;
    }
}

/* ≤ 600px — font scaling + one-column buttons */
@media (max-width: 600px) {
    .hero-title {
        font-size: 28px;
    }

    .subtitle {
        font-size: 16px;
    }

    .download-section {
        /*flex-direction: column;*/
        gap: 20px;
    }
    .store-icn {
        height: 140px;
    }
}





/* ===== Promo Text Section ===== */
.promo-text {
  max-width: 960px;
  margin: 0 auto;
  padding: 65px 5%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, Inter, Helvetica, Arial, sans-serif;
  color: #1f2937; /* neutral dark */
  line-height: 1.7;
  /*background-color: #ffffff;*/
}

/* ===== Headings ===== */
.promo-text h1 {
  font-size: 2.25rem;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 24px;
  color: #0f172a;
}

.promo-text h2 {
  font-size: 1.5rem;
  line-height: 1.35;
  font-weight: 600;
  margin: 56px 0 16px;
  color: #111827;
}

/* ===== Paragraphs ===== */
.promo-text p {
  font-size: 1rem;
  margin-bottom: 16px;
  color: #374151;
}

/* Strong emphasis */
.promo-text strong {
  font-weight: 600;
  color: #111827;
}

/* ===== Lists ===== */
.promo-text ul,
.promo-text ol {
  margin: 16px 0 24px 24px;
  padding: 0;
}

.promo-text ul li,
.promo-text ol li {
  margin-bottom: 8px;
  font-size: 0.98rem;
  color: #374151;
}

.promo-text ul {
  list-style: disc;
}

.promo-text ol {
  list-style: decimal;
}

/* ===== Links ===== */
.promo-text a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
}

.promo-text a:hover {
  text-decoration: underline;
}

/* ===== CTA links (store buttons text) ===== */
.promo-text p a {
  display: inline-block;
  margin-top: 8px;
}

/* ===== FAQ spacing ===== */
.promo-text p strong + br {
  display: block;
  margin-bottom: 6px;
}

/* ===== Mobile adjustments ===== */
@media (max-width: 768px) {
  .promo-text {
    padding: 50px 5%;
  }

  .promo-text h1 {
    font-size: 1.9rem;
  }

  .promo-text h2 {
    font-size: 1.35rem;
  }
}





/* ===== Footer Base ===== */
footer {
  background: linear-gradient(180deg, #0b1220 0%, #0a1020 100%);
  color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
               Inter, Roboto, Helvetica, Arial, sans-serif;
}

/* Container */
footer .max-w-7xl {
  max-width: 1280px;
  margin: 0 auto;
}

/* Grid */
footer .grid {
  display: grid;
  gap: 48px;
}

@media (min-width: 768px) {
  footer .md\:grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== Brand block ===== */
footer h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.2px;
}

footer p {
  color: #9ca3af;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== Section titles ===== */
footer h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #ffffff;
}

/* ===== Lists ===== */
footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer ul li {
  margin-bottom: 10px;
}

/* ===== Links ===== */
footer a {
  color: #9ca3af;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

footer a:hover {
  color: #ffffff;
}

/* ===== Bottom copyright ===== */
footer .border-t {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

footer .pt-8 {
  padding-top: 24px;
}

footer .text-center {
  text-align: center;
}

footer .text-sm {
  font-size: 0.85rem;
}

footer .text-gray-400 {
  color: #9ca3af;
}

/* ===== Spacing ===== */
footer.py-12 {
  padding-top: 64px;
  padding-bottom: 48px;
}

footer.px-4 {
  padding-left: 5%;
  padding-right: 5%;
}

@media (min-width: 640px) {
  footer .sm\:px-6 {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (min-width: 1024px) {
  footer .lg\:px-8 {
    padding-left: 32px;
    padding-right: 32px;
  }
}

