/* ═══════════════════════════════════════════
   SourMango Landing Page — style.css
   ═══════════════════════════════════════════ */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background: #061C12;
  color: rgba(255,255,255,0.95);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ── Utility ── */
.section-title {
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: -0.8px;
  text-align: center;
}
.section-subtitle {
  text-align: center;
  color: rgba(255,255,255,0.45);
  font-weight: 600;
  margin-top: 10px;
  font-size: 1.1rem;
}

/* ── Gradient text ── */
.gradient-text {
  background: linear-gradient(135deg, #D6FF2A 0%, #27E28B 50%, #2AF6FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Store Badges ── */
.store-badge {
  display: inline-block;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.store-badge svg {
  height: 44px;
  width: auto;
  display: block;
}
.store-badge:hover {
  transform: translateY(-3px) scale(1.02);
  opacity: 0.9;
}
.store-badge--lg svg {
  height: 54px;
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 24px;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214,255,42,0.15), rgba(39,226,139,0.15), rgba(42,246,255,0.15), transparent);
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero__glow--acid {
  width: 700px;
  height: 700px;
  top: -200px;
  left: -250px;
  background: radial-gradient(circle, rgba(214,255,42,0.1), transparent 70%);
}
.hero__glow--blue {
  width: 800px;
  height: 800px;
  bottom: -300px;
  right: -300px;
  background: radial-gradient(circle, rgba(42,246,255,0.08), transparent 70%);
}
.hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
  width: 100%;
}
.hero__text {
  flex: 1;
}

/* Brand in hero */
.hero__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}
.hero__brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.hero__brand-name {
  font-weight: 900;
  font-size: 1.3rem;
  letter-spacing: -0.3px;
  color: rgba(255,255,255,0.92);
}

.hero__title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
}
.hero__subtitle {
  margin-top: 28px;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  max-width: 520px;
  line-height: 1.75;
}
.hero__ctas {
  margin-top: 44px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__visual {
  flex: 0 0 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero__logo-glow {
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214,255,42,0.1), rgba(39,226,139,0.06), transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}
.hero__logo {
  width: 300px;
  height: 300px;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 80px rgba(214,255,42,0.15));
  animation: mangoFloat 3s ease-in-out infinite;
}

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

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.1); opacity: 1; }
}

/* ═══════════════════════════════════════════
   STATS (social proof bar)
   ═══════════════════════════════════════════ */
.stats {
  padding: 60px 24px;
  position: relative;
}
.stats::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
}
.stats__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.stats__item {
  flex: 1;
  text-align: center;
  padding: 16px 24px;
}
.stats__number {
  display: block;
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #D6FF2A, #27E28B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stats__label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 4px;
}
.stats__divider {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.1), transparent);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   FEATURE SECTIONS (alternating)
   ═══════════════════════════════════════════ */
.feat {
  padding: 110px 24px;
  position: relative;
  overflow: hidden;
}
/* Subtle alternating backgrounds */
.feat--reverse {
  background: rgba(255,255,255,0.012);
}
/* Subtle separator line between sections */
.feat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.04), transparent);
}
.feat__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
}
.feat--reverse .feat__inner {
  flex-direction: row-reverse;
}

.feat__phone {
  flex: 0 0 280px;
  position: relative;
}
/* Subtle glow behind each phone */
.feat__phone::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(39,226,139,0.04), transparent 70%);
  pointer-events: none;
}
.feat__text {
  flex: 1;
}

/* Label pill */
.feat__label {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.feat__label--acid {
  background: rgba(214,255,42,0.1);
  border: 1px solid rgba(214,255,42,0.2);
  color: #D6FF2A;
}
.feat__label--leaf {
  background: rgba(39,226,139,0.1);
  border: 1px solid rgba(39,226,139,0.2);
  color: #27E28B;
}
.feat__label--blue {
  background: rgba(42,246,255,0.1);
  border: 1px solid rgba(42,246,255,0.2);
  color: #2AF6FF;
}
.feat__label--mango {
  background: rgba(255,176,0,0.1);
  border: 1px solid rgba(255,176,0,0.2);
  color: #FFB000;
}

.feat__title {
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 18px;
}
.feat__desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  line-height: 1.8;
  max-width: 480px;
}

/* ═══════════════════════════════════════════
   PHONE MOCKUP (glassmorphism, premium)
   ═══════════════════════════════════════════ */
