/* ══════════════════════════════════════════
   Neshy Website — Modern Landing Page
   Design: Dark glassmorphism + vibrant gradients
   ══════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --bg-primary: #05070E;
  --bg-secondary: #0B0F1A;
  --bg-tertiary: #141A2A;
  --surface: rgba(20, 26, 42, 0.6);
  --surface-border: rgba(55, 65, 90, 0.35);
  --primary: #06B6D4;
  --primary-dark: #0891B2;
  --primary-glow: rgba(6, 182, 212, 0.5);
  --secondary: #8B5CF6;
  --accent: #3B82F6;
  --success: #10B981;
  --warning: #F59E0B;
  --danger: #EF4444;
  --text-primary: #F0F6FC;
  --text-secondary: #8B949E;
  --text-tertiary: #6E7681;
  --text-muted: #484F58;
  --glow-cyan: rgba(6, 182, 212, 0.10);
  --glow-purple: rgba(139, 92, 246, 0.10);
  --glow-blue: rgba(59, 130, 246, 0.10);
  --gradient-primary: linear-gradient(135deg, #06B6D4, #3B82F6);
  --gradient-secondary: linear-gradient(135deg, #8B5CF6, #EC4899);
  --gradient-text: linear-gradient(135deg, #06B6D4 0%, #38BDF8 30%, #818CF8 70%, #A78BFA 100%);
  --glass-bg: rgba(11, 15, 26, 0.50);
  --glass-border: rgba(55, 65, 90, 0.30);
  --glass-blur: 20px;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

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

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

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

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--text-muted); border-radius: 3px; }

/* ══════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(5, 7, 14, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
}

.navbar.scrolled {
  border-bottom-color: var(--glass-border);
  background: rgba(5, 7, 14, 0.9);
}

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

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-logo-img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: contain;
}

.navbar-brand-text {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

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

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
  position: relative;
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 1px;
  transform: scaleX(0);
  transition: transform 0.2s;
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 8px;
}

.navbar-mobile {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  border-top: 1px solid var(--glass-border);
  background: rgba(5, 7, 14, 0.98);
}

.navbar-mobile.open {
  display: flex;
}

.nav-link-mobile {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 12px 0;
  border-bottom: 1px solid var(--glass-border);
  transition: color 0.2s;
}

.nav-link-mobile:hover {
  color: var(--text-primary);
}

.navbar-mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

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

.lang-switcher-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s;
}

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

.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 140px;
  background: var(--bg-tertiary);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 6px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  z-index: 200;
}

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

.lang-dropdown form {
  margin: 0;
}

.lang-option {
  display: block;
  width: 100%;
  padding: 8px 14px;
  border: none;
  background: transparent;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.15s;
}

.lang-option:hover {
  background: rgba(6, 182, 212, 0.1);
  color: var(--text-primary);
}

.lang-option-active {
  color: var(--primary);
  background: rgba(6, 182, 212, 0.08);
  font-weight: 600;
}

.lang-switcher-mobile {
  display: flex;
  gap: 8px;
  padding: 12px 0;
  border-bottom: 1px solid var(--glass-border);
  flex-wrap: wrap;
}

.lang-switcher-mobile form {
  margin: 0;
}

.lang-option-mobile {
  padding: 6px 14px;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  background: transparent;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.15s;
}

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

.lang-option-mobile.lang-option-active {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(6, 182, 212, 0.08);
}

/* ══════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.25s var(--ease-out-expo);
  white-space: nowrap;
  position: relative;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 20px rgba(6, 182, 212, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 8px 32px rgba(6, 182, 212, 0.45);
  transform: translateY(-2px);
}

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

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

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
}

.btn-ghost:hover {
  color: var(--text-primary);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
  border-radius: 14px;
}

.btn-sm {
  padding: 6px 14px;
  font-size: 12px;
  border-radius: 8px;
}

.btn-block {
  width: 100%;
  text-align: center;
}

/* ══════════════════════════════════════════
   HERO — Split layout: text left, phone right
   ══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.5;
}

.hero-orb-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.25), transparent 70%);
  top: -250px;
  left: -200px;
  animation: float-orb 14s ease-in-out infinite;
}

.hero-orb-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.20), transparent 70%);
  bottom: -200px;
  right: -150px;
  animation: float-orb 11s ease-in-out infinite reverse;
}

.hero-orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15), transparent 70%);
  top: 40%;
  left: 55%;
  animation: float-orb 16s ease-in-out infinite;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(55, 65, 90, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(55, 65, 90, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

@keyframes float-orb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-split {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-text {
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.15);
  margin-bottom: 28px;
  user-select: none;
  pointer-events: none;
  letter-spacing: 0.02em;
}

.hero-title {
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  background: var(--gradient-text);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 8s ease-in-out infinite;
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

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

.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-tertiary);
  font-weight: 500;
}

.hero-trust-item i {
  width: 14px;
  height: 14px;
  color: var(--success);
}

/* Hero visual — phone mockup */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-phone {
  position: relative;
  animation: float-phone 6s ease-in-out infinite;
}

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

