/* =============================================
   TOKENS
============================================= */
:root {
  --green-dark:   #1F803A;
  --green-mid:    #58A23C;
  --blue-dark:    #2C439F;
  --blue-bright:  #2B69B7;
  --blue-light:   #2A8ECF;
  --orange:       #F3702A;
  --gold:         #F89B36;
  --navy:         #0D1B4B;
  --navy-deep:    #080F2E;
  --white:        #FFFFFF;
  --off-white:    #F4F7FF;
  --text-muted:   #8A96B4;
  --border:       rgba(255,255,255,0.08);
  --border-dark: rgba(255,255,255,0.12);
  --font-display: 'Syne', sans-serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  40px;

  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* =============================================
   RESET & BASE
============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--navy);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* =============================================
   SCROLLBAR
============================================= */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy-deep); }
::-webkit-scrollbar-thumb { background: var(--blue-bright); border-radius: 3px; }

/* =============================================
   NAV
============================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 82px;
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  transition: background var(--transition), backdrop-filter var(--transition);
}
.nav.scrolled {
  background: rgba(8,15,46,0.93);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-img {
    width: auto;
    height: 70px;
    object-fit: contain;
}
.nav-logo-mark {
  width: 80px;
  height: 100px;
  object-fit: contain;
}
.nav-logo-text { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: white; }
.nav-logo-text span { color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.7); transition: color var(--transition); }
.nav-links a:hover, .nav-links a.active { color: white; }
.nav-links a.active { font-weight: 700; }

.nav-cta { display: flex; gap: 10px; }
.btn-ghost {
  padding: 9px 20px; border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.2); font-size: 13px; font-weight: 600; color: white;
  transition: var(--transition);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.45); background: rgba(255,255,255,0.06); }
.btn-primary-sm {
  padding: 9px 22px; border-radius: var(--radius-sm);
  background: var(--orange); font-size: 13px; font-weight: 700; color: white;
  transition: var(--transition);
}
.btn-primary-sm:hover { background: #d9601e; transform: translateY(-1px); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;

  /* Reset button styles */
  background: transparent;
  border: none;
  padding: 0;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.nav-hamburger span { width: 24px; height: 2px; background: white; border-radius: 2px; transition: var(--transition); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; background: var(--navy-deep);
  z-index: 999; display: flex; flex-direction: column;
  padding: 100px 5% 48px;
  transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-links { display: flex; flex-direction: column; }
.mobile-menu-links a {
  font-family: var(--font-display); font-size: 26px; font-weight: 700;
  color: rgba(255,255,255,0.6); padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: space-between;
  transition: color var(--transition);
}
.mobile-menu-links a:hover, .mobile-menu-links a.active { color: white; }
.mobile-menu-cta { margin-top: 28px; }
.mobile-menu-cta a {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 16px; border-radius: var(--radius-md);
  background: var(--orange); color: white; font-size: 16px; font-weight: 700;
} 

/* =============================================
   HERO
============================================= */
.hero {
  min-height: 100vh;
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* animated mesh background */
.hero-mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-mesh::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(44,67,159,0.35) 0%, transparent 65%);
  animation: pulse1 8s ease-in-out infinite alternate;
}
.hero-mesh::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31,128,58,0.22) 0%, transparent 65%);
  animation: pulse2 10s ease-in-out infinite alternate;
}
.hero-orb {
  position: absolute;
  top: 40%;
  left: 50%;
  width: 400px;
  height: 400px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43,105,183,0.15) 0%, transparent 60%);
  animation: pulse1 12s ease-in-out infinite alternate-reverse;
}
@keyframes pulse1 {
  from { transform: scale(1) translate(0, 0); }
  to   { transform: scale(1.15) translate(3%, -5%); }
}
@keyframes pulse2 {
  from { transform: scale(1) translate(0, 0); }
  to   { transform: scale(1.2) translate(-4%, 6%); }
}

/* grid lines */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 5% 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT: slides */
.hero-left { max-width: 580px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 8px;
  border-radius: 100px;
  background: rgba(243,112,42,0.12);
  border: 1px solid rgba(243,112,42,0.25);
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.3;} }
.hero-badge span {
  font-size: 12px;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* slide system */
.hero-slides { position: relative; min-height: 220px; }
.hero-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}
.hero-slide.active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: white;
  margin-bottom: 20px;
}
.hero-heading .accent-green { color: var(--green-mid); }
.hero-heading .accent-orange { color: var(--gold); }

