/* Yagu Market Landing - Custom Styles */
:root {
  --primary: #3e00a3;
  --primary-light: #3e00a3;
  --bg-cream: #f8f5ee;
  --dark: #141822;
  --dark-lighter: #1e2533;
}

* {
  box-sizing: border-box;
}
body {
  font-family:
    "Plus Jakarta Sans",
    -apple-system,
    sans-serif;
  background: var(--bg-cream);
  color: #333;
}

/* Navbar */
.navbar {
  background: transparent !important;
}
.nav-link {
  color: #555 !important;
  font-weight: 700 !important;
}
.nav-link:hover {
  color: var(--primary) !important;
}
.btn-primary {
  background: var(--primary) !important;
  border: none !important;
}

/* Logo */
.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}
.logo-icon.purple {
  background: #3e00a3;
}
.header-logo {
  height: 46px;
  width: auto;
  object-fit: contain;
  border-radius: 10px;
}
.header-brand-text {
  font-size: 1.35rem;
  font-weight: 700;
  color: #141822;
}
.footer-brand-text {
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
}

/* Badge pill */
.badge-pill {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}
.badge-pill.light {
  background: var(--primary-light);
}

/* Hero Section */
.hero-section {
  padding-top: 2rem;
}
.hero-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
}

/* User avatars */
.avatar-group {
  display: flex;
  position: relative;
}
.avatar-group img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -10px;
  object-fit: cover;
}
.avatar-group img:first-child {
  margin-left: 0;
}
.avatar-play {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-left: -10px;
  border: 2px solid white;
}

/* Store buttons - qora fon, oq logo */
.store-btn,
.store-btn-dark {
  display: inline-block;
  transition: transform 0.2s;
  background: #000;
  padding: 12px 22px;
  border-radius: 8px;
}
.store-btn-footer {
  display: inline-block;
  transition: transform 0.2s;
  background: #fff;
  padding: 12px 22px;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.1);
}
.store-btn img,
.store-btn-dark img {
  height: 46px;
  max-width: 140px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1); /* oq rangda logo */
}
.store-btn-footer img {
  height: 46px;
  max-width: 140px;
  object-fit: contain;
  display: block;
  filter: invert(1); /* qora icon oq fonda */
}
.store-btn:hover,
.store-btn-dark:hover {
  transform: scale(1.05);
  background: #1a1a1a;
}
.store-btn-footer:hover {
  transform: scale(1.05);
  background: #f0f0f0;
}

/* Phone mockup - Hero */
.phone-mockup {
  position: relative;
  max-width: 320px;
  margin: 0 auto;
}
.phone-frame {
  width: 100%;
  display: block;
  position: relative;
  z-index: 2;
}
.phone-screen {
  position: absolute;
  top: 2.5%;
  left: 4.5%;
  right: 4.5%;
  bottom: 2.5%;
  border-radius: 28px;
  overflow: hidden;
  z-index: 1;
}
.phone-screen-image {
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transform: scale(1.02);
  transform-origin: center center;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  filter: contrast(1.08) brightness(1.03);
}

/* App UI inside phone */
.app-ui {
  background: white;
  height: 100%;
  padding: 16px;
  overflow-y: auto;
  font-size: 12px;
}
.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  color: #666;
}
.app-header i {
  font-size: 18px;
}
.balance-amount {
  font-size: 28px;
  font-weight: 700;
  margin: 8px 0;
}
.tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}
.tab {
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  cursor: pointer;
  background: #eee;
  color: #666;
}
.tab.active {
  background: var(--primary);
  color: white;
}
.history-section {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 11px;
  color: #666;
}
.line-chart {
  height: 80px;
  background: linear-gradient(
    180deg,
    rgba(74, 105, 189, 0.1) 0%,
    transparent 100%
  );
  border-radius: 8px;
  margin-bottom: 12px;
  position: relative;
}
.line-chart::after {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}
.credit-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 2px solid var(--primary);
  border-radius: 12px;
  margin-bottom: 12px;
}
.credit-progress {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.credit-card i {
  color: var(--primary);
  margin-left: auto;
}
.categories {
  display: flex;
  gap: 8px;
}
.cat-card {
  flex: 1;
  padding: 12px;
  background: #f5f5f5;
  border-radius: 10px;
  text-align: center;
}
.cat-card i {
  font-size: 20px;
  color: var(--primary);
  display: block;
  margin-bottom: 4px;
}
.cat-card span,
.cat-card small {
  display: block;
  font-size: 11px;
}

/* Hero decoration */
.hero-decoration {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
}
.hero-decoration .download-banner {
  width: 100vw;
  background: var(--dark);
  border-radius: 0;
  overflow: hidden;
  padding: 14px 0;
}
.hero-decoration .download-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  width: max-content;
  padding-left: 0;
  animation: download-carousel 80s linear infinite;
}
.hero-decoration .download-track span {
  color: #fff;
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
@keyframes download-carousel {
  from {
    transform: translateX(100vw);
  }
  to {
    transform: translateX(-100%);
  }
}

/* About Section */
.about-section {
  background: var(--bg-cream);
  margin-top: -2.25rem;
  position: relative;
  z-index: 2;
}
.about-page .about-section {
  margin-top: 0;
  padding-top: 3rem;
}
.about-section .container { max-width: 1200px; }
.about-section .row { row-gap: 2rem; }
.about-main-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.about-intro {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  line-height: 1.7;
}
.about-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
}
.about-text {
  font-size: 1rem;
  color: #444;
  line-height: 1.7;
}
.about-text-muted {
  color: #666;
  font-size: 0.95rem;
}
.privacy-content .about-text ul {
  padding-left: 1.5rem;
  margin-bottom: 0;
}
.privacy-content .about-text li {
  margin-bottom: 0.5rem;
}

