@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;800&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary: #4A8FE7;
  --primary-dark: #3578C7;
  --primary-light: #7BAFE8;
  --secondary: #8B6FC0;
  --secondary-light: #B294D4;
  --accent-cyan: #5BC0DE;
  --accent-pink: #E8729A;
  --accent-mint: #6CC796;
  --accent-orange: #F0A040;
  --bg-light: #F5F7FC;
  --bg-white: #FFFFFF;
  --text-primary: #2D3436;
  --text-secondary: #636E72;
  --text-muted: #B2BEC3;
  --glass-bg: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(255, 255, 255, 0.35);
  --glass-shadow: 0 8px 32px rgba(74, 143, 231, 0.08);
  --card-bg: rgba(255, 255, 255, 0.85);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.10);
  --footer-bg: #2D3436;
  --footer-text: rgba(255, 255, 255, 0.8);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 50%;
  --font-arabic: 'Tajawal', sans-serif;
  --font-latin: 'Inter', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
  --header-height: 72px;
}

[data-theme="dark"] {
  --bg-light: #0D111C;
  --bg-white: #131826;
  --text-primary: #E8ECF4;
  --text-secondary: #9BA3B8;
  --text-muted: #5D647A;
  --glass-bg: rgba(19, 24, 38, 0.78);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  --card-bg: rgba(19, 24, 38, 0.82);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.25);
  --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.3);
  --footer-bg: #080B16;
  --footer-text: rgba(255, 255, 255, 0.7);
  --primary: #5B9EF5;
  --primary-dark: #4A8FE7;
  --primary-light: #8DC0FF;
  --secondary: #A07FD6;
  --secondary-light: #C4A8E8;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-arabic);
  background: var(--bg-light);
  color: var(--text-primary);
  direction: rtl;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.en, body.de { direction: ltr; }
body.en, body.de { font-family: var(--font-latin); }

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.gradient-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.gradient-bg .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}

.gradient-bg .blob-1 {
  width: 600px;
  height: 600px;
  background: linear-gradient(135deg, var(--primary-light), var(--accent-cyan));
  top: -200px;
  right: -100px;
  animation: floatBlob 20s ease-in-out infinite;
}

.gradient-bg .blob-2 {
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, var(--secondary-light), var(--accent-pink));
  bottom: -150px;
  left: -100px;
  animation: floatBlob 25s ease-in-out infinite reverse;
}

.gradient-bg .blob-3 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, var(--accent-mint), var(--accent-cyan));
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: floatBlob 30s ease-in-out infinite 5s;
}

@keyframes floatBlob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(60px, -60px) scale(1.08); }
  50% { transform: translate(-40px, 40px) scale(0.95); }
  75% { transform: translate(30px, 80px) scale(1.05); }
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.3;
}

.section-header p {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

section {
  padding: 100px 0;
  position: relative;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  box-shadow: 0 4px 20px rgba(74, 143, 231, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(74, 143, 231, 0.45);
}

.btn-secondary {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1.5px solid var(--glass-border);
  color: var(--text-primary);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 12px 28px;
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

.btn-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.phone-mockup {
  position: relative;
  width: 280px;
  height: 580px;
  background: #1a1a2e;
  border-radius: 40px;
  padding: 12px;
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.15),
    0 30px 80px rgba(0, 0, 0, 0.2),
    0 8px 32px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.phone-mockup::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 24px;
  background: #1a1a2e;
  border-radius: 0 0 16px 16px;
  z-index: 10;
}

.phone-mockup .phone-notch-dynamic {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  z-index: 11;
}

.phone-mockup .phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-color: #fff;
  position: relative;
}

.phone-mockup .phone-screen .screen-content {
  position: absolute;
  inset: 0;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: 0 -50px;
}

.phone-mockup .phone-home {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  z-index: 10;
}

.phone-mockup-lg {
  width: 320px;
  height: 660px;
}

.phone-mockup-sm {
  width: 230px;
  height: 480px;
  border-radius: 32px;
  padding: 8px;
}

.phone-mockup-sm .phone-screen {
  border-radius: 24px;
}

.glass-card {
  background: var(--card-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 32px;
  transition: var(--transition);
}

.glass-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

@media (max-width: 768px) {
  .phone-mockup {
    width: 220px;
    height: 460px;
    border-radius: 32px;
    padding: 8px;
  }

  .phone-mockup .phone-screen {
    border-radius: 24px;
  }

  .phone-mockup::before {
    width: 80px;
    height: 18px;
    top: 8px;
  }

  .phone-mockup-lg {
    width: 250px;
    height: 520px;
  }

  section { padding: 60px 0; }
}

@media (max-width: 480px) {
  .phone-mockup {
    width: 200px;
    height: 420px;
    border-radius: 28px;
    padding: 6px;
  }

  .phone-mockup .phone-screen {
    border-radius: 22px;
  }

  .phone-mockup::before {
    width: 60px;
    height: 16px;
  }
}

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

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition);
  height: var(--header-height);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
  background: var(--card-bg);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  gap: 16px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 18px;
  color: var(--text-primary);
  flex-shrink: 0;
}

.header-logo img {
  height: 36px;
  width: auto;
  border-radius: var(--radius-sm);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.header-nav a {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.header-nav a:hover {
  color: var(--primary);
  background: rgba(74, 143, 231, 0.06);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.lang-toggle {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
}

.lang-toggle:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-primary);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  z-index: 100;
  min-width: 140px;
}

.lang-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown button {
  display: block;
  width: 100%;
  padding: 12px 20px;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 14px;
  cursor: pointer;
  text-align: right;
  color: var(--text-primary);
  transition: var(--transition);
}

.lang-dropdown button:hover {
  background: rgba(74, 143, 231, 0.06);
  color: var(--primary);
}

.lang-dropdown button.active {
  color: var(--primary);
  font-weight: 600;
  background: rgba(74, 143, 231, 0.08);
}

.header-cta {
  padding: 10px 24px;
  font-size: 14px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  border: none;
  border-radius: 50px;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(74, 143, 231, 0.3);
  white-space: nowrap;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(74, 143, 231, 0.4);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

@media (max-width: 1024px) {
  .header-nav { display: none; }
  .header-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: rgba(245, 247, 252, 0.98);
    backdrop-filter: blur(20px);
    padding: 16px 24px;
    gap: 4px;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }
  .mobile-menu-btn { display: flex; }
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  position: relative;
  overflow: hidden;
}

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

.hero-content {
  animation: fadeInUp 0.8s ease;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(74, 143, 231, 0.08);
  border: 1px solid rgba(74, 143, 231, 0.15);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 20px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-mint);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.hero h1 {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--text-secondary);
  margin-bottom: 36px;
  line-height: 1.8;
  max-width: 520px;
}