.hero-sub {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
  max-width: 460px;
  margin-bottom: 36px;
}

/* slide dots */
.hero-dots {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
}
.hero-dot {
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: var(--transition);
}
.hero-dot.active {
  background: var(--orange);
  width: 28px !important;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  background: var(--orange);
  color: white;
  font-size: 15px;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: 0 8px 30px rgba(243,112,42,0.35);
}
.btn-primary:hover {
  background: #d9601e;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(243,112,42,0.45);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.18);
  color: white;
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.stat-item { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.02em;
}
.stat-num span { color: var(--gold); }
.stat-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* RIGHT: Phone mockup */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.phone-wrap {
  position: relative;
  width: 280px;
}
.phone-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse at center, rgba(43,105,183,0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse1 6s ease-in-out infinite alternate;
}
.phone-frame {
  position: relative;
  z-index: 1;
  width: 280px;
  height: 560px;
  background: linear-gradient(145deg, #1a2440, #0e1628);
  border-radius: 40px;
  border: 1.5px solid rgba(255,255,255,0.12);
  box-shadow:
    0 40px 80px rgba(0,0,0,0.6),
    0 0 0 6px rgba(255,255,255,0.04),
    inset 0 1px 0 rgba(255,255,255,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.phone-notch {
  width: 100px;
  height: 24px;
  background: #0a0f1e;
  border-radius: 0 0 16px 16px;
  margin: 0 auto;
  flex-shrink: 0;
}
.phone-screen {
  flex: 1;
  padding: 12px;
  overflow: hidden;
}
.phone-app-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.phone-app-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
}
.phone-app-logo span { color: var(--green-mid); }
.phone-app-icons { display: flex; gap: 12px; color: rgba(255,255,255,0.5); font-size: 13px; }

/* phone content panels */
.phone-panels { position: relative; height: 100%; }
.phone-panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.phone-panel.active { opacity: 1; transform: scale(1); }

/* panel 1: map/discover */
.panel-map-header {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  border-radius: var(--radius-sm);
  padding: 12px;
  margin-bottom: 10px;
}
.panel-map-title { font-size: 11px; font-weight: 700; color: white; margin-bottom: 4px; }
.panel-map-sub { font-size: 9px; color: rgba(255,255,255,0.7); }
.panel-search-box {
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 7px 10px;
  font-size: 9px;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
}
.panel-chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.chip {
  padding: 4px 8px;
  border-radius: 100px;
  font-size: 8px;
  font-weight: 600;
}
.chip-green { background: rgba(88,162,60,0.2); color: var(--green-mid); }
.chip-blue  { background: rgba(43,105,183,0.2); color: var(--blue-bright); }
.chip-orange{ background: rgba(243,112,42,0.2); color: var(--orange); }
.chip-gold  { background: rgba(248,155,54,0.2); color: var(--gold); }

.panel-business-list { display: flex; flex-direction: column; gap: 6px; }
.biz-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 8px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.biz-icon {
  width: 30px; height: 30px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}
.biz-info { flex: 1; min-width: 0; }
.biz-name { font-size: 9px; font-weight: 700; color: white; margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.biz-meta { font-size: 8px; color: rgba(255,255,255,0.4); }
.biz-stars { font-size: 8px; color: var(--gold); }

/* panel 2: emergency */
.panel-emer-header {
  background: linear-gradient(135deg, #8B0000, #C0392B);
  border-radius: var(--radius-sm);
  padding: 12px;
  text-align: center;
  margin-bottom: 10px;
}
.panel-emer-icon { font-size: 24px; margin-bottom: 4px; }
.panel-emer-title { font-size: 12px; font-weight: 800; color: white; }
.panel-emer-sub { font-size: 9px; color: rgba(255,255,255,0.7); }
.emer-btns { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px; margin-bottom: 10px; }
.emer-btn {
  border-radius: 8px;
  padding: 10px 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.emer-btn-police { background: rgba(43,105,183,0.2); border: 1px solid rgba(43,105,183,0.3); }
.emer-btn-fire   { background: rgba(243,112,42,0.2); border: 1px solid rgba(243,112,42,0.3); }
.emer-btn-medic  { background: rgba(31,128,58,0.2); border: 1px solid rgba(31,128,58,0.3); }
.emer-btn i { font-size: 14px; }
.emer-btn span { font-size: 7px; font-weight: 600; color: rgba(255,255,255,0.8); }
.emer-btn-police i { color: var(--blue-bright); }
.emer-btn-fire   i { color: var(--orange); }
.emer-btn-medic  i { color: var(--green-mid); }

/* panel 3: marketplace */
.panel-market-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-bottom: 10px; }
.market-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  overflow: hidden;
}
.market-card-img {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.market-card-body { padding: 6px; }
.market-card-name { font-size: 8px; font-weight: 700; color: white; margin-bottom: 2px; }
.market-card-price { font-size: 8px; font-weight: 700; color: var(--gold); }

.phone-bottom-nav {
  display: flex;
  justify-content: space-around;
  padding: 8px 0 4px;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 6px;
}
.bnav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 14px;
  color: rgba(255,255,255,0.3);
}
.bnav-item.active { color: var(--green-mid); }
.bnav-item span { font-size: 7px; }

/* floating badges */
.phone-float {
  position: absolute;
  z-index: 3;
}
.float-badge {
  background: rgba(13,27,75,0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.float-badge-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.float-text-top { font-size: 9px; color: var(--text-muted); margin-bottom: 1px; }
.float-text-main { font-size: 12px; font-weight: 700; color: white; }

.float-top-left {
  top: 80px;
  left: -80px;
  animation: floatY 4s ease-in-out infinite;
}
.float-bottom-right {
  bottom: 100px;
  right: -80px;
  animation: floatY 4s ease-in-out 2s infinite;
}
@keyframes floatY {
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-8px); }
}

/* =============================================
   TRUST BAR
============================================= */
.trust-bar {
  background: var(--off-white);
  padding: 20px 5%;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.trust-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
}
.trust-item i { color: var(--green-dark); font-size: 15px; }
.trust-divider {
  width: 1px;
  height: 20px;
  background: rgba(0,0,0,0.12);
}

/* =============================================
   FEATURES
============================================= */
.features {
  padding: 100px 5%;
  background: white;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-dark);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 20px; height: 2px;
  background: var(--green-dark);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--navy);
}
.section-title .accent { color: var(--blue-dark); }
.section-sub {
  font-size: 16px;
  color: #5A6785;
  line-height: 1.7;
  max-width: 520px;
  margin-top: 14px;
}
.features-header {
  text-align: center;
  margin-bottom: 64px;
}
.features-header .section-sub {
  margin: 14px auto 0;
}

.features-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feat-card {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  background: var(--off-white);
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.feat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  opacity: 0;
  transition: opacity var(--transition);
}
.feat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  border-color: transparent;
}
.feat-card:hover::before { opacity: 1; }
.feat-card.green::before { background: linear-gradient(90deg, var(--green-dark), var(--green-mid)); }
.feat-card.blue::before  { background: linear-gradient(90deg, var(--blue-dark), var(--blue-light)); }
.feat-card.orange::before{ background: linear-gradient(90deg, var(--orange), var(--gold)); }

.feat-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}
.feat-icon.green  { background: rgba(31,128,58,0.1);  color: var(--green-dark); }
.feat-icon.blue   { background: rgba(44,67,159,0.1);  color: var(--blue-dark); }
.feat-icon.orange { background: rgba(243,112,42,0.1); color: var(--orange); }

