/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #6C63FF;
  --primary-dark: #5A52E0;
  --blue: #3B82F6;
  --purple: #8B5CF6;
  --green: #10B981;
  --orange: #F59E0B;
  --pink: #EC4899;
  --cyan: #06B6D4;
  --dark: #0F172A;
  --dark-2: #1E293B;
  --gray-1: #334155;
  --gray-2: #64748B;
  --gray-3: #94A3B8;
  --gray-4: #CBD5E1;
  --gray-5: #E2E8F0;
  --gray-6: #F1F5F9;
  --white: #FFFFFF;
  --gradient: linear-gradient(135deg, #6C63FF 0%, #3B82F6 100%);
  --gradient-text: linear-gradient(135deg, #6C63FF 0%, #3B82F6 50%, #06B6D4 100%);
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

img {
  max-width: 100%;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--dark);
}

.logo-icon {
  width: 36px;
  height: 36px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-2);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--dark);
}

.btn-nav {
  background: var(--gradient);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.85rem !important;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-nav:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(108,99,255,0.4);
}

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

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== LANGUAGE SWITCHER ===== */
.lang-switcher {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--gray-5);
  background: var(--white);
  cursor: pointer;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-2);
  transition: all 0.2s;
}

.lang-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-5);
  padding: 6px;
  min-width: 160px;
  display: none;
  z-index: 100;
}

.lang-dropdown.open {
  display: block;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 14px;
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-2);
  border-radius: 8px;
  transition: all 0.15s;
}

.lang-option:hover {
  background: var(--gray-6);
  color: var(--dark);
}

.lang-option.active {
  background: rgba(108,99,255,0.1);
  color: var(--primary);
  font-weight: 600;
}

.lang-flag {
  font-size: 1.1rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: var(--gradient);
  color: var(--white);
  padding: 14px 32px;
  box-shadow: 0 4px 15px rgba(108,99,255,0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(108,99,255,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  padding: 14px 32px;
  border: 2px solid var(--gray-5);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}

/* ===== HERO ===== */
.hero {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #F8FAFF 0%, #FFFFFF 100%);
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}

.shape-1 {
  width: 600px;
  height: 600px;
  background: var(--primary);
  top: -200px;
  right: -100px;
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: var(--blue);
  bottom: -100px;
  left: -100px;
}

.shape-3 {
  width: 200px;
  height: 200px;
  background: var(--cyan);
  top: 50%;
  left: 50%;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(108,99,255,0.1);
  color: var(--primary);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

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

.hero-description {
  font-size: 1.15rem;
  color: var(--gray-2);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}

.stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--gray-3);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--gray-5);
}

/* ===== PHONE MOCKUP ===== */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-mockup {
  position: relative;
  z-index: 2;
}

.phone-frame {
  width: 280px;
  height: 580px;
  background: var(--dark);
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.2), 0 0 0 1px rgba(255,255,255,0.1) inset;
  position: relative;
}

.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 28px;
  background: var(--dark);
  border-radius: 0 0 18px 18px;
  z-index: 10;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--white);
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}

/* Mock Map */
.mock-map {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.mock-map-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(255,255,255,0.9) 0%, transparent 30%),
    linear-gradient(
      135deg,
      #E8F4FD 0%, #D4EDDA 20%, #E8F4FD 35%,
      #FFF3CD 50%, #E8F4FD 65%, #D4EDDA 80%, #E8F4FD 100%
    );
}

.mock-map-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(0,0,0,0.03) 40px, rgba(0,0,0,0.03) 41px),
    repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(0,0,0,0.03) 40px, rgba(0,0,0,0.03) 41px);
}

.mock-search-bar {
  position: absolute;
  top: 44px;
  left: 16px;
  right: 16px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-lg);
  z-index: 5;
  font-size: 0.7rem;
  color: var(--gray-3);
}

.mock-pin {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: float 3s ease-in-out infinite;
}

.pin-dot {
  width: 16px;
  height: 16px;
  background: var(--primary);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  border: 2px solid var(--white);
  box-shadow: 0 2px 8px rgba(108,99,255,0.4);
}