.hero-phone-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse at center, rgba(6, 182, 212, 0.15), transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
}

.phone-frame {
  position: relative;
  z-index: 1;
  width: 300px;
  background: var(--bg-secondary);
  border-radius: 40px;
  border: 2px solid var(--glass-border);
  padding: 12px;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(6, 182, 212, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.phone-notch {
  width: 120px;
  height: 28px;
  background: var(--bg-primary);
  border-radius: 0 0 16px 16px;
  margin: -12px auto 12px;
}

.phone-screen {
  background: var(--bg-primary);
  border-radius: 28px;
  padding: 24px 18px;
  min-height: 400px;
}

.phone-header {
  margin-bottom: 24px;
}

.phone-greeting {
  display: block;
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 2px;
}

.phone-title {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
}

.phone-kpi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 14px;
}

.phone-kpi {
  background: var(--bg-tertiary);
  border-radius: 14px;
  padding: 14px;
  border: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
}

.phone-kpi::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
}

.phone-kpi-cyan::before { background: var(--primary); }
.phone-kpi-yellow::before { background: var(--warning); }
.phone-kpi-green::before { background: var(--success); }
.phone-kpi-red::before { background: var(--danger); }

.phone-kpi-label {
  display: block;
  font-size: 10px;
  color: var(--text-tertiary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.phone-kpi-value {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
}

.phone-alert {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 12px;
  color: var(--text-secondary);
}

/* Floating cards near phone */
.hero-float-card {
  position: absolute;
  z-index: 2;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  animation: float-card 5s ease-in-out infinite;
}

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

.hero-float-card-2 {
  bottom: 15%;
  left: -30px;
  animation-delay: -2.5s;
}

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

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

.float-card-icon i {
  width: 18px;
  height: 18px;
}

.float-card-icon-success {
  background: rgba(16, 185, 129, 0.12);
  color: var(--success);
}

.float-card-icon-warning {
  background: rgba(245, 158, 11, 0.12);
  color: var(--warning);
}

.float-card-text {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
}

.float-card-sub {
  font-size: 11px;
  color: var(--text-tertiary);
  font-weight: 400;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  animation: bounce-down 2s ease-in-out infinite;
}

@keyframes bounce-down {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.4; }
  50% { transform: translateX(-50%) translateY(8px); opacity: 0.8; }
}

/* ══════════════════════════════════════════
   SECTIONS (Generic)
   ══════════════════════════════════════════ */
.section {
  padding: 120px 0;
}

.section-alt {
  background: var(--bg-secondary);
  position: relative;
}

.section-alt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

.section-alt::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 72px;
}

