@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;800&family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-dark: #f8fafc;
  --bg-card: #ffffff;
  --bg-card-hover: #f1f5f9;
  --border: #e2e8f0;
  --primary: #2b9bb4;
  --primary-light: #4fc3dc;
  --primary-dark: #237a8f;
  --accent: #1a8a9e;
  --accent-2: #db2777;
  --accent-3: #d97706;
  --gradient: #2b9bb4;
  --gradient-text: #2b9bb4;
  --gradient-hero: #f0f9fb;
  --text: #0f172a;
  --text-muted: #64748b;
  --shadow: 0 4px 24px rgba(43, 155, 180, 0.1);
  --shadow-lg: 0 12px 40px rgba(15, 23, 42, 0.08);
  --radius: 16px;
  --radius-lg: 24px;
  --nav-height: 72px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Cairo', 'Poppins', sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(43, 155, 180, 0.03);
  pointer-events: none;
  z-index: 0;
}

body[dir="ltr"] { font-family: 'Poppins', 'Cairo', sans-serif; }

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Background effects */
.bg-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bg-glow::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(43, 155, 180, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.bg-glow::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(8, 145, 178, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

main { position: relative; z-index: 1; }

/* Navigation */
.wevo-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.wevo-nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(15, 23, 42, 0.06);
}

.wevo-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

@media (min-width: 769px) {
  .wevo-nav .container {
    justify-content: center;
    gap: 28px;
  }

  .wevo-menu {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.wevo-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.5rem;
}

.wevo-logo img { height: 40px; width: auto; }

.wevo-logo span {
  display: none;
  color: var(--primary);
}

.wevo-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.wevo-menu a {
  padding: 8px 16px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.wevo-menu a:hover,
.wevo-menu a.active {
  color: var(--primary-dark);
  background: rgba(43, 155, 180, 0.08);
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px !important;
  border: 1px solid var(--border) !important;
  border-radius: 20px !important;
  font-size: 0.85rem !important;
  color: var(--accent) !important;
  background: #fff !important;
}

.lang-switch:hover {
  border-color: var(--accent) !important;
  background: rgba(8, 145, 178, 0.06) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: none;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  display: none;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: none;
  box-shadow: none;
}

.btn-glow {
  animation: none;
}

.btn-xl {
  padding: 18px 42px;
  font-size: 1.15rem;
  border-radius: 60px;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--primary);
  background: rgba(43, 155, 180, 0.06);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.9rem;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  position: relative;
  background: var(--gradient-hero);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../../img/decor/hero-mesh.svg') center/cover no-repeat;
  opacity: 0.4;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(180deg, transparent, rgba(43, 155, 180, 0.05));
  pointer-events: none;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.floating-bubble {
  position: absolute;
  border-radius: 50%;
  background: var(--gradient);
  opacity: 0.12;
  animation: floatBubble 8s ease-in-out infinite;
}

.floating-emoji {
  position: absolute;
  font-size: 1.8rem;
  animation: floatEmoji 6s ease-in-out infinite;
  filter: drop-shadow(0 2px 6px rgba(43, 155, 180, 0.2));
  user-select: none;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.hero-badges .hero-badge {
  margin-bottom: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(43, 155, 180, 0.08);
  border: 1px solid rgba(43, 155, 180, 0.2);
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 20px;
}

.hero-badge--since strong {
  color: var(--primary);
  font-weight: 800;
}

.hero-badge .live-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: livePulse 1.5s ease infinite;
}

.hero-badge .live-dot::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: liveRing 1.5s ease infinite;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
}

.hero-text h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-text h1 .gradient {
  color: var(--primary);
}

.hero-text p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-cta-group {
  margin-bottom: 8px;
}

.btn-pulse {
  animation: btnPulseGlow 2s ease-in-out infinite;
}

.btn-pulse .pulse-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}

.btn-pulse .pulse-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #22c55e;
  border-radius: 50%;
  animation: liveRing 1.5s ease infinite;
}

@keyframes btnPulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(43, 155, 180, 0.45); }
  50% { box-shadow: 0 0 0 10px rgba(43, 155, 180, 0); }
}

.hero-store-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.hero-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.hero-store-btn i {
  font-size: 1.5rem;
}