.pin-dot.restaurant { background: var(--orange); box-shadow: 0 2px 8px rgba(245,158,11,0.4); }
.pin-dot.beauty { background: var(--pink); box-shadow: 0 2px 8px rgba(236,72,153,0.4); }
.pin-dot.shop { background: var(--green); box-shadow: 0 2px 8px rgba(16,185,129,0.4); }

.pin-label {
  background: var(--white);
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 0.55rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  margin-top: 4px;
  white-space: nowrap;
}

.pin-1 { top: 120px; left: 30px; animation-delay: 0s; }
.pin-2 { top: 180px; right: 40px; animation-delay: 0.5s; }
.pin-3 { top: 260px; left: 60px; animation-delay: 1s; }
.pin-4 { top: 200px; left: 130px; animation-delay: 1.5s; }
.pin-5 { top: 310px; right: 60px; animation-delay: 2s; }

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

.mock-categories {
  position: absolute;
  top: 92px;
  left: 16px;
  right: 16px;
  display: flex;
  gap: 6px;
  z-index: 4;
}

.cat {
  padding: 6px 12px;
  background: var(--white);
  border-radius: var(--radius-full);
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--gray-2);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}

.cat.active {
  background: var(--primary);
  color: var(--white);
}

.mock-bottom-card {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 12px;
  display: flex;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  z-index: 5;
}

.card-img {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background: var(--gradient);
  flex-shrink: 0;
}

.card-info strong {
  display: block;
  font-size: 0.75rem;
}

.card-info span {
  font-size: 0.6rem;
  color: var(--gray-3);
}

.card-stars {
  font-size: 0.6rem;
  color: var(--orange);
  margin-top: 2px;
}

/* Floating Cards */
.floating-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-xl);
  z-index: 5;
  animation: floatCard 4s ease-in-out infinite;
}

.floating-card strong {
  display: block;
  font-size: 0.8rem;
}

.floating-card span {
  font-size: 0.7rem;
  color: var(--gray-3);
}

.fc-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fc-icon.blue { background: var(--gradient); }
.fc-icon.green { background: linear-gradient(135deg, #10B981, #059669); }

.card-top-right {
  top: 20px;
  right: -40px;
  animation-delay: 0.5s;
}

.card-bottom-left {
  bottom: 60px;
  left: -60px;
  animation-delay: 1.5s;
}

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

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  background: rgba(108,99,255,0.1);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.section-badge.light {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--gray-2);
  max-width: 540px;
  margin: 0 auto;
}

/* ===== FEATURES ===== */
.features {
  padding: 100px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-5);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s;
}

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

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon.blue { background: rgba(59,130,246,0.1); color: var(--blue); }
.feature-icon.purple { background: rgba(139,92,246,0.1); color: var(--purple); }
.feature-icon.green { background: rgba(16,185,129,0.1); color: var(--green); }
.feature-icon.orange { background: rgba(245,158,11,0.1); color: var(--orange); }
.feature-icon.pink { background: rgba(236,72,153,0.1); color: var(--pink); }
.feature-icon.cyan { background: rgba(6,182,212,0.1); color: var(--cyan); }

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--gray-2);
  line-height: 1.6;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 100px 0;
  background: var(--gray-6);
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
}

.tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid var(--gray-5);
  background: var(--white);
  color: var(--gray-2);
  transition: all 0.2s;
  font-family: inherit;
}

.tab.active {
  background: var(--gradient);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(108,99,255,0.3);
}

.tab:hover:not(.active) {
  border-color: var(--primary);
  color: var(--primary);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.steps {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: var(--white);
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.3s;
}

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

.step-number {
  width: 48px;
  height: 48px;
  background: var(--gradient);
  color: var(--white);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.step-content p {
  font-size: 0.9rem;
  color: var(--gray-2);
  line-height: 1.6;
}

/* ===== SCREENS SHOWCASE ===== */
.screens {
  padding: 100px 0;
}

.screens-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.screen-item {
  text-align: center;
}

.screen-item h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 4px;
}

.screen-item p {
  font-size: 0.8rem;
  color: var(--gray-3);
}

.phone-mini {
  width: 100%;
  max-width: 220px;
  margin: 0 auto;
  aspect-ratio: 9/19;
  background: var(--dark);
  border-radius: 28px;
  padding: 8px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  position: relative;
}

.phone-mini-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 20px;
  background: var(--dark);
  border-radius: 0 0 12px 12px;
  z-index: 10;
}

