/* ========== Reset & Base ========== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --purple-dark: #1b0530;
  --purple-mid: #400a76;
  --yellow: #fee446;
  --white: #fcfcfc;
}

body {
  font-family: "Inter", sans-serif;
  color: #fff;
  background: var(--purple-dark);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

/* ========== Header ========== */
.header {
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 54px;
  width: auto;
}

.btn-download-header {
  background: var(--yellow);
  color: #29074c;
  font-weight: 500;
  font-size: 18px;
  padding: 14px 42px;
  border-radius: 12px;
  transition: opacity 0.2s;
}

.btn-download-header:hover {
  opacity: 0.9;
}

/* ========== Hero ========== */
.hero {
  position: relative;
  min-height: 700px;
  background: linear-gradient(
    115deg,
    rgba(64, 10, 118, 0.92) 6%,
    rgba(27, 5, 48, 0.92) 94%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 140px 20px 40px;
}

.hero-bg-graphics {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-graph-left {
  position: absolute;
  width: 300px;
  left: 5%;
  top: 15%;
  opacity: 0.2;
  transform: rotate(-14.57deg);
}

.hero-graph-right {
  position: absolute;
  width: 380px;
  right: 2%;
  top: 10%;
  opacity: 0.2;
  transform: rotate(22.14deg);
}

.hero-phones {
  position: absolute;
  width: 520px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.18;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 64px;
  font-weight: 700;
  color: var(--yellow);
  text-shadow: 2px 2px 32px rgba(0, 0, 0, 0.6);
  margin-bottom: 12px;
}

.hero-subtitle {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 40px;
}

.hero-download-label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 12px;
}

.app-badges {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.app-badges a img {
  height: 60px;
  width: auto;
}

/* ========== Info Bar ========== */
.info-bar {
  background: #fff;
  padding: 14px 0px;
  text-align: center;
}

.info-bar p {
  color: #000;
  font-size: 18px;
  font-weight: 500;
  /* max-width: 1280px; */
  /* margin: 0 auto; */
}

/* ========== Business Section ========== */
.business-section {
  background: linear-gradient(
    173deg,
    rgb(27, 5, 48) 12%,
    rgb(55, 24, 87) 42%,
    rgb(110, 41, 180) 90%
  );
  padding: 60px 40px 0;
  overflow: hidden;
}

.business-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.business-top-text {
  text-align: center;
  margin-bottom: 24px;
}

.business-badge {
  font-size: 32px;
  color: var(--yellow);
  text-shadow: 2px 2px 32px rgba(0, 0, 0, 0.5);
  margin-bottom: 8px;
}

.business-badge::before {
  content: "\2022 ";
}

.business-title {
  font-size: 56px;
  font-weight: 600;
  color: #fff;
  text-shadow: 2px 2px 32px rgba(0, 0, 0, 0.5);
}

.business-title .highlight {
  color: var(--yellow);
}

.business-content {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.business-left {
  flex: 1;
}

.business-heading {
  font-size: 50px;
  font-weight: 600;
  color: #fff;
  text-shadow: 2px 2px 32px rgba(0, 0, 0, 0.5);
  margin-bottom: 24px;
}

.business-heading .highlight {
  color: var(--yellow);
}

.business-benefits {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 32px;
}

.business-benefits li {
  font-size: 28px;
  line-height: 52px;
  color: var(--yellow);
  letter-spacing: 0.28px;
}

.business-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-list-store {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--yellow);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.18px;
  padding: 12px 24px;
  border-radius: 12px;
  transition: opacity 0.2s;
}

.btn-list-store span {
  background: linear-gradient(173deg, rgb(64, 10, 118) 6%, rgb(27, 5, 48) 94%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.btn-list-store:hover {
  opacity: 0.9;
}

.btn-more-details {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid var(--yellow);
  color: var(--yellow);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.18px;
  padding: 12px 24px;
  border-radius: 12px;
  transition: background 0.2s;
}

.btn-more-details:hover {
  background: rgba(254, 228, 70, 0.1);
}

.btn-icon {
  width: 24px;
  height: 24px;
}

.business-right {
  flex: 0 0 440px;
}

.business-phone {
  width: 100%;
  height: auto;
}

/* ========== Featured Stores ========== */
.featured-stores {
  background: #fff;
  padding: 60px 40px 80px;
}

.section-title-gradient {
  text-align: center;
  font-size: 48px;
  font-weight: 600;
  background: linear-gradient(172deg, rgb(64, 10, 118) 6%, rgb(27, 5, 48) 94%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 50px;
}

.stores-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 60px;
  align-items: center;
  justify-items: center;
}

.store-logo img {
  max-height: 63px;
  width: auto;
  object-fit: contain;
}

/* ========== Categories Section ========== */
.categories-section {
  background: linear-gradient(
    173deg,
    rgb(110, 41, 180) 12%,
    rgb(55, 24, 87) 42%,
    rgb(27, 5, 48) 90%
  );
  padding: 60px 0 80px;
  overflow: hidden;
}

.section-title-white {
  text-align: center;
  font-size: 48px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 50px;
}

/* Marquee rows */
.marquee-row {
  overflow: hidden;
  width: 100%;
  margin-bottom: 20px;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 5%,
    black 95%,
    transparent
  );
  mask-image: linear-gradient(
    to right,
    transparent,
    black 5%,
    black 95%,
    transparent
  );
}

.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
}

.marquee-track.scroll-left {
  animation: scroll-left 30s linear infinite;
}

.marquee-track.scroll-right {
  animation: scroll-right 30s linear infinite;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

.marquee-row:hover .marquee-track {
  animation-play-state: paused;
}

.category-card {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  padding-top: 16px;
  width: 142px;
  min-width: 142px;
  height: 177px;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  flex-shrink: 0;
}

.category-name {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  text-align: center;
  line-height: 1.2;
  padding: 0 4px;
  position: relative;
  z-index: 2;
}

.category-img {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 65%;
  overflow: hidden;
}

.category-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ========== Download CTA (inside categories) ========== */
.download-cta-inner {
  text-align: center;
  padding: 40px 40px 0;
}

.download-cta-label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 12px;
}

/* ========== Footer ========== */
.footer {
  background: linear-gradient(115deg, rgb(64, 10, 118) 6%, rgb(27, 5, 48) 94%);
  padding-top: 60px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand {
  flex: 0 0 auto;
}

.footer-logo {
  height: 58px;
  width: auto;
  margin-bottom: 8px;
}

.footer-tagline {
  font-family: "Inter", sans-serif;
  font-size: 9px;
  color: var(--white);
  letter-spacing: -0.27px;
  margin-bottom: 16px;
  padding-left: 45px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social a img {
  width: 20px;
  height: 20px;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.footer-social a:hover img {
  opacity: 1;
}

.footer-links {
  display: flex;
  gap: 100px;
}

.footer-col h4 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
  letter-spacing: 0.2px;
}

.footer-col p {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.16px;
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 40px;
}

.footer-bottom p {
  font-family: "IBM Plex Sans", "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.16px;
  max-width: 1280px;
  margin: 0 auto;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
}

/* ========== Responsive: Tablet (768px - 1024px) ========== */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 48px;
  }

  .hero-subtitle {
    font-size: 22px;
  }

  .business-title {
    font-size: 42px;
  }

  .business-heading {
    font-size: 38px;
  }

  .business-benefits li {
    font-size: 22px;
    line-height: 44px;
  }

  .business-content {
    flex-direction: column;
    align-items: center;
  }

  .business-right {
    flex: 0 0 auto;
    max-width: 400px;
  }

  .stores-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 40px;
  }

  .section-title-gradient,
  .section-title-white {
    font-size: 40px;
  }

  .hero-graph-left,
  .hero-graph-right {
    width: 220px;
  }

  .hero-phones {
    width: 400px;
  }
}

/* ========== Responsive: Mobile (< 768px) ========== */
@media (max-width: 768px) {
  .header-inner {
    padding: 16px 20px;
  }

  .logo img {
    height: 38px;
  }

  .btn-download-header {
    font-size: 14px;
    padding: 10px 24px;
    border-radius: 8px;
  }

  /* Hero */
  .hero {
    min-height: 600px;
    padding: 120px 20px 60px;
  }

  .hero-title {
    font-size: 34px;
  }

  .hero-subtitle {
    font-size: 18px;
    margin-bottom: 28px;
  }

  .hero-download-label {
    font-size: 16px;
  }

  .app-badges a img {
    height: 48px;
  }

  .app-badges {
    gap: 16px;
  }

  .hero-graph-left {
    width: 150px;
    left: -5%;
    top: 5%;
  }

  .hero-graph-right {
    width: 180px;
    right: -5%;
    top: 5%;
  }

  .hero-phones {
    width: 300px;
    opacity: 0.12;
  }

  /* Info Bar */
  .info-bar {
    padding: 12px 0px;
  }

  .info-bar p {
    font-size: 14px;
  }

  /* Business Section */
  .business-section {
    padding: 40px 20px 60px;
  }

  .business-badge {
    font-size: 22px;
  }

  .business-title {
    font-size: 32px;
  }

  .business-heading {
    font-size: 30px;
  }

  .business-benefits li {
    font-size: 18px;
    line-height: 38px;
  }

  .business-content {
    flex-direction: column;
  }

  .business-right {
    max-width: 320px;
    margin: 0 auto;
  }

  .business-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-list-store,
  .btn-more-details {
    font-size: 16px;
    padding: 10px 20px;
  }

  /* Featured Stores */
  .featured-stores {
    padding: 40px 20px 60px;
  }

  .section-title-gradient,
  .section-title-white {
    font-size: 32px;
    margin-bottom: 32px;
  }

  .stores-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .store-logo img {
    max-height: 48px;
  }

  /* Categories */
  .categories-section {
    padding: 40px 0 60px;
  }

  .category-card {
    width: 120px;
    min-width: 120px;
    height: 150px;
    border-radius: 14px;
  }

  .category-name {
    font-size: 13px;
  }

  .marquee-track {
    gap: 12px;
  }

  /* Download CTA */
  .download-cta {
    padding: 40px 20px;
  }

  .download-cta-label {
    font-size: 18px;
  }

  /* Footer */
  .footer {
    padding-top: 40px;
  }

  .footer-inner {
    padding: 0 20px;
  }

  .footer-top {
    flex-direction: column;
    gap: 32px;
  }

  .footer-links {
    gap: 48px;
  }

  .footer-bottom {
    padding: 16px 20px;
  }

  .footer-bottom p {
    font-size: 14px;
  }
}

/* ========== Responsive: Small Mobile (< 480px) ========== */
@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .app-badges a img {
    height: 42px;
  }

  .business-title {
    font-size: 26px;
  }

  .business-heading {
    font-size: 24px;
  }

  .business-benefits li {
    font-size: 15px;
    line-height: 32px;
  }

  .business-badge {
    font-size: 18px;
  }

  .section-title-gradient,
  .section-title-white {
    font-size: 26px;
    margin-bottom: 24px;
  }

  .category-card {
    width: 110px;
    min-width: 110px;
    height: 135px;
    border-radius: 12px;
  }

  .category-name {
    font-size: 12px;
  }

  .marquee-track {
    gap: 10px;
  }

  .stores-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .store-logo img {
    max-height: 40px;
  }

  .footer-links {
    flex-direction: column;
    gap: 24px;
  }
}