.phone-frame {
  width: 260px;
  margin: 0 auto;
  border-radius: 36px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    0 32px 100px rgba(0,0,0,0.45),
    0 0 0 1px rgba(255,255,255,0.04) inset,
    0 1px 0 rgba(255,255,255,0.08) inset;
  overflow: hidden;
  position: relative;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.phone-frame:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 40px 120px rgba(0,0,0,0.55),
    0 0 0 1px rgba(255,255,255,0.06) inset,
    0 1px 0 rgba(255,255,255,0.1) inset;
}
.phone-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0) 100%);
  pointer-events: none;
  border-radius: 36px 36px 0 0;
  z-index: 2;
}

/* Dynamic Island notch */
.phone-notch {
  width: 90px;
  height: 22px;
  background: #0A1F14;
  border-radius: 0 0 14px 14px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
  box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.phone-screen {
  padding: 12px 16px 24px;
  min-height: 420px;
}

/* Real app screenshot (already includes phone frame) */
.feat__screenshot {
  width: 100%;
  max-width: 280px;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 32px 80px rgba(0,0,0,0.4));
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.feat__screenshot:hover {
  transform: translateY(-8px) scale(1.02);
}

/* Mock UI elements inside phones */
.mock-bar {
  width: 80px;
  height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  margin: 4px auto 18px;
}
.mock-title {
  font-size: 1.1rem;
  font-weight: 900;
  color: rgba(255,255,255,0.92);
  margin-bottom: 16px;
}

/* Plans screen mock */
.mock-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  margin-bottom: 10px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.mock-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.mock-dot--acid { background: #D6FF2A; }
.mock-dot--leaf { background: #27E28B; }
.mock-dot--blue { background: #2AF6FF; }
.mock-lines {
  flex: 1;
}
.mock-lines div {
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  margin-bottom: 6px;
}
.mock-lines div:last-child {
  width: 60%;
  margin-bottom: 0;
}
.mock-btn {
  margin-top: 14px;
  padding: 10px;
  text-align: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(214,255,42,0.2), rgba(39,226,139,0.2));
  border: 1px solid rgba(214,255,42,0.25);
  color: #D6FF2A;
  font-size: 0.85rem;
  font-weight: 800;
}

/* Visa screen mock */
.mock-passport {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
  margin-bottom: 14px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.mock-result {
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 8px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.mock-result--free {
  background: rgba(39,226,139,0.1);
  border: 1px solid rgba(39,226,139,0.2);
  color: #27E28B;
}
.mock-result--arrival {
  background: rgba(255,176,0,0.1);
  border: 1px solid rgba(255,176,0,0.2);
  color: #FFB000;
}
.mock-result--required {
  background: rgba(255,80,80,0.1);
  border: 1px solid rgba(255,80,80,0.2);
  color: #FF5050;
}

/* Destinations screen mock */
.mock-city {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  margin-bottom: 8px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.mock-city strong {
  font-size: 0.9rem;
  font-weight: 800;
  color: rgba(255,255,255,0.9);
}
.mock-city span {
  font-size: 0.75rem;
  color: #FFB000;
  font-weight: 700;
}

/* Food screen mock */
.mock-place {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  margin-bottom: 10px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.mock-place-img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,176,0,0.3), rgba(214,255,42,0.2));
  flex-shrink: 0;
}
.mock-place-img--b {
  background: linear-gradient(135deg, rgba(42,246,255,0.3), rgba(39,226,139,0.2));
}
.mock-place-img--c {
  background: linear-gradient(135deg, rgba(214,255,42,0.3), rgba(255,176,0,0.2));
}
.mock-place-info strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 800;
  color: rgba(255,255,255,0.9);
}
.mock-place-info span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  font-weight: 600;
}

/* Community screen mock */
.mock-avatar-row {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
.mock-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(39,226,139,0.3), rgba(42,246,255,0.2));
  border: 2px solid rgba(255,255,255,0.1);
}
.mock-avatar:nth-child(2) {
  background: linear-gradient(135deg, rgba(214,255,42,0.3), rgba(255,176,0,0.2));
}
.mock-avatar:nth-child(3) {
  background: linear-gradient(135deg, rgba(255,176,0,0.3), rgba(214,255,42,0.2));
}
.mock-avatar:nth-child(4) {
  background: linear-gradient(135deg, rgba(42,246,255,0.3), rgba(39,226,139,0.2));
}
.mock-chat {
  margin-bottom: 8px;
}
.mock-chat div {
  height: 32px;
  width: 70%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px 14px 14px 4px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.mock-chat--right {
  display: flex;
  justify-content: flex-end;
}
.mock-chat--right div {
  width: 55%;
  background: rgba(39,226,139,0.12);
  border-color: rgba(39,226,139,0.18);
  border-radius: 14px 14px 4px 14px;
}

/* Tools screen mock */
.mock-convert {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  margin-bottom: 14px;
  font-size: 0.85rem;
  font-weight: 800;
  color: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.mock-convert span:nth-child(2) {
  color: rgba(255,255,255,0.3);
}
.mock-translate {
  padding: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.mock-lang {
  font-size: 0.7rem;
  color: #2AF6FF;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}
.mock-phrase {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
  font-style: italic;
}

/* AI Chat screen mock */
.mock-ai-bubble {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
}
.mock-ai-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(42,246,255,0.15);
  border: 1px solid rgba(42,246,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.mock-ai-msg {
  padding: 10px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px 14px 14px 4px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
  line-height: 1.4;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.mock-ai-msg--user {
  background: rgba(42,246,255,0.1);
  border-color: rgba(42,246,255,0.18);
  border-radius: 14px 14px 4px 14px;
}
.mock-ai-bubble--user {
  flex-direction: row-reverse;
}
.mock-ai-typing {
  display: flex;
  gap: 4px;
  padding: 10px 14px;
  margin-left: 36px;
  width: fit-content;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
}
.mock-ai-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  animation: typingDot 1.2s ease-in-out infinite;
}
.mock-ai-typing span:nth-child(2) { animation-delay: 0.2s; }
.mock-ai-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingDot {
  0%, 80%, 100% { opacity: 0.3; transform: scale(0.8); }
  40% { opacity: 1; transform: scale(1); }
}

/* Visa Tracking screen mock */
.mock-visa-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  margin-bottom: 8px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.mock-visa-flag {
  font-size: 1.4rem;
  flex-shrink: 0;
}
.mock-visa-info {
  flex: 1;
}
.mock-visa-info strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 800;
  color: rgba(255,255,255,0.9);
}
.mock-visa-info span {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.45);
  font-weight: 600;
}
.mock-visa-status {
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.mock-visa-status--active {
  background: rgba(39,226,139,0.12);
  border: 1px solid rgba(39,226,139,0.25);
  color: #27E28B;
}
.mock-visa-status--approved {
  background: rgba(42,246,255,0.12);
  border: 1px solid rgba(42,246,255,0.25);
  color: #2AF6FF;
}
.mock-visa-status--pending {
  background: rgba(255,176,0,0.12);
  border: 1px solid rgba(255,176,0,0.25);
  color: #FFB000;
}
.mock-visa-bar {
  margin-top: 14px;
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
  overflow: hidden;
}
.mock-visa-progress {
  width: 65%;
  height: 100%;
  background: linear-gradient(90deg, #27E28B, #2AF6FF);
  border-radius: 3px;
}

/* WiFi Speed Test screen mock */
.mock-speed-ring {
  width: 130px;
  height: 130px;
  margin: 10px auto 20px;
  border-radius: 50%;
  border: 4px solid rgba(255,255,255,0.06);
  border-top-color: #27E28B;
  border-right-color: #27E28B;
  border-bottom-color: #2AF6FF;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 0 30px rgba(39,226,139,0.15);
}
.mock-speed-value {
  font-size: 2rem;
  font-weight: 900;
  color: rgba(255,255,255,0.95);
  letter-spacing: -1px;
}
.mock-speed-value span {
  display: block;
  font-size: 0.6rem;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  letter-spacing: 1px;
  text-align: center;
}
.mock-speed-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  margin-bottom: 6px;
  font-size: 0.78rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.mock-speed-row span {
  color: rgba(255,255,255,0.45);
  font-weight: 600;
}
.mock-speed-row strong {
  color: rgba(255,255,255,0.9);
  font-weight: 800;
}
.mock-speed-label {
  margin-top: 12px;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: #27E28B;
}

/* Packing screen mock */
.mock-pack-cat {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 8px;
  margin-top: 4px;
}
.mock-pack-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  margin-bottom: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.mock-pack-item--checked {
  color: rgba(255,255,255,0.85);
}
.mock-check {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: rgba(39,226,139,0.2);
  border: 1px solid rgba(39,226,139,0.35);
  color: #27E28B;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 900;
  flex-shrink: 0;
}
.mock-uncheck {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  flex-shrink: 0;
}
.mock-pack-progress {
  margin-top: 14px;
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
  overflow: hidden;
}
.mock-pack-fill {
  width: 66%;
  height: 100%;
  background: linear-gradient(90deg, #D6FF2A, #27E28B);
  border-radius: 3px;
}
.mock-pack-count {
  margin-top: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  text-align: center;
}

/* Globe / Travel Log screen mock */
.mock-globe {
  width: 150px;
  height: 150px;
  margin: 10px auto 20px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, rgba(42,246,255,0.12), rgba(39,226,139,0.08), rgba(255,255,255,0.02));
  border: 1px solid rgba(42,246,255,0.15);
  position: relative;
  box-shadow: 0 0 40px rgba(42,246,255,0.1);
}
.mock-globe-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 130px;
  height: 60px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotateX(70deg);
}
.mock-globe-ring--2 {
  width: 100px;
  height: 130px;
  transform: translate(-50%, -50%) rotateY(20deg);
}
.mock-globe-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #D6FF2A;
  box-shadow: 0 0 8px rgba(214,255,42,0.5);
}
.mock-globe-dot--1 { top: 30%; left: 25%; }
.mock-globe-dot--2 { top: 45%; left: 60%; background: #27E28B; box-shadow: 0 0 8px rgba(39,226,139,0.5); }
.mock-globe-dot--3 { top: 60%; left: 40%; background: #2AF6FF; box-shadow: 0 0 8px rgba(42,246,255,0.5); }
.mock-globe-dot--4 { top: 35%; left: 70%; background: #FFB000; box-shadow: 0 0 8px rgba(255,176,0,0.5); }
.mock-globe-dot--5 { top: 55%; left: 20%; }

.mock-globe-stats {
  display: flex;
  justify-content: space-around;
  gap: 8px;
}
.mock-globe-stat {
  text-align: center;
  padding: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  flex: 1;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.mock-globe-stat strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 900;
  color: rgba(255,255,255,0.95);
}
.mock-globe-stat span {
  font-size: 0.6rem;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ═══════════════════════════════════════════
   HOW IT WORKS (steps)
   ═══════════════════════════════════════════ */
.steps {
  padding: 120px 24px;
  position: relative;
  overflow: hidden;
}
.steps::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
}
.steps__inner {
  max-width: 960px;
  margin: 0 auto;
}
.steps__grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 60px;
}
.steps__step {
  flex: 1;
  text-align: center;
  padding: 0 24px;
  position: relative;
}
.steps__number {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(214,255,42,0.15), rgba(39,226,139,0.15));
  border: 1px solid rgba(214,255,42,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  color: #D6FF2A;
}
.steps__title {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.92);
}
.steps__desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  line-height: 1.6;
}
.steps__connector {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, rgba(214,255,42,0.2), rgba(39,226,139,0.2));
  margin-top: 28px;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   SHOWCASE
   ═══════════════════════════════════════════ */
.showcase {
  padding: 140px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
}
.showcase__inner {
  max-width: 680px;
  margin: 0 auto;
}
.showcase__logo-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 36px;
}
.showcase__logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214,255,42,0.08), rgba(42,246,255,0.04), transparent 70%);
  animation: pulse 5s ease-in-out infinite;
}
.showcase__logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 40px rgba(214,255,42,0.12));
  animation: mangoFloat 3.5s ease-in-out infinite;
}
.showcase__title {
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: -0.8px;
  margin-bottom: 20px;
}
.showcase__text {
  color: rgba(255,255,255,0.45);
  font-size: 1.1rem;
  line-height: 1.85;
  font-weight: 500;
}
.showcase__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  padding: 14px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.showcase__badge-icon {
  color: #FFB000;
  font-size: 1.2rem;
}