.hero-arabic-name {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
  letter-spacing: 0.5px;
  font-weight: 500;
}

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

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 0.8s ease 0.2s both;
  position: relative;
}

.hero-phone-wrapper {
  position: relative;
}

.hero-float-badge {
  position: absolute;
  background: var(--card-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
  animation: floatBadge 6s ease-in-out infinite;
  white-space: nowrap;
}

.hero-float-badge-1 {
  top: 10%;
  right: -40px;
  animation-delay: 0s;
}

.hero-float-badge-2 {
  bottom: 20%;
  left: -50px;
  animation-delay: 2s;
}

.hero-float-badge-3 {
  bottom: 5%;
  right: -30px;
  animation-delay: 4s;
}

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

.float-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.float-dot.green { background: var(--accent-mint); }
.float-dot.blue { background: var(--primary); }
.float-dot.pink { background: var(--accent-pink); }

@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero p { margin: 0 auto 36px; }
  .hero-buttons { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-float-badge { display: none; }
}

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

.story-steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.story-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.story-step:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.story-step-num {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.story-step h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.story-step p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.story-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.story-visual .phone-mockup {
  transition: var(--transition);
}

.story-visual .phone-mockup:hover {
  transform: translateY(-8px) rotate(-2deg);
}

@media (max-width: 600px) {
  .story-visual { gap: 12px; }
  .story-arrow { display: none; }
}

@media (max-width: 400px) {
  .story-visual .phone-mockup { width: 130px; height: 280px; }
}

.story-arrow {
  font-size: 32px;
  color: var(--primary);
  opacity: 0.4;
  animation: arrowPulse 2s infinite;
}

@keyframes arrowPulse {
  0%, 100% { transform: translateX(0); opacity: 0.3; }
  50% { transform: translateX(10px); opacity: 0.6; }
}

@media (max-width: 1024px) {
  .story-section .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-visual { order: -1; }
  .story-arrow { display: none; }
}

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

.community-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.community-feature {
  padding: 24px;
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition);
}

.community-feature:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.community-feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
}

.community-feature:nth-child(1) .community-feature-icon { background: rgba(74, 143, 231, 0.12); }
.community-feature:nth-child(2) .community-feature-icon { background: rgba(139, 111, 192, 0.12); }
.community-feature:nth-child(3) .community-feature-icon { background: rgba(108, 199, 150, 0.12); }
.community-feature:nth-child(4) .community-feature-icon { background: rgba(232, 114, 154, 0.12); }

.community-feature h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.community-feature p {
  font-size: 13px;
  color: var(--text-secondary);
}

@media (max-width: 1024px) {
  .community-section .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .community-visual { order: -1; }
}

@media (max-width: 480px) {
  .community-features { grid-template-columns: 1fr; }
}

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

.networks-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.network-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  transition: var(--transition);
  cursor: default;
}

.network-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(-6px);
}

.network-card-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.network-card:nth-child(1) .network-card-icon { background: rgba(74, 143, 231, 0.12); }
.network-card:nth-child(2) .network-card-icon { background: rgba(139, 111, 192, 0.12); }
.network-card:nth-child(3) .network-card-icon { background: rgba(108, 199, 150, 0.12); }
.network-card:nth-child(4) .network-card-icon { background: rgba(232, 114, 154, 0.12); }
.network-card:nth-child(5) .network-card-icon { background: rgba(91, 192, 222, 0.12); }

.network-card h4 { font-size: 15px; font-weight: 700; }
.network-card p { font-size: 13px; color: var(--text-secondary); }
.network-card .network-members {
  font-size: 12px;
  color: var(--text-muted);
  margin-right: auto;
  display: flex;
  align-items: center;
  gap: 6px;
}

@media (max-width: 1024px) {
  .networks-section .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .networks-visual { order: -1; }
}

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

.voice-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.voice-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.voice-feature:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.voice-feature-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.voice-feature:nth-child(1) .voice-feature-icon { background: rgba(74, 143, 231, 0.12); }
.voice-feature:nth-child(2) .voice-feature-icon { background: rgba(108, 199, 150, 0.12); }
.voice-feature:nth-child(3) .voice-feature-icon { background: rgba(232, 114, 154, 0.12); }
.voice-feature:nth-child(4) .voice-feature-icon { background: rgba(139, 111, 192, 0.12); }

.voice-feature h4 { font-size: 14px; font-weight: 700; }
.voice-feature p { font-size: 13px; color: var(--text-secondary); }

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

@media (max-width: 1024px) {
  .voice-section .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .voice-visual { order: -1; }
}

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

