/* =========================================
   LIVRAONE LANDING PAGE - MODERN UI
   ========================================= */

:root {
  --yellow: #F5C400;
  --yellow-dark: #e0b000;
  --yellow-light: #fff8e1;
  --black: #111111;
  --dark: #1a1a1a;
  --gray: #6b7280;
  --gray-light: #f9fafb;
  --white: #ffffff;
  --border: #e5e7eb;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow: 0 4px 24px rgba(0,0,0,.10);
  --shadow-lg: 0 8px 48px rgba(0,0,0,.14);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: 'Poppins', sans-serif; font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.25rem; }
p  { font-size: 1.05rem; color: var(--gray); }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.section-tag {
  display: inline-block;
  background: var(--yellow-light);
  color: var(--yellow-dark);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.section-heading {
  margin-bottom: 1rem;
  color: var(--black);
}

.section-sub {
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto 2.5rem;
  color: var(--gray);
}

/* ── NAVBAR ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.1rem 0;
  transition: var(--transition);
  background: transparent;
}

#navbar.scrolled {
  background: rgba(17,17,17,.96);
  backdrop-filter: blur(16px);
  padding: .75rem 0;
  box-shadow: 0 2px 24px rgba(0,0,0,.18);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
}

.nav-logo img {
  height: 44px;
  width: 44px;
  border-radius: 12px;
  object-fit: cover;
}

.nav-logo span {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--white);
  letter-spacing: -.01em;
}

.nav-logo span em {
  color: var(--yellow);
  font-style: normal;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,.8);
  font-size: .95rem;
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--yellow);
  border-radius: 2px;
  transition: width var(--transition);
}

.nav-links a:hover { color: var(--yellow); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--yellow);
  color: var(--black) !important;
  font-weight: 700 !important;
  padding: .6rem 1.4rem;
  border-radius: 50px;
  transition: background var(--transition), transform var(--transition) !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  background: var(--yellow-dark) !important;
  transform: translateY(-1px);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .4rem;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── HERO / SLIDER ── */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--black);
}

.hero-slides {
  position: relative;
  height: 100vh;
  min-height: 600px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity .9s ease;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: all;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 8s ease;
}

.hero-slide.active .hero-slide-bg {
  transform: scale(1);
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(17,17,17,.92) 0%, rgba(17,17,17,.55) 55%, rgba(17,17,17,.2) 100%);
}

.hero-slide-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  padding-top: 5rem;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(245,196,0,.15);
  border: 1px solid rgba(245,196,0,.3);
  color: var(--yellow);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  animation: fadeInUp .6s ease both;
}

.hero-tag svg { width: 14px; height: 14px; }

.hero-title {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  color: var(--white);
  max-width: 650px;
  margin-bottom: 1.2rem;
  animation: fadeInUp .7s ease .1s both;
}

.hero-title span { color: var(--yellow); }

.hero-desc {
  color: rgba(255,255,255,.72);
  font-size: 1.1rem;
  max-width: 500px;
  margin-bottom: 2.2rem;
  animation: fadeInUp .7s ease .2s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fadeInUp .7s ease .3s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
  font-size: 1rem;
  padding: .9rem 2rem;
  border-radius: 50px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(245,196,0,.35);
}

.btn-primary:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245,196,0,.45);
  color: var(--black);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  border: 2px solid rgba(255,255,255,.35);
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  padding: .85rem 1.8rem;
  border-radius: 50px;
  transition: border-color var(--transition), background var(--transition);
}

.btn-outline:hover {
  border-color: var(--yellow);
  background: rgba(245,196,0,.08);
  color: var(--yellow);
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
  animation: fadeInUp .7s ease .4s both;
}

.hero-stat-value {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
}

.hero-stat-label {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  margin-top: .25rem;
}

/* Slider controls */
.hero-controls {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: .75rem;
  z-index: 10;
}

.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.hero-dot.active {
  background: var(--yellow);
  width: 28px;
  border-radius: 4px;
}

.hero-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  z-index: 10;
  pointer-events: none;
}