.feat-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.feat-desc {
  font-size: 14px;
  color: #5A6785;
  line-height: 1.65;
}

/* =============================================
   HOW IT WORKS
============================================= */
.how {
  padding: 100px 5%;
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}
.how::before {
  content: '';
  position: absolute;
  top: -100px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31,128,58,0.12) 0%, transparent 65%);
}
.how-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.how-header { margin-bottom: 64px; }
.how-header .section-label { color: var(--green-mid); }
.how-header .section-label::before { background: var(--green-mid); }
.how-header .section-title { color: white; }
.how-header .section-sub { color: rgba(255,255,255,0.5); }

.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.how-steps::before {
  content: '';
  position: absolute;
  top: 28px; left: 10%;
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), rgba(255,255,255,0.1), transparent);
}

.step-card { text-align: center; position: relative; }
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}
.step-num.green  { background: var(--green-dark);  color: white; box-shadow: 0 0 0 8px rgba(31,128,58,0.15); }
.step-num.blue   { background: var(--blue-dark);   color: white; box-shadow: 0 0 0 8px rgba(44,67,159,0.15); }
.step-num.lblue  { background: var(--blue-light);  color: white; box-shadow: 0 0 0 8px rgba(42,142,207,0.15); }
.step-num.orange { background: var(--orange);      color: white; box-shadow: 0 0 0 8px rgba(243,112,42,0.15); }