.chat-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.chat-feature {
  padding: 24px;
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.chat-feature:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.chat-feature-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.chat-feature-header .icon {
  font-size: 22px;
}

.chat-feature h4 { font-size: 16px; font-weight: 700; }
.chat-feature p { font-size: 14px; color: var(--text-secondary); }

@media (max-width: 1024px) {
  .chat-section .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .chat-visual { order: -1; }
}

.games-section .section-header {
  margin-bottom: 50px;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.game-card {
  padding: 32px 20px;
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
  cursor: default;
}

.game-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.game-card-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 36px;
  position: relative;
}

.game-card:nth-child(1) .game-card-icon { background: linear-gradient(135deg, #667eea, #764ba2); }
.game-card:nth-child(2) .game-card-icon { background: linear-gradient(135deg, #f093fb, #f5576c); }
.game-card:nth-child(3) .game-card-icon { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.game-card:nth-child(4) .game-card-icon { background: linear-gradient(135deg, #43e97b, #38f9d7); }
.game-card:nth-child(5) .game-card-icon { background: linear-gradient(135deg, #fa709a, #fee140); }

.game-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.game-card p {
  font-size: 13px;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .games-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
  }

  .game-card { padding: 24px 16px; }
  .game-card-icon { width: 64px; height: 64px; font-size: 28px; }
}

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

.moments-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.moments-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.moments-feature:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.moments-feature-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.moments-feature:nth-child(1) .moments-feature-icon { background: rgba(232, 114, 154, 0.12); }
.moments-feature:nth-child(2) .moments-feature-icon { background: rgba(74, 143, 231, 0.12); }
.moments-feature:nth-child(3) .moments-feature-icon { background: rgba(108, 199, 150, 0.12); }

.moments-feature h4 { font-size: 15px; font-weight: 700; }
.moments-feature p { font-size: 13px; color: var(--text-secondary); }

@media (max-width: 1024px) {
  .moments-section .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .moments-visual { order: -1; }
}

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

.profile-phones {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.profile-settings {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.profile-setting {
  padding: 20px;
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  transition: var(--transition);
  text-align: center;
}

.profile-setting:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.profile-setting-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 20px;
}

.profile-setting:nth-child(1) .profile-setting-icon { background: rgba(74, 143, 231, 0.12); }
.profile-setting:nth-child(2) .profile-setting-icon { background: rgba(139, 111, 192, 0.12); }
.profile-setting:nth-child(3) .profile-setting-icon { background: rgba(108, 199, 150, 0.12); }
.profile-setting:nth-child(4) .profile-setting-icon { background: rgba(232, 114, 154, 0.12); }
.profile-setting:nth-child(5) .profile-setting-icon { background: rgba(91, 192, 222, 0.12); }
.profile-setting:nth-child(6) .profile-setting-icon { background: rgba(240, 160, 64, 0.12); }

.profile-setting h4 { font-size: 14px; font-weight: 700; }
.profile-setting p { font-size: 12px; color: var(--text-secondary); }

@media (max-width: 1024px) {
  .profile-section .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .profile-phones { order: -1; }
}

@media (max-width: 480px) {
  .profile-settings { grid-template-columns: 1fr; }
}

.download-section {
  text-align: center;
  position: relative;
}

.download-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(74, 143, 231, 0.05), rgba(139, 111, 192, 0.05));
  z-index: -1;
}

.download-content {
  max-width: 700px;
  margin: 0 auto;
}

.download-content h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  margin-bottom: 16px;
}

.download-content p {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.download-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 17px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.download-btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  box-shadow: 0 6px 30px rgba(74, 143, 231, 0.35);
}

.download-btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(74, 143, 231, 0.45);
}

.download-btn-secondary {
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  border: 1.5px solid var(--glass-border);
  color: var(--text-secondary);
}

.download-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.download-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(74, 143, 231, 0.06);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--text-secondary);
}

.download-qr {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px;
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  border: 1px dashed var(--glass-border);
  border-radius: var(--radius-md);
  margin-top: 32px;
}

.download-qr-placeholder {
  width: 120px;
  height: 120px;
  background: rgba(74, 143, 231, 0.06);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  opacity: 0.3;
}

.download-qr span {
  font-size: 13px;
  color: var(--text-muted);
}

.footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 60px 0 30px;
  margin-top: 60px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.footer-brand img {
  height: 36px;
  width: auto;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  opacity: 0.7;
  max-width: 300px;
  line-height: 1.8;
}

.footer-col h4 {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 12px;
  transition: var(--transition);
}

.footer-col a:hover {
  opacity: 1;
  color: var(--primary-light);
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 40px auto 0;
  padding: 20px 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 13px;
  opacity: 0.5;
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
}

.language-switcher-main {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-flag {
  font-size: 16px;
  line-height: 1;
}

.theme-toggle {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
}

.theme-toggle:hover {
  background: var(--card-bg);
  color: var(--text-primary);
}

.theme-icon { font-size: 14px; line-height: 1; }

.theme-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  z-index: 100;
  min-width: 120px;
}

.theme-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.theme-dropdown button {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 10px 14px;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 13px;
  cursor: pointer;
  text-align: right;
  color: var(--text-primary);
  transition: var(--transition);
}

.theme-dropdown button:hover {
  background: rgba(74, 143, 231, 0.06);
  color: var(--primary);
}

.theme-dropdown button.active {
  color: var(--primary);
  font-weight: 600;
  background: rgba(74, 143, 231, 0.08);
}

@media (max-width: 480px) {
  .theme-toggle { padding: 6px 8px; }
  .theme-toggle .theme-label { display: none; }
}

@media (max-width: 360px) {
  .container { padding: 0 16px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .gradient-bg .blob-1 { width: 280px; height: 280px; }
  .gradient-bg .blob-2 { width: 220px; height: 220px; }
  .gradient-bg .blob-3 { width: 180px; height: 180px; }

  section { padding: 48px 0; }
  .section-header { margin-bottom: 36px; }
  .section-header h2 { font-size: 24px; }
  .section-header p { font-size: 14px; }

  .header-inner { padding: 0 12px; gap: 6px; }
  .header-logo span { display: none; }
  .header-logo img { height: 30px; }
  .lang-toggle { padding: 6px 10px; gap: 4px; font-size: 12px; }
  .lang-toggle span:not(.lang-flag) { display: none; }
  .header-cta { padding: 7px 12px; font-size: 12px; }
  .header-nav.open { padding: 12px 16px; }
  .header-nav.open a { padding: 10px 12px; font-size: 14px; }

  .hero { min-height: auto; padding: calc(var(--header-height) + 16px) 0 40px; }
  .hero .container { gap: 24px; }
  .hero h1 { font-size: 26px; margin-bottom: 12px; }
  .hero p { font-size: 15px; margin-bottom: 24px; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn { width: 100%; justify-content: center; padding: 14px 20px; }
  .hero-badge { font-size: 12px; padding: 6px 14px; }

  .phone-mockup { width: 180px; height: 380px; border-radius: 28px; padding: 6px; }
  .phone-mockup .phone-screen { border-radius: 22px; }
  .phone-mockup::before { width: 60px; height: 16px; top: 6px; }
  .phone-mockup .phone-notch-dynamic { width: 50px; height: 5px; top: 14px; }
  .phone-mockup .phone-home { width: 80px; height: 3px; bottom: 6px; }
  .phone-mockup-lg { width: 200px; height: 420px; }
  .phone-mockup-sm { width: 160px; height: 340px; }

  .hero-visual { order: -1; margin: 0; }

  .hero-float-badge { display: none; }

  .story-step { padding: 16px; gap: 12px; }
  .story-step-num { width: 40px; height: 40px; min-width: 40px; font-size: 16px; }
  .story-step h3 { font-size: 16px; }
  .story-step p { font-size: 13px; }

  .story-visual { gap: 12px; }
  .story-visual .phone-mockup { width: 150px; height: 320px; }
  .story-arrow { display: none; }

  .community-feature { padding: 16px; }
  .community-feature-icon { width: 44px; height: 44px; font-size: 20px; margin-bottom: 12px; }
  .community-feature h4 { font-size: 14px; }
  .community-feature p { font-size: 12px; }

  .network-card { padding: 14px 16px; gap: 12px; }
  .network-card-icon { width: 40px; height: 40px; min-width: 40px; font-size: 18px; }
  .network-card h4 { font-size: 14px; }
  .network-card p { font-size: 12px; }
  .network-card .network-members { font-size: 11px; }

  .voice-feature { padding: 14px 16px; gap: 12px; }
  .voice-feature-icon { width: 36px; height: 36px; min-width: 36px; font-size: 16px; }
  .voice-feature h4 { font-size: 14px; }
  .voice-feature p { font-size: 12px; }

  .chat-feature { padding: 16px; }
  .chat-feature h4 { font-size: 15px; }
  .chat-feature p { font-size: 13px; }

  .game-card { padding: 20px 12px; }
  .game-card-icon { width: 56px; height: 56px; font-size: 24px; margin-bottom: 12px; }
  .game-card h4 { font-size: 14px; }
  .game-card p { font-size: 12px; }

  .moments-feature { padding: 14px 16px; }
  .moments-feature-icon { width: 36px; height: 36px; min-width: 36px; font-size: 16px; }
  .moments-feature h4 { font-size: 14px; }
  .moments-feature p { font-size: 12px; }

  .profile-setting { padding: 16px; }
  .profile-setting-icon { width: 40px; height: 40px; font-size: 18px; }
  .profile-setting h4 { font-size: 13px; }
  .profile-setting p { font-size: 12px; }

  .profile-phones { flex-direction: column; align-items: center; gap: 16px; }
  .profile-phones .phone-mockup { width: 200px; height: 420px; }

  .download-content h2 { font-size: 24px; }
  .download-content p { font-size: 15px; margin-bottom: 24px; }
  .download-btn { width: 100%; justify-content: center; padding: 14px 24px; font-size: 15px; }
  .download-buttons { flex-direction: column; gap: 12px; }

  .footer { padding: 40px 0 20px; margin-top: 40px; }
  .footer-inner { padding: 0 16px; gap: 24px; }
  .footer-bottom { padding: 16px 16px 0; font-size: 12px; }

  .mobile-menu-btn span { width: 20px; }
}

@media (min-width: 481px) and (max-width: 768px) {
  .gradient-bg .blob-1 { width: 350px; height: 350px; }
  .gradient-bg .blob-2 { width: 300px; height: 300px; }
  .gradient-bg .blob-3 { width: 250px; height: 250px; }

  .hero { min-height: auto; padding: calc(var(--header-height) + 20px) 0 60px; }
  .hero .container { gap: 32px; }
  .hero h1 { font-size: 32px; }
  .hero p { font-size: 16px; }

  .phone-mockup { width: 200px; height: 420px; }
  .phone-mockup-lg { width: 240px; height: 500px; }

  .story-visual .phone-mockup { width: 180px; height: 380px; }
  .story-arrow { display: none; }

  .profile-phones { gap: 12px; }
  .profile-phones .phone-mockup { width: 180px; height: 380px; }
}

.nav-active { color: var(--primary) !important; font-weight: 700 !important; background: rgba(74, 143, 231, 0.08) !important; }

.prices-hero { padding: calc(var(--header-height) + 60px) 0 40px; text-align: center; }
.prices-hero-content { max-width: 700px; margin: 0 auto; }
.prices-hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 18px; background: rgba(74, 143, 231, 0.08); border: 1px solid rgba(74, 143, 231, 0.15); border-radius: 50px; font-size: 13px; font-weight: 500; color: var(--primary); margin-bottom: 16px; }
.prices-hero-badge-dot { width: 8px; height: 8px; background: var(--accent-mint); border-radius: 50%; display: inline-block; animation: pulse 2s infinite; }
.prices-hero h1 { font-size: clamp(32px, 4.5vw, 48px); font-weight: 800; margin-bottom: 16px; line-height: 1.2; }
.prices-hero p { font-size: clamp(15px, 1.8vw, 18px); color: var(--text-secondary); line-height: 1.8; margin-bottom: 12px; }
.prices-currency-note { display: inline-block; padding: 6px 16px; background: rgba(74, 143, 231, 0.06); border-radius: var(--radius-sm); font-size: 13px; color: var(--text-muted); }

.pricing-section { padding: 20px 0 80px; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; max-width: 1100px; margin: 0 auto; }

.pricing-card { background: var(--card-bg); backdrop-filter: blur(16px); border: 1px solid var(--glass-border); border-radius: var(--radius-lg); padding: 28px 24px; box-shadow: var(--shadow-md); transition: var(--transition); position: relative; overflow: visible; display: flex; flex-direction: column; }
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.old-price { text-decoration: line-through; opacity: 0.5; font-size: 0.85rem; color: var(--text-secondary); margin-right: 8px; direction: ltr; display: inline-block; }
.current-price { font-size: 1.6rem; font-weight: 800; color: var(--text-primary); direction: ltr; display: inline-block; }
.price-row { display: flex; align-items: baseline; margin-bottom: 8px; position: relative; z-index: 1; }
.discount-label { font-size: 0.8rem; color: var(--accent-mint); font-weight: 600; margin-bottom: 12px; position: relative; z-index: 1; }
.discount-badge { position: absolute; top: 12px; inset-inline-end: 12px; background: linear-gradient(135deg, #FFD34D, #FFB300); color: #1b1b1b; font-weight: 800; border-radius: 999px; padding: 5px 10px; font-size: 0.75rem; box-shadow: 0 4px 12px rgba(255, 179, 0, 0.3); z-index: 5; white-space: nowrap; }
.pricing-features { list-style: none; margin: 0; padding: 0; position: relative; z-index: 1; }
.pricing-features li { font-size: 0.85rem; color: var(--text-secondary); padding: 4px 0; border-bottom: 1px solid var(--glass-border); }

.pricing-card-header { margin-bottom: 16px; position: relative; z-index: 1; }
.pricing-badge { display: inline-block; padding: 4px 14px; border-radius: 50px; font-size: 12px; font-weight: 700; margin-bottom: 10px; background: var(--glass-bg); border: 1px solid var(--glass-border); color: var(--text-secondary); }
.pricing-card-header h3 { font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.pricing-card-header p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

.pricing-specs { display: flex; gap: 16px; margin-bottom: 16px; font-size: 13px; color: var(--text-secondary); position: relative; z-index: 1; }
.pricing-specs span { display: flex; align-items: center; gap: 4px; padding: 4px 10px; background: rgba(0,0,0,0.03); border-radius: var(--radius-sm); }

.pricing-duration { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; margin-bottom: 20px; position: relative; z-index: 1; }
.pricing-dur-btn { padding: 8px 4px; border: 1px solid var(--glass-border); border-radius: var(--radius-sm); background: var(--glass-bg); font-family: inherit; font-size: 12px; font-weight: 500; color: var(--text-secondary); cursor: pointer; transition: var(--transition); }
.pricing-dur-btn:hover { border-color: var(--primary); color: var(--primary); }
.pricing-dur-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }

.pricing-price { font-size: 36px; font-weight: 800; color: var(--text-primary); margin-bottom: 4px; position: relative; z-index: 1; direction: ltr; display: flex; align-items: baseline; gap: 2px; }
.pricing-price .price-currency { font-size: 20px; font-weight: 600; color: var(--text-secondary); }
.pricing-saving { font-size: 12px; color: var(--accent-mint); font-weight: 600; min-height: 18px; position: relative; z-index: 1; }

.pricing-card-private { border-color: #888; }
.pricing-card-private .pricing-card-header h3 { color: var(--text-primary); }
.pricing-card-private .pricing-badge { background: #e0e0e0; border-color: #ccc; color: #555; }

.pricing-card-normal { border-color: #999; }
.pricing-card-normal .pricing-card-header h3 { color: var(--text-primary); }
.pricing-card-normal .pricing-badge { background: #e0e0e0; border-color: #ccc; color: #555; }

.pricing-card-green { border-color: rgba(34, 216, 152, 0.3); }
.pricing-card-green::before { content: ''; position: absolute; inset: -20px; background: radial-gradient(ellipse at 50% 0%, rgba(34, 216, 152, 0.08), transparent 60%); pointer-events: none; animation: greenGlow 4s ease-in-out infinite; }
@keyframes greenGlow { 0%, 100% { opacity: 0.6; } 50% { opacity: 1; } }
.pricing-card-green .pricing-card-header h3 { color: #22D898; }
.pricing-card-green .pricing-badge { background: rgba(34, 216, 152, 0.12); border-color: rgba(34, 216, 152, 0.25); color: #22D898; }
.pricing-card-green .pricing-card-header { filter: blur(0); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }

.pricing-card-yellow { border-color: rgba(255, 214, 90, 0.35); }
.pricing-card-yellow::before { content: ''; position: absolute; inset: -20px; background: radial-gradient(ellipse at 50% 0%, rgba(255, 214, 90, 0.12), transparent 60%); pointer-events: none; animation: yellowGlow 4s ease-in-out infinite; }
@keyframes yellowGlow { 0%, 100% { opacity: 0.6; } 50% { opacity: 1; } }
.pricing-card-yellow .pricing-card-header h3 { color: #D4A820; }
.pricing-card-yellow .pricing-badge { background: rgba(255, 214, 90, 0.12); border-color: rgba(255, 214, 90, 0.25); color: #D4A820; }
.pricing-card-yellow .pricing-card-header { -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); }

.pricing-card-red { border-color: rgba(255, 59, 59, 0.35); }
.pricing-card-red::before { content: ''; position: absolute; inset: -20px; background: radial-gradient(ellipse at 50% 0%, rgba(255, 59, 59, 0.15), transparent 60%); pointer-events: none; animation: redGlow 4s ease-in-out infinite; }
@keyframes redGlow { 0%, 100% { opacity: 0.6; } 50% { opacity: 1; } }
.pricing-card-red .pricing-card-header h3 { color: #E03030; }
.pricing-card-red .pricing-badge { background: rgba(255, 59, 59, 0.12); border-color: rgba(255, 59, 59, 0.25); color: #E03030; }
.pricing-card-red .pricing-card-header { -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px); }
.pricing-card-red .pricing-card-header::after { content: ''; position: absolute; top: -8px; left: -8px; right: -8px; bottom: -8px; border: 2px solid rgba(255, 59, 59, 0.2); border-radius: calc(var(--radius-lg) + 8px); pointer-events: none; }

.pricing-card-gold { border-color: rgba(255, 201, 74, 0.35); }
.pricing-card-gold::before { content: ''; position: absolute; inset: -20px; background: radial-gradient(ellipse at 50% 0%, rgba(255, 201, 74, 0.12), transparent 60%); pointer-events: none; animation: goldGlow 4s ease-in-out infinite; }
@keyframes goldGlow { 0%, 100% { opacity: 0.6; } 50% { opacity: 1; } }
.pricing-card-gold .pricing-card-header h3 { color: #C8962A; }
.pricing-card-gold .pricing-badge { background: linear-gradient(135deg, rgba(255, 201, 74, 0.15), rgba(255, 180, 40, 0.2)); border-color: rgba(255, 201, 74, 0.3); color: #B8860B; }
.pricing-card-gold .pricing-card-header { -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); }

.pricing-card-diamond { border-color: rgba(126, 243, 255, 0.35); }
.pricing-card-diamond::before { content: ''; position: absolute; inset: -20px; background: radial-gradient(ellipse at 50% 0%, rgba(126, 243, 255, 0.18), transparent 60%); pointer-events: none; animation: diamondGlow 4s ease-in-out infinite; }
@keyframes diamondGlow { 0%, 100% { opacity: 0.6; } 50% { opacity: 1; } }
.pricing-card-diamond .pricing-card-header h3 { background: linear-gradient(135deg, #7EF3FF, #ffffff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: diamondShimmer 3s ease-in-out infinite; background-size: 200% 200%; }
@keyframes diamondShimmer { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.pricing-card-diamond .pricing-badge { background: rgba(126, 243, 255, 0.1); border-color: rgba(126, 243, 255, 0.25); color: #7EF3FF; animation: diamondShimmer 3s ease-in-out infinite; background-size: 200% 200%; }
.pricing-card-diamond .pricing-card-header { -webkit-backdrop-filter: blur(28px); backdrop-filter: blur(28px); }
.pricing-card-diamond .pricing-card-header::after { content: ''; position: absolute; top: -8px; left: -8px; right: -8px; bottom: -8px; border: 2.4px solid rgba(126, 243, 255, 0.2); border-radius: calc(var(--radius-lg) + 8px); pointer-events: none; }
.diamond-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0; }
.diamond-particle { position: absolute; width: 3px; height: 3px; background: rgba(126, 243, 255, 0.4); border-radius: 50%; animation: diamondFloat 8s linear infinite; }
@keyframes diamondFloat { 0% { transform: translateY(100%) translateX(0); opacity: 0; } 10% { opacity: 1; } 90% { opacity: 0.3; } 100% { transform: translateY(-100%) translateX(20px); opacity: 0; } }

@media (prefers-reduced-motion: reduce) {
  .pricing-card::before, .pricing-card-diamond .pricing-card-header h3, .pricing-card-diamond .pricing-badge, .diamond-particle { animation: none !important; }
  .pricing-card-diamond .pricing-card-header h3 { -webkit-text-fill-color: #7EF3FF; }
  .pricing-card-diamond .pricing-badge { color: #7EF3FF; }
}

.pricing-names-section { padding: 0 0 80px; }
.pn-section-header { text-align: center; margin-bottom: 40px; }
.pn-section-header h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; color: var(--text-primary); margin-bottom: 12px; line-height: 1.3; }
.pn-section-header p { font-size: clamp(15px, 1.8vw, 18px); color: var(--text-secondary); max-width: 620px; margin: 0 auto 10px; line-height: 1.8; }
.pn-note { display: inline-block; padding: 6px 16px; background: rgba(74, 143, 231, 0.06); border-radius: var(--radius-sm); font-size: 13px; color: var(--text-muted); }

.pn-cards-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; max-width: 900px; margin: 0 auto 60px; }
.pn-pricing-card { background: var(--card-bg); backdrop-filter: blur(16px); border: 1px solid var(--glass-border); border-radius: var(--radius-lg); padding: 32px 28px; box-shadow: var(--shadow-md); transition: var(--transition); position: relative; overflow: hidden; display: flex; flex-direction: column; }
.pn-pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.pn-pricing-card .pricing-card-header { margin-bottom: 14px; position: relative; z-index: 1; }
.pn-pricing-card .pricing-card-header h3 { font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.pn-pricing-card .pricing-card-header p { font-size: 13px; color: var(--text-secondary); line-height: 1.7; }
.pn-pricing-card .pricing-specs { margin-bottom: 16px; }
.pn-pricing-card .pricing-duration { margin-bottom: 20px; }
.pn-pricing-card .pricing-price { margin-bottom: 4px; }
.pn-pricing-card .pricing-saving { margin-bottom: 12px; }

.pn-card-normal { border-color: rgba(148, 0, 211, 0.25); }
.pn-card-normal::before { content: ''; position: absolute; inset: -20px; background: radial-gradient(ellipse at 50% 0%, rgba(148, 0, 211, 0.06), transparent 60%); pointer-events: none; }
.pn-card-normal .pricing-badge { background: rgba(148, 0, 211, 0.08); border-color: rgba(148, 0, 211, 0.2); color: #9400D3; }
.pn-card-normal .pricing-card-header h3 { color: #9400D3; }

.pn-card-vip { border-color: rgba(255, 201, 74, 0.3); }
.pn-card-vip::before { content: ''; position: absolute; inset: -20px; background: radial-gradient(ellipse at 50% 0%, rgba(255, 201, 74, 0.08), transparent 60%); pointer-events: none; animation: goldGlow 4s ease-in-out infinite; }
.pn-card-vip .pricing-badge { background: linear-gradient(135deg, rgba(255, 201, 74, 0.12), rgba(255, 180, 40, 0.18)); border-color: rgba(255, 201, 74, 0.25); color: #B8860B; }
.pn-card-vip .pricing-card-header h3 { background: linear-gradient(135deg, #FFC847, #D98B18); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.pn-feat-list { list-style: none; padding: 0; margin: 0 0 16px; display: flex; flex-direction: column; gap: 8px; position: relative; z-index: 1; }
.pn-feat-list li { font-size: 13px; color: var(--text-secondary); line-height: 1.6; display: flex; align-items: flex-start; gap: 8px; }
.pn-feat-list li::before { content: '✓'; color: var(--accent-mint); font-weight: 700; font-size: 14px; flex-shrink: 0; margin-top: 1px; }
.pn-feat-list .pn-feat-warn { color: var(--text-muted); font-size: 12px; font-style: italic; }
.pn-feat-list .pn-feat-warn::before { content: '⚠'; color: var(--accent-orange); font-style: normal; }

.pn-styles-section { margin-bottom: 48px; }
.pn-styles-title { text-align: center; font-size: 20px; font-weight: 700; margin-bottom: 24px; color: var(--text-primary); }

.pn-styles-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 900px; margin: 0 auto; }
.pn-style-card { border-radius: var(--radius-lg); overflow: hidden; position: relative; transition: var(--transition); cursor: default; }
.pn-style-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.pn-style-preview { position: relative; padding: 24px 16px 18px; display: flex; flex-direction: column; align-items: center; gap: 10px; min-height: 180px; overflow: hidden; }
.pn-style-preview::before { content: ''; position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.3; z-index: 0; }
.pn-style-preview > * { position: relative; z-index: 1; }

.pn-style-avatar { width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; font-size: 22px; border: 2.5px solid rgba(255,255,255,0.3); overflow: hidden; }
.pn-style-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }

.pn-style-name { font-size: 15px; font-weight: 700; text-shadow: 0 1px 6px rgba(0,0,0,0.4); }
.pn-style-badge-icon { font-size: 14px; }

.pn-style-frame { position: absolute; inset: 6px; border-radius: calc(var(--radius-lg) - 4px); pointer-events: none; z-index: 2; }

.pn-style-label { text-align: center; padding: 10px 8px; font-size: 13px; font-weight: 600; color: var(--text-secondary); background: var(--card-bg); border: 1px solid var(--glass-border); border-top: none; border-radius: 0 0 var(--radius-lg) var(--radius-lg); }

/* Normal style specific colors */
.pn-style-silver .pn-style-preview { background: linear-gradient(160deg, #1a2a3a, #0d1b2a); }
.pn-style-silver .pn-style-preview::before { background-image: url('../images/protected-names/nor3.webp'); }
.pn-style-silver .pn-style-name { color: #FFF7D6; text-shadow: 0 0 8px #00E5FF, 0 0 18px #00E5FF; }
.pn-style-silver .pn-style-frame { border: 2px solid rgba(0, 229, 255, 0.25); box-shadow: inset 0 0 20px rgba(0, 229, 255, 0.06), 0 0 15px rgba(0, 229, 255, 0.08); }
.pn-style-silver .pn-style-avatar { border-color: #00E5FF; }

.pn-style-blue .pn-style-preview { background: linear-gradient(160deg, #0a1628, #0d2847); }
.pn-style-blue .pn-style-preview::before { background-image: url('../images/protected-names/nor44.webp'); }
.pn-style-blue .pn-style-name { color: #63E8FF; text-shadow: 0 0 8px #7A4DFF, 0 0 18px #7A4DFF; }
.pn-style-blue .pn-style-frame { border: 2px solid rgba(122, 77, 255, 0.25); box-shadow: inset 0 0 20px rgba(122, 77, 255, 0.06), 0 0 15px rgba(122, 77, 255, 0.08); }
.pn-style-blue .pn-style-avatar { border-color: #7A4DFF; }

.pn-style-bronze .pn-style-preview { background: linear-gradient(160deg, #2a1a0a, #3d1f00); }
.pn-style-bronze .pn-style-preview::before { background-image: url('../images/protected-names/nor11.webp'); }
.pn-style-bronze .pn-style-name { color: #FFC85A; text-shadow: 0 0 8px #FF6A00, 0 0 18px #FF6A00; }
.pn-style-bronze .pn-style-frame { border: 2px solid rgba(255, 106, 0, 0.25); box-shadow: inset 0 0 20px rgba(255, 106, 0, 0.06), 0 0 15px rgba(255, 106, 0, 0.08); }
.pn-style-bronze .pn-style-avatar { border-color: #FF6A00; }

.pn-style-neon .pn-style-preview { background: linear-gradient(160deg, #0a1a0a, #002a10); }
.pn-style-neon .pn-style-preview::before { background-image: url('../images/protected-names/nor2.webp'); }
.pn-style-neon .pn-style-name { color: #75FF7A; text-shadow: 0 0 8px #00FF66, 0 0 18px #00FF66; }
.pn-style-neon .pn-style-frame { border: 2px solid rgba(0, 255, 102, 0.25); box-shadow: inset 0 0 20px rgba(0, 255, 102, 0.06), 0 0 15px rgba(0, 255, 102, 0.08); }
.pn-style-neon .pn-style-avatar { border-color: #00FF66; }

/* VIP style specific colors */
.pn-vip-styles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 900px; margin: 0 auto; }

.pn-style-vip0 .pn-style-preview { background: linear-gradient(160deg, #2a0a1a, #3d0020); }
.pn-style-vip0 .pn-style-preview::before { background-image: url('../images/protected-names/vip0.webp'); }
.pn-style-vip0 .pn-style-name { background: linear-gradient(90deg, #F8BBD0, #E91E63, #FFF0F5, #FFB6C1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: pnGradient 4s ease-in-out infinite; background-size: 200% 200%; }
.pn-style-vip0 .pn-style-frame { border: 2px solid rgba(255, 79, 163, 0.3); box-shadow: inset 0 0 24px rgba(255, 79, 163, 0.08), 0 0 18px rgba(255, 79, 163, 0.1); animation: pnFramePulse 3s ease-in-out infinite; }
.pn-style-vip0 .pn-style-avatar { border-color: #FF4FA3; }

.pn-style-vip1 .pn-style-preview { background: linear-gradient(160deg, #0a2a1a, #003d1a); }
.pn-style-vip1 .pn-style-preview::before { background-image: url('../images/protected-names/vip1.webp'); }
.pn-style-vip1 .pn-style-name { background: linear-gradient(90deg, #41F2A1, #FFD86A, #0FAE6C); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: pnGradient 4s ease-in-out infinite; background-size: 200% 200%; }
.pn-style-vip1 .pn-style-frame { border: 2px solid rgba(24, 212, 127, 0.3); box-shadow: inset 0 0 24px rgba(24, 212, 127, 0.08), 0 0 18px rgba(24, 212, 127, 0.1); animation: pnFramePulse 3s ease-in-out infinite; }
.pn-style-vip1 .pn-style-avatar { border-color: #18D47F; }

.pn-style-vip2 .pn-style-preview { background: linear-gradient(160deg, #2a0a0a, #3d0010); }
.pn-style-vip2 .pn-style-preview::before { background-image: url('../images/protected-names/vip2.webp'); }
.pn-style-vip2 .pn-style-name { background: linear-gradient(90deg, #FF3B4E, #FF8A2A, #FFD36A); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: pnGradient 4s ease-in-out infinite; background-size: 200% 200%; }
.pn-style-vip2 .pn-style-frame { border: 2px solid rgba(225, 29, 72, 0.3); box-shadow: inset 0 0 24px rgba(225, 29, 72, 0.08), 0 0 18px rgba(225, 29, 72, 0.1); animation: pnFramePulse 3s ease-in-out infinite; }
.pn-style-vip2 .pn-style-avatar { border-color: #E11D48; }

.pn-style-vip3 .pn-style-preview { background: linear-gradient(160deg, #0a1a3a, #002050); }
.pn-style-vip3 .pn-style-preview::before { background-image: url('../images/protected-names/vip3.webp'); }
.pn-style-vip3 .pn-style-name { background: linear-gradient(90deg, #45B7FF, #6FFFF3, #FFFFFF); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: pnGradient 4s ease-in-out infinite; background-size: 200% 200%; }
.pn-style-vip3 .pn-style-frame { border: 2px solid rgba(37, 99, 235, 0.3); box-shadow: inset 0 0 24px rgba(37, 99, 235, 0.08), 0 0 18px rgba(37, 99, 235, 0.1); animation: pnFramePulse 3s ease-in-out infinite; }
.pn-style-vip3 .pn-style-avatar { border-color: #2563EB; }

.pn-style-vip4 .pn-style-preview { background: linear-gradient(160deg, #2a1a00, #3d2500); }
.pn-style-vip4 .pn-style-preview::before { background-image: url('../images/protected-names/vip4.webp'); }
.pn-style-vip4 .pn-style-name { background: linear-gradient(90deg, #FFC74A, #FFF4B0, #D98B18); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: pnGradient 4s ease-in-out infinite; background-size: 200% 200%; }
.pn-style-vip4 .pn-style-frame { border: 2px solid rgba(255, 200, 71, 0.3); box-shadow: inset 0 0 24px rgba(255, 200, 71, 0.08), 0 0 18px rgba(255, 200, 71, 0.1); animation: pnFramePulse 3s ease-in-out infinite; }
.pn-style-vip4 .pn-style-avatar { border-color: #FFC847; }

.pn-style-vip5 .pn-style-preview { background: linear-gradient(160deg, #1a0a3a, #2a0050); }
.pn-style-vip5 .pn-style-preview::before { background-image: url('../images/protected-names/vip5.webp'); }
.pn-style-vip5 .pn-style-name { background: linear-gradient(90deg, #7C1DCE, #FFF0C7, #E088FF, #9D2FFF); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: pnGradient 4s ease-in-out infinite; background-size: 200% 200%; }
.pn-style-vip5 .pn-style-frame { border: 2px solid rgba(157, 47, 255, 0.3); box-shadow: inset 0 0 24px rgba(157, 47, 255, 0.08), 0 0 18px rgba(157, 47, 255, 0.1); animation: pnFramePulse 3s ease-in-out infinite; }
.pn-style-vip5 .pn-style-avatar { border-color: #9D2FFF; }

@keyframes pnGradient { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
@keyframes pnFramePulse { 0%, 100% { opacity: 0.7; } 50% { opacity: 1; } }

@media (prefers-reduced-motion: reduce) {
  .pn-style-name, .pn-style-frame { animation: none !important; }
  .pn-pricing-card::before, .pricing-card-diamond .pricing-card-header h3, .pricing-card-diamond .pricing-badge, .diamond-particle { animation: none !important; }
  .pricing-card-diamond .pricing-card-header h3 { -webkit-text-fill-color: #7EF3FF; }
  .pricing-card-diamond .pricing-badge { color: #7EF3FF; }
}

@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
  .pricing-card { padding: 24px 20px; }
  .pricing-duration { gap: 4px; }
  .pricing-dur-btn { font-size: 11px; padding: 6px 2px; }
  .pricing-price { font-size: 30px; }
  .pn-cards-grid { grid-template-columns: 1fr; gap: 20px; }
  .pn-styles-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .pn-vip-styles-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

@media (max-width: 480px) {
  .prices-hero { padding: calc(var(--header-height) + 30px) 0 20px; }
  .prices-hero h1 { font-size: 24px; }
  .prices-hero p { font-size: 14px; }

  .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
  .pricing-card { padding: 20px 16px; }
  .pricing-card-header h3 { font-size: 18px; }
  .pricing-specs { gap: 10px; font-size: 12px; }
  .pricing-duration { gap: 4px; }
  .pricing-dur-btn { font-size: 11px; padding: 8px 2px; }
  .pricing-price { font-size: 28px; }

  .pn-cards-grid { grid-template-columns: 1fr; gap: 16px; }
  .pn-pricing-card { padding: 24px 18px; }
  .pn-styles-grid { grid-template-columns: 1fr; gap: 14px; max-width: 320px; }
  .pn-vip-styles-grid { grid-template-columns: 1fr; gap: 14px; max-width: 320px; }
  .pn-style-preview { min-height: 150px; padding: 18px 12px 14px; }
}