.hero-arrow {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.25);
  background: rgba(17,17,17,.4);
  backdrop-filter: blur(8px);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: all;
  transition: var(--transition);
}

.hero-arrow:hover {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--black);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  z-index: 10;
  color: rgba(255,255,255,.45);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--yellow), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--yellow);
  padding: 1.2rem 0;
  overflow: hidden;
}

.trust-track {
  display: flex;
  gap: 3.5rem;
  align-items: center;
  animation: marquee 22s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: var(--black);
  font-weight: 600;
  font-size: .95rem;
  flex-shrink: 0;
}

.trust-item svg { opacity: .7; }

/* ── SERVICES SECTION ── */
.services {
  padding: 7rem 0;
  background: var(--white);
}

.services .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.services-header {
  text-align: center;
  margin-bottom: 4rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.8rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: var(--yellow-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--yellow);
}

.service-icon svg { width: 28px; height: 28px; color: var(--yellow-dark); }
.service-card:hover .service-icon svg { color: var(--black); }

.service-title {
  font-size: 1.15rem;
  color: var(--black);
  margin-bottom: .6rem;
}

.service-desc {
  font-size: .94rem;
  color: var(--gray);
  line-height: 1.65;
}

/* ── HOW IT WORKS ── */
.how-it-works {
  padding: 7rem 0;
  background: var(--gray-light);
}

.how-it-works .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.how-header { text-align: center; margin-bottom: 4rem; }

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

.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(to right, var(--yellow), var(--yellow-dark));
  border-radius: 2px;
  z-index: 0;
}

.step-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.step-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.step-number {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.4rem;
  box-shadow: 0 4px 16px rgba(245,196,0,.35);
}

.step-title {
  color: var(--black);
  margin-bottom: .6rem;
  font-size: 1.05rem;
}

.step-desc {
  font-size: .9rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ── FEATURES SPLIT ── */
.features {
  padding: 7rem 0;
  background: var(--white);
}

.features .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.features-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 6rem;
}

.features-row:last-child { margin-bottom: 0; }

.features-row.reverse .features-visual { order: -1; }

.features-visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.phone-mockup {
  background: var(--black);
  border-radius: 36px;
  border: 8px solid #2a2a2a;
  box-shadow: 0 32px 80px rgba(0,0,0,.25), 0 0 0 1px rgba(255,255,255,.05);
  overflow: hidden;
  max-width: 260px;
  margin: 0 auto;
  position: relative;
}

.phone-mockup::before {
  content: '';
  display: block;
  width: 80px; height: 24px;
  background: var(--black);
  border-radius: 0 0 16px 16px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.phone-screen {
  background: linear-gradient(160deg, var(--yellow) 0%, var(--yellow-dark) 100%);
  padding: 1.5rem;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  gap: .8rem;
}

.phone-screen-header {
  background: var(--black);
  border-radius: 12px;
  padding: .9rem 1rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}

.phone-screen-dot { width: 8px; height: 8px; border-radius: 50%; }
.phone-screen-dot.y { background: var(--yellow); }
.phone-screen-dot.w { background: rgba(255,255,255,.3); }

.phone-screen-line {
  background: rgba(0,0,0,.12);
  border-radius: 8px;
  height: .7rem;
}

.phone-card {
  background: var(--white);
  border-radius: 12px;
  padding: .9rem;
  display: flex;
  align-items: center;
  gap: .7rem;
}

.phone-card-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--yellow-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.phone-card-text { flex: 1; }

.phone-card-title {
  height: .55rem;
  background: var(--dark);
  border-radius: 4px;
  width: 70%;
  margin-bottom: .35rem;
}

.phone-card-sub {
  height: .45rem;
  background: var(--border);
  border-radius: 4px;
  width: 50%;
}

.features-badge {
  position: absolute;
  background: var(--white);
  border-radius: 14px;
  padding: .75rem 1.1rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: .6rem;
  font-weight: 600;
  font-size: .85rem;
  color: var(--dark);
}

.features-badge.top-right {
  top: 1rem;
  right: -1.5rem;
}

.features-badge.bottom-left {
  bottom: 1rem;
  left: -1.5rem;
}

.badge-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
}