.hero-store-btn.google i { color: #34a853; }
.hero-store-btn.apple i { color: #1d1d1f; }

.hero-store-btn span {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  text-align: start;
}

.hero-store-btn small {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--text-muted);
}

.hero-store-btn:hover {
  border-color: rgba(43, 155, 180, 0.35);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual .phone-mockup {
  position: relative;
  z-index: 2;
  max-width: 320px;
  filter: drop-shadow(0 20px 40px rgba(43, 155, 180, 0.3));
}

.hero-visual .glow-ring {
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: var(--gradient);
  opacity: 0.2;
  filter: blur(60px);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.2; }
  50% { transform: scale(1.1); opacity: 0.35; }
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
}

.stat-item h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
}

.stat-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Sections */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(43, 155, 180, 0.08);
  border: 1px solid rgba(43, 155, 180, 0.2);
  border-radius: 20px;
  color: var(--primary-dark);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* Feature cards */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  background: var(--bg-card);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(43, 155, 180, 0.2);
}

.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(43, 155, 180, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--primary-dark);
}

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Split section */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split-section.reverse { direction: ltr; }
body[dir="rtl"] .split-section.reverse { direction: rtl; }

.split-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.split-content h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.split-content p {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 1.05rem;
}

/* App stores */
.store-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.store-buttons a img {
  height: 50px;
  border-radius: 10px;
  transition: var(--transition);
}

.store-buttons a:hover img {
  transform: scale(1.05);
}

.telegram-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.telegram-icon-box {
  width: 200px;
  height: 200px;
  border-radius: 24px;
  background: #229ED9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  color: white;
}

@media (max-width: 768px) {
  .telegram-icon-box {
    width: 140px;
    height: 140px;
    font-size: 4rem;
    margin-top: 24px;
  }
}

/* Marketplace cards */
.market-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.market-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 24px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
}

.market-card:hover {
  background: var(--bg-card);
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(43, 155, 180, 0.25);
}

.market-card .icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 20px;
  background: rgba(43, 155, 180, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.market-card img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 20px;
}

.market-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.market-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Pricing */
.page-hero {
  padding: calc(var(--nav-height) + 60px) 0 40px;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.page-hero p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.breadcrumb a { color: var(--accent); }
.breadcrumb a:hover { text-decoration: underline; }

/* Tabs */
.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 12px 28px;
  border-radius: 50px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
  font-size: 0.95rem;
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.04);
}

.tab-btn:hover { color: var(--primary-dark); border-color: var(--primary); background: rgba(43, 155, 180, 0.05); }

.tab-btn.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  box-shadow: none;
}

.tab-content { display: none; }
.tab-content.active { display: block; }

/* Pricing cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  box-shadow: 0 2px 16px rgba(15, 23, 42, 0.05);
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(43, 155, 180, 0.25);
}

.price-card.featured {
  border-color: var(--primary);
  background: rgba(43, 155, 180, 0.04);
}

.price-card.featured::before {
  content: attr(data-badge);
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: white;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
}

.price-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.price-amount {
  margin-bottom: 24px;
}

.price-amount .currency {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent);
  vertical-align: top;
}

.price-amount .amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
}

.price-features {
  margin-bottom: 28px;
}

.price-features li {
  padding: 8px 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.price-features li:last-child { border-bottom: none; }

.price-features .platforms {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.price-features .platforms i {
  font-size: 1.25rem;
  color: var(--text-muted);
}

.price-card .btn { width: 100%; }

/* Flat buttons — pricing tables & market */
.price-card .btn-primary,
.offer-card .btn-primary {
  background: #2b9bb4;
  background-size: auto;
  animation: none;
  box-shadow: none;
  border-radius: 12px;
}

.price-card .btn-primary::after,
.offer-card .btn-primary::after {
  display: none;
}

.price-card .btn-primary:hover,
.offer-card .btn-primary:hover {
  background: #237a8f;
  transform: none;
  box-shadow: none;
}

.pricing-tabs .tab-btn.active {
  background: #2b9bb4;
  border-color: #2b9bb4;
  box-shadow: none;
}

.pricing-tabs .tab-btn.active:hover {
  background: #237a8f;
  border-color: #237a8f;
}

.price-card.featured::before {
  background: #2b9bb4;
}