.step-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}
.step-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

/* =============================================
   APP SHOWCASE
============================================= */
.showcase {
  padding: 100px 5%;
  background: white;
}
.showcase-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.showcase-visual {
  display: flex;
  gap: 20px;
  justify-content: center;
}
.showcase-phone-wrap {
  position: relative;
}
.showcase-phone {
  width: 200px;
  height: 400px;
  background: var(--navy-deep);
  border-radius: 30px;
  border: 1.5px solid rgba(255,255,255,0.1);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
}
.showcase-phone.offset { margin-top: 40px; }
.sp-header {
  height: 20px;
  background: #0a0f1e;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sp-header-dot { width: 60px; height: 4px; background: #1a2440; border-radius: 2px; }
.sp-content { flex: 1; padding: 10px; overflow: hidden; }

/* community feed */
.sp-feed { display: flex; flex-direction: column; gap: 7px; }
.feed-post {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 8px;
}
.feed-post-header { display: flex; align-items: center; gap: 6px; margin-bottom: 5px; }
.feed-avatar {
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}
.feed-user { font-size: 8px; font-weight: 700; color: white; }
.feed-time { font-size: 7px; color: rgba(255,255,255,0.3); margin-left: auto; }
.feed-text { font-size: 8px; color: rgba(255,255,255,0.6); line-height: 1.4; }
.feed-actions { display: flex; gap: 10px; margin-top: 5px; }
.feed-action { font-size: 7px; color: rgba(255,255,255,0.3); display: flex; align-items: center; gap: 3px; }
.feed-action.liked { color: var(--orange); }

/* events */
.sp-events { display: flex; flex-direction: column; gap: 7px; }
.event-card-small {
  border-radius: 8px;
  overflow: hidden;
}
.event-card-img {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.event-card-body { padding: 6px 8px; background: rgba(255,255,255,0.05); }
.event-card-name { font-size: 8px; font-weight: 700; color: white; }
.event-card-meta { font-size: 7px; color: rgba(255,255,255,0.4); }

.showcase-content { max-width: 500px; }
.showcase-content .section-label { color: var(--blue-dark); }
.showcase-content .section-label::before { background: var(--blue-dark); }

.feature-list { margin-top: 36px; display: flex; flex-direction: column; gap: 20px; }
.feature-item { display: flex; gap: 16px; align-items: flex-start; }
.feature-item-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.feature-item-icon.green  { background: rgba(31,128,58,0.1);  color: var(--green-dark); }
.feature-item-icon.blue   { background: rgba(44,67,159,0.1);  color: var(--blue-dark); }
.feature-item-icon.orange { background: rgba(243,112,42,0.1); color: var(--orange); }
.feature-item-icon.gold   { background: rgba(248,155,54,0.1); color: var(--gold); }
.feature-item-text h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.feature-item-text p  { font-size: 13px; color: #5A6785; line-height: 1.55; }

/* =============================================
   LANGUAGES
============================================= */
.languages {
  padding: 80px 5%;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}
.languages::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(248,155,54,0.08) 0%, transparent 65%);
}
.languages-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.languages-content { max-width: 420px; }
.languages-content .section-label { color: var(--gold); }
.languages-content .section-label::before { background: var(--gold); }
.languages-content .section-title { color: white; }
.languages-content .section-sub { color: rgba(255,255,255,0.5); }

.lang-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.lang-pill {
  padding: 10px 20px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 14px;
  font-weight: 600;
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  cursor: default;
}
.lang-pill:hover {
  border-color: var(--gold);
  background: rgba(248,155,54,0.08);
  color: var(--gold);
}
.lang-flag { font-size: 18px; }

.lang-visual {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 28px;
  min-width: 280px;
}
.lang-visual-title { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.lang-visual-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.lang-visual-item:last-child { border-bottom: none; }
.lang-name { font-size: 14px; font-weight: 600; color: white; }
.lang-bar-wrap { width: 120px; background: rgba(255,255,255,0.06); border-radius: 100px; height: 4px; overflow: hidden; }
.lang-bar { height: 100%; border-radius: 100px; }

/* =============================================
   CTA DOWNLOAD
============================================= */
.cta-download {
  padding: 100px 5%;
  background: white;
}
.cta-inner {
  max-width: 1280px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--blue-dark) 100%);
  border-radius: 32px;
  padding: 70px 60px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-inner::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(248,155,54,0.15) 0%, transparent 65%);
}
.cta-inner::after {
  content: '';
  position: absolute;
  bottom: -100px; left: 30%;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31,128,58,0.12) 0%, transparent 65%);
}
.cta-content { position: relative; z-index: 1; }
.cta-eyebrow { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 16px; }
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 800;
  color: white;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.cta-title span { color: var(--green-mid); }