/* ═══════════════════════════════════════════
   REVIEWS
   ═══════════════════════════════════════════ */
.reviews {
  padding: 120px 24px;
  position: relative;
}
.reviews::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
}
.reviews__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.reviews__scroll {
  display: flex;
  gap: 20px;
  margin-top: 52px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 16px;
}
.reviews__scroll::-webkit-scrollbar { height: 6px; }
.reviews__scroll::-webkit-scrollbar-track { background: rgba(255,255,255,0.02); border-radius: 3px; }
.reviews__scroll::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.08); border-radius: 3px; }

.review-card {
  flex: 0 0 320px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  padding: 30px;
  scroll-snap-align: start;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.12);
}
.review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0) 100%);
  pointer-events: none;
}
.review-card__stars {
  color: #FFB000;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
  position: relative;
}
.review-card__quote {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 22px;
  font-style: italic;
  position: relative;
}
.review-card__author {
  position: relative;
}
.review-card__author strong {
  display: block;
  font-weight: 800;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.92);
}
.review-card__author span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  font-weight: 600;
}

/* ═══════════════════════════════════════════
   CTA
   ═══════════════════════════════════════════ */
.cta {
  padding: 140px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
}
.cta__inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cta__glow {
  position: absolute;
  width: 700px;
  height: 700px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(39,226,139,0.06), rgba(214,255,42,0.04), transparent 70%);
  pointer-events: none;
}
.cta__title {
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.cta__subtitle {
  color: rgba(255,255,255,0.4);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 44px;
}
.cta__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════
   FOOTER (multi-column corporate)
   ═══════════════════════════════════════════ */
.footer {
  padding: 64px 24px 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s ease;
}
.footer__col a:hover {
  color: #D6FF2A;
}
.footer__heading {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 6px;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.footer__logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
}
.footer__name {
  font-weight: 900;
  font-size: 1.15rem;
}
.footer__tagline {
  color: rgba(255,255,255,0.35);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 4px;
}
.footer__mission {
  color: rgba(255,255,255,0.25);
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.6;
  max-width: 300px;
}
.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer__copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.2);
  font-weight: 500;
  text-align: center;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */

@media (max-width: 1024px) {
  .hero__title { font-size: 3rem; }
  .hero__visual { flex: 0 0 260px; }
  .hero__logo { width: 240px; height: 240px; }
  .feat__inner { gap: 48px; }
  .feat__title { font-size: 2.1rem; }
  .stats__number { font-size: 2rem; }
  .footer__grid { grid-template-columns: 1fr 1fr 1fr; gap: 36px; }
  .footer__col--brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .hero {
    padding: 70px 20px;
    min-height: auto;
  }
  .hero__inner {
    flex-direction: column;
    text-align: center;
    gap: 48px;
  }
  .hero__brand { justify-content: center; }
  .hero__title { font-size: 2.6rem; letter-spacing: -1.2px; }
  .hero__subtitle { margin-left: auto; margin-right: auto; }
  .hero__ctas { justify-content: center; }
  .hero__visual { flex: none; }
  .hero__logo { width: 200px; height: 200px; }

  .stats__inner { flex-wrap: wrap; }
  .stats__item { flex: 0 0 50%; padding: 12px 16px; }
  .stats__divider { display: none; }
  .stats__number { font-size: 1.8rem; }

  .feat { padding: 70px 20px; }
  .feat__inner {
    flex-direction: column !important;
    text-align: center;
    gap: 40px;
  }
  .feat__phone { flex: none; }
  .feat__desc { margin-left: auto; margin-right: auto; }
  .feat__title { font-size: 1.9rem; }

  .steps__grid { flex-direction: column; gap: 32px; align-items: center; }
  .steps__connector { width: 1px; height: 32px; background: linear-gradient(180deg, rgba(214,255,42,0.2), rgba(39,226,139,0.2)); }
  .steps__step { max-width: 320px; }

  .section-title { font-size: 1.8rem; }
  .showcase { padding: 80px 20px; }
  .showcase__title { font-size: 1.8rem; }
  .reviews { padding: 80px 16px; }
  .review-card { flex: 0 0 280px; }
  .cta { padding: 80px 20px; }
  .cta__title { font-size: 2.1rem; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__col--brand { grid-column: 1 / -1; }
}

@media (max-width: 400px) {
  .hero__title { font-size: 2rem; }
  .hero__ctas { flex-direction: column; align-items: center; }
  .cta__buttons { flex-direction: column; align-items: center; }
  .cta__title { font-size: 1.7rem; }
  .stats__item { flex: 0 0 50%; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
}