.market-grid .market-card {
  border-radius: 12px;
  box-shadow: none;
}

.market-grid .market-card:hover {
  transform: none;
  box-shadow: none;
  border-color: #2b9bb4;
  background: rgba(43, 155, 180, 0.04);
}

.market-page .sticky-download .btn-primary {
  background: #2b9bb4 !important;
  background-size: auto !important;
  animation: none !important;
  box-shadow: none !important;
  border-radius: 12px !important;
}

.market-page .sticky-download .btn-primary::after {
  display: none !important;
}

.market-page .sticky-download .btn-primary:hover {
  background: #237a8f !important;
  transform: none !important;
  box-shadow: none !important;
}

/* Offer cards */
.offer-card {
  max-width: 600px;
  margin: 0 auto;
}

.offer-card .original-price {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.offer-card .savings {
  color: var(--accent-2);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Download grid */
.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.download-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
}

.download-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(8, 145, 178, 0.3);
}

.download-card .platform-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
}

.download-card .platform-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.download-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.download-card .qr-code {
  display: none;
}

/* Download page v2 */
.download-page-hero {
  padding: calc(var(--nav-height) + 48px) 0 60px;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.download-page-hero .hero-content {
  padding: 0;
}

.download-page-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.download-page-stats .stat-item h3 {
  font-size: 1.6rem;
}

.platform-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.platform-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
}

.platform-item:hover {
  transform: translateX(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(43, 155, 180, 0.25);
}

body[dir="ltr"] .platform-item:hover {
  transform: translateX(4px);
}

.platform-item-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  flex-shrink: 0;
}