.phone-mini-screen {
  width: 100%;
  height: 100%;
  background: var(--white);
  border-radius: 22px;
  overflow: hidden;
}

.screen-mock {
  width: 100%;
  height: 100%;
  padding: 32px 12px 12px;
  position: relative;
}

/* Map Screen Mock */
.map-screen {
  background: linear-gradient(180deg, #E8F4FD 0%, #D4EDDA 40%, #FFF9E6 100%);
  padding: 0;
}

.sm-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 14px 10px;
  background: rgba(255,255,255,0.9);
}

.sm-title {
  font-size: 0.75rem;
  font-weight: 700;
}

.sm-icon-group {
  display: flex;
  gap: 4px;
}

.sm-dot-icon {
  width: 8px;
  height: 8px;
  background: var(--gray-4);
  border-radius: 50%;
}

.sm-map-area {
  flex: 1;
  position: relative;
  height: 55%;
}

.sm-map-grid {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 20px, rgba(0,0,0,0.04) 20px, rgba(0,0,0,0.04) 21px),
    repeating-linear-gradient(90deg, transparent, transparent 20px, rgba(0,0,0,0.04) 20px, rgba(0,0,0,0.04) 21px);
}

.sm-pin {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  border: 1.5px solid white;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.sm-pin-1 { background: var(--primary); top: 20%; left: 30%; }
.sm-pin-2 { background: var(--orange); top: 35%; right: 25%; }
.sm-pin-3 { background: var(--pink); top: 55%; left: 45%; }
.sm-pin-4 { background: var(--green); top: 40%; left: 15%; }
.sm-pin-5 { background: var(--blue); top: 65%; right: 35%; }

.sm-bottom-sheet {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-radius: 14px 14px 0 0;
  padding: 10px 12px;
}

.sm-handle {
  width: 32px;
  height: 3px;
  background: var(--gray-4);
  border-radius: 2px;
  margin: 0 auto 8px;
}

.sm-place-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
}

.sm-place-img {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  flex-shrink: 0;
}

.sm-place-info {
  flex: 1;
}

.sm-place-name {
  height: 6px;
  width: 60%;
  background: var(--gray-4);
  border-radius: 3px;
  margin-bottom: 4px;
}

.sm-place-cat {
  height: 4px;
  width: 40%;
  background: var(--gray-5);
  border-radius: 2px;
}

.sm-place-dist {
  font-size: 0.5rem;
  color: var(--gray-3);
  font-weight: 600;
}

/* Categories Screen */
.categories-screen {
  background: var(--gray-6);
}

.sm-search-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border-radius: 8px;
  padding: 8px 10px;
  margin-bottom: 14px;
}

.sm-search-icon {
  width: 10px;
  height: 10px;
  border: 1.5px solid var(--gray-4);
  border-radius: 50%;
}

.sm-search-text {
  height: 5px;
  width: 60%;
  background: var(--gray-5);
  border-radius: 3px;
}

.sm-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}

.sm-cat-item {
  background: var(--white);
  border-radius: 10px;
  padding: 10px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.sm-cat-icon {
  width: 24px;
  height: 24px;
  border-radius: 8px;
}

.sm-cat-label {
  height: 4px;
  width: 70%;
  background: var(--gray-4);
  border-radius: 2px;
}

.sm-popular {
  margin-top: 8px;
}

.sm-pop-title {
  height: 6px;
  width: 40%;
  background: var(--gray-4);
  border-radius: 3px;
  margin-bottom: 8px;
}

.sm-pop-card {
  height: 32px;
  background: var(--white);
  border-radius: 8px;
  margin-bottom: 6px;
}

/* Profile Screen */
.profile-screen {
  padding: 0;
}

.sm-profile-cover {
  height: 30%;
  background: var(--gradient);
}

.sm-profile-avatar {
  width: 40px;
  height: 40px;
  background: var(--white);
  border: 3px solid var(--white);
  border-radius: 50%;
  margin: -20px auto 6px;
  box-shadow: var(--shadow-md);
  background: linear-gradient(135deg, var(--orange), var(--pink));
}

.sm-profile-name {
  height: 7px;
  width: 50%;
  background: var(--dark);
  border-radius: 4px;
  margin: 0 auto 4px;
}

.sm-profile-cat {
  height: 4px;
  width: 35%;
  background: var(--gray-4);
  border-radius: 2px;
  margin: 0 auto 8px;
}

.sm-profile-rating {
  text-align: center;
  margin-bottom: 10px;
}

.sm-star {
  font-size: 0.55rem;
  color: var(--orange);
}

.sm-rating-text {
  font-size: 0.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-left: 2px;
}

.sm-profile-actions {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
  padding: 0 12px;
}

.sm-action-btn {
  flex: 1;
  height: 22px;
  border-radius: 6px;
  opacity: 0.8;
}

.sm-profile-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 0 12px;
}

