/* ═══════════════════════════════════════════════════════════════
   App Tour — iPhone mockups
   ═══════════════════════════════════════════════════════════════ */

.app-tour-section {
  background: var(--bg);
  border-top: 1px solid var(--border);
  overflow: hidden;
}

.app-tour-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.app-tour-logo {
  display: block;
  width: 113px;
  height: 113px;
  margin: 0 auto 16px;
  border-radius: 24px;
  object-fit: contain;
  background: #fff;
  padding: 14px;
  box-shadow: 0 10px 30px rgba(108, 71, 255, 0.2);
}

.app-tour-intro h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 12px;
}

.app-tour-intro p,
.tour-intro-lead {
  color: var(--muted);
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  line-height: 1.8;
  font-weight: 600;
}

.tour-intro-lead {
  color: var(--text);
  max-width: 780px;
  margin: 0 auto;
}

/* iPhone frame */
.iphone-wrap {
  flex-shrink: 0;
  position: relative;
}

.iphone {
  width: 272px;
  padding: 11px;
  background: linear-gradient(145deg, #2c2c2e, #1c1c1e);
  border-radius: 46px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.12),
    0 40px 80px rgba(0,0,0,0.55),
    inset 0 0 0 1px rgba(255,255,255,0.05);
  position: relative;
}

.iphone::before {
  content: '';
  position: absolute;
  right: -3px;
  top: 100px;
  width: 3px;
  height: 52px;
  background: #3a3a3c;
  border-radius: 0 2px 2px 0;
}

.iphone-notch {
  position: absolute;
  top: 11px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 26px;
  background: #1c1c1e;
  border-radius: 0 0 18px 18px;
  z-index: 20;
}

.iphone-screen {
  background: #F1F5F9;
  border-radius: 36px;
  overflow: hidden;
  aspect-ratio: 9 / 19.2;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Status bar */
.app-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 20px 6px;
  font-size: 0.65rem;
  font-weight: 700;
  color: #1E293B;
  background: inherit;
  flex-shrink: 0;
}

.app-status.dark { color: #fff; }

.app-status-icons {
  display: flex;
  gap: 4px;
  align-items: center;
}

.app-status-icons span {
  width: 14px;
  height: 8px;
  background: currentColor;
  border-radius: 2px;
  opacity: 0.8;
}

/* Tab bar */
.app-tabs {
  margin-top: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  padding: 8px 12px 14px;
  background: rgba(255,255,255,0.97);
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  flex-shrink: 0;
}

.app-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 0.55rem;
  font-weight: 700;
  color: #94A3B8;
}

.app-tab.active { color: #6C47FF; }

.app-tab-icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

.app-tab.active .app-tab-icon { background: rgba(108,71,255,0.15); }

.app-tab.map-fab {
  margin-top: -22px;
}

.app-tab.map-fab .app-tab-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6C47FF, #9333EA);
  color: #fff;
  font-size: 1rem;
  box-shadow: 0 6px 20px rgba(108,71,255,0.45);
}

/* ── Tour row layout ── */
.tour-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 80px;
}

.tour-row.reverse .iphone-wrap { order: 2; }
.tour-row.reverse .tour-copy { order: 1; }

.tour-copy h3 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 900;
  margin-bottom: 12px;
  line-height: 1.3;
}

.tour-copy > p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 20px;
  line-height: 1.7;
}

.tour-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tour-points li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
}

.tour-points li img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

.tour-points li strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 800;
  margin-bottom: 2px;
}

.tour-points li span {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
}

.tour-badge {
  display: inline-block;
  background: rgba(16,185,129,0.15);
  color: #34D399;
  border: 1px solid rgba(16,185,129,0.35);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.tour-badge.purple {
  background: var(--sky-light);
  color: var(--sky-deep);
  border-color: rgba(14, 165, 233, 0.35);
}

.tour-badge.gold {
  background: var(--pink-light);
  color: var(--pink-deep);
  border-color: rgba(244, 114, 182, 0.35);
}

/* ── MAP SCREEN mock ── */
.mock-map-body {
  flex: 1;
  position: relative;
  overflow: hidden;
  background: #E8EDF2;
}

.mock-map-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.95;
}