.platform-item.android .platform-item-icon { background: #34a853; }
.platform-item.ios .platform-item-icon { background: #1d1d1f; }
.platform-item.windows .platform-item-icon { background: #0078d4; }
.platform-item.apk .platform-item-icon { background: #2b9bb4; }

.platform-item-info {
  flex: 1;
  min-width: 0;
}

.platform-item-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.platform-item-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

.platform-item-rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-3);
}

.platform-item-rating i {
  color: #fbbf24;
  font-size: 0.8rem;
}

.platform-item-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 12px;
  background: var(--primary);
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  box-shadow: none;
  transition: var(--transition);
}

.platform-item.android .platform-item-btn { background: #34a853; }
.platform-item.ios .platform-item-btn { background: #1d1d1f; }
.platform-item.windows .platform-item-btn { background: #0078d4; }
.platform-item.apk .platform-item-btn { background: #2b9bb4; }

.platform-item:hover .platform-item-btn {
  box-shadow: none;
  transform: none;
  filter: brightness(0.92);
}

.platform-item.android:hover .platform-item-btn { background: #2d9249; filter: none; }
.platform-item.ios:hover .platform-item-btn { background: #000; filter: none; }
.platform-item.windows:hover .platform-item-btn { background: #006cbd; filter: none; }
.platform-item.apk:hover .platform-item-btn { background: #237a8f; filter: none; }

.btn-flat {
  background: #2b9bb4 !important;
  background-size: auto !important;
  animation: none !important;
  box-shadow: none !important;
  border-radius: 12px !important;
}

.btn-flat::after {
  display: none !important;
}

.btn-flat:hover {
  background: #237a8f !important;
  box-shadow: none !important;
  transform: none !important;
  filter: none !important;
}

.download-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.download-trust-item {
  text-align: center;
  padding: 20px 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.download-trust-item i {
  font-size: 1.5rem;
  color: #22c55e;
  margin-bottom: 8px;
}

.download-trust-item span {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

@media (max-width: 768px) {
  .platform-item {
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
    padding: 24px 20px;
  }

  .platform-item-info {
    width: 100%;
  }

  .platform-item-btn {
    width: 100%;
    justify-content: center;
  }

  .download-trust {
    grid-template-columns: repeat(2, 1fr);
  }

  .download-page-stats {
    justify-content: center;
  }

  /* Download page — show platform buttons sooner on mobile */
  .download-page-hero {
    padding: calc(var(--nav-height) + 16px) 0 20px;
  }

  .download-page-hero .hero-content {
    padding: 12px 0;
    gap: 0;
  }

  .download-page-hero .hero-visual {
    display: none;
  }

  .download-page-hero .download-hero-tagline,
  .download-page-hero .download-page-stats {
    display: none;
  }

  .download-page-hero .hero-text {
    text-align: center;
  }

  .download-page-hero .hero-text h1 {
    font-size: 1.65rem;
    margin-bottom: 0;
  }

  .download-page-hero .hero-badge {
    margin-bottom: 12px;
  }

  .download-page .section-header {
    display: none;
  }

  .download-page .section {
    padding-top: 8px;
  }

  .download-page .platform-list {
    margin-top: 0;
  }
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 769px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
}

.contact-card:hover {
  border-color: rgba(43, 155, 180, 0.3);
  box-shadow: var(--shadow);
}

.contact-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(43, 155, 180, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.contact-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.contact-card p, .contact-card a:not(.btn) {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-card a:not(.btn):hover { color: var(--accent); }

.contact-card .btn-primary {
  color: white;
}

.contact-card .btn-primary:hover {
  color: white;
}

.members-portal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 992px) {
  .members-portal-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.portal-card {
  display: flex;
  flex-direction: column;
}

.portal-card .btn-primary {
  margin-top: auto;
}

.portal-features {
  list-style: none;
  margin: 16px 0 24px;
}

.portal-features li {
  padding: 6px 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.portal-features li i {
  color: #22c55e;
  flex-shrink: 0;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.social-links a {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.04);
}

.social-links a:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.social-links img { width: 24px; height: 24px; }

/* Bank info modal */
.bank-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.bank-modal.active { display: flex; }

.bank-modal-content {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  max-width: 500px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.bank-modal-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: center;
}

.bank-info-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.bank-info-row .label { color: var(--text-muted); }
.bank-info-row .value { font-weight: 600; text-align: end; }

.modal-close {
  position: absolute;
  top: 16px;
  inset-inline-end: 16px;
  background: var(--bg-card-hover);
  border: 1px solid var(--border);
  color: var(--text);
  width: 36px;
  height: 36px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition);
}

.modal-close:hover { background: var(--primary); color: white; }

/* Slider */
.slider-section {
  padding: 60px 0;
  overflow: hidden;
}

.wevo-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.wevo-slider .slides {
  position: relative;
  aspect-ratio: 16/9;
}

.wevo-slider .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.wevo-slider .slide.active { opacity: 1; }

.wevo-slider .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  color: var(--primary-dark);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  transition: var(--transition);
  z-index: 2;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.1);
}

.slider-nav:hover { background: var(--primary); color: white; border-color: var(--primary); }
.slider-prev { left: 16px; }
.slider-next { right: 16px; }

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.slider-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dots .dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

.root-panel-cta {
  text-align: center;
  margin-top: 28px;
}

/* Root panel card */
.root-panel-section {
  padding-top: 0;
}

.root-panel-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: linear-gradient(135deg, #fff8de 0%, #ffffff 28%, #ffffff 62%, #ffffff 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(217, 119, 6, 0.12);
  border: 1px solid rgba(251, 191, 36, 0.35);
}

.root-panel-info {
  padding: 40px 40px 20px;
  color: #422006;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.root-panel-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(120, 53, 15, 0.1);
  border: 1px solid rgba(120, 53, 15, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #b45309;
  margin-bottom: 20px;
}

.root-panel-info .badge {
  align-self: flex-start;
  background: rgba(120, 53, 15, 0.1);
  border-color: rgba(120, 53, 15, 0.22);
  color: #92400e;
  margin-bottom: 0;
}

.root-panel-info h2 {
  font-size: clamp(1.4rem, 3vw, 1.75rem);
  font-weight: 800;
  margin: 16px 0 12px;
  color: #422006;
  line-height: 1.3;
}

.root-panel-info p {
  color: #78350f;
  margin-bottom: 20px;
  line-height: 1.65;
  font-size: 0.98rem;
}

.root-panel-features {
  list-style: none;
  margin-bottom: 28px;
}

.root-panel-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 0;
  color: #57534e;
  font-size: 0.92rem;
}

.root-panel-features li i {
  color: #15803d;
  flex-shrink: 0;
}

.root-panel-btn {
  align-self: flex-start;
  background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
  color: #fff;
}

.root-panel-btn:hover {
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  color: #fff;
}

.root-panel-btn i {
  color: #fff;
}

.root-panel-visual {
  padding: 8px 28px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(251, 191, 36, 0.06);
}

.root-panel-visual .wevo-slider {
  max-width: none;
  width: 100%;
  margin: 0;
  box-shadow: 0 12px 40px rgba(120, 53, 15, 0.18);
  border: 1px solid rgba(120, 53, 15, 0.15);
}

.root-panel-visual .wevo-slider .slides {
  aspect-ratio: auto;
  min-height: 420px;
}

.root-panel-visual .wevo-slider .slide img {
  object-fit: contain;
  background: rgba(255, 251, 235, 0.9);
  padding: 12px;
  cursor: zoom-in;
  transition: transform 0.2s ease;
}

.root-panel-visual .wevo-slider .slide img:hover {
  transform: scale(1.02);
}

.root-panel-visual .slider-dots {
  margin-top: 14px;
}

.root-panel-visual .slider-dots .dot {
  background: rgba(120, 53, 15, 0.25);
}

.root-panel-visual .slider-dots .dot.active {
  background: #92400e;
}

@media (max-width: 992px) {
  .root-panel-info {
    padding: 24px 28px 32px;
    text-align: center;
    align-items: center;
  }

  .root-panel-info .badge,
  .root-panel-btn {
    align-self: center;
  }

  .root-panel-features {
    text-align: start;
    width: 100%;
    max-width: 280px;
  }

  .root-panel-visual {
    padding: 8px 20px 24px;
  }

  .root-panel-visual .wevo-slider .slides {
    min-height: 280px;
  }
}

@media (min-width: 993px) {
  .root-panel-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 48px 60px 28px;
    max-width: 760px;
    margin: 0 auto;
  }

  .root-panel-info .badge,
  .root-panel-btn {
    align-self: center;
  }

  .root-panel-info p {
    max-width: 580px;
    margin-bottom: 24px;
  }

  .root-panel-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 36px;
    margin-bottom: 28px;
  }

  .root-panel-features li {
    padding: 0;
  }
}

/* Image lightbox */
.image-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 24px;
  cursor: zoom-out;
}

.image-lightbox.active {
  display: flex;
}

.image-lightbox img {
  max-width: min(95vw, 1200px);
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
  cursor: default;
  background: #fff;
  padding: 8px;
}

.image-lightbox-close {
  position: absolute;
  top: 20px;
  inset-inline-end: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-lightbox-close:hover {
  background: var(--primary);
}

/* Contact CTA section */
.contact-cta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cta-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
}

.cta-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.cta-card > i {
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border-radius: 14px;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 16px;
}

.cta-card h4 {
  font-weight: 700;
  margin-bottom: 8px;
}

.cta-card p { color: var(--text-muted); font-size: 0.95rem; }

.cta-card .btn-primary {
  color: white;
}

.cta-card .btn-primary i {
  color: #fff;
  font-size: inherit;
  margin-bottom: 0;
}

.cta-card .btn-primary:hover {
  color: white;
}

.cta-card .btn-primary:hover i {
  color: #fff;
}

.hero-buttons .btn-primary i,
.sticky-download .btn-primary i {
  color: #fff;
}

/* Security notice */
.security-notice {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  margin-top: 60px;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
}

.security-notice h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--accent);
}

.security-notice p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.security-notice a { color: var(--primary-dark); }
.security-notice a:hover { text-decoration: underline; }

/* Footer */
.wevo-footer {
  background: #ffffff;
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
  margin-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo-text {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 300px;
}

.footer-links h4 {
  font-weight: 700;
  margin-bottom: 16px;
  font-size: 1rem;
}

.footer-links a {
  display: block;
  color: var(--text-muted);
  padding: 6px 0;
  font-size: 0.9rem;
}

.footer-links a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Scroll to top */
.scroll-top {
  position: fixed;
  bottom: 24px;
  inset-inline-end: 24px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--primary);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  box-shadow: none;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--primary-dark);
  transform: none;
}

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
  .hero-content,
  .split-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual { order: -1; }
  .hero-visual .phone-mockup { max-width: 260px; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-cta { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .wevo-logo span { display: inline; }

  .wevo-menu {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  }

  body[dir="rtl"] .wevo-menu { transform: translateY(-120%); }

  .wevo-menu.open {
    transform: translateY(0);
    opacity: 1;
  }

  .wevo-menu a {
    width: 100%;
    text-align: center;
    padding: 12px;
  }

  .hero-stats { gap: 24px; }
  .stat-item h3 { font-size: 1.5rem; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }

  .pricing-grid { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
}

/* ===== YOUTH THEME ENHANCEMENTS ===== */

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 4px 25px rgba(43, 155, 180, 0.3); }
  50% { box-shadow: 0 4px 35px rgba(219, 39, 119, 0.4), 0 0 40px rgba(8, 145, 178, 0.15); }
}

@keyframes floatBubble {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.1); }
}

@keyframes floatEmoji {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-15px) rotate(5deg); }
  66% { transform: translateY(-8px) rotate(-3deg); }
}

@keyframes livePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes liveRing {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(2.5); opacity: 0; }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Download CTA Banner */
.download-cta {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.download-cta-box {
  position: relative;
  background: rgba(43, 155, 180, 0.06);
  border: 1px solid rgba(43, 155, 180, 0.15);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  overflow: hidden;
  box-shadow: none;
}

.download-cta-box::before {
  display: none;
}

.download-cta-box > * { position: relative; z-index: 1; }

.download-cta h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.download-cta h2 .gradient {
  color: var(--primary);
}

.download-cta p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.download-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.platform-badges {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

.platform-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: var(--transition);
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.04);
}

.platform-badge:hover {
  border-color: var(--primary);
  color: var(--text);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.platform-badge i {
  font-size: 1.3rem;
  color: var(--accent);
}

/* Social proof strip */
.social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.avatar-stack {
  display: flex;
}

.avatar-stack .avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  margin-inline-start: -10px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: white;
}

.avatar-stack .avatar:first-child { margin-inline-start: 0; }

.social-proof-text {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.social-proof-text strong {
  color: var(--accent-2);
  font-weight: 700;
}

/* Fun section with grid bg */
.section-fun {
  position: relative;
}

.section-fun::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(43, 155, 180, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(43, 155, 180, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

/* Neon feature cards */
.feature-card.neon {
  border-color: rgba(43, 155, 180, 0.2);
}

.feature-card.neon:hover {
  border-color: rgba(219, 39, 119, 0.3);
  box-shadow: 0 4px 24px rgba(43, 155, 180, 0.1), 0 4px 40px rgba(8, 145, 178, 0.06);
}

.feature-icon.gradient-icon {
  background: var(--primary);
  color: white;
  box-shadow: none;
}

/* Split image with glow frame */
.split-image {
  position: relative;
}

.split-image.glow-frame::before {
  content: '';
  position: absolute;
  inset: -8px;
  background: var(--gradient);
  border-radius: calc(var(--radius-lg) + 8px);
  opacity: 0.3;
  filter: blur(20px);
  z-index: 0;
}

.split-image.glow-frame img {
  position: relative;
  z-index: 1;
}

/* Steps section */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  counter-reset: step;
  max-width: 700px;
  margin: 0 auto;
}

.step-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
}

.step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(43, 155, 180, 0.3);
  box-shadow: var(--shadow);
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 20px rgba(43, 155, 180, 0.4);
}

.step-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Sticky download bar */
.sticky-download {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.06);
}