/* Privacy Page - tartiblangan kartalar */
.privacy-card {
  background: #fff;
  padding: 1.75rem 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  height: 100%;
  transition: box-shadow 0.2s;
}
.privacy-card:hover {
  box-shadow: 0 8px 30px rgba(62,0,163,0.08);
}
.privacy-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.privacy-num {
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.privacy-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #333;
  margin: 0;
}
.privacy-desc {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.privacy-list {
  padding-left: 1.25rem;
  margin: 0;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.8;
}
.privacy-list li {
  margin-bottom: 0.35rem;
}
.privacy-list li::marker {
  color: var(--primary);
}
.privacy-card-sm .privacy-title {
  font-size: 1.1rem;
}
.privacy-card-sm .privacy-desc {
  font-size: 0.95rem;
}
.advantage-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  height: 100%;
  transition: transform 0.2s, box-shadow 0.2s;
}
.advantage-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(62,0,163,0.12);
}
.advantage-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.advantage-card:hover .advantage-icon {
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(62, 0, 163, 0.2);
}
/* Handshake - oltin/sariq gradient */
.advantage-icon-handshake {
  background: linear-gradient(135deg, #fff8e7 0%, #fef3d4 100%);
  color: #d4a017;
  box-shadow: 0 4px 12px rgba(212, 160, 23, 0.15);
}
/* Support - binafsha gradient */
.advantage-icon-support {
  background: linear-gradient(135deg, #f0ebff 0%, #e8e0ff 100%);
  color: var(--primary);
  box-shadow: 0 4px 12px rgba(62, 0, 163, 0.15);
}
/* Rating - oltin yulduz */
.advantage-icon-rating {
  background: linear-gradient(135deg, #fffbf0 0%, #fef7e0 100%);
  color: #e6b800;
  box-shadow: 0 4px 12px rgba(230, 184, 0, 0.2);
}
/* Interface - mint/binafsha */
.advantage-icon-interface {
  background: linear-gradient(135deg, #e8f5f0 0%, #e0f0eb 100%);
  color: #0d9488;
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.15);
}
/* Local/Mahalliy - yashil gradient */
.advantage-icon-local {
  background: linear-gradient(135deg, #e8f5e9 0%, #dcf0dd 100%);
  color: #2e7d32;
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.15);
}
.advantage-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.5rem;
}
.advantage-text {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
  line-height: 1.5;
}
.about-cta {
  margin-top: 3rem;
}
.about-cta-card {
  background: linear-gradient(135deg, var(--primary) 0%, #5a1fc9 100%);
  padding: 3rem;
  border-radius: 24px;
  text-align: center;
  color: #fff;
}
.about-cta-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.about-cta-text {
  font-size: 1.1rem;
  opacity: 0.95;
  margin-bottom: 1.5rem;
}
.about-cta-buttons .btn-primary {
  background: #fff !important;
  color: var(--primary) !important;
  border: none;
}
.about-cta-buttons .btn-outline-primary {
  border-color: #fff;
  color: #fff;
}
.about-cta-buttons .btn-outline-primary:hover {
  background: rgba(255,255,255,0.2);
  color: #fff;
  border-color: #fff;
}

/* Interface Section */
.interface-section {
  background: var(--bg-cream);
  margin-top: -2.25rem;
  position: relative;
  z-index: 2;
}
.section-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
}
.interface-section .container {
  max-width: 1200px;
}
.interface-section .section-title {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}
.interface-section .row {
  row-gap: 2rem;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 24px;
  justify-items: center;
  align-content: center;
  max-width: 320px;
  margin: 0 auto;
}
.stats-grid-3 {
  grid-template-columns: repeat(3, minmax(90px, 1fr));
  max-width: 400px;
}
.stat-circle {
  width: 120px;
  height: 120px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.stat-num {
  font-size: 1.5rem;
  font-weight: 700;
}
.stat-circle span:last-child {
  font-size: 0.8rem;
  color: #666;
}

/* Phone mockup small */
.phone-mockup-sm {
  position: relative;
  max-width: 260px;
  margin: 0 auto;
}
.interface-section .col-lg-4:last-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.phone-screen-sm {
  position: absolute;
  top: 2.5%;
  left: 4%;
  right: 4%;
  bottom: 2.5%;
  border-radius: 9%;
  overflow: hidden;
}
.phone-screen-sm .phone-screen-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.tasks-screen .nav-tabs-app {
  display: flex;
  gap: 8px;
  margin: 12px 0;
}
.tasks-screen .nav-tabs-app span {
  padding: 4px 12px;
  font-size: 11px;
  color: #666;
}
.tasks-screen .nav-tabs-app span.active {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
}
.task-card {
  padding: 12px;
  border-radius: 10px;
  margin-bottom: 8px;
}
.task-card.purple {
  background: #7c6ee8;
  color: white;
}
.task-card.pink {
  background: #e8b4d4;
  color: #333;
}
.progress-bar-app {
  height: 6px;
  background: #eee;
  border-radius: 3px;
  overflow: hidden;
}
.progress-bar-app::after {
  content: "";
  display: block;
  width: 60%;
  height: 100%;
  background: var(--primary);
  border-radius: 3px;
}
.task-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-top: 1px solid #eee;
  font-size: 12px;
}
.bottom-nav {
  display: flex;
  justify-content: space-around;
  padding: 12px 0;
  margin-top: auto;
  font-size: 20px;
  color: #999;
}

/* Video thumbnail */
.video-thumb {
  width: 200px;
  height: 120px;
  background: var(--primary);
  border-radius: 12px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-btn {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 24px;
}
.video-text {
  position: absolute;
  font-size: 10px;
  font-weight: 700;
  color: white;
  opacity: 0.5;
  letter-spacing: 4px;
  transform: rotate(-90deg);
}

/* Features bar */
.features-bar {
  background: var(--dark);
  color: white;
  padding: 20px 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6rem;
}
.features-bar .dot {
  opacity: 0.5;
  font-size: 0.65rem;
  line-height: 1;
}
.features-bar span:not(.badge-pill):not(.dot) {
  font-size: 0.9rem;
}

/* How it works */
.how-it-works {
  padding: 4rem 0 5rem;
  margin-bottom: 0;
}
.steps-card {
  background: var(--dark);
  padding: 4rem 3rem;
  border-radius: 24px;
  position: relative;
}
.step-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 28px;
  color: white;
}
.platform-icons {
  display: flex;
  justify-content: center;
  gap: 12px;
  font-size: 24px;
  color: white;
}
.step-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.step-numbers span {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}
.step-numbers .dash {
  width: 60px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
}

/* Reviews */
.reviews-section {
  background: var(--bg-cream);
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}
.reviews-title {
  font-size: 2rem;
  font-weight: 700;
}
.smiley-face svg {
  opacity: 0.8;
}
.reviews-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.review-card {
  background: white;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

/* App screens - mini phones */
.app-screens {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.app-screens .row.g-4.justify-content-center {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 1.5rem;
}
.app-screens .row.g-4.justify-content-center > [class*="col-"] {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.phone-mockup-mini {
  position: relative;
  max-width: 300px;
  margin: 0 auto;
}
.app-screens .phone-mockup-large {
  max-width: 420px;
}
.phone-frame-mini {
  width: 100%;
  display: block;
  position: relative;
  z-index: 2;
}
.phone-screen-mini {
  position: absolute;
  top: 2.5%;
  left: 4%;
  right: 4%;
  bottom: 2.5%;
  border-radius: 9%;
  overflow: hidden;
  z-index: 1;
}
.app-screens .phone-screen-mini {
  display: block;
}
.app-screens .phone-screen-mini .phone-screen-image {
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  filter: contrast(1.08) brightness(1.03);
}
.app-ui-mini {
  background: white;
  height: 100%;
  padding: 10px;
  font-size: 9px;
}
.mini-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.mini-tabs {
  display: flex;
  gap: 4px;
  margin: 6px 0;
}
.mini-tabs span {
  padding: 4px 10px;
  border-radius: 10px;
  font-size: 8px;
  background: #eee;
  color: #666;
}
.mini-tabs span.active {
  background: var(--primary);
  color: white;
}
.mini-history {
  display: flex;
  justify-content: space-between;
  font-size: 8px;
  margin-bottom: 4px;
}
.mini-chart {
  height: 30px;
  background: rgba(74, 105, 189, 0.1);
  border-radius: 6px;
  margin-bottom: 8px;
}
.mini-credit {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px;
  border: 1px solid var(--primary);
  border-radius: 8px;
  margin-bottom: 8px;
}
.mini-credit .circle {
  width: 28px;
  height: 28px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 700;
}
.mini-cats {
  display: flex;
  gap: 4px;
}
.mini-cats > div {
  flex: 1;
  padding: 6px;
  background: #f5f5f5;
  border-radius: 6px;
  text-align: center;
}
.mini-cats i {
  color: var(--primary);
  display: block;
  margin-bottom: 2px;
}
.account-cards {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}
.account-cards > div {
  flex: 1;
  padding: 8px;
  background: white;
  border: 1px solid #eee;
  border-radius: 8px;
  text-align: center;
}
.account-cards i {
  color: var(--primary);
  display: block;
  margin-bottom: 4px;
}
.mini-transactions > div {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-size: 10px;
}
.avatar-s {
  width: 28px;
  height: 28px;
  background: #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}
.mini-bars {
  height: 40px;
  background: repeating-linear-gradient(
    90deg,
    var(--primary) 0px,
    var(--primary) 8px,
    transparent 8px,
    transparent 16px
  );
  background-size: 100% 100%;
  border-radius: 6px;
  margin-bottom: 12px;
}
.mini-nav {
  display: flex;
  justify-content: space-around;
  font-size: 16px;
  color: #999;
  padding-top: 8px;
}
.card-display {
  padding: 16px;
  background: var(--primary);
  color: white;
  border-radius: 12px;
  margin-bottom: 12px;
}
.card-display span {
  font-size: 12px;
  opacity: 0.9;
}
.card-display h6 {
  margin: 4px 0 0;
  font-size: 18px;
}
.card-actions {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}
.btn-mini {
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 10px;
  background: #eee;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.btn-mini.active {
  background: var(--primary);
  color: white;
}

/* Download section */
.download-section {
  position: relative;
  overflow: hidden;
}
.phones-stack {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
}
.download-section .phone-wrapper {
  display: none;
}
.download-section .phones-stack {
  min-height: 0;
}
.phone-wrapper {
  position: absolute;
  max-width: 280px;
}
.phone-wrapper.left {
  left: 15%;
  transform: rotate(-8deg);
}
.phone-wrapper.right {
  right: 15%;
  transform: rotate(8deg);
  z-index: 2;
}
.phone-frame-stack {
  width: 100%;
}
.phone-screen-stack {
  position: absolute;
  top: 4%;
  left: 6%;
  right: 6%;
  bottom: 4%;
  border-radius: 22px;
  overflow: hidden;
}
.download-section .phone-screen-stack {
  display: none;
}
.cards-screen .card-display-full {
  padding: 20px;
  background: var(--primary);
  color: white;
  border-radius: 16px;
  margin-bottom: 16px;
}
.card-display-full h3 {
  font-size: 24px;
  margin: 8px 0 0;
}
.action-btns {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.btn-transfer {
  flex: 1;
  padding: 12px 20px;
  background: var(--primary);
  color: white;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-round {
  width: 48px;
  height: 48px;
  background: white;
  border: 1px solid #eee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
}
.transactions-list .trans-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid #eee;
}
.transactions-list .trans-item div small {
  display: block;
}
.download-buttons {
  display: none;
}

/* Footer */
.footer {
  background: var(--dark);
  color: white;
}
.newsletter-form .form-control {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
}
.newsletter-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.social-icons a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.social-icons a:hover {
  background: var(--primary);
  border-color: var(--primary);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-bottom-text,
.footer-text {
  color: rgba(255, 255, 255, 0.9) !important;
}
.footer .footer-bottom-text:hover,
.footer .footer-bottom-text a:hover {
  color: #fff !important;
}
.footer-text-light {
  color: rgba(255, 255, 255, 0.85) !important;
}

/* Footer mobile */
@media (max-width: 768px) {
  .footer-main-row {
    text-align: center;
  }
  .footer-main-row .navbar-brand {
    justify-content: center;
  }
  .footer-main-row h5,
  .footer-main-row p {
    text-align: center;
  }
  .newsletter-form {
    flex-direction: column;
    max-width: 100%;
  }
  .newsletter-form .form-control {
    width: 100%;
  }
  .newsletter-form .btn {
    width: 100%;
  }
  .social-icons {
    justify-content: center;
  }
  .footer-download-col {
    text-align: center;
  }
  .footer-download-buttons {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .footer-download-buttons .store-btn-footer {
    width: 100%;
    max-width: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .footer-download-buttons .store-btn-footer img {
    height: 40px;
  }
  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer-nav-sep {
    opacity: 0.5;
    font-size: 0.7rem;
  }
  .footer-nav a {
    padding: 0 2px;
  }
  .footer-bottom-text {
    font-size: 0.8rem !important;
  }
}

/* Responsive */
@media (max-width: 992px) {
  .interface-section .section-title {
    font-size: 1.7rem;
  }
  .interface-section .col-lg-4:last-child {
    align-items: center;
    text-align: center;
  }
  .phone-wrapper.left {
    left: 5%;
  }
  .phone-wrapper.right {
    right: 5%;
  }
  .download-buttons {
    margin-top: 380px;
  }
}
@media (max-width: 768px) {
  .interface-section {
    margin-top: -1rem;
  }

  .hero-section {
    min-height: auto;
    padding-top: 1rem;
  }
  .hero-section .row {
    row-gap: 1.5rem;
  }
  .hero-section .col-lg-6:first-child {
    text-align: center;
  }
  .hero-section .user-avatars {
    justify-content: center;
  }
  .hero-section .store-btn {
    padding: 10px 16px;
  }
  .hero-section .store-btn img {
    height: 38px;
  }
  .hero-section .col-lg-6:first-child .d-flex.gap-3.flex-wrap {
    justify-content: center;
    margin-bottom: 1.25rem;
  }
  .hero-section .col-lg-6.position-relative {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
  }
  .hero-section .phone-mockup {
    max-width: 340px;
    margin-top: 2.5rem;
  }
  .hero-section .phone-mockup::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 12%;
    width: 78%;
    height: 52%;
    transform: translateX(-50%) rotate(-8deg);
    background: var(--primary);
    border-radius: 26px;
    z-index: 0;
  }
  .hero-section .phone-frame {
    position: relative;
    z-index: 2;
  }
  .hero-section .phone-screen {
    top: 2.5%;
    left: 4.5%;
    right: 4.5%;
    bottom: 2.5%;
  }
  .hero-section .app-ui {
    padding: 14px;
    font-size: 11px;
  }
  .hero-section .balance-amount {
    font-size: 2.3rem;
  }
  .hero-section .tab {
    padding: 7px 16px;
  }
  .hero-section .cat-card {
    padding: 10px 8px;
  }
  .hero-decoration {
    margin-top: 1rem;
  }
  .hero-decoration .download-banner {
    border-radius: 0;
    padding: 10px 0;
  }
  .hero-decoration .download-track {
    gap: 1.2rem;
    animation-duration: 70s;
  }
  .hero-decoration .download-track span {
    font-size: 1rem;
  }

  .phones-stack {
    min-height: 400px;
  }
  .phone-wrapper {
    max-width: 220px;
  }
  .phone-wrapper.left {
    left: 0;
  }
  .phone-wrapper.right {
    right: 0;
  }
  .download-buttons {
    margin-top: 350px;
  }
  .section-title {
    font-size: 1.5rem;
  }
  .stats-grid {
    gap: 16px;
  }
  .features-bar {
    padding: 16px 20px;
    margin-top: 4rem;
  }
  .app-screens {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .app-screens .row.g-4.justify-content-center {
    display: none;
  }
  .app-screens .text-center.mb-5 {
    display: none;
  }
  .download-section {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .download-section .phones-stack {
    display: none;
  }
  .download-section .download-banner {
    display: none;
  }
  .download-buttons {
    display: none;
  }
  .reviews-section {
    padding-bottom: 2rem !important;
  }
  .reviews-section .col-lg-5 {
    text-align: center;
  }
  .reviews-section .col-lg-5 .d-flex.align-items-center.gap-2.mb-3 {
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
  }
  .reviews-section .smiley-face {
    display: flex;
    justify-content: center;
  }
  .reviews-section .smiley-face.mt-5 {
    margin-top: 3rem !important;
    margin-bottom: 2rem !important;
  }
  .privacy-card {
    padding: 1.25rem 1.5rem;
  }
  .privacy-title {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .hero-section .phone-mockup {
    max-width: 320px;
  }
  .hero-section .balance-amount {
    font-size: 2.1rem;
  }
}