.section-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.12);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  user-select: none;
  pointer-events: none;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.section-title-left {
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  text-align: left;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.link-primary {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.link-primary:hover {
  color: var(--primary-dark);
}

/* ══════════════════════════════════════════
   FEATURES — Glassmorphism cards
   ══════════════════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 36px 32px;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, transparent, rgba(6, 182, 212, 0.15), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s;
}

.section-alt .feature-card {
  background: var(--bg-tertiary);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35), 0 0 48px rgba(6, 182, 212, 0.06);
  border-color: rgba(6, 182, 212, 0.25);
}

.feature-card:hover::before {
  opacity: 1;
}

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

.feature-icon i {
  width: 24px;
  height: 24px;
}

.feature-icon-primary { background: var(--glow-cyan); color: var(--primary); }
.feature-icon-secondary { background: var(--glow-purple); color: var(--secondary); }
.feature-icon-success { background: rgba(16, 185, 129, 0.10); color: var(--success); }
.feature-icon-warning { background: rgba(245, 158, 11, 0.10); color: var(--warning); }
.feature-icon-danger { background: rgba(239, 68, 68, 0.10); color: var(--danger); }
.feature-icon-accent { background: var(--glow-blue); color: var(--accent); }

.feature-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.feature-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ══════════════════════════════════════════
   HOW IT WORKS — Modern timeline
   ══════════════════════════════════════════ */
.steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 56px;
  left: 20%;
  right: 20%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary));
  opacity: 0.20;
  border-radius: 1px;
}

.step-card {
  flex: 1;
  max-width: 320px;
  text-align: center;
  padding: 0 24px;
  position: relative;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: white;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 24px rgba(6, 182, 212, 0.25);
}

.step-connector {
  display: none;
}

.step-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: var(--glow-cyan);
  border: 1px solid rgba(6, 182, 212, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary);
}

.step-icon i {
  width: 28px;
  height: 28px;
}

.step-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

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

/* ══════════════════════════════════════════
   SHOWCASE
   ══════════════════════════════════════════ */
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.showcase-desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
}

.showcase-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.showcase-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-secondary);
}

.showcase-check {
  width: 20px;
  height: 20px;
  color: var(--success);
  flex-shrink: 0;
}

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

.showcase-phone {
  position: relative;
}

/* ══════════════════════════════════════════
   PRICING — Glassmorphism cards
   ══════════════════════════════════════════ */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 56px;
}

.pricing-toggle-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-tertiary);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-toggle-label.active {
  color: var(--text-primary);
}

.pricing-toggle-save {
  font-size: 11px;
  font-weight: 700;
  color: var(--success);
  background: rgba(16, 185, 129, 0.12);
  padding: 3px 10px;
  border-radius: 999px;
}

.pricing-toggle-btn {
  width: 52px;
  height: 28px;
  border-radius: 14px;
  background: var(--bg-tertiary);
  border: 1px solid var(--glass-border);
  cursor: pointer;
  position: relative;
  transition: all 0.25s;
}

.pricing-toggle-btn.yearly {
  background: var(--primary);
  border-color: var(--primary);
}

.pricing-toggle-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 10px;
  background: white;
  transition: transform 0.25s var(--ease-out-back);
}

.pricing-toggle-btn.yearly .pricing-toggle-knob {
  transform: translateX(24px);
}

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

.pricing-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 40px 36px;
  position: relative;
  transition: all 0.4s var(--ease-out-expo);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
  border-color: rgba(55, 65, 90, 0.6);
}

.pricing-card-highlighted {
  border-color: rgba(6, 182, 212, 0.4);
  background: linear-gradient(180deg, rgba(6, 182, 212, 0.06) 0%, var(--glass-bg) 40%);
  box-shadow: 0 0 60px rgba(6, 182, 212, 0.08);
}

.pricing-card-highlighted:hover {
  border-color: rgba(6, 182, 212, 0.5);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35), 0 0 60px rgba(6, 182, 212, 0.12);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: white;
  background: var(--gradient-primary);
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(6, 182, 212, 0.3);
}

