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

:root {
  --bg: #ffffff;
  --bg-subtle: #f8f9fc;
  --bg-muted: #f1f3f9;
  --bg-card: #ffffff;
  --border-color: #e8ecf4;
  --border-color-strong: #dce1eb;
  --text-primary: #1a1d2d;
  --text-secondary: #5a6178;
  --text-muted: #8b92a8;
  --accent: #3b82f6;
  --accent-from: #60a5fa;
  --accent-to: #3b82f6;
  --accent-gradient: linear-gradient(135deg, #60a5fa, #3b82f6);
  --accent-hover: #2563eb;
  --accent-light: #eff6ff;
  --accent-border: #bfdbfe;
  --green: #34c759;
  --green-light: #edfbf0;
  --purple: #8b5cf6;
  --purple-light: #f3f0ff;
  --amber: #f59e0b;
  --amber-light: #fef9ec;
  --radius: 16px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-primary);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 1rem 1.5rem;
  pointer-events: none;
}

.header-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  max-width: 720px;
  height: 52px;
  padding: 0 0.5rem 0 1.25rem;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.03);
  pointer-events: auto;
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.header-pill:hover {
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.site-header.scrolled .header-pill {
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.04);
}

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

.logo-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  background: var(--accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.logo-text {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-weight: 500;
  font-size: 14px;
  border-radius: 100px;
  padding: 0.5rem 1.25rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent-border);
}

.btn-ghost:hover {
  background: var(--accent-light);
}

.btn-primary {
  background: var(--accent-gradient);
  color: #fff;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-color-strong);
}

.btn-outline:hover {
  background: var(--bg-subtle);
  border-color: var(--border-color-strong);
}

.btn-lg {
  font-size: 15px;
  padding: 0.75rem 2rem;
  border-radius: 100px;
}

.hero {
  padding: 7rem 1.5rem 4rem;
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, #f0f4fb 100%);
}

.hero-inner {
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border-radius: 100px;
  background: var(--bg);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 2.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.hero-title .gradient-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}

.hero-stat {
  text-align: center;
}

.hero-stat-value {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.hero-stat-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 0.125rem;
}

.hero-preview {
  margin-top: 4rem;
}

.preview-card-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 1rem;
  max-width: 920px;
  margin: 0 auto;
}

.preview-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  text-align: left;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.preview-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.preview-card-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.preview-card-status {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 11px;
  font-weight: 500;
  padding: 0.25rem 0.625rem;
  border-radius: 100px;
}

.status-online {
  background: var(--green-light);
  color: var(--green);
}

.preview-avatar {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
}

.preview-user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.preview-user-info h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.preview-user-info p {
  font-size: 12px;
  color: var(--text-muted);
}

.preview-tag {
  display: inline-flex;
  padding: 0.25rem 0.625rem;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 500;
  margin-right: 0.375rem;
  margin-bottom: 0.375rem;
}

.tag-blue {
  background: var(--accent-light);
  color: var(--accent);
}

.tag-purple {
  background: var(--purple-light);
  color: var(--purple);
}

.tag-green {
  background: var(--green-light);
  color: var(--green);
}

.preview-map-card {
  grid-row: span 2;
  position: relative;
  overflow: hidden;
  min-height: 280px;
}

.map-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #e8edf8 0%, #dce4f4 50%, #d4ddf0 100%);
  border-radius: inherit;
}

.map-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(59, 130, 246, 0.4);
}

.map-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  opacity: 0.3;
  animation: ping 2s ease-out infinite;
}

@keyframes ping {
  0% { transform: scale(1); opacity: 0.3; }
  100% { transform: scale(2.5); opacity: 0; }
}

.map-dot-1 { top: 30%; left: 40%; }
.map-dot-2 { top: 55%; left: 65%; animation-delay: 0.5s; }
.map-dot-3 { top: 40%; left: 25%; animation-delay: 1s; }
.map-dot-4 { top: 70%; left: 45%; animation-delay: 1.5s; }
.map-dot-5 { top: 25%; left: 60%; animation-delay: 0.7s; }

.map-dot-2::after { animation-delay: 0.5s; }
.map-dot-3::after { animation-delay: 1s; }
.map-dot-4::after { animation-delay: 1.5s; }
.map-dot-5::after { animation-delay: 0.7s; }

.map-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59, 130, 246, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}

.map-label {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  padding: 0.5rem 0.875rem;
  border-radius: 8px;
  font-size: 12px;
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
}

.map-label-count {
  color: var(--accent);
  font-weight: 600;
}

.preview-metric {
  display: flex;
  align-items: baseline;
  gap: 0.375rem;
  margin-top: 0.75rem;
}

