/* ═══════════════════════════════════════════════════════════════
   MyBills Landing Page — Ultra-Premium Conversion-Optimized CSS
   ═══════════════════════════════════════════════════════════════ */

:root {
  --teal: #16C79A;
  --teal-dark: #0FA87E;
  --teal-glow: rgba(22, 199, 154, 0.25);
  --navy: #1A1A2E;
  --navy-mid: #16213E;
  --navy-light: #0F3460;
  --indigo: #5C6BC0;
  --white: #FFFFFF;
  --grey-50: #F9FAFB;
  --grey-100: #F3F4F6;
  --grey-200: #E5E7EB;
  --grey-300: #D1D5DB;
  --grey-400: #9CA3AF;
  --grey-500: #6B7280;
  --grey-600: #4B5563;
  --grey-700: #374151;
  --grey-800: #1F2937;
  --grey-900: #111827;
  --star: #FFB300;
  --coral: #FF6B6B;
  --purple: #A855F7;
  --blue: #3B82F6;
  --orange: #F59E0B;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 24px 64px rgba(0,0,0,0.16);
  --shadow-glow: 0 0 60px var(--teal-glow);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ── Scroll Reveal Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}
.navbar.scrolled {
  box-shadow: var(--shadow-md);
  height: 64px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 22px;
  color: var(--navy);
  text-decoration: none;
}
.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  font-weight: 900;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  text-decoration: none;
  color: var(--grey-600);
  font-weight: 500;
  font-size: 14px;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: width 0.3s ease;
  border-radius: 1px;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--teal-dark); }
.nav-cta {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark)) !important;
  color: white !important;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
  font-size: 14px !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px var(--teal-glow);
}
.nav-lang-select {
  background: var(--grey-100);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: 13px;
  font-family: inherit;
  color: var(--grey-700);
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s;
}
.nav-lang-select:focus { border-color: var(--teal); }
.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--grey-800);
  margin: 6px 0;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── Hero Section ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
  overflow: hidden;
  background: linear-gradient(160deg, #FFFFFF 0%, #F0FDFA 30%, #F0F9FF 60%, #FFFFFF 100%);
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--teal-glow) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(92, 107, 192, 0.1) 0%, transparent 70%);
  animation: float 10s ease-in-out infinite reverse;
  pointer-events: none;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(22, 199, 154, 0.08);
  border: 1px solid rgba(22, 199, 154, 0.2);
  color: var(--teal-dark);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease-out;
}
.hero-badge::before {
  content: '🇮🇳';
  font-size: 16px;
}
.hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.08;
  color: var(--navy);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}
.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--teal), var(--indigo));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 18px;
  color: var(--grey-500);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 48px;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: white;
  padding: 16px 36px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 16px var(--teal-glow);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--teal-glow);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--grey-700);
  padding: 16px 28px;
  border: 2px solid var(--grey-200);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-secondary:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
  background: rgba(22, 199, 154, 0.04);
}
.hero-stats {
  display: flex;
  gap: 40px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}
.hero-stat {
  display: flex;
  flex-direction: column;
}
.hero-stat-value {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
}
.hero-stat-label {
  font-size: 13px;
  color: var(--grey-400);
  font-weight: 500;
}
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  animation: fadeInRight 1s ease-out 0.3s both;
}