.pricing-header {
  margin-bottom: 28px;
}

.pricing-name {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.pricing-subtitle {
  font-size: 14px;
  color: var(--text-secondary);
}

.pricing-price {
  margin-bottom: 32px;
  min-height: 72px;
}

.price-monthly, .price-yearly {
  display: flex;
  align-items: baseline;
  gap: 4px;
  flex-wrap: wrap;
}

.price-currency {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-secondary);
}

.price-value {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}

.price-period {
  font-size: 14px;
  color: var(--text-tertiary);
  font-weight: 500;
}

.price-yearly-total {
  width: 100%;
  font-size: 13px;
  color: var(--text-tertiary);
  margin-top: 6px;
}

.price-yearly-save {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--success);
  background: rgba(16, 185, 129, 0.12);
  padding: 2px 10px;
  border-radius: 999px;
  margin-top: 6px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}

.pricing-feature-disabled {
  opacity: 0.4;
}

.pricing-feature-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.pricing-feature-icon-yes {
  color: var(--success);
}

.pricing-feature-icon-no {
  color: var(--text-muted);
}

/* ══════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item:hover {
  border-color: rgba(55, 65, 90, 0.6);
}

.faq-item.open {
  border-color: rgba(6, 182, 212, 0.3);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  font-family: inherit;
}

.faq-chevron {
  width: 20px;
  height: 20px;
  color: var(--text-tertiary);
  transition: transform 0.3s var(--ease-out-expo);
  flex-shrink: 0;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ══════════════════════════════════════════
   CTA SECTION
   ══════════════════════════════════════════ */
.cta-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
}

.cta-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.25), transparent 70%);
  top: -200px;
  right: -100px;
  animation: float-orb 10s ease-in-out infinite;
}

.cta-orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.2), transparent 70%);
  bottom: -150px;
  left: -100px;
  animation: float-orb 12s ease-in-out infinite reverse;
}

.cta-content {
  position: relative;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  background: var(--gradient-text);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 8s ease-in-out infinite;
}

.cta-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
.footer {
  border-top: 1px solid var(--glass-border);
  padding: 64px 0 40px;
  background: var(--bg-secondary);
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.6;
}

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

.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-tertiary);
  transition: all 0.2s;
}

.footer-social-link i {
  width: 18px;
  height: 18px;
}

.footer-social-link:hover {
  color: var(--primary);
  border-color: var(--primary);
  background: var(--glow-cyan);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.footer-link {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
}

/* ══════════════════════════════════════════
   ANIMATIONS (Scroll reveal)
   ══════════════════════════════════════════ */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-split {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }

  .hero-text {
    order: 1;
  }

  .hero-visual {
    order: 2;
  }

  .hero-subtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

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

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

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

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

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

  .pricing-grid .pricing-card:last-child {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .showcase-text {
    text-align: center;
  }

  .section-title-left {
    text-align: center;
  }

  .showcase-list {
    align-items: center;
  }

  .showcase-text .btn {
    margin: 0 auto;
  }

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

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

@media (max-width: 768px) {
  .navbar-links {
    display: none;
  }

  .navbar-actions {
    display: none;
  }

  .navbar-toggle {
    display: flex;
  }

  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .section {
    padding: 80px 0;
  }

  .section-header {
    margin-bottom: 48px;
  }

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

  .steps-grid {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .steps-grid::before {
    display: none;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .pricing-grid .pricing-card:last-child {
    max-width: none;
  }

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

  .phone-frame {
    width: 260px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-actions .btn {
    width: 100%;
  }

  .pricing-card {
    padding: 28px 24px;
  }

  .feature-card {
    padding: 28px 24px;
  }

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

/* ── Cookie Consent Banner ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--glass-border);
  padding: 20px;
  z-index: 1000;
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-content p {
  flex: 1;
  min-width: 280px;
  font-size: 14px;
  color: var(--text-secondary);
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-actions {
    width: 100%;
    justify-content: center;
  }
}