.features-content { max-width: 480px; }

.features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.8rem;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  color: var(--gray);
  font-size: .97rem;
}

.check-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: .1rem;
}

/* ── STATS SECTION ── */
.stats {
  padding: 5.5rem 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  top: -60%;
  left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,196,0,.12) 0%, transparent 70%);
  border-radius: 50%;
}

.stats .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {}

.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: .4rem;
}

.stat-label {
  color: rgba(255,255,255,.55);
  font-size: .95rem;
}

/* ── DOWNLOAD SECTION ── */
.download {
  padding: 7rem 0;
  background: linear-gradient(135deg, #111111 0%, #1e1e1e 50%, #111111 100%);
  position: relative;
  overflow: hidden;
}

.download::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -5%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,196,0,.08) 0%, transparent 65%);
  border-radius: 50%;
}

.download::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: 5%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,196,0,.06) 0%, transparent 65%);
  border-radius: 50%;
}

.download .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.download-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5rem;
  align-items: center;
}

.download-content {}

.download-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(245,196,0,.12);
  border: 1px solid rgba(245,196,0,.25);
  color: var(--yellow);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.download-title {
  color: var(--white);
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.download-title span { color: var(--yellow); }

.download-desc {
  color: rgba(255,255,255,.6);
  font-size: 1.05rem;
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.download-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.store-badge {
  display: flex;
  align-items: center;
  gap: .8rem;
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: .9rem 1.6rem;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.store-badge:hover {
  background: rgba(245,196,0,.1);
  border-color: rgba(245,196,0,.4);
  transform: translateY(-2px);
  color: inherit;
}

.store-badge.disabled {
  opacity: .5;
  cursor: not-allowed;
  pointer-events: none;
}

.store-badge-icon svg { width: 28px; height: 28px; }

.store-badge-text-small {
  font-size: .7rem;
  color: rgba(255,255,255,.5);
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1;
  display: block;
  margin-bottom: .2rem;
}

.store-badge-text-big {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  display: block;
}

.coming-soon-pill {
  display: inline-block;
  background: rgba(245,196,0,.18);
  color: var(--yellow);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .2rem .6rem;
  border-radius: 50px;
  margin-left: .5rem;
  vertical-align: middle;
}

.download-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.qr-wrapper {
  background: var(--white);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 8px 48px rgba(0,0,0,.35), 0 0 0 1px rgba(245,196,0,.15);
  text-align: center;
}

.qr-wrapper img {
  width: 180px; height: 180px;
  border-radius: 8px;
  display: block;
  margin: 0 auto 1rem;
}

.qr-label {
  font-size: .82rem;
  color: var(--gray);
  font-weight: 500;
}

.qr-sublabel {
  font-size: .75rem;
  color: #aaa;
  margin-top: .2rem;
}

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 7rem 0;
  background: var(--gray-light);
}

.testimonials .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.8rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}

.testimonial-stars {
  display: flex;
  gap: .2rem;
  margin-bottom: 1rem;
  color: var(--yellow);
}

.testimonial-text {
  color: var(--dark);
  font-size: .96rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: .9rem;
}

.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--black);
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: .95rem;
  color: var(--dark);
}

.testimonial-loc {
  font-size: .82rem;
  color: var(--gray);
}

/* ── ABOUT SECTION ── */
.about {
  padding: 7rem 0;
  background: var(--white);
}

.about .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-main {
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--black) 0%, #2a2a2a 100%);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-graphic {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #111 0%, #1e1e1e 100%);
  position: relative;
  min-height: 320px;
}

.about-logo-big {
  width: 120px;
  height: 120px;
  background: var(--yellow);
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 24px 64px rgba(245,196,0,.35);
}

.about-logo-big svg { width: 64px; height: 64px; }