/* ── Device Showcase ── */
.device-showcase {
  position: relative;
  width: 100%;
  max-width: 580px;
}
.desktop-frame {
  position: relative;
  width: 100%;
}
.desktop-bezel {
  background: var(--navy);
  border-radius: 12px 12px 0 0;
  padding: 10px 16px;
  display: flex;
  align-items: center;
}
.desktop-dots {
  display: flex;
  gap: 6px;
}
.desktop-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.desktop-dots .dot.red { background: #FF5F57; }
.desktop-dots .dot.yellow { background: #FFBD2E; }
.desktop-dots .dot.green { background: #28CA41; }
.desktop-title {
  margin-left: 16px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
}
.desktop-screen {
  border: 3px solid var(--navy);
  border-top: none;
  border-radius: 0 0 4px 4px;
  overflow: hidden;
  background: var(--grey-100);
  line-height: 0;
}
.desktop-slider {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.desktop-slider img {
  width: 100%;
  flex-shrink: 0;
  height: auto;
  display: block;
}
.desktop-stand {
  width: 30%;
  height: 18px;
  margin: 0 auto;
  background: linear-gradient(180deg, var(--navy), var(--grey-700));
  clip-path: polygon(8% 0%, 92% 0%, 100% 100%, 0% 100%);
}
.phone-frame {
  position: absolute;
  bottom: -10px;
  right: -30px;
  width: 140px;
  background: var(--navy);
  border-radius: 22px;
  padding: 8px;
  box-shadow: var(--shadow-xl), 0 0 40px rgba(22, 199, 154, 0.2);
  z-index: 5;
}
.phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 16px;
  background: var(--navy);
  border-radius: 0 0 10px 10px;
  z-index: 10;
}
.phone-screen {
  border-radius: 16px;
  overflow: hidden;
  line-height: 0;
  background: var(--grey-100);
}
.phone-slider {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.phone-slider img {
  width: 100%;
  flex-shrink: 0;
  height: auto;
  display: block;
}
.slide-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.slide-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--grey-300);
  cursor: pointer;
  transition: all 0.3s;
}
.slide-dot.active {
  background: var(--teal);
  width: 24px;
  border-radius: 4px;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ── Section Common ── */
section {
  padding: 100px 40px;
}
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section-header h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.section-header p {
  font-size: 17px;
  color: var(--grey-500);
  line-height: 1.7;
}

/* ── Features Grid ── */
#features { background: var(--grey-50); }
.features-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--grey-200);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--indigo));
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.feature-icon.teal { background: #D1FAE5; }
.feature-icon.blue { background: #DBEAFE; }
.feature-icon.purple { background: #EDE9FE; }
.feature-icon.orange { background: #FEF3C7; }
.feature-icon.pink { background: #FCE7F3; }
.feature-icon.indigo { background: #E0E7FF; }
.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 14px;
  color: var(--grey-500);
  line-height: 1.7;
}

/* ── Templates Section ── */
#templates { background: var(--navy); overflow: hidden; }
#templates .section-header h2 { color: white; }
#templates .section-header p { color: rgba(255,255,255,0.5); }
.template-marquee {
  display: flex;
  gap: 24px;
  animation: marquee 40s linear infinite;
  width: max-content;
}
.template-marquee:hover { animation-play-state: paused; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.template-chip {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  color: rgba(255,255,255,0.75);
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
  transition: all 0.3s;
  cursor: default;
}
.template-chip:hover {
  background: rgba(22, 199, 154, 0.15);
  border-color: var(--teal);
  color: var(--teal);
}
.template-count {
  text-align: center;
  margin-top: 48px;
}
.template-count span {
  font-size: 72px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--teal), #60A5FA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.template-count p {
  color: rgba(255,255,255,0.4);
  font-size: 16px;
  margin-top: 8px;
}

/* ── Download Section ── */
#download {
  background: linear-gradient(160deg, #F0FDFA 0%, #FFFFFF 50%, #F0F9FF 100%);
}
.download-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.download-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  border: 2px solid var(--grey-200);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.download-card.available {
  cursor: pointer;
}
.download-card.available:hover {
  border-color: var(--teal);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), 0 0 40px var(--teal-glow);
}
.download-card.coming-soon {
  opacity: 0.55;
  cursor: default;
}
.download-card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}
.download-card-icon.android { background: #D1FAE5; }
.download-card-icon.windows { background: #DBEAFE; }
.download-card-icon.macos { background: #F3F4F6; }
.download-card-icon.linux { background: #FEF3C7; }
.download-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.download-card p {
  font-size: 13px;
  color: var(--grey-400);
}
.download-card .badge-coming {
  display: inline-block;
  margin-top: 16px;
  padding: 6px 16px;
  border-radius: 100px;
  background: var(--grey-100);
  color: var(--grey-500);
  font-size: 12px;
  font-weight: 600;
}
.download-card.available .download-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: white;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}
.download-card.available .download-btn:hover {
  box-shadow: 0 4px 16px var(--teal-glow);
  transform: translateY(-1px);
}
.smartscreen-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 12px;
  font-size: 12px;
  color: #D97706;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}
.smartscreen-link:hover {
  color: #B45309;
  text-decoration: underline;
}
.smartscreen-link svg {
  color: #D97706;
}

/* ── SmartScreen Modal ── */
.ss-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.ss-modal-overlay.active {
  display: flex;
}
.ss-modal {
  background: white;
  border-radius: var(--radius-xl);
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px;
  position: relative;
  box-shadow: 0 25px 60px rgba(0,0,0,0.3);
  animation: ssModalIn 0.3s ease-out;
}
@keyframes ssModalIn {
  from { opacity: 0; transform: scale(0.95) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.ss-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--grey-100);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 20px;
  color: var(--grey-500);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.ss-modal-close:hover {
  background: var(--grey-200);
  color: var(--grey-700);
}
.ss-modal-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  padding-right: 40px;
}
.ss-modal-subtitle {
  font-size: 14px;
  color: var(--grey-500);
  line-height: 1.6;
  margin-bottom: 28px;
}
.ss-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.ss-step {
  display: flex;
  gap: 16px;
}
.ss-step-number {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: white;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ss-step-content {
  flex: 1;
  min-width: 0;
}
.ss-step-content h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.ss-step-content p {
  font-size: 13px;
  color: var(--grey-500);
  line-height: 1.5;
  margin-bottom: 12px;
}
.ss-step-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--grey-200);
}
.ss-step-img svg {
  display: block;
  width: 100%;
  height: auto;
}
.ss-step-img.ss-step-success {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  background: #ECFDF5;
  border-color: #A7F3D0;
}
.ss-step-img.ss-step-success span {
  font-size: 15px;
  font-weight: 600;
  color: #065F46;
}
.ss-modal-download {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 28px;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.ss-modal-download:hover {
  box-shadow: 0 4px 20px var(--teal-glow);
  transform: translateY(-1px);
}
.ss-highlight-text { text-decoration: underline; }

@media (max-width: 600px) {
  .ss-modal { padding: 24px 20px; }
  .ss-modal-title { font-size: 18px; }
  .ss-step { gap: 12px; }
  .ss-step-number { width: 28px; height: 28px; font-size: 12px; }
}

/* ── Pricing Section ── */
#pricing { background: var(--grey-50); }
.pricing-grid {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.pricing-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 44px 36px;
  border: 2px solid var(--grey-200);
  transition: all 0.4s;
  position: relative;
}
.pricing-card.premium {
  border-color: var(--teal);
  box-shadow: var(--shadow-lg), 0 0 40px var(--teal-glow);
}
.pricing-card.premium::before {
  content: '⭐ RECOMMENDED';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: white;
  padding: 6px 20px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
}
.pricing-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.pricing-price {
  font-size: 44px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 4px;
}
.pricing-desc {
  font-size: 14px;
  color: var(--grey-400);
  margin-bottom: 28px;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--grey-600);
}
.pricing-features li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #D1FAE5;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Languages Section ── */
#languages { background: white; }
.languages-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.lang-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--grey-50);
  border: 1px solid var(--grey-200);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--grey-700);
  transition: all 0.3s;
  cursor: default;
}
.lang-chip:hover {
  background: rgba(22, 199, 154, 0.06);
  border-color: var(--teal);
  color: var(--teal-dark);
  transform: translateY(-2px);
}
.lang-chip .lang-native {
  font-weight: 700;
}

/* ── CTA Section ── */
.cta-section {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  text-align: center;
  padding: 100px 40px;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--teal-glow) 0%, transparent 70%);
  opacity: 0.3;
  pointer-events: none;
}
.cta-section h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
  position: relative;
}
.cta-section p {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
  position: relative;
}
.cta-section .btn-primary {
  font-size: 18px;
  padding: 18px 48px;
  position: relative;
}