.cta-desc { font-size: 15px; color: rgba(255,255,255,0.55); line-height: 1.65; max-width: 440px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; position: relative; z-index: 1; }

.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 13px 22px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  transition: var(--transition);
}
.btn-store:hover {
  background: rgba(255,255,255,0.13);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-2px);
}
.btn-store-icon { font-size: 22px; }
.btn-store-text-top { font-size: 9px; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.06em; }
.btn-store-text-main { font-size: 15px; font-weight: 700; }

.btn-apk {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: var(--radius-md);
  background: var(--orange);
  color: white;
  font-size: 14px;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(243,112,42,0.35);
}
.btn-apk:hover { background: #d9601e; transform: translateY(-2px); }

.cta-visual { position: relative; z-index: 1; }
.cta-qr {
  width: 140px; height: 140px;
  background: white;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}
.cta-qr i { font-size: 72px; color: var(--navy); }
.cta-qr span { font-size: 10px; font-weight: 700; color: var(--navy); text-align: center; }

/* =============================================
   TESTIMONIALS
============================================= */
.testimonials {
  padding: 100px 5%;
  background: var(--off-white);
}
.testimonials-inner { max-width: 1280px; margin: 0 auto; }
.testimonials-header { text-align: center; margin-bottom: 56px; }
.testimonials-header .section-label { color: var(--blue-dark); justify-content: center; }
.testimonials-header .section-label::before { display: none; }
.testimonials-header .section-sub { margin: 14px auto 0; }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.07);
}
.testi-stars { color: var(--gold); font-size: 13px; margin-bottom: 14px; letter-spacing: 2px; }
.testi-quote { font-size: 15px; line-height: 1.65; color: #3D4F70; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.testi-name { font-size: 14px; font-weight: 700; color: var(--navy); }
.testi-role { font-size: 12px; color: var(--text-muted); }

/* =============================================
   FOOTER
============================================= */
.footer {
  background: var(--navy-deep);
  padding: 72px 5% 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-top {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin: 16px 0 24px;
  max-width: 280px;
}
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  transition: var(--transition);
}
.social-btn:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: white;
  transform: translateY(-2px);
}
.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-links a:hover { color: white; }

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-copy span { color: var(--green-mid); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,0.3); transition: color var(--transition); }
.footer-bottom-links a:hover { color: white; }

/* =============================================
   MOBILE MENU
============================================= */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--navy-deep);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 100px 5% 48px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-links { display: flex; flex-direction: column; gap: 0; flex: 1; }
.mobile-menu-links a {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-menu-links a:hover { color: white; }
.mobile-menu-links a i { font-size: 16px; }
.mobile-menu-cta { margin-top: 32px; }
.mobile-menu-cta .btn-primary { width: 100%; justify-content: center; font-size: 16px; padding: 16px; }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1100px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .how-steps { grid-template-columns: repeat(2, 1fr); }
  .how-steps::before { display: none; }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 100px 5% 60px;
    text-align: center;
  }
  .hero-left { max-width: 100%; }
  .hero-sub { margin: 0 auto 36px; }
  .hero-badge { margin: 0 auto 28px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-dots { justify-content: center; }
  .hero-right { display: none; }

  .features-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr 1fr; gap: 24px; }
  .showcase-inner { grid-template-columns: 1fr; }
  .showcase-visual { display: none; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }

  .cta-inner {
    grid-template-columns: 1fr;
    padding: 40px 28px;
  }
  .cta-visual { display: none; }

  .languages-inner { flex-direction: column; }
  .lang-visual { width: 100%; }
}

@media (max-width: 480px) {
  .hero-stats { gap: 20px; }
  .how-steps { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .trust-inner { gap: 20px; }
  .trust-divider { display: none; }
}

/* =============================================
   UTILITIES
============================================= */
.text-center { text-align: center; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}