.about-float {
  position: absolute;
  background: var(--white);
  border-radius: 16px;
  padding: 1rem 1.3rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: .7rem;
  font-weight: 600;
  font-size: .88rem;
  color: var(--dark);
}

.about-float.f1 { top: 1.5rem; right: -1.5rem; }
.about-float.f2 { bottom: 1.5rem; left: -1.5rem; }

.float-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-content {}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 2rem;
}

.value-card {
  padding: 1.2rem;
  background: var(--gray-light);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.value-card-icon {
  font-size: 1.5rem;
  margin-bottom: .5rem;
}

.value-card-title {
  font-size: .95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .3rem;
}

.value-card-text {
  font-size: .85rem;
  color: var(--gray);
}

/* ── CONTACT SECTION ── */
.contact {
  padding: 7rem 0;
  background: var(--gray-light);
}

.contact .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.contact-info {}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(245,196,0,.3);
}

.contact-item-icon svg { width: 22px; height: 22px; color: var(--black); }

.contact-item-label {
  font-size: .82rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
}

.contact-item-value {
  font-size: 1rem;
  color: var(--dark);
  font-weight: 600;
  margin-top: .15rem;
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.form-title {
  font-size: 1.3rem;
  color: var(--black);
  margin-bottom: 1.8rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: .45rem;
}

.form-control {
  width: 100%;
  padding: .85rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: .97rem;
  color: var(--dark);
  background: var(--gray-light);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(245,196,0,.15);
  background: var(--white);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  width: 100%;
  padding: .95rem;
  background: var(--yellow);
  color: var(--black);
  border: none;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(245,196,0,.3);
}

.form-submit:hover {
  background: var(--yellow-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(245,196,0,.4);
}

/* ── FOOTER ── */
footer {
  background: var(--black);
  color: rgba(255,255,255,.65);
  padding-top: 5rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: 1.2rem;
}

.footer-brand-logo img {
  height: 42px;
  width: 42px;
  border-radius: 12px;
  object-fit: cover;
}

.footer-brand-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--white);
}

.footer-brand-name em {
  color: var(--yellow);
  font-style: normal;
}

.footer-desc {
  font-size: .92rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,.5);
}

.footer-socials {
  display: flex;
  gap: .7rem;
}

.social-btn {
  width: 38px; height: 38px;
  border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.55);
  transition: var(--transition);
}

.social-btn:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  background: rgba(245,196,0,.08);
}

.social-btn svg { width: 16px; height: 16px; }

.footer-col-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  color: var(--white);
  margin-bottom: 1.3rem;
  letter-spacing: .02em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}

.footer-links a {
  color: rgba(255,255,255,.5);
  font-size: .9rem;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: .4rem;
}

.footer-links a:hover { color: var(--yellow); }

.footer-store-btns {
  display: flex;
  flex-direction: column;
  gap: .8rem;
}

.footer-store-btn {
  display: flex;
  align-items: center;
  gap: .7rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  padding: .7rem 1rem;
  transition: var(--transition);
  color: inherit;
}

.footer-store-btn:hover {
  background: rgba(245,196,0,.08);
  border-color: rgba(245,196,0,.3);
  color: inherit;
}

.footer-store-btn svg { width: 22px; height: 22px; color: rgba(255,255,255,.7); }

.footer-store-btn-text-sm {
  font-size: .68rem;
  color: rgba(255,255,255,.4);
  display: block;
  line-height: 1;
  margin-bottom: .15rem;
}

.footer-store-btn-text-lg {
  font-size: .9rem;
  font-weight: 700;
  color: rgba(255,255,255,.85);
  display: block;
  line-height: 1;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: .85rem;
  color: rgba(255,255,255,.3);
}

.footer-copy a { color: var(--yellow); }

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer-bottom-links a {
  font-size: .85rem;
  color: rgba(255,255,255,.3);
  transition: color var(--transition);
}

.footer-bottom-links a:hover { color: var(--yellow); }