.sticky-download.visible { transform: translateY(0); }

.sticky-download-text {
  font-weight: 600;
  font-size: 0.95rem;
}

.sticky-download-text span {
  color: var(--accent-2);
}

/* Nav download button */
.nav-download-btn {
  background: var(--primary) !important;
  color: white !important;
  border-radius: 12px !important;
  animation: none !important;
  font-weight: 700 !important;
}

.nav-download-btn:hover {
  background: var(--primary-dark) !important;
  transform: none !important;
  box-shadow: none !important;
}

/* Free tag */
.free-tag {
  display: inline-block;
  background: #22c55e;
  color: white;
  padding: 4px 12px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-inline-start: 8px;
  vertical-align: middle;
  animation: bounce 2s ease infinite;
}

/* Download page hero */
.download-hero-visual {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.download-hero-visual img {
  max-height: 60px;
  border-radius: 12px;
  transition: var(--transition);
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}

.download-hero-visual a:hover img {
  transform: scale(1.08) translateY(-4px);
}

.download-card.premium {
  border-color: rgba(43, 155, 180, 0.2);
  background: rgba(43, 155, 180, 0.04);
}

.download-card.premium:hover {
  border-color: rgba(219, 39, 119, 0.3);
  box-shadow: 0 4px 24px rgba(43, 155, 180, 0.1);
}

/* Chat decor in hero visual */
.hero-visual-wrap {
  position: relative;
}

.hero-audio-waves {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: min(320px, 90%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  pointer-events: none;
}

.audio-wave {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 5px;
  height: 56px;
  width: 100%;
}

.audio-wave span {
  display: block;
  width: 5px;
  height: 14px;
  background: var(--primary);
  border-radius: 4px;
  opacity: 0.45;
  animation: audioWave 1.1s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.08s);
}

.audio-wave span:nth-child(odd) {
  background: #db2777;
}

.audio-wave-mic {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(43, 155, 180, 0.12);
  border: 2px solid rgba(43, 155, 180, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  animation: audioMicPulse 2s ease-in-out infinite;
}

@keyframes audioWave {
  0%, 100% { height: 10px; opacity: 0.35; }
  50% { height: 48px; opacity: 0.85; }
}

@keyframes audioMicPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(43, 155, 180, 0.3); }
  50% { transform: scale(1.06); box-shadow: 0 0 0 12px rgba(43, 155, 180, 0); }
}