.preview-metric-value {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.preview-metric-unit {
  font-size: 13px;
  color: var(--text-muted);
}

.preview-bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 48px;
  margin-top: 1rem;
}

.preview-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: var(--accent);
  opacity: 0.5;
}

.preview-bar:nth-child(even) { opacity: 0.25; }
.preview-bar:last-child { opacity: 0.8; }

.preview-msg-card .msg-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-top: 0.75rem;
}

.msg-row {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.5rem;
  border-radius: 8px;
  background: var(--bg-subtle);
}

.msg-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
}

.msg-content {
  flex: 1;
  min-width: 0;
}

.msg-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
}

.msg-text {
  font-size: 11px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.msg-time {
  font-size: 10px;
  color: var(--text-muted);
  flex-shrink: 0;
}

.msg-unread {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.section-tag svg {
  width: 16px;
  height: 16px;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 560px;
}

.features {
  padding: 6rem 1.5rem;
  background: var(--bg);
}

.map-showcase {
  margin-top: 3rem;
}

.map-showcase-inner {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.map-bg {
  position: relative;
  height: 520px;
  background: linear-gradient(145deg, #e4eaf6 0%, #dce4f4 30%, #e8edf8 60%, #d9e2f2 100%);
  overflow: hidden;
}

.map-bg .map-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59, 130, 246, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.07) 1px, transparent 1px);
  background-size: 60px 60px;
}

.map-road {
  position: absolute;
  background: rgba(255, 255, 255, 0.5);
}

.map-road-h1 { top: 35%; left: 0; right: 0; height: 3px; }
.map-road-h2 { top: 65%; left: 10%; right: 5%; height: 2px; }
.map-road-v1 { left: 40%; top: 0; bottom: 0; width: 3px; }
.map-road-v2 { left: 72%; top: 10%; bottom: 15%; width: 2px; }

.map-block {
  position: absolute;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.map-block-1 { top: 8%; left: 5%; width: 28%; height: 22%; }
.map-block-2 { top: 42%; left: 45%; width: 22%; height: 18%; }
.map-block-3 { top: 10%; left: 45%; width: 18%; height: 20%; }
.map-block-4 { top: 70%; left: 8%; width: 25%; height: 20%; }
.map-block-5 { top: 42%; left: 75%; width: 20%; height: 25%; }

.map-pin-group {
  position: absolute;
  z-index: 10;
}

.map-pin-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.12);
  animation: pin-pulse 3s ease-out infinite;
}

@keyframes pin-pulse {
  0% { transform: translate(-50%, -50%) scale(0.5); opacity: 0.6; }
  100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
}

.map-pin {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.7);
}

.map-pin.blue { background: var(--accent); box-shadow: 0 0 0 3px rgba(255,255,255,0.7), 0 2px 8px rgba(59,130,246,0.3); }
.map-pin.green { background: var(--green); box-shadow: 0 0 0 3px rgba(255,255,255,0.7), 0 2px 8px rgba(52,199,89,0.3); }
.map-pin.purple { background: var(--purple); box-shadow: 0 0 0 3px rgba(255,255,255,0.7), 0 2px 8px rgba(139,92,246,0.3); }
.map-pin.amber { background: var(--amber); box-shadow: 0 0 0 3px rgba(255,255,255,0.7), 0 2px 8px rgba(245,158,11,0.3); }

.map-person-card {
  position: absolute;
  top: -8px;
  left: 24px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 0.625rem 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.04);
  animation: card-fade-in 0.5s ease-out both;
  z-index: 5;
}

@keyframes card-fade-in {
  from { opacity: 0; transform: translateX(-8px); }
  to { opacity: 1; transform: translateX(0); }
}

.map-pin-group:nth-child(7) .map-person-card { animation-delay: 0.1s; }
.map-pin-group:nth-child(8) .map-person-card { animation-delay: 0.3s; }
.map-pin-group:nth-child(9) .map-person-card { animation-delay: 0.5s; }
.map-pin-group:nth-child(10) .map-person-card { animation-delay: 0.7s; }
.map-pin-group:nth-child(11) .map-person-card { animation-delay: 0.9s; }

.map-person-avatar {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.map-person-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.map-person-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.map-person-role {
  font-size: 11px;
  color: var(--text-muted);
}

.map-person-dist {
  font-size: 11px;
  color: var(--text-muted);
  padding-left: 0.5rem;
  border-left: 1px solid var(--border-color);
  margin-left: auto;
}

.map-pin-small {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.35);
  box-shadow: 0 0 6px rgba(59, 130, 246, 0.15);
  z-index: 1;
}

.map-you-marker {
  position: absolute;
  top: 48%;
  left: 48%;
  z-index: 20;
}