/* ── MOBILE NAV ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(17,17,17,.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  transition: color var(--transition);
}

.mobile-menu a:hover { color: var(--yellow); }

.mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: .5rem;
}

/* ── SVG HERO ILLUSTRATION SYSTEM ── */
.hero-slide-bg { overflow: hidden; }
.hero-slide-bg svg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: block; }

/* Stars twinkling */
@keyframes twinkle1 { 0%,100%{opacity:.9} 50%{opacity:.2} }
@keyframes twinkle2 { 0%,100%{opacity:.75} 50%{opacity:.1} }
@keyframes twinkle3 { 0%,100%{opacity:.85} 50%{opacity:.35} }
.star-t1 { animation: twinkle1 3.2s ease-in-out infinite; }
.star-t2 { animation: twinkle2 4.1s ease-in-out infinite 1.2s; }
.star-t3 { animation: twinkle3 2.8s ease-in-out infinite 0.6s; }

/* Scooter bounce */
@keyframes scooterBounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-4px)} }
.scooter-bounce { animation: scooterBounce 0.45s ease-in-out infinite; transform-box: fill-box; transform-origin: center bottom; }

/* Pin float */
.pin-float { animation: float 3.5s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }

/* Icon floats (4 variants for 4 store icons) */
@keyframes ifloat2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
@keyframes ifloat3 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.icon-float-1 { animation: float 3.8s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
.icon-float-2 { animation: ifloat2 4.5s ease-in-out infinite 0.8s; transform-box: fill-box; transform-origin: center; }
.icon-float-3 { animation: ifloat3 3.2s ease-in-out infinite 1.5s; transform-box: fill-box; transform-origin: center; }
.icon-float-4 { animation: float 4s ease-in-out infinite 2.2s; transform-box: fill-box; transform-origin: center; }

/* Card floats for slide 3 */
@keyframes cf1 { 0%,100%{transform:translateY(0) rotate(-2deg)} 50%{transform:translateY(-10px) rotate(-1deg)} }
@keyframes cf2 { 0%,100%{transform:translateY(0) rotate(1.5deg)} 50%{transform:translateY(-14px) rotate(0.5deg)} }
@keyframes cf3 { 0%,100%{transform:translateY(0) rotate(-1deg)} 50%{transform:translateY(-8px) rotate(0deg)} }
.card-float-1 { animation: cf1 4s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
.card-float-2 { animation: cf2 5s ease-in-out infinite 1s; transform-box: fill-box; transform-origin: center; }
.card-float-3 { animation: cf3 3.5s ease-in-out infinite 2s; transform-box: fill-box; transform-origin: center; }

/* Animated route dash (slide 3) */
@keyframes dashMove { to { stroke-dashoffset: -800; } }
.route-line { animation: dashMove 6s linear infinite; }

/* Glow pulse */
@keyframes glowPulse { 0%,100%{opacity:.1} 50%{opacity:.22} }
.glow-pulse { animation: glowPulse 3s ease-in-out infinite; }
.glow-pulse-2 { animation: glowPulse 4s ease-in-out infinite 1.5s; }

/* ── ANIMATIONS ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: .4; transform: scaleY(.7); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.float-anim { animation: float 4s ease-in-out infinite; }

/* Reveal animations */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

[data-reveal-delay="1"] { transition-delay: .1s; }
[data-reveal-delay="2"] { transition-delay: .2s; }
[data-reveal-delay="3"] { transition-delay: .3s; }
[data-reveal-delay="4"] { transition-delay: .4s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .features-row { grid-template-columns: 1fr; gap: 3rem; }
  .features-row.reverse .features-visual { order: 0; }
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .download-inner { grid-template-columns: 1fr; gap: 3rem; align-items: center; }
  .download-visual { order: -1; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .steps-grid::before { display: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero-stats { gap: 1.5rem; }
  .hero-arrows { display: none; }
  .features-badge { display: none; }
  .about-float { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .download-badges { flex-direction: column; align-items: flex-start; }
  .about-values { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .section-heading { font-size: 1.7rem; }
  .hero-stat-value { font-size: 1.4rem; }
  .services-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
}