.sm-photo {
  aspect-ratio: 1;
  background: var(--gray-5);
  border-radius: 6px;
}

.sm-photo:nth-child(1) { background: linear-gradient(135deg, #E8F4FD, #D4EDDA); }
.sm-photo:nth-child(2) { background: linear-gradient(135deg, #FFF3CD, #FCE4EC); }
.sm-photo:nth-child(3) { background: linear-gradient(135deg, #E8F4FD, #EDE7F6); }

/* Dashboard Screen */
.dashboard-screen {
  background: var(--gray-6);
}

.sm-dash-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}

.sm-dash-stat {
  padding: 10px;
  border-radius: 10px;
  text-align: center;
}

.sm-dash-num {
  font-size: 0.85rem;
  font-weight: 800;
}

.sm-dash-label {
  height: 4px;
  width: 60%;
  background: rgba(0,0,0,0.1);
  border-radius: 2px;
  margin: 4px auto 0;
}

.sm-dash-chart {
  background: var(--white);
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 10px;
}

.sm-chart-title {
  height: 5px;
  width: 40%;
  background: var(--gray-4);
  border-radius: 3px;
  margin-bottom: 10px;
}

.sm-chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 50px;
}

.sm-bar {
  flex: 1;
  background: var(--gradient);
  border-radius: 3px 3px 0 0;
  min-height: 8px;
}

.sm-dash-reviews {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sm-review-item {
  height: 24px;
  background: var(--white);
  border-radius: 8px;
}

/* BG Colors */
.bg-blue { background: var(--blue); }
.bg-green { background: var(--green); }
.bg-orange { background: var(--orange); }
.bg-pink { background: var(--pink); }
.bg-purple { background: var(--purple); }
.bg-cyan { background: var(--cyan); }
.bg-blue-light { background: rgba(59,130,246,0.1); }
.bg-green-light { background: rgba(16,185,129,0.1); }

/* ===== BUSINESS CTA ===== */
.business-cta {
  padding: 100px 0;
  background: var(--dark);
  color: var(--white);
  overflow: hidden;
}

.biz-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.biz-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.biz-content p {
  color: var(--gray-3);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.biz-benefits {
  list-style: none;
  margin-bottom: 36px;
}

.biz-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--gray-4);
}

.biz-benefits svg {
  color: var(--green);
  flex-shrink: 0;
}

/* Business Cards Stack */
.biz-visual {
  position: relative;
  height: 400px;
}

.biz-card-stack {
  position: relative;
  width: 100%;
  height: 100%;
}

.biz-card {
  position: absolute;
  width: 320px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  color: var(--dark);
  box-shadow: var(--shadow-xl);
  transition: all 0.3s;
}

.biz-card-1 {
  top: 0;
  left: 10%;
  z-index: 3;
  transform: rotate(-2deg);
}

.biz-card-2 {
  top: 60px;
  right: 5%;
  z-index: 2;
  transform: rotate(2deg);
}

.biz-card-3 {
  bottom: 0;
  left: 20%;
  z-index: 1;
  transform: rotate(-1deg);
}

.biz-card:hover {
  z-index: 10;
  transform: rotate(0) scale(1.02);
}

.bc-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.bc-avatar {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.bc-name {
  font-weight: 700;
  font-size: 0.9rem;
}

.bc-cat {
  font-size: 0.75rem;
  color: var(--gray-3);
}

.bc-stats-row {
  display: flex;
  gap: 16px;
}

.bc-stat {
  flex: 1;
  text-align: center;
  padding: 10px 0;
  background: var(--gray-6);
  border-radius: 10px;
}

.bc-stat-num {
  display: block;
  font-weight: 800;
  font-size: 1rem;
  color: var(--primary);
}

.bc-stat-label {
  font-size: 0.65rem;
  color: var(--gray-3);
}

/* ===== DOWNLOAD ===== */
.download {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #F8FAFF 0%, #EEF2FF 100%);
}

.download-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.dl-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
}

.dl-shape-1 {
  width: 500px;
  height: 500px;
  background: var(--primary);
  top: -200px;
  left: -100px;
}

.dl-shape-2 {
  width: 400px;
  height: 400px;
  background: var(--blue);
  bottom: -150px;
  right: -100px;
}

.download-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.download-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.download-content p {
  font-size: 1.05rem;
  color: var(--gray-2);
  line-height: 1.7;
  margin-bottom: 32px;
}

.store-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--dark);
  color: var(--white);
  padding: 14px 24px;
  border-radius: var(--radius);
  transition: all 0.2s;
}

.store-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.store-btn small {
  display: block;
  font-size: 0.65rem;
  opacity: 0.7;
}

.store-btn strong {
  display: block;
  font-size: 0.95rem;
}

.download-visual {
  display: flex;
  justify-content: center;
}

.small-phone .phone-frame {
  width: 240px;
  height: 500px;
}

/* Download Screen Mock */
.dl-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 40px 20px 20px;
  background: linear-gradient(180deg, #F8FAFF 0%, #FFFFFF 100%);
}

.dl-welcome-icon {
  margin-bottom: 16px;
}

.dl-title {
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.dl-subtitle {
  font-size: 0.6rem;
  color: var(--gray-3);
  margin-bottom: 24px;
}

.dl-btn-mock {
  width: 80%;
  padding: 10px;
  background: var(--gradient);
  color: var(--white);
  text-align: center;
  border-radius: 8px;
  font-size: 0.65rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.dl-btn-mock.outline {
  background: transparent;
  border: 1.5px solid var(--gray-5);
  color: var(--dark);
}

.dl-divider {
  font-size: 0.55rem;
  color: var(--gray-3);
  margin: 12px 0;
}

.dl-social-row {
  display: flex;
  gap: 12px;
}

.dl-social {
  width: 32px;
  height: 32px;
  background: var(--gray-6);
  border-radius: 8px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: var(--gray-3);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 280px;
}

.footer-links h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  font-size: 0.85rem;
  padding: 4px 0;
  color: var(--gray-3);
  transition: color 0.2s;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--gray-1);
  font-size: 0.8rem;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  color: var(--gray-3);
  transition: color 0.2s;
}

.social-links a:hover {
  color: var(--white);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 2.8rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .screens-showcase {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--gray-5);
    box-shadow: var(--shadow-lg);
  }

  .nav-links.open {
    display: flex;
  }

  .lang-switcher {
    align-self: stretch;
  }

  .lang-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 1px solid var(--gray-5);
    display: none;
  }

  .lang-dropdown.open {
    display: block;
  }

  .hamburger {
    display: flex;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-description {
    margin: 0 auto 32px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

  .floating-card {
    display: none;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .tabs {
    flex-direction: column;
    align-items: center;
  }

  .tab {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .screens-showcase {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .biz-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .biz-content {
    text-align: center;
  }

  .biz-content h2 {
    font-size: 2rem;
  }

  .biz-benefits {
    text-align: left;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 36px;
  }

  .biz-visual {
    height: 350px;
  }

  .biz-card {
    width: 260px;
  }

  .biz-card-1 { left: 5%; }
  .biz-card-2 { right: 0; }
  .biz-card-3 { left: 10%; }

  .download-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .download-content h2 {
    font-size: 2rem;
  }

  .store-buttons {
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-brand {
    grid-column: span 2;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .stat-divider {
    width: 40px;
    height: 1px;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .screens-showcase {
    grid-template-columns: 1fr;
    max-width: 260px;
    margin: 0 auto;
  }

  .phone-frame {
    width: 240px;
    height: 500px;
  }

  .biz-visual {
    height: 300px;
  }

  .biz-card {
    width: 220px;
    padding: 16px;
  }

  .bc-stats-row {
    gap: 8px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: span 1;
  }

  .btn-lg {
    padding: 14px 28px;
    font-size: 0.9rem;
  }
}