/* ── Footer ── */
.footer {
  background: var(--grey-900);
  padding: 48px 40px;
  text-align: center;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 20px;
}
.footer-links a {
  color: var(--grey-400);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--teal); }
.footer-made {
  color: var(--grey-500);
  font-size: 14px;
  margin-bottom: 8px;
}
.footer-copy {
  color: var(--grey-600);
  font-size: 12px;
}

/* ── Particles (background dots) ── */
.particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0.08;
  animation: drift linear infinite;
}
@keyframes drift {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 0.08; }
  90% { opacity: 0.08; }
  100% { transform: translateY(-100vh) translateX(40px); opacity: 0; }
}

/* ── Counter animations ── */
.count-up {
  font-variant-numeric: tabular-nums;
}

/* ── Mobile Responsive ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-sub { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { order: 1; }
  .device-showcase { max-width: 480px; margin: 0 auto; }
  .phone-frame { width: 120px; right: -15px; bottom: -8px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .download-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .navbar { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: white;
    padding: 24px;
    gap: 20px;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--grey-200);
  }
  .nav-mobile-toggle { display: block; margin-left: auto; }
  section { padding: 60px 20px; }
  .hero { padding: 100px 20px 60px; min-height: auto; }
  .hero h1 { font-size: 32px; }
  .hero-sub { font-size: 16px; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .hero-stats { gap: 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .download-grid { grid-template-columns: 1fr 1fr; }
  .device-showcase { max-width: 400px; }
  .phone-frame { width: 100px; right: -10px; bottom: -5px; padding: 6px; border-radius: 16px; }
  .phone-notch { width: 40px; height: 12px; border-radius: 0 0 8px 8px; top: 6px; }
  .phone-screen { border-radius: 12px; }
  .desktop-bezel { padding: 8px 12px; border-radius: 10px 10px 0 0; }
  .desktop-dots .dot { width: 8px; height: 8px; }
  .desktop-stand { height: 14px; }
}

@media (max-width: 480px) {
  .download-grid { grid-template-columns: 1fr; }
  .device-showcase { max-width: 320px; }
  .phone-frame { width: 80px; right: -5px; bottom: 0; padding: 5px; border-radius: 14px; }
  .phone-notch { width: 30px; height: 10px; top: 5px; }
  .phone-screen { border-radius: 10px; }
  .desktop-bezel { padding: 6px 10px; border-radius: 8px 8px 0 0; }
  .desktop-dots .dot { width: 7px; height: 7px; }
  .desktop-stand { height: 12px; }
}