.mock-map-filters {
  position: absolute;
  top: 4px;
  right: 8px;
  left: 8px;
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  z-index: 5;
}

.mock-filter {
  font-size: 0.5rem;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.95);
  color: #6C47FF;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.mock-filter.off { color: #94A3B8; opacity: 0.7; }

/* Venue marker */
.mock-venue {
  position: absolute;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mock-venue-badge {
  background: #fff;
  border-radius: 14px;
  padding: 4px 8px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.55rem;
  font-weight: 800;
  white-space: nowrap;
  border: 2px solid #6C47FF;
}

.mock-venue-badge img {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  object-fit: cover;
}

.mock-venue-dot {
  width: 10px;
  height: 10px;
  background: #6C47FF;
  border: 2px solid #fff;
  border-radius: 50%;
  margin-top: 2px;
  box-shadow: 0 2px 6px rgba(108,71,255,0.5);
}

.mock-venue.v1 { top: 28%; right: 22%; }
.mock-venue.v2 { top: 48%; right: 55%; }
.mock-venue.v3 { top: 62%; right: 30%; }

/* Coins */
.mock-coin {
  position: absolute;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #FFE066, #FFD700 50%, #B8860B);
  border: 2px solid #B8860B;
  font-size: 0.5rem;
  font-weight: 900;
  color: #5C3300;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  z-index: 3;
  animation: coinBob 2s ease-in-out infinite;
}

.mock-coin.big {
  width: 34px;
  height: 34px;
  font-size: 0.55rem;
  background: radial-gradient(circle at 35% 35%, #FF8A65, #FF5722 50%, #B71C1C);
  border-color: #FFD700;
  color: #fff;
}

.c1 { top: 35%; right: 38%; animation-delay: 0s; }
.c2 { top: 42%; right: 48%; animation-delay: 0.3s; }
.c3 { top: 55%; right: 42%; animation-delay: 0.6s; }
.c4 { top: 38%; right: 62%; animation-delay: 0.9s; }

@keyframes coinBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* Geofence circle */
.mock-geofence {
  position: absolute;
  top: 24%;
  right: 16%;
  width: 80px;
  height: 80px;
  border: 2px dashed rgba(108,71,255,0.45);
  border-radius: 50%;
  background: rgba(108,71,255,0.06);
  z-index: 2;
}

/* Event badge on map */
.mock-event-pin {
  position: absolute;
  top: 44%;
  right: 20%;
  z-index: 6;
  background: linear-gradient(135deg, #6C47FF, #9333EA);
  color: #fff;
  font-size: 0.48rem;
  font-weight: 800;
  padding: 5px 8px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(108,71,255,0.5);
  white-space: nowrap;
  border: 2px solid #fff;
}

.mock-event-pin.giveaway {
  background: linear-gradient(135deg, #111827, #374151);
}

.mock-event-pin::after {
  content: '';
  position: absolute;
  bottom: -6px;
  right: 50%;
  transform: translateX(50%);
  border: 6px solid transparent;
  border-top-color: #9333EA;
}

.mock-event-pin.giveaway::after { border-top-color: #374151; }

/* Treasure zone */
.mock-treasure-zone {
  position: absolute;
  top: 58%;
  right: 50%;
  width: 70px;
  height: 55px;
  background: rgba(239,68,68,0.15);
  border: 2px solid rgba(239,68,68,0.5);
  border-radius: 8px;
  z-index: 2;
  animation: zonePulse 2s ease-in-out infinite;
}

@keyframes zonePulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; box-shadow: 0 0 16px rgba(239,68,68,0.4); }
}

.mock-treasure-label {
  position: absolute;
  top: 52%;
  right: 46%;
  font-size: 0.45rem;
  font-weight: 800;
  color: #DC2626;
  background: #fff;
  padding: 2px 6px;
  border-radius: 6px;
  z-index: 3;
  white-space: nowrap;
}

/* Collect coin bar */
.mock-collect-bar {
  position: absolute;
  bottom: 8px;
  left: 8px;
  right: 8px;
  background: linear-gradient(135deg, #6C47FF, #9333EA);
  color: #fff;
  border-radius: 14px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
  box-shadow: 0 6px 20px rgba(108,71,255,0.45);
}

.mock-collect-bar strong { font-size: 0.72rem; }
.mock-collect-bar span { font-size: 0.55rem; opacity: 0.85; }
.mock-collect-btn {
  background: #fff;
  color: #6C47FF;
  font-size: 0.6rem;
  font-weight: 900;
  padding: 6px 12px;
  border-radius: 999px;
}

/* User location dot */
.mock-user-dot {
  position: absolute;
  top: 50%;
  right: 45%;
  width: 14px;
  height: 14px;
  background: #3B82F6;
  border: 3px solid #fff;
  border-radius: 50%;
  z-index: 7;
  box-shadow: 0 0 0 6px rgba(59,130,246,0.25);
}

/* ── EXPLORE mock ── */
.mock-explore-body {
  flex: 1;
  overflow: hidden;
  background: #F1F5F9;
}

.mock-explore-header {
  background: linear-gradient(180deg, #1a1a2e, #16213e);
  padding: 8px 14px 16px;
  color: #fff;
}

.mock-explore-header h4 {
  font-size: 1rem;
  font-weight: 900;
  text-align: center;
}

.mock-banner {
  margin: 8px 10px;
  border-radius: 14px;
  overflow: hidden;
  height: 72px;
  position: relative;
}

.mock-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mock-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 8px 10px;
}

.mock-banner-overlay strong { font-size: 0.65rem; }
.mock-banner-overlay span { font-size: 0.5rem; opacity: 0.8; }

.mock-section-lbl {
  font-size: 0.62rem;
  font-weight: 900;
  color: #1E293B;
  padding: 8px 12px 4px;
}

.mock-venue-row {
  display: flex;
  gap: 8px;
  padding: 0 10px 8px;
  overflow: hidden;
}

.mock-venue-card {
  flex-shrink: 0;
  width: 100px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.mock-venue-card img {
  width: 100%;
  height: 56px;
  object-fit: cover;
}

.mock-venue-card div {
  padding: 6px 8px;
}

.mock-venue-card strong {
  display: block;
  font-size: 0.52rem;
  font-weight: 800;
}

.mock-venue-card span {
  font-size: 0.45rem;
  color: #6C47FF;
  font-weight: 700;
}

.mock-event-card {
  margin: 0 10px 8px;
  background: #fff;
  border-radius: 12px;
  padding: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  border-right: 3px solid #6C47FF;
}

.mock-event-card.free { border-right-color: #10B981; }

.mock-event-card img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
}

.mock-event-card strong { font-size: 0.58rem; display: block; }
.mock-event-card span { font-size: 0.48rem; color: #64748B; }
.mock-free-tag {
  font-size: 0.45rem;
  background: #D1FAE5;
  color: #059669;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 800;
  margin-top: 2px;
  display: inline-block;
}

/* ── REWARDS mock ── */
.mock-rewards-body {
  flex: 1;
  overflow: hidden;
  background: #F1F5F9;
}

.mock-rewards-hero {
  background: linear-gradient(180deg, #1a1a2e, #0f3460);
  padding: 10px 14px 28px;
  text-align: center;
  color: #fff;
}

.mock-rewards-hero h4 { font-size: 0.9rem; font-weight: 900; }

.mock-balance {
  margin: -18px 12px 10px;
  background: linear-gradient(135deg, #6C47FF, #9333EA);
  border-radius: 16px;
  padding: 14px;
  color: #fff;
  text-align: center;
  box-shadow: 0 8px 24px rgba(108,71,255,0.35);
}

.mock-balance small { font-size: 0.5rem; opacity: 0.8; }
.mock-balance strong { font-size: 1.4rem; font-weight: 900; display: block; }

.mock-circles {
  display: flex;
  gap: 8px;
  padding: 8px 10px;
  overflow: hidden;
}

.mock-circle-item {
  flex-shrink: 0;
  text-align: center;
  width: 64px;
}

.mock-circle-item .circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  margin: 0 auto 4px;
}

.mock-circle-item .circle img { width: 100%; height: 100%; object-fit: cover; }
.mock-circle-item .pts {
  font-size: 0.45rem;
  font-weight: 900;
  color: #FBBF24;
  background: #1E1B4B;
  padding: 2px 6px;
  border-radius: 999px;
  display: inline-block;
}

.mock-partner-row {
  margin: 6px 10px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mock-partner-row img.cover {
  width: 100%;
  height: 50px;
  object-fit: cover;
}

.mock-partner-row .body {
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mock-partner-row .body img.logo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #6C47FF;
  margin-top: -20px;
}

.mock-partner-row .body strong { font-size: 0.58rem; display: block; }
.mock-partner-row .body span { font-size: 0.48rem; color: #64748B; }

/* ── COMMUNITY mock ── */
.mock-community-body {
  flex: 1;
  overflow: hidden;
  background: #F1F5F9;
}

.mock-community-header {
  background: linear-gradient(180deg, #1a1a2e, #0f3460);
  padding: 8px 14px 20px;
  text-align: center;
  color: #fff;
}

.mock-community-header h4 { font-size: 0.9rem; font-weight: 900; }

.mock-tabs-row {
  display: flex;
  gap: 6px;
  padding: 8px 10px;
}

.mock-mini-tab {
  flex: 1;
  text-align: center;
  font-size: 0.5rem;
  font-weight: 800;
  padding: 6px;
  border-radius: 999px;
  background: #E2E8F0;
  color: #64748B;
}

.mock-mini-tab.on {
  background: #6C47FF;
  color: #fff;
}

.mock-rank-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 10px 6px;
  background: #fff;
  border-radius: 12px;
  padding: 8px 10px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.mock-rank-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #FBBF24;
  color: #fff;
  font-size: 0.55rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mock-rank-num.s2 { background: #C0C0C0; }
.mock-rank-num.s3 { background: #CD7F32; }

.mock-rank-item img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  object-fit: cover;
}

.mock-rank-item .info { flex: 1; }
.mock-rank-item .info strong { font-size: 0.55rem; display: block; }
.mock-rank-item .info span { font-size: 0.45rem; color: #64748B; }
.mock-rank-score {
  font-size: 0.65rem;
  font-weight: 900;
  color: #6C47FF;
}

/* Map legend on desktop */
.tour-map-legend {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 16px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--muted);
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.legend-dot.coin { background: #FFD700; }
.legend-dot.venue { background: var(--sky-deep); }
.legend-dot.event { background: var(--pink-deep); }
.legend-dot.treasure { background: #EF4444; }
.legend-dot.user { background: #3B82F6; }

/* Featured map row — bigger phone */
.tour-row.featured {
  grid-template-columns: 1.1fr 0.9fr;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  margin-bottom: 64px;
  box-shadow: var(--shadow);
}

.tour-row.featured .iphone {
  width: 290px;
}

@media (max-width: 960px) {
  .tour-row,
  .tour-row.featured {
    grid-template-columns: 1fr;
    padding: 28px 20px;
    gap: 32px;
  }
  .tour-row.reverse .device-wrap,
  .tour-row.reverse .tour-copy { order: unset; }
  .device-wrap { margin: 0 auto; }
  .iphone-pro { --device-w: 248px; transform: none; }
  .iphone-pro-lg { --device-w: 262px; }
  .tour-row.reverse .iphone-pro,
  .tour-row.featured .iphone-pro { transform: none; }
  .tour-copy { text-align: center; }
  .tour-points li { text-align: right; }
  .tour-map-legend { grid-template-columns: 1fr; }
}

/* Realistic iPhone 15 Pro device frame */
.device-wrap {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.device-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  perspective: 1400px;
}

.iphone-pro {
  --device-w: 268px;
  --bezel: 11px;
  --radius-outer: 48px;
  --radius-inner: 38px;
  position: relative;
  width: var(--device-w);
  padding: 3px;
  border-radius: var(--radius-outer);
  background: linear-gradient(160deg, #4a4a4e 0%, #1a1a1c 35%, #2d2d30 65%, #0f0f10 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.14),
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 2px 4px rgba(0,0,0,0.12),
    0 24px 48px rgba(15,23,42,0.28),
    0 48px 96px rgba(15,23,42,0.18);
  transform: rotateY(-6deg) rotateX(1.5deg);
  transform-style: preserve-3d;
  transition: transform 0.45s ease;
}

.tour-row.reverse .iphone-pro {
  transform: rotateY(6deg) rotateX(1.5deg);
}

.tour-row.featured .iphone-pro {
  transform: rotateY(-4deg) rotateX(1deg);
}

.device-wrap:hover .iphone-pro {
  transform: rotateY(0deg) rotateX(0deg) scale(1.02);
}

.iphone-pro-lg {
  --device-w: 292px;
  --bezel: 12px;
  --radius-outer: 52px;
  --radius-inner: 42px;
}

.iphone-pro-shell {
  padding: var(--bezel);
  border-radius: calc(var(--radius-outer) - 3px);
  background: linear-gradient(180deg, #0a0a0a, #151515);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.85);
}

.iphone-pro-screen {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 19.5;
  border-radius: var(--radius-inner);
  overflow: hidden;
  background: #000;
  isolation: isolate;
}

.iphone-pro-shot {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
  transform: scale(1.002);
}

.iphone-pro-island {
  display: none;
}

.iphone-pro-glare {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    125deg,
    rgba(255,255,255,0.14) 0%,
    rgba(255,255,255,0.04) 18%,
    transparent 42%
  );
  z-index: 3;
  pointer-events: none;
}

.iphone-pro-home {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 34%;
  max-width: 120px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,0.88);
  z-index: 4;
  pointer-events: none;
  box-shadow: 0 0 6px rgba(255,255,255,0.25);
}

.iphone-pro-btn {
  position: absolute;
  background: linear-gradient(90deg, #3a3a3e, #1e1e20);
  border-radius: 2px;
  z-index: 2;
}

.iphone-pro-btn-silent {
  left: -2px;
  top: 108px;
  width: 3px;
  height: 28px;
}

.iphone-pro-btn-vol-up {
  left: -2px;
  top: 152px;
  width: 3px;
  height: 48px;
}

.iphone-pro-btn-vol-down {
  left: -2px;
  top: 208px;
  width: 3px;
  height: 48px;
}

.iphone-pro-btn-power {
  right: -2px;
  top: 168px;
  width: 3px;
  height: 72px;
}

body.lang-en .iphone-pro-btn-silent,
body.lang-en .iphone-pro-btn-vol-up,
body.lang-en .iphone-pro-btn-vol-down {
  left: auto;
  right: -2px;
}

body.lang-en .iphone-pro-btn-power {
  right: auto;
  left: -2px;
}

.device-shadow {
  width: 72%;
  height: 22px;
  margin-top: -6px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(15,23,42,0.28) 0%, transparent 72%);
  filter: blur(2px);
}

.tour-row.featured {
  grid-template-columns: 1.05fr 0.95fr;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px 44px;
  margin-bottom: 64px;
  box-shadow: var(--shadow);
  align-items: center;
}

.tour-row.featured .device-wrap {
  padding: 12px 0;
}

.tour-row.reverse .device-wrap {
  order: -1;
}

.tour-row.reverse .tour-copy {
  order: 1;
}

.tour-points-compact {
  gap: 14px;
}

.tour-points-compact li {
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 12px 14px;
}

.tour-points-compact li strong {
  font-size: 0.95rem;
}

.tour-points-compact li span {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--muted);
}

.tour-copy h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  line-height: 1.35;
}

.tour-copy > p {
  font-size: 1rem;
  line-height: 1.7;
}

.map-explainer.tour-row {
  display: none;
}

.map-explainer-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 32px 36px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.tour-map-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
  font-size: 0.95rem;
  line-height: 1.6;
}

body.lang-en .tour-points-compact li {
  align-items: flex-start;
  text-align: left;
}

/* ── Tour journey — slides layout ── */
.tour-journey {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
}

.journey-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 999px;
  text-decoration: none;
  color: var(--muted);
  font-weight: 800;
  font-size: 1rem;
  transition: all 0.25s ease;
}

.journey-pill span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--sky-light);
  color: var(--sky-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 900;
}

.journey-pill em {
  font-style: normal;
}

.journey-pill:hover,
.journey-pill.active {
  border-color: var(--sky-deep);
  color: var(--text);
  box-shadow: 0 4px 16px rgba(14, 165, 233, 0.15);
}

.journey-pill.active span {
  background: var(--grad);
  color: #fff;
}

.tour-slide {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 0;
  margin-bottom: 40px;
  overflow: hidden;
  box-shadow: var(--shadow);
  scroll-margin-top: 100px;
}

.tour-slide.featured {
  border: 2px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, var(--sky-deep), var(--pink-deep)) border-box;
}

.tour-slide-head-minimal {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 32px 18px;
  background: linear-gradient(180deg, var(--sky-light) 0%, #fff 100%);
  border-bottom: 1px solid var(--border);
}

.tour-title-bold {
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 900;
  line-height: 1.2;
  margin: 0;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tour-features.tour-features-dense {
  gap: 12px;
}

.tour-step-badge {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--grad);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(56, 189, 248, 0.35);
}

.tour-slide-titles h3 {
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  font-weight: 900;
  line-height: 1.35;
  margin: 8px 0 10px;
}

.tour-hook {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.65;
  margin: 0 0 10px;
  font-style: normal;
  font-weight: 600;
}

.tour-detail {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.tour-impact-row {
  margin-bottom: 4px;
}

.tour-impact {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 900;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.12);
  color: var(--sky-deep);
  border: 1px solid rgba(14, 165, 233, 0.2);
}

.tour-impact.hot {
  background: rgba(239, 68, 68, 0.08);
  color: #DC2626;
  border-color: rgba(239, 68, 68, 0.2);
}

.tour-impact.gold {
  background: rgba(245, 158, 11, 0.12);
  color: #D97706;
  border-color: rgba(245, 158, 11, 0.25);
}

.tour-slide-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  padding: 32px;
}

.tour-slide-body.reverse .device-wrap {
  order: 2;
}

.tour-slide-body.reverse .tour-features {
  order: 1;
}

.tour-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tour-chip {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 22px;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 16px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.tour-chip:hover {
  transform: translateX(-4px);
  box-shadow: 0 8px 28px rgba(14, 165, 233, 0.12);
  border-color: rgba(14, 165, 233, 0.35);
}

body.lang-en .tour-chip:hover {
  transform: translateX(4px);
}

.chip-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  line-height: 1;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sky-light);
  border-radius: 12px;
}

.tour-chip strong {
  display: block;
  font-size: 1.12rem;
  font-weight: 900;
  margin-bottom: 8px;
  color: var(--text);
  line-height: 1.35;
}

.tour-chip span {
  display: block;
  font-size: 1.02rem;
  color: #475569;
  line-height: 1.7;
  font-weight: 600;
}

.tour-sales-bar {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 32px;
  background: linear-gradient(90deg, #fff, var(--sky-light));
  border-top: 1px solid rgba(16, 185, 129, 0.2);
}

.sales-label {
  flex-shrink: 0;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #059669;
  background: #fff;
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.tour-sales-bar p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #065F46;
  font-weight: 800;
}

@media (max-width: 960px) {
  .tour-slide-body,
  .tour-slide-body.reverse {
    grid-template-columns: 1fr;
    padding: 24px 16px;
    gap: 24px;
  }
  .tour-slide-head-minimal { padding: 16px; }
  .trust-item { min-height: 64px; padding: 10px 22px 10px 10px; }
  .trust-item img,
  .trust-logo-gea,
  .trust-logo-rs { width: 48px; height: 48px; }
  .tour-chip { padding: 18px 16px; }
  .tour-chip strong { font-size: 1.12rem; }
  .tour-chip span { font-size: 1.05rem; line-height: 1.7; }
  .chip-icon { width: 44px; height: 44px; font-size: 1.5rem; }
  .tour-title-bold { font-size: 1.85rem; }
  .app-tour-intro h2 { font-size: 1.65rem; }
  .journey-pill { font-size: 1.05rem; padding: 14px 18px; }
  .tour-slide-body.reverse .device-wrap,
  .tour-slide-body.reverse .tour-features { order: unset; }
  .tour-sales-bar { flex-direction: column; padding: 16px 16px; }
  .iphone-pro { --device-w: 240px; transform: none; }
  .iphone-pro-lg { --device-w: 256px; }
}