.chat-decor {
  position: absolute;
  z-index: 3;
  animation: floatEmoji 5s ease-in-out infinite;
}

.chat-decor.bubble-1 { top: 10%; right: -10%; width: 80px; opacity: 0.8; }
.chat-decor.bubble-2 { bottom: 20%; left: -15%; width: 60px; opacity: 0.7; animation-delay: -2s; }
.chat-decor.bubble-3 { top: 40%; left: -20%; font-size: 2rem; animation-delay: -1s; }
.chat-decor.bubble-4 { bottom: 10%; right: -5%; font-size: 1.5rem; animation-delay: -3s; }

@media (max-width: 992px) {
  .steps-grid { grid-template-columns: 1fr; }
  .download-cta-box { padding: 40px 24px; }
}

@media (max-width: 768px) {
  .sticky-download { display: flex; }
  .scroll-top { bottom: 80px; }
  .chat-decor { display: none; }
  .floating-emoji { font-size: 1.2rem; }
  .hero-audio-waves { width: min(260px, 85%); bottom: 5%; }
  .audio-wave { height: 40px; gap: 4px; }
  .audio-wave span { width: 4px; }
  @keyframes audioWave {
    0%, 100% { height: 8px; opacity: 0.35; }
    50% { height: 32px; opacity: 0.85; }
  }
  .hero-store-buttons { gap: 10px; }
  .hero-store-btn { padding: 8px 14px; font-size: 0.85rem; }
}

@media (min-width: 769px) {
  .sticky-download { display: none; }
}

/* Member login section */
.member-login-section {
  padding-top: 0;
}

.member-login-box {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
  background: rgba(43, 155, 180, 0.06);
  border: 1px solid rgba(43, 155, 180, 0.15);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: none;
}

.member-login-icon {
  width: 100px;
  height: 100px;
  border-radius: 24px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  color: white;
  box-shadow: none;
  flex-shrink: 0;
}

.member-login-content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.member-login-content p {
  color: var(--text-muted);
  margin-bottom: 20px;
  max-width: 520px;
}

.member-login-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-bottom: 28px;
}

.member-login-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
}

.member-login-features li i {
  color: #22c55e;
  font-size: 0.85rem;
}

.nav-login-btn {
  color: var(--primary-dark) !important;
  font-weight: 600 !important;
}

.nav-login-btn:hover {
  color: var(--primary) !important;
  background: rgba(43, 155, 180, 0.08) !important;
}

@media (max-width: 768px) {
  .member-login-box {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 32px 24px;
  }

  .member-login-icon {
    margin: 0 auto;
  }

  .member-login-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .member-login-features {
    justify-content: center;
  }
}