.map-you-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.12);
}

.map-you-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
  position: relative;
  z-index: 2;
}

.map-you-label {
  position: absolute;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  background: #fff;
  padding: 2px 8px;
  border-radius: 6px;
  border: 1px solid var(--accent-border);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.map-showcase-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border-color);
  background: var(--bg-subtle);
}

.map-showcase-stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 13px;
  color: var(--text-secondary);
}

.map-showcase-stat strong {
  color: var(--text-primary);
}

.map-showcase-stat svg {
  color: var(--accent);
}

.how-it-works {
  padding: 6rem 1.5rem;
  background: var(--bg-subtle);
}

.steps-connected {
  position: relative;
  max-width: 560px;
  margin: 3.5rem auto 0;
}

.steps-line {
  position: absolute;
  left: 23px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: var(--border-color);
  z-index: 0;
}

.steps-line-fill {
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, var(--accent) 0%, var(--green) 100%);
  border-radius: 1px;
  transition: height 0.1s linear;
}

.step-row {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem 0;
  z-index: 1;
}

.step-dot {
  position: relative;
  flex-shrink: 0;
}

.step-dot-inner {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  position: relative;
  z-index: 2;
  box-shadow: 0 2px 12px rgba(59, 130, 246, 0.25);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
}

.step-row.is-visible .step-dot-inner {
  transform: scale(1);
}

.step-dot-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--accent-border);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.5s ease 0.2s, transform 0.5s ease 0.2s;
}

.step-row.is-visible .step-dot-ring {
  opacity: 1;
  transform: scale(1);
}

.step-content {
  flex: 1;
  padding-top: 0.25rem;
}

.step-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.step-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 10px;
  border-radius: 20px;
}

.free-badge {
  color: var(--green);
  background: var(--green-light);
  border: 1px solid rgba(52, 199, 89, 0.2);
}

.step-time {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.step-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.375rem;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.step-desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.possibilities {
  padding: 6rem 1.5rem 4rem;
  background: var(--bg);
  overflow: hidden;
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-pop {
  opacity: 0;
  transform: scale(0.85) translateY(10px);
  transition: opacity 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.scroll-pop.is-visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.snake-grid {
  margin-top: 3.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.snake-row {
  display: flex;
  align-items: stretch;
  gap: 1rem;
}

.snake-row-ltr {
  flex-direction: row;
}

.snake-row-rtl {
  flex-direction: row-reverse;
}

.snake-card {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.snake-card:hover {
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.1);
  border-color: var(--accent-border);
  transform: translateY(-2px);
}

.snake-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.snake-place {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-light);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.snake-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1.45;
}

.snake-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  color: var(--accent);
  opacity: 0.5;
}

.snake-turn-down {
  display: flex;
  justify-content: flex-end;
  padding: 0.75rem 2rem;
  color: var(--accent);
  opacity: 0.5;
}

.snake-row-rtl + .snake-turn-down,
.snake-turn-down:last-of-type {
  justify-content: flex-start;
}

.snake-finale {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 2.5rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--purple-light) 100%);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 40px rgba(59, 130, 246, 0.1);
}

.snake-finale-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--purple) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.25);
}

.snake-finale-title {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 1.35;
  margin-bottom: 1.25rem;
  max-width: 400px;
}

.cta-section {
  padding: 6rem 1.5rem;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, #f0f4fb 100%);
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.cta-subtitle {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.site-footer {
  border-top: 1px solid var(--border-color);
  padding: 2.5rem 1.5rem;
  background: var(--bg);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-tagline {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.footer-right {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .hero-title {
    font-size: 2.75rem;
  }

  .step-dot-inner {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .steps-line {
    left: 19px;
  }

  .snake-row {
    flex-direction: column !important;
    gap: 0.75rem;
  }

  .snake-arrow {
    transform: rotate(90deg);
    width: auto;
    padding: 0.25rem 0;
  }

  .snake-arrow-left {
    transform: rotate(90deg);
  }

  .snake-turn-down {
    justify-content: center !important;
    padding: 0.5rem;
  }

  .preview-card-grid {
    grid-template-columns: 1fr;
  }

  .preview-map-card {
    min-height: 200px;
    grid-row: auto;
  }

  .map-bg {
    height: 380px;
  }

  .map-person-card {
    display: none;
  }

  .map-showcase-footer {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 3.5rem 1.5rem 2.5rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-cta-group {
    flex-direction: column;
  }

  .hero-stats {
    flex-direction: column;
    gap: 0.75rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .cta-title {
    font-size: 1.75rem;
  }

  .footer-inner {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .map-bg {
    height: 300px;
  }
}
