/* ============================================
   LWEGAV — Main Stylesheet
   Primary: #0846AA | Secondary: blue-black | Accent: #fff
   Fonts: Montserrat / Inter / Cairo
   ============================================ */

/* ---- CSS Variables ---- */
:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f5f7fb;
  --bg-tertiary: #eef2f9;
  --text-primary: #152144;
  --text-secondary: #4f6085;
  --text-muted: #6f82a1;
  --card-bg: #ffffff;
  --border-color: #d9e2f2;
  --navbar-bg: rgba(255, 255, 255, 0.97);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 60px rgba(8, 70, 170, 0.15);
  --brand: #0846AA;
  --brand-light: #e8f0ff;
  --brand-dark: #063589;
  --gradient: linear-gradient(135deg, #0846AA 0%, #1a6dd8 100%);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.3s ease;
}

.dark {
  --bg-primary: #0d1117;
  --bg-secondary: #161b26;
  --bg-tertiary: #1c2333;
  --text-primary: #f0f4ff;
  --text-secondary: #a0aec0;
  --text-muted: #718096;
  --card-bg: #1c2333;
  --border-color: #2d3748;
  --navbar-bg: rgba(255, 255, 255, 0.06);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 20px 60px rgba(8, 70, 170, 0.25);
  --brand-light: #0a1e40;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  transition: background var(--transition), color var(--transition);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.title {
  font-family: 'Montserrat', sans-serif;
}

:lang(ar),
[lang="ar"],
[dir="rtl"] {
  font-family: 'Cairo', sans-serif;
}

/* RTL support */
[dir="rtl"] body {
  text-align: right;
}

/* ---- 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(--brand);
  border-radius: 3px;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--navbar-bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--gradient);
  color: #fff;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.2rem;
  font-family: 'Cairo', sans-serif;
}

.logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -0.5px;
  font-family: 'Cairo', sans-serif;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
  font-family: 'Cairo', sans-serif;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--brand);
  background: var(--brand-light);
}

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

/* Language Switcher */
.lang-switcher {
  display: flex;
  background: var(--bg-secondary);
  border-radius: 8px;
  padding: 3px;
  border: 1px solid var(--border-color);
  gap: 2px;
}

.lang-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-family: 'Cairo', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  letter-spacing: 0.5px;
}

.lang-btn.active {
  background: var(--brand);
  color: #fff;
}

.lang-btn:hover:not(.active) {
  background: var(--border-color);
  color: var(--text-primary);
}

/* Theme Toggle */
.theme-toggle {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  background: var(--card-bg);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: background var(--transition), border-color var(--transition), transform 0.2s;
}

.theme-toggle:hover {
  transform: scale(1.05);
  border-color: var(--brand);
}

.dark .sun-icon {
  display: block;
}

.dark .moon-icon {
  display: none;
}

.sun-icon {
  display: none;
}

.moon-icon {
  display: block;
}

/* Small CTA */
.cta-btn-small {
  background: var(--gradient);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 9px 20px;
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: opacity var(--transition), transform 0.2s;
  white-space: nowrap;
}

.cta-btn-small:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

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

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

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 32px 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-blob-1 {
  width: 600px;
  height: 600px;
  background: var(--brand);
  top: -150px;
  right: -100px;
  animation: blobFloat 8s ease-in-out infinite;
}

.hero-blob-2 {
  width: 400px;
  height: 400px;
  background: #1a6dd8;
  bottom: -100px;
  left: -80px;
  animation: blobFloat 10s ease-in-out infinite reverse;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border-color) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-color) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.3;
}

@keyframes blobFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -20px) scale(1.05);
  }

  66% {
    transform: translate(-20px, 15px) scale(0.95);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 650px;
  margin: 0 auto;
  padding: 60px 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-light);
  border: 1px solid rgba(8, 70, 170, 0.2);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.85rem;
  color: var(--brand);
  font-weight: 600;
  margin-bottom: 28px;
  font-family: 'Cairo', sans-serif;
}

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

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 24px;
  font-family: 'Cairo', sans-serif;
}

.hero-title-accent {
  color: var(--brand);
  position: relative;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 560px;
  font-family: 'Cairo', sans-serif;
  line-height: 1.8;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--gradient);
  color: #fff;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1rem;
  font-family: 'Cairo', sans-serif;
  transition: transform 0.2s, box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(8, 70, 170, 0.35);
}

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

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--card-bg);
  color: var(--text-primary);
  text-decoration: none;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  font-family: 'Cairo', sans-serif;
  border: 1px solid var(--border-color);
  transition: border-color var(--transition), background var(--transition), transform 0.2s;
}

.btn-outline:hover {
  border-color: var(--brand);
  background: var(--brand-light);
  transform: translateY(-1px);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 32px 0 0;
}

[dir="rtl"] .stat-item {
  padding: 0 0 0 32px;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--brand);
  font-family: 'Cairo', sans-serif;
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-family: 'Cairo', sans-serif;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border-color);
  margin: 0 32px 0 0;
  align-self: center;
}

[dir="rtl"] .stat-divider {
  margin: 0 0 0 32px;
}

/* ---- Hero Visual / Dashboard Mockup ---- */
.hero-visual {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  width: min(48%, 600px);
  max-width: 600px;
  z-index: 1;
  padding: 60px 24px 60px 0;
}

[dir="rtl"] .hero-visual {
  right: auto;
  left: 32px;
  padding: 60px 0 60px 24px;
}

@media (max-width: 1120px) {
  .hero {
    flex-direction: column;
    align-items: center;
    padding: 90px 24px 60px;
  }

  .hero-content {
    max-width: 720px;
    padding: 40px 24px;
  }

  .hero-visual {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
    max-width: 720px;
    margin-top: 48px;
    padding: 0;
  }
}

.dashboard-mockup {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-color);
  overflow: hidden;
  animation: floatUp 6s ease-in-out infinite;
}

@keyframes floatUp {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }
}

.mockup-topbar {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.mockup-dots {
  display: flex;
  gap: 7px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot.red {
  background: #ff5f57;
}

.dot.yellow {
  background: #febc2e;
}

.dot.green {
  background: #28c840;
}

.mockup-title {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-family: 'Cairo', sans-serif;
  font-weight: 600;
}

.mockup-body {
  display: flex;
  height: 260px;
}

.mockup-sidebar {
  width: 56px;
  background: var(--bg-secondary);
  border-right: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 0;
  gap: 8px;
}

.sidebar-item {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background var(--transition);
}

.sidebar-item.active {
  background: var(--brand);
}

.sidebar-item:hover:not(.active) {
  background: var(--border-color);
}

.mockup-main {
  flex: 1;
  padding: 16px;
  overflow: hidden;
}

.mockup-cards {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

.mockup-card {
  flex: 1;
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
  padding: 12px;
  border: 1px solid var(--border-color);
}

.card-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  margin-bottom: 4px;
  font-family: 'Cairo', sans-serif;
}

.card-value {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  font-family: 'Cairo', sans-serif;
  margin-bottom: 2px;
}

.card-change {
  font-size: 0.65rem;
  font-weight: 700;
  font-family: 'Cairo', sans-serif;
}

.card-change.positive {
  color: #10b981;
}

.card-change.negative {
  color: #ef4444;
}

.mockup-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 80px;
}

.chart-bar {
  flex: 1;
  background: linear-gradient(180deg, var(--brand) 0%, rgba(8, 70, 170, 0.4) 100%);
  border-radius: 4px 4px 0 0;
  transition: height var(--transition);
}

/* Floating Cards */
.floating-card {
  position: absolute;
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border-color);
  min-width: 180px;
  animation: floatCard 4s ease-in-out infinite;
}

.floating-card-1 {
  bottom: 40px;
  left: -30px;
  animation-delay: 0s;
}

.floating-card-2 {
  top: 40px;
  left: -40px;
  animation-delay: 2s;
}

[dir="rtl"] .floating-card-1 {
  left: auto;
  right: -30px;
}

[dir="rtl"] .floating-card-2 {
  left: auto;
  right: -40px;
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-8px) rotate(0deg);
  }
}

.fc-icon {
  font-size: 1.4rem;
}

.fc-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  font-family: 'Cairo', sans-serif;
}

.fc-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-family: 'Cairo', sans-serif;
}

/* ============================================
   LOGOS STRIP
   ============================================ */
.logos-strip {
  padding: 40px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background: var(--bg-secondary);
  overflow: hidden;
}

.logos-label {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  font-family: 'Cairo', sans-serif;
}

.logos-track {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.logos-scroll {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: scrollLogos 20s linear infinite;
}

@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.logo-pill {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  padding: 10px 24px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
  font-family: 'Cairo', sans-serif;
}

/* ============================================
   SECTIONS COMMON
   ============================================ */
section {
  padding: 100px 0;
}

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

.section-tag {
  display: inline-block;
  background: var(--brand-light);
  color: var(--brand);
  border: 1px solid rgba(8, 70, 170, 0.15);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: 'Cairo', sans-serif;
}

.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 16px;
  font-family: 'Cairo', sans-serif;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  font-family: 'Cairo', sans-serif;
  line-height: 1.7;
}

/* ============================================
   FEATURES
   ============================================ */
.features {
  background: var(--bg-primary);
}

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

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(8, 70, 170, 0.2);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: rgba(8, 70, 170, 0.1);
  color: var(--brand);
  font-size: 1.4rem;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  font-family: 'Cairo', sans-serif;
}

.feature-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-family: 'Cairo', sans-serif;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
  background: var(--bg-secondary);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.step-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.step-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(8, 70, 170, 0.08);
  font-family: 'Cairo', sans-serif;
  line-height: 1;
  margin-bottom: 8px;
}

.step-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 70, 170, 0.1);
  color: var(--brand);
  font-size: 1.8rem;
  transition: transform 0.25s ease, background 0.25s ease;
}

.step-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  font-family: 'Cairo', sans-serif;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-family: 'Cairo', sans-serif;
}

.step-arrow {
  display: none;
}

/* ============================================
   PRICING
   ============================================ */
.pricing {
  background: var(--bg-primary);
}

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

.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
  transform: translateY(-4px);
}

.pricing-card.featured {
  border-color: var(--brand);
  box-shadow: 0 0 0 1px var(--brand), var(--shadow-xl);
  transform: scale(1.04);
}

.pricing-card.featured:hover {
  transform: scale(1.04) translateY(-4px);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: #fff;
  border-radius: 50px;
  padding: 5px 20px;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
  font-family: 'Cairo', sans-serif;
}

.plan-name {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  font-family: 'Cairo', sans-serif;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.price-amount {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--text-primary);
  font-family: 'Cairo', sans-serif;
  line-height: 1;
}

.price-currency {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brand);
  font-family: 'Cairo', sans-serif;
}

.price-period {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-family: 'Cairo', sans-serif;
}

.plan-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 20px;
  font-family: 'Cairo', sans-serif;
}

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

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-family: 'Cairo', sans-serif;
}

.plan-features li.disabled {
  opacity: 0.4;
}

.check {
  color: #10b981;
  font-weight: 800;
}

.cross {
  color: #ef4444;
  font-weight: 800;
}

.btn-primary-full {
  display: block;
  text-align: center;
  background: var(--gradient);
  color: #fff;
  text-decoration: none;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  font-family: 'Cairo', sans-serif;
  transition: opacity var(--transition), transform 0.2s;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(8, 70, 170, 0.3);
  width: 100%;
}

.btn-primary-full:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.btn-outline-full {
  display: block;
  text-align: center;
  background: transparent;
  color: var(--text-primary);
  text-decoration: none;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  font-family: 'Cairo', sans-serif;
  border: 1.5px solid var(--border-color);
  transition: border-color var(--transition), background var(--transition), transform 0.2s;
  cursor: pointer;
  width: 100%;
}

.btn-outline-full:hover {
  border-color: var(--brand);
  background: var(--brand-light);
  transform: translateY(-1px);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  background: var(--bg-secondary);
}

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

.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.stars {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
  font-family: 'Cairo', sans-serif;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  background: var(--gradient);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  font-family: 'Cairo', sans-serif;
  flex-shrink: 0;
}

.author-name {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 0.9rem;
  font-family: 'Cairo', sans-serif;
}

.author-role {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-family: 'Cairo', sans-serif;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  background: var(--bg-primary);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.open {
  border-color: var(--brand);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  font-family: 'Cairo', sans-serif;
}

[dir="rtl"] .faq-question {
  text-align: right;
}

.faq-question span:first-child {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  font-family: 'Cairo', sans-serif;
  flex: 1;
}

.faq-icon {
  font-size: 1.4rem;
  color: var(--brand);
  font-weight: 300;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
  transition: transform 0.3s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

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

.faq-answer.open {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 28px 24px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  font-family: 'Cairo', sans-serif;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  padding: 80px 0;
  background: var(--gradient);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  font-family: 'Cairo', sans-serif;
}

.cta-content p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  font-family: 'Cairo', sans-serif;
}

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

.btn-white {
  display: inline-block;
  background: #fff;
  color: var(--brand);
  text-decoration: none;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1rem;
  font-family: 'Cairo', sans-serif;
  transition: transform 0.2s, box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.btn-outline-white {
  display: inline-block;
  background: transparent;
  color: #fff;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1rem;
  font-family: 'Cairo', sans-serif;
  border: 2px solid rgba(255, 255, 255, 0.6);
  transition: border-color var(--transition), background var(--transition);
}

.btn-outline-white:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  background: var(--bg-secondary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--brand-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
  font-family: 'Cairo', sans-serif;
}

.contact-item a,
.contact-item p {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.95rem;
  font-family: 'Cairo', sans-serif;
  line-height: 1.6;
}

.contact-item a:hover {
  color: var(--brand);
}

/* Contact Form */
.contact-form {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
  font-family: 'Cairo', sans-serif;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text-primary);
  font-family: 'Cairo', sans-serif;
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(8, 70, 170, 0.12);
}

.form-success {
  display: none;
  margin-top: 16px;
  padding: 12px 16px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-sm);
  color: #10b981;
  font-size: 0.9rem;
  font-family: 'Cairo', sans-serif;
  text-align: center;
}

.form-success.visible {
  display: block;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-color);
  padding: 70px 0 0;
}

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

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 16px 0 24px;
  font-family: 'Cairo', sans-serif;
}

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

.social-link {
  width: 44px;
  height: 44px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform 0.25s ease;
}

.social-link:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  transform: translateY(-1px);
}

.footer-col h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  font-family: 'Cairo', sans-serif;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-family: 'Cairo', sans-serif;
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--brand);
}

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

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-family: 'Cairo', sans-serif;
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  background: var(--gradient);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: opacity 0.3s, transform 0.3s;
  opacity: 0;
  pointer-events: none;
  z-index: 100;
}

[dir="rtl"] .back-to-top {
  right: auto;
  left: 30px;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  transform: translateY(-3px);
}

/* ============================================
   ANIMATIONS (AOS-like)
   ============================================ */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

[data-aos][data-aos-delay="100"] {
  transition-delay: 0.1s;
}

[data-aos][data-aos-delay="200"] {
  transition-delay: 0.2s;
}

[data-aos][data-aos-delay="300"] {
  transition-delay: 0.3s;
}

[data-aos][data-aos-delay="400"] {
  transition-delay: 0.4s;
}

[data-aos][data-aos-delay="500"] {
  transition-delay: 0.5s;
}

/* ============================================
   RESPONSIVE — TABLET (≤ 992px)
   ============================================ */
@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    min-height: auto;
    padding-bottom: 60px;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  [dir="rtl"] .hero-content {
    text-align: center;
  }

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

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

  .hero-visual {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    padding: 0 24px 40px;
  }

  [dir="rtl"] .hero-visual {
    left: auto;
    right: auto;
    padding: 0 24px 40px;
  }

  .floating-card {
    display: none;
  }

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

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

  .pricing-card.featured {
    transform: scale(1);
  }

  .pricing-card.featured:hover {
    transform: translateY(-4px);
  }

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

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

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

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

/* ============================================
   RESPONSIVE — MOBILE (≤ 640px)
   ============================================ */
@media (max-width: 640px) {
  section {
    padding: 70px 0;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--navbar-bg);
    border-bottom: 1px solid var(--border-color);
    flex-direction: column;
    gap: 0;
    padding: 12px 0;
    backdrop-filter: blur(16px);
    z-index: 999;
  }

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

  .nav-links a {
    padding: 14px 24px;
    border-radius: 0;
    font-size: 1rem;
  }

  .hamburger {
    display: flex;
  }

  .cta-btn-small {
    display: none;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-badge {
    font-size: 0.78rem;
  }

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

  .pricing-grid,
  .testimonials-grid,
  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

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

  .contact-form {
    padding: 28px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .lang-switcher {
    gap: 1px;
  }

  .lang-btn {
    padding: 4px 8px;
    font-size: 0.75rem;
  }

  .stat-item {
    padding: 0 20px 0 0;
  }

  [dir="rtl"] .stat-item {
    padding: 0 0 0 20px;
  }

  .stat-divider {
    margin: 0 20px 0 0;
  }

  [dir="rtl"] .stat-divider {
    margin: 0 0 0 20px;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
  }

  [dir="rtl"] .back-to-top {
    left: 20px;
    right: auto;
  }
}

/* ============================================
   RTL-SPECIFIC OVERRIDES
   ============================================ */
[dir="rtl"] .hero-content {
  text-align: right;
}

[dir="rtl"] .section-header {
  text-align: center;
}

[dir="rtl"] .faq-question {
  flex-direction: row-reverse;
}

[dir="rtl"] .plan-features li {
  flex-direction: row-reverse;
}

[dir="rtl"] .testimonial-author {
  flex-direction: row-reverse;
}

[dir="rtl"] .contact-item {
  flex-direction: row-reverse;
  text-align: right;
}

[dir="rtl"] .nav-links a {
  text-align: right;
}

[dir="rtl"] .footer-brand {
  text-align: right;
}

[dir="rtl"] .footer-social {
  flex-direction: row-reverse;
}

[dir="rtl"] .logos-scroll {
  animation-direction: reverse;
}

[dir="rtl"] .mockup-sidebar {
  border-right: none;
  border-left: 1px solid var(--border-color);
}

/* ============================================================
   LWEGAV — Premium Design System
   Inspired by Linear, Vercel, Stripe
   Accent: #0846aa (gold) | Font: Cairo
   ============================================================ */

/* ── 1. TOKENS ─────────────────────────────────────────── */
:root {
  /* Surfaces */
  --surface-0: #ffffff;
  --surface-1: #fafafa;
  --surface-2: #f4f4f5;
  --surface-3: #e4e4e7;

  /* Text */
  --text-1: #152144;
  --text-2: #4f6085;
  --text-3: #6f82a1;
  --text-inv: #ffffff;

  /* Borders */
  --border: #e4e4e7;
  --border-mid: #d4d4d8;

  /* Blue accent (primary) */
  --gold: #0846aa;
  --gold-dk: #1a6dd8;
  --gold-lt: #eff6ff;
  --gold-glow: rgba(8, 70, 170, 0.15);
  --gold-ring: rgba(8, 70, 170, 0.28);

  /* Blue */
  --blue: #0846aa;
  --blue-dk: #063589;
  --blue-lt: #eff6ff;

  /* Hero gradient */
  --hero-bg: linear-gradient(135deg, #101d3c 0%, #0d1f4a 60%, #0846aa 100%);

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, .06);
  --shadow-sm: 0 1px 6px rgba(0, 0, 0, .08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, .10);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, .13);
  --shadow-xl: 0 24px 64px rgba(0, 0, 0, .16);
  --shadow-gold: 0 8px 32px rgba(244, 169, 26, .25);
  --shadow-blue: 0 8px 32px rgba(8, 70, 170, .20);

  /* Radii */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-full: 9999px;

  /* Motion */
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-back: cubic-bezier(.34, 1.56, .64, 1);
  --t-fast: 150ms;
  --t-mid: 250ms;
  --t-slow: 400ms;

  /* Typography */
  --font: 'Cairo', system-ui, sans-serif;

  /* Layout */
  --nav-h: 64px;
  --max-w: 1200px;
}

/* Dark mode */
.dark {
  --surface-0: #09090b;
  --surface-1: #111113;
  --surface-2: #18181b;
  --surface-3: #27272a;
  --text-1: #fafafa;
  --text-2: #a1a1aa;
  --text-3: #71717a;
  --border: #27272a;
  --border-mid: #3f3f46;
  --gold-lt: #1c1507;
  --blue-lt: #0a1528;
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, .5);
  --shadow-sm: 0 1px 6px rgba(0, 0, 0, .6);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, .7);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, .8);
  --shadow-xl: 0 24px 64px rgba(0, 0, 0, .9);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background: var(--surface-0);
  color: var(--text-1);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

button {
  font-family: var(--font);
  cursor: pointer;
}

input,
textarea {
  font-family: var(--font);
}

ul {
  list-style: none;
}

::selection {
  background: var(--gold-lt);
  color: var(--text-1);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--border-mid);
  border-radius: var(--r-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* Focus */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

/* ── 3. LAYOUT UTILITIES ────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-lt);
  border: 1px solid rgba(244, 169, 26, .25);
  padding: 4px 12px;
  border-radius: var(--r-full);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-1);
  letter-spacing: -.02em;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-3);
  max-width: 580px;
  line-height: 1.7;
  margin-top: 12px;
}

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

.section-header .section-subtitle {
  margin: 12px auto 0;
}

/* ── 4. BUTTONS ─────────────────────────────────────────── */
.btn-gold,
.btn-ghost,
.btn-outline-full,
.btn-primary-full,
.btn-primary,
.whatsapp-btn,
.cta-btn-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease), background var(--t-fast), opacity var(--t-fast);
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dk) 100%);
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--r-full);
  font-size: 0.95rem;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(244, 169, 26, .4);
}

.btn-gold:active {
  transform: translateY(0);
}

.btn-ghost {
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .9);
  padding: 14px 28px;
  border-radius: var(--r-full);
  font-size: 0.95rem;
  border: 1px solid rgba(255, 255, 255, .15);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .15);
  border-color: rgba(255, 255, 255, .3);
  transform: translateY(-2px);
}

.cta-btn-nav {
  background: var(--gold);
  color: #fff;
  padding: 8px 20px;
  border-radius: var(--r-full);
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: none;
}

.cta-btn-nav:hover {
  background: var(--gold-dk);
  transform: translateY(-1px);
}

.btn-primary-full {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dk) 100%);
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--r-lg);
  font-size: 1rem;
  width: 100%;
  box-shadow: var(--shadow-gold);
  margin-top: 8px;
}

.btn-primary-full:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(244, 169, 26, .45);
}

.btn-outline-full {
  background: transparent;
  color: var(--text-1);
  padding: 14px 28px;
  border-radius: var(--r-lg);
  font-size: 1rem;
  width: 100%;
  border: 1.5px solid var(--border-mid);
  margin-top: 8px;
}

.btn-outline-full:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--r-full);
  font-size: 1rem;
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(244, 169, 26, .45);
}

/* ── 5. NAVBAR ──────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  transition: box-shadow var(--t-slow) var(--ease);
}

.navbar.scrolled {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.dark .navbar.scrolled {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
}

.navbar-inner {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  gap: 32px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: #fff;
  font-weight: 900;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px var(--gold-glow);
  flex-shrink: 0;
}

.logo-text {
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: .04em;
  color: var(--text-1);
  transition: color var(--t-fast);
}

.hero .logo-text {
  color: #fff;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-2);
  padding: 6px 12px;
  border-radius: var(--r-md);
  transition: color var(--t-fast), background var(--t-fast);
}

.nav-links a:hover {
  color: var(--text-1);
  background: var(--surface-2);
}


/* Controls */
.navbar-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex-shrink: 0;
}

/* Language switcher */
.lang-switcher {
  display: flex;
  gap: 2px;
  background: var(--surface-2);
  border-radius: var(--r-full);
  padding: 3px;
  border: 1px solid var(--border);
}


.lang-btn {
  background: transparent;
  border: none;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-3);
  padding: 4px 9px;
  border-radius: var(--r-full);
  transition: all var(--t-fast);
  letter-spacing: .05em;
}

.lang-btn.active {
  background: var(--surface-0);
  color: var(--text-1);
  box-shadow: var(--shadow-xs);
}


.lang-btn:hover:not(.active) {
  color: var(--text-1);
}

/* Theme toggle */
.theme-toggle {
  width: 38px;
  height: 38px;
  border-radius: var(--r-full);
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all var(--t-fast);
  position: relative;
  overflow: hidden;
}

.theme-toggle:hover {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-ring);
}


.theme-toggle .sun-icon,
.theme-toggle .moon-icon {
  position: absolute;
  transition: opacity var(--t-fast), transform var(--t-fast);
}

.dark .theme-toggle .sun-icon {
  opacity: 0;
  transform: rotate(-90deg) scale(.5);
}

.dark .theme-toggle .moon-icon {
  opacity: 1;
  transform: none;
}

.theme-toggle .sun-icon {
  opacity: 1;
}

.theme-toggle .moon-icon {
  opacity: 0;
  transform: rotate(90deg) scale(.5);
}

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

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-1);
  border-radius: var(--r-full);
  transition: all var(--t-mid) var(--ease);
  transform-origin: center;
}


.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--surface-0);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-mid) var(--ease), transform var(--t-mid) var(--ease);
  z-index: 899;
  box-shadow: var(--shadow-lg);
}

.mobile-drawer.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.mobile-drawer a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-2);
  padding: 10px 12px;
  border-radius: var(--r-md);
  transition: all var(--t-fast);
}

.mobile-drawer a:hover {
  color: var(--text-1);
  background: var(--surface-2);
}

.mobile-drawer-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  margin-top: 8px;
  border-top: 1px solid var(--border);
}

/* ── 6. HERO ────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  background: var(--hero-bg);
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}

/* Animated background dots */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(8, 70, 170, .35) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(244, 169, 26, .12) 0%, transparent 40%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--surface-0));
  pointer-events: none;
  z-index: 2;
}

.dark .hero::after {
  background: linear-gradient(to bottom, transparent, var(--surface-0));
}

/* Geometric bg */
.hero-geo {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-geo-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .06);
}

.hero-geo-circle:nth-child(1) {
  width: 500px;
  height: 500px;
  top: -100px;
  right: -100px;
}

.hero-geo-circle:nth-child(2) {
  width: 300px;
  height: 300px;
  bottom: 20%;
  right: 15%;
  border-color: rgba(244, 169, 26, .1);
}

.hero-geo-circle:nth-child(3) {
  width: 200px;
  height: 200px;
  top: 30%;
  left: 5%;
}

.hero-geo-dot {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(244, 169, 26, .5);
}

.hero-geo-dot:nth-child(4) {
  top: 25%;
  left: 30%;
  animation: floatDot 6s ease-in-out infinite;
}

.hero-geo-dot:nth-child(5) {
  top: 60%;
  right: 25%;
  animation: floatDot 8s ease-in-out infinite 2s;
}

.hero-geo-dot:nth-child(6) {
  top: 40%;
  right: 40%;
  background: rgba(255, 255, 255, .3);
  animation: floatDot 7s ease-in-out infinite 1s;
}

@keyframes floatDot {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

/* Hero grid */
.hero {
  display: block;
  width: 100%;
  max-width: none;
  padding: calc(var(--nav-h) + 60px) 52px 80px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 3;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .85);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--r-full);
  padding: 5px 14px;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
  letter-spacing: .04em;
}

.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.03em;
  color: #fff;
  margin-bottom: 20px;
}

.hero-title-accent {
  color: var(--gold);
  display: block;
}

#heroTypingTarget {
  display: block;
  min-height: 1.1em;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .65);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 36px;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .1);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
}

.hero-stat-item {
  background: rgba(255, 255, 255, .04);
  padding: 14px 16px;
  backdrop-filter: blur(8px);
  transition: background var(--t-fast);
}

.hero-stat-item:hover {
  background: rgba(255, 255, 255, .09);
}

.hero-stat-value {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  display: block;
}

.hero-stat-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, .5);
  font-weight: 600;
  letter-spacing: .04em;
}

/* Hero visual (right side) */
.hero-visual {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: flex-end;
}

.hero-mockup {
  width: 100%;
  max-width: 520px;
  background: rgba(9, 9, 11, .85);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, .5), 0 0 0 1px rgba(255, 255, 255, .05) inset;
  animation: heroFloat 5s ease-in-out infinite;
  backdrop-filter: blur(12px);
}

@keyframes heroFloat {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-10px)
  }
}

.mockup-bar {
  background: rgba(255, 255, 255, .04);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.dot.r {
  background: #ff5f57;
}

.dot.y {
  background: #febc2e;
}

.dot.g {
  background: #28c840;
}

.mockup-url {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, .35);
  letter-spacing: .02em;
}

.mockup-body {
  padding: 16px;
}

.mockup-metric-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}

.mockup-metric {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 10px;
  padding: 12px;
}

.m-label {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, .4);
  margin-bottom: 6px;
  letter-spacing: .04em;
}

.m-value {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
}

.m-change {
  font-size: 0.7rem;
  font-weight: 700;
  margin-top: 4px;
}

.m-change.up {
  color: #22c55e;
}

.m-change.down {
  color: #ef4444;
}

.mockup-chart-mini {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 48px;
  margin-bottom: 12px;
  padding: 0 4px;
}

.mcb {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(to top, var(--gold), rgba(244, 169, 26, .3));
  animation: barGrow 1s var(--ease) both;
}

.mcb:nth-child(1) {
  height: 38%;
  animation-delay: .05s
}

.mcb:nth-child(2) {
  height: 55%;
  animation-delay: .1s
}

.mcb:nth-child(3) {
  height: 42%;
  animation-delay: .15s
}

.mcb:nth-child(4) {
  height: 72%;
  animation-delay: .2s
}

.mcb:nth-child(5) {
  height: 60%;
  animation-delay: .25s
}

.mcb:nth-child(6) {
  height: 88%;
  animation-delay: .3s
}

.mcb:nth-child(7) {
  height: 75%;
  animation-delay: .35s
}

@keyframes barGrow {
  from {
    transform: scaleY(0);
    transform-origin: bottom;
  }

  to {
    transform: scaleY(1);
  }
}

.mockup-orders {
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding-top: 10px;
}

.mockup-orders-title {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, .35);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.mockup-order-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .04);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, .75);
}

.mockup-order-row>span:first-child {
  flex: 1;
}

.order-badge {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--r-full);
}

.badge-paid {
  background: rgba(34, 197, 94, .15);
  color: #22c55e;
}

.badge-pending {
  background: rgba(244, 169, 26, .15);
  color: var(--gold);
}

/* Floating notification */
.hero-notif {
  position: absolute;
  bottom: -20px;
  left: -20px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(16px);
  padding: 10px 16px;
  border-radius: var(--r-lg);
  color: #fff;
  animation: floatNotif 3s ease-in-out infinite;
  box-shadow: var(--shadow-lg);
}

@keyframes floatNotif {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-6px)
  }
}

.notif-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, .25);
  flex-shrink: 0;
}

.notif-text {
  font-size: 0.8rem;
  font-weight: 700;
}

.notif-sub {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, .5);
}

/* ── 7. SECTION SPACING ─────────────────────────────────── */
section {
  padding: 96px 0;
}

.about,
.dashboard-preview,
.features,
.why,
.copilot,
.videos,
.social-posts,
.testimonials,
.pricing,
.newsletter,
.faq,
.contact {
  padding: 96px 0;
}

.countdown-banner {
  padding: 64px 0;
}

/* ── 8. REVEAL ANIMATIONS ───────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease);
}

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

.reveal-delay-1 {
  transition-delay: 80ms;
}

.reveal-delay-2 {
  transition-delay: 160ms;
}

.reveal-delay-3 {
  transition-delay: 240ms;
}

.reveal-delay-4 {
  transition-delay: 320ms;
}

.reveal-delay-5 {
  transition-delay: 400ms;
}

/* ── 9. ABOUT ───────────────────────────────────────────── */
.about {
  background: var(--surface-1);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 72px;
}

.about-text p {
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 1.02rem;
}

.about-text .section-title {
  margin-bottom: 20px;
}

.about-illus {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.illus-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--surface-0);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 16px 20px;
  transition: box-shadow var(--t-mid), transform var(--t-mid);
}

.illus-bar:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.illus-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  flex-shrink: 0;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 70, 170, 0.1);
  color: var(--brand);
  transition: transform 0.25s ease, background 0.25s ease;
}

.illus-bar-content {
  flex: 1;
}

.illus-bar-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 8px;
}

.illus-bar-track {
  height: 6px;
  background: var(--surface-2);
  border-radius: var(--r-full);
  overflow: hidden;
}

.illus-bar-fill {
  height: 100%;
  border-radius: var(--r-full);
  background: linear-gradient(90deg, var(--gold), var(--gold-dk));
  width: 0%;
  transition: width 1.2s var(--ease);
}

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

.value-card {
  background: var(--surface-0);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  transition: all var(--t-mid) var(--ease);
}

.value-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--gold);
}

.value-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  margin-bottom: 16px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 70, 170, 0.1);
  color: var(--brand);
  transition: transform 0.25s ease, background 0.25s ease;
}

.value-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-1);
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--text-3);
  line-height: 1.7;
}

/* ── 10. DASHBOARD PREVIEW ──────────────────────────────── */
.dash-card {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.dash-topbar {
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
}

.dash-title-bar {
  font-size: 0.8rem;
  color: var(--text-3);
  font-weight: 600;
}

.dash-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--border);
}

.dash-metric {
  padding: 24px 20px;
  border-right: 1px solid var(--border);
  transition: background var(--t-fast);
}

.dash-metric:last-child {
  border-right: none;
}

.dash-metric:hover {
  background: var(--surface-2);
}

.dm-label {
  font-size: 0.75rem;
  color: var(--text-3);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 8px;
}

.dm-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-1);
  line-height: 1;
}

.dm-change {
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 6px;
}

.dm-change.up {
  color: #22c55e;
}

.dm-change.down {
  color: #ef4444;
}

.dash-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.dash-chart-area {
  padding: 24px;
  border-right: 1px solid var(--border);
}

.dash-chart-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 16px;
}

.dash-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 100px;
  padding: 0 2px;
}

.db {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(to top, var(--gold), rgba(244, 169, 26, .3));
  transition: opacity var(--t-fast);
  cursor: pointer;
}

.db:hover {
  opacity: .8;
}

.dash-bar-labels {
  display: flex;
  gap: 6px;
  margin-top: 8px;
}

.dbl {
  flex: 1;
  font-size: 0.65rem;
  color: var(--text-3);
  text-align: center;
}

.dash-orders-area {
  padding: 24px;
}

.dash-orders-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 16px;
}

.dash-order-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.dash-order-row:last-child {
  border-bottom: none;
}

.dor-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-1);
}

.dor-id {
  font-size: 0.72rem;
  color: var(--text-3);
}

.dor-amount {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-1);
  margin-left: auto;
}

.dor-badge {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--r-full);
  flex-shrink: 0;
}

.dor-paid {
  background: rgba(34, 197, 94, .1);
  color: #16a34a;
}

.dor-pending {
  background: rgba(244, 169, 26, .1);
  color: var(--gold-dk);
}

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

.feature-card {
  background: var(--surface-0);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  transition: all var(--t-mid) var(--ease);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-lt), transparent);
  opacity: 0;
  transition: opacity var(--t-mid);
}

.feature-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(244, 169, 26, .3);
}

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

.feature-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  margin-bottom: 20px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 70, 170, 0.1);
  color: var(--brand);
  transition: transform 0.25s ease, background 0.25s ease;
}

.feature-card:hover .feature-icon {
  background: rgba(8, 70, 170, 0.15);
  transform: scale(1.05);
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-1);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--text-3);
  line-height: 1.7;
}

/* ── 12. WHY LWEGAV ─────────────────────────────────────── */
.why {
  background: var(--surface-1);
}

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

.why-bullets {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.why-bullet {
  display: flex;
  gap: 16px;
}

.why-bullet-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 70, 170, 0.1);
  border: none;
  border-radius: 16px;
  color: var(--brand);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.why-bullet:hover .why-bullet-icon {
  background: rgba(8, 70, 170, 0.15);
  transform: scale(1.08);
  box-shadow: 0 12px 25px rgba(8, 70, 170, 0.08);
}

.why-bullet h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-1);
  margin-bottom: 6px;
}

.why-bullet p {
  font-size: 0.88rem;
  color: var(--text-3);
  line-height: 1.7;
}

.why-widget {
  background: var(--surface-0);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px;
  box-shadow: var(--shadow-xl);
}

.why-widget-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-3);
  margin-bottom: 20px;
}

.why-metric {
  margin-bottom: 18px;
}

.why-metric-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.why-metric-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-2);
}

.why-metric-value {
  font-size: 0.8rem;
  font-weight: 700;
}

.why-metric-value.up {
  color: #22c55e;
}

.why-metric-value.down {
  color: #ef4444;
}

.why-track {
  height: 6px;
  background: var(--surface-2);
  border-radius: var(--r-full);
  overflow: hidden;
}

.why-fill {
  height: 100%;
  border-radius: var(--r-full);
  background: linear-gradient(90deg, var(--gold), var(--gold-dk));
  width: 0%;
  transition: width 1.2s var(--ease);
}

.why-linechart {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.why-linechart-title {
  font-size: 0.72rem;
  color: var(--text-3);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 10px;
}

.why-svg {
  width: 100%;
  height: 60px;
}

/* ── 12.5. PARTNERS ─────────────────────────────────────── */
.partners {
  padding: 80px 0;
  background: var(--surface-1);
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  padding: 16px 24px;
  background: var(--surface-0);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.partner-logo:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-light);
}

.partner-logo img {
  max-width: 80px;
  max-height: 40px;
  min-width: 60px;
  min-height: 30px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.partner-logo:hover img {
  filter: grayscale(0%);
}

.partners-track-wrapper {
  overflow: hidden;
  position: relative;
  margin-top: 40px;
}

.partners-track-wrapper::before,
.partners-track-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}

.partners-track-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--surface-1), transparent);
}

.partners-track-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--surface-1), transparent);
}

.partners-track {
  display: flex;
  gap: 24px;
  animation: scroll-x 25s linear infinite;
  width: max-content;
}

.partners-track:hover {
  animation-play-state: paused;
}

@keyframes scroll-x {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ── 13. COPILOT ────────────────────────────────────────── */
.chat-container {
  max-width: 720px;
  margin: 0 auto;
  background: var(--surface-0);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.chat-topbar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: linear-gradient(135deg, #101d3c 0%, #0846aa 100%);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.chat-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.chat-topbar-info {
  flex: 1;
}

.chat-bot-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
}

.chat-bot-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, .6);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, .5)
  }

  50% {
    box-shadow: 0 0 0 5px rgba(34, 197, 94, 0)
  }
}

.chat-messages {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 200px;
  max-height: 280px;
  overflow-y: auto;
  scroll-behavior: smooth;
}

.chat-msg {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.chat-msg.user {
  flex-direction: row-reverse;
}

.chat-msg-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: #fff;
  font-weight: 800;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.chat-bubble {
  background: var(--surface-2);
  color: var(--text-1);
  padding: 10px 14px;
  border-radius: 14px 14px 14px 4px;
  font-size: 0.88rem;
  line-height: 1.6;
  max-width: 80%;
  border: 1px solid var(--border);
}

.chat-msg.user .chat-bubble {
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: #fff;
  border-radius: 14px 14px 4px 14px;
  border-color: transparent;
}

.typing-indicator {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 12px 16px;
}

.typing-indicator span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--text-3);
  animation: typingDot 1.2s ease infinite;
}

.typing-indicator span:nth-child(2) {
  animation-delay: .2s;
}

.typing-indicator span:nth-child(3) {
  animation-delay: .4s;
}

@keyframes typingDot {

  0%,
  60%,
  100% {
    transform: translateY(0);
    opacity: .4
  }

  30% {
    transform: translateY(-5px);
    opacity: 1
  }
}

.chat-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 20px;
  border-top: 1px solid var(--border);
  background: var(--surface-1);
}

.chat-chip {
  background: var(--surface-0);
  border: 1px solid var(--border);
  color: var(--text-2);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--r-full);
  cursor: pointer;
  transition: all var(--t-fast);
}

.chat-chip:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-lt);
}

.chat-input-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-top: 1px solid var(--border);
}

.chat-input {
  flex: 1;
  background: var(--surface-1);
  border: 1.5px solid var(--border);
  color: var(--text-1);
  font-size: 0.9rem;
  padding: 10px 16px;
  border-radius: var(--r-full);
  outline: none;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}

.chat-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-ring);
}

.chat-send {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-fast);
  flex-shrink: 0;
}

.chat-send:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-gold);
}

.chat-note {
  padding: 8px 20px 12px;
  font-size: 0.72rem;
  color: var(--text-3);
  text-align: center;
}

/* ── 14. VIDEOS ─────────────────────────────────────────── */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.video-card {
  background: var(--surface-0);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--t-mid) var(--ease);
}

.video-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(244, 169, 26, .3);
}

.video-thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1c1c1e 0%, #0846aa 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.video-play {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  border: 2px solid rgba(255, 255, 255, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  transition: all var(--t-fast);
  backdrop-filter: blur(8px);
}

.video-card:hover .video-play {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.1);
}

.video-duration {
  position: absolute;
  bottom: 10px;
  right: 12px;
  background: rgba(0, 0, 0, .7);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--r-sm);
}

.video-info {
  padding: 16px;
}

.video-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-1);
}

/* ── 15. SOCIAL POSTS ───────────────────────────────────── */
.social-posts {
  background: var(--surface-1);
}

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

.post-card {
  background: var(--surface-0);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: all var(--t-mid) var(--ease);
  cursor: pointer;
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(244, 169, 26, .3);
}

.post-phone-frame {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #101d3c, #0846aa);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.post-content {
  text-align: center;
  padding: 20px;
}

.post-logo {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: .05em;
  margin-bottom: 10px;
}

.post-text {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, .8);
  line-height: 1.5;
}

.post-info {
  padding: 14px 16px;
}

.post-tags {
  font-size: 0.75rem;
  color: var(--text-3);
}

/* ── 16. TESTIMONIALS ───────────────────────────────────── */
.testimonials-slider {
  position: relative;
  overflow: hidden;
  padding-bottom: 48px;
}

.testimonial-slides {
  overflow: hidden;
  border-radius: var(--r-xl);
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s var(--ease);
}

.testimonial-slide {
  min-width: 100%;
  padding: 4px;
}

.testimonial-card {
  background: var(--surface-0);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.t-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.t-quote {
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 28px;
  font-style: italic;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.t-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.t-name {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-1);
}

.t-role {
  font-size: 0.8rem;
  color: var(--text-3);
  margin-top: 2px;
}

.slider-arrows {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.slider-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface-0);
  border: 1.5px solid var(--border);
  color: var(--text-1);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--t-fast);
}

.slider-arrow:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-ring);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--r-full);
  background: var(--border-mid);
  cursor: pointer;
  transition: all var(--t-fast);
}

.slider-dot.active {
  width: 24px;
  background: var(--gold);
}

/* ── 17. COUNTDOWN ──────────────────────────────────────── */
.countdown-banner {
  background: linear-gradient(135deg, #101d3c 0%, #0d1f4a 50%, #0846aa 100%);
  position: relative;
  overflow: hidden;
}

.countdown-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(244, 169, 26, .12) 0%, transparent 60%);
}

.countdown-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.countdown-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: rgba(244, 169, 26, .15);
  border: 1px solid rgba(244, 169, 26, .3);
  color: var(--gold);
  padding: 4px 16px;
  border-radius: var(--r-full);
  margin-bottom: 20px;
}

.countdown-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.countdown-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 32px;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.count-unit {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--r-lg);
  padding: 20px 24px;
  min-width: 90px;
  text-align: center;
  backdrop-filter: blur(8px);
}

.count-number {
  font-size: 2.4rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.count-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, .5);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 6px;
  font-weight: 600;
}

.count-sep {
  font-size: 2rem;
  font-weight: 900;
  color: rgba(255, 255, 255, .3);
}

/* ── 18. PRICING ────────────────────────────────────────── */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 48px;
}

.toggle-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-2);
}

.toggle-switch {
  width: 52px;
  height: 28px;
  background: var(--surface-3);
  border-radius: var(--r-full);
  position: relative;
  cursor: pointer;
  border: 1.5px solid var(--border-mid);
  transition: background var(--t-mid);
}

.toggle-switch.on {
  background: var(--gold);
  border-color: var(--gold);
}

.toggle-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-mid) var(--ease-back);
}

.toggle-switch.on .toggle-knob {
  transform: translateX(24px);
}

.annual-badge {
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(34, 197, 94, .1);
  color: #16a34a;
  padding: 3px 10px;
  border-radius: var(--r-full);
}

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

.pricing-card {
  background: var(--surface-0);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  position: relative;
  transition: all var(--t-mid) var(--ease);
}

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

.pricing-card.featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--surface-0) 0%, var(--gold-lt) 100%);
  box-shadow: var(--shadow-gold), var(--shadow-lg);
  transform: scale(1.03);
}

.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: var(--r-full);
  white-space: nowrap;
  box-shadow: var(--shadow-gold);
}

.plan-name {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-3);
  display: block;
  margin-bottom: 14px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}

.price-amount {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--text-1);
  line-height: 1;
}

.price-currency {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-3);
}

.price-period {
  font-size: 0.8rem;
  color: var(--text-3);
}

.plan-desc {
  font-size: 0.85rem;
  color: var(--text-3);
  line-height: 1.6;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-2);
}

.plan-features li.disabled {
  opacity: .45;
}

.pf-check {
  color: #22c55e;
  font-weight: 700;
  flex-shrink: 0;
}

.pf-cross {
  color: var(--text-3);
  flex-shrink: 0;
}

/* ── 19. MAP ────────────────────────────────────────────── */
.map-section {
  padding: 0;
}

.map-wrapper {
  position: relative;
  height: 420px;
}

.map-embed {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(.2);
}

.dark .map-embed {
  filter: grayscale(.6) invert(.9) hue-rotate(180deg);
}

.map-overlay {
  position: absolute;
  top: 24px;
  left: 24px;
  background: var(--surface-0);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 20px 24px;
  box-shadow: var(--shadow-xl);
  min-width: 260px;
}

.map-overlay-logo {
  font-size: 1rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 14px;
  letter-spacing: .05em;
}

.map-info {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.85rem;
  color: var(--text-2);
}

.map-info:last-child {
  margin-bottom: 0;
}

.map-info-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  flex-shrink: 0;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 70, 170, 0.1);
  color: var(--brand);
}

.map-info a {
  color: var(--text-2);
  transition: color var(--t-fast);
}

.map-info a:hover {
  color: var(--gold);
}

/* ── 20. NEWSLETTER ─────────────────────────────────────── */
.newsletter {
  background: var(--surface-1);
}

.newsletter-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  background: var(--surface-0);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 56px 48px;
  box-shadow: var(--shadow-lg);
}

.newsletter-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 70, 170, 0.1);
  color: var(--brand);
  transition: transform 0.25s ease, background 0.25s ease;
}

.newsletter-inner .section-title {
  margin: 12px auto 10px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.newsletter-input {
  flex: 1;
  background: var(--surface-1);
  border: 1.5px solid var(--border);
  color: var(--text-1);
  padding: 13px 18px;
  border-radius: var(--r-full);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}

.newsletter-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-ring);
}

.newsletter-success {
  display: none;
  margin-top: 16px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #16a34a;
  padding: 12px 20px;
  background: rgba(34, 197, 94, .08);
  border-radius: var(--r-full);
  border: 1px solid rgba(34, 197, 94, .2);
}

.newsletter-success.show {
  display: block;
}

/* ── 21. FAQ ────────────────────────────────────────────── */
.faq {
  background: var(--surface-1);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--surface-0);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: box-shadow var(--t-mid), border-color var(--t-mid);
}

.faq-item.open {
  border-color: rgba(244, 169, 26, .3);
  box-shadow: var(--shadow-md);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  text-align: left;
  transition: background var(--t-fast);
}

.faq-q:hover {
  background: var(--surface-1);
}

.faq-q-text {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-1);
}

.faq-q-icon {
  width: 44px;
  height: 44px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--brand);
  background: rgba(8, 70, 170, 0.08);
  flex-shrink: 0;
  transition: transform 0.25s ease, color 0.2s ease, background 0.2s ease;
  line-height: 1;
}

.faq-item.open .faq-q-icon {
  transform: rotate(45deg);
  color: var(--gold);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding var(--t-mid);
}

.faq-a p {
  font-size: 0.9rem;
  color: var(--text-3);
  line-height: 1.75;
  padding: 0 22px 20px;
}

.faq-item.open .faq-a {
  max-height: 300px;
}

/* ── 22. CONTACT ────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  background: rgba(8, 70, 170, 0.1);
  border: none;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--brand);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.ci-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-3);
  margin-bottom: 4px;
}

.ci-value {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.5;
}

.ci-value a {
  color: var(--text-2);
  transition: color var(--t-fast);
}

.ci-value a:hover {
  color: var(--gold);
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  padding: 12px 22px;
  border-radius: var(--r-full);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  margin-top: 8px;
  transition: all var(--t-fast);
  box-shadow: 0 4px 16px rgba(37, 211, 102, .35);
  align-self: flex-start;
}

.whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, .5);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-2);
}

.form-group input,
.form-group textarea {
  background: var(--surface-1);
  border: 1.5px solid var(--border);
  color: var(--text-1);
  padding: 12px 16px;
  border-radius: var(--r-md);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-ring);
}

.form-submit {
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: var(--r-full);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--t-fast);
  box-shadow: var(--shadow-gold);
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(244, 169, 26, .5);
}

.form-success-msg {
  display: none;
  font-size: 0.9rem;
  font-weight: 700;
  color: #16a34a;
  padding: 12px 20px;
  background: rgba(34, 197, 94, .08);
  border-radius: var(--r-full);
  border: 1px solid rgba(34, 197, 94, .2);
  text-align: center;
}

.form-success-msg.show {
  display: block;
}

/* ── 23. FOOTER ─────────────────────────────────────────── */
.footer {
  background: var(--surface-1);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.footer-brand {}

.footer-tagline {
  font-size: 0.88rem;
  color: var(--text-3);
  line-height: 1.7;
  margin-top: 14px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--r-md);
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-3);
  transition: all var(--t-fast);
}

.social-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.social-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-2);
  margin-bottom: 16px;
}

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

.footer-col a {
  font-size: 0.88rem;
  color: var(--text-3);
  transition: color var(--t-fast);
}

.footer-col a:hover {
  color: var(--text-1);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-3);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.82rem;
  color: var(--text-3);
  transition: color var(--t-fast);
}

.footer-bottom-links a:hover {
  color: var(--text-1);
}

/* Typing cursor */
.typing-cursor {
  display: inline-block;
  width: 3px;
  height: .9em;
  background: var(--gold);
  margin-left: 3px;
  vertical-align: text-bottom;
  border-radius: 2px;
  animation: blink .85s step-end infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0
  }
}

/* ── 25. FLOATING ELEMENTS ──────────────────────────────── */
.float-wa,
.float-ai {
  position: fixed;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 800;
  border: none;
  outline: none;
  text-decoration: none;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast);
}

.float-wa {
  bottom: 24px;
  background: #25d366;
  color: #fff;
  animation: waPulse 3s ease infinite;
}

.float-ai {
  bottom: 92px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: #fff;
}

@keyframes waPulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, .4), 0 0 0 0 rgba(37, 211, 102, .5);
  }

  50% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, .4), 0 0 0 14px rgba(37, 211, 102, 0);
  }
}

.float-wa:hover,
.float-ai:hover {
  transform: translateY(-4px) scale(1.06);
}

.float-ai:hover {
  box-shadow: 0 8px 28px rgba(244, 169, 26, .5);
}

.float-ai-dot {
  position: absolute;
  top: 7px;
  right: 7px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  border: 2px solid var(--gold);
}

.float-tooltip {
  position: absolute;
  right: 66px;
  background: rgba(9, 9, 11, .92);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 5px 12px;
  border-radius: var(--r-md);
  pointer-events: none;
  opacity: 0;
  transform: translateX(6px);
  transition: opacity var(--t-fast), transform var(--t-fast);
  border: 1px solid rgba(255, 255, 255, .1);
}

.float-wa:hover .float-tooltip,
.float-ai:hover .float-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.back-to-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface-0);
  border: 1.5px solid var(--border);
  color: var(--text-1);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 800;
  opacity: 0;
  transform: translateY(12px);
  transition: all var(--t-mid) var(--ease);
  box-shadow: var(--shadow-md);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-ring);
}

/* ── 26. FLOATING CHAT MODAL ────────────────────────────── */
.float-chat-modal {
  position: fixed;
  right: 24px;
  bottom: 160px;
  width: 360px;
  max-height: 520px;
  background: var(--surface-0);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  z-index: 810;
  transform: translateY(16px) scale(.96);
  opacity: 0;
  pointer-events: none;
  transition: transform .3s var(--ease-back), opacity .25s;
  overflow: hidden;
}

.float-chat-modal.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.fcm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: linear-gradient(135deg, #101d3c 0%, #0846aa 100%);
  border-radius: 20px 20px 0 0;
  flex-shrink: 0;
}

.fcm-header-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fcm-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fcm-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
}

.fcm-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, .6);
}

.fcm-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, .6);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: var(--r-sm);
  transition: background var(--t-fast), color var(--t-fast);
}

.fcm-close:hover {
  background: rgba(255, 255, 255, .15);
  color: #fff;
}

.fcm-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scroll-behavior: smooth;
  max-height: 220px;
}

.fcm-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 8px 14px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}

.fcm-chip {
  font-size: 0.72rem;
  padding: 5px 10px;
}

.fcm-input-row {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 10px 14px 14px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}

.fcm-input-row .chat-input {
  flex: 1;
  font-size: 0.85rem;
}

/* Chat backdrop */
.chat-backdrop {
  position: fixed;
  inset: 0;
  z-index: 809;
  background: rgba(9, 9, 11, .4);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-mid);
}

.chat-backdrop.open {
  opacity: 1;
  pointer-events: all;
}

/* ── 27. RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero {
    padding: calc(var(--nav-h) + 40px) 32px 64px;
    gap: 40px;
  }

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

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-4px);
  }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: calc(var(--nav-h) + 48px) 24px 80px;
  }

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

  .hero-notif {
    bottom: -16px;
    left: 0;
  }

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

  .about-grid,
  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .nav-links,
  .cta-btn-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .navbar-controls {
    gap: 6px;
  }

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

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

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

  .about-values {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  section {
    padding: 64px 0;
  }

  .hero {
    padding: calc(var(--nav-h) + 32px) 20px 64px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

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

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

  .dash-body {
    grid-template-columns: 1fr;
  }

  .dash-chart-area {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

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

  .countdown-timer {
    gap: 8px;
  }

  .count-unit {
    min-width: 68px;
    padding: 14px 12px;
  }

  .count-number {
    font-size: 1.8rem;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .float-chat-modal {
    width: calc(100vw - 16px);
    right: 8px;
    bottom: 152px;
    max-height: 70vh;
  }

  .float-wa,
  .float-ai {
    width: 50px;
    height: 50px;
  }

  .testimonial-card {
    padding: 28px 20px;
  }

  .newsletter-inner {
    padding: 36px 24px;
  }

  .map-overlay {
    display: none;
  }
}

@media (max-width: 400px) {
  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }

  .count-sep {
    display: none;
  }
}

/* ── 28. RTL ─────────────────────────────────────────────── */
[dir="rtl"] {
  direction: rtl;
  text-align: right;
}

[dir="rtl"] body {
  direction: rtl;
}

[dir="rtl"] .hero-content {
  text-align: right;
}

[dir="rtl"] .hero-subtitle {
  margin-right: 0;
}

[dir="rtl"] .nav-links {
  flex-direction: row-reverse;
}

[dir="rtl"] .navbar-inner {
  flex-direction: row-reverse;
}

[dir="rtl"] .why-bullet {
  flex-direction: row-reverse;
}

[dir="rtl"] .contact-info-item {
  flex-direction: row-reverse;
}

[dir="rtl"] .footer-grid {
  direction: rtl;
}

[dir="rtl"] .footer-bottom {
  flex-direction: row-reverse;
}

[dir="rtl"] .plan-features li {
  flex-direction: row-reverse;
}

[dir="rtl"] .t-author {
  flex-direction: row-reverse;
}

[dir="rtl"] .chat-msg.user {
  flex-direction: row;
}

[dir="rtl"] .chat-msg.user .chat-bubble {
  border-radius: 14px 14px 14px 4px;
}

[dir="rtl"] .float-wa,
[dir="rtl"] .float-ai {
  right: auto;
  left: 24px;
}

[dir="rtl"] .float-tooltip {
  right: auto;
  left: 66px;
}

[dir="rtl"] .back-to-top {
  left: auto;
  right: 24px;
}

[dir="rtl"] .float-chat-modal {
  right: auto;
  left: 24px;
}

[dir="rtl"] .map-overlay {
  left: auto;
  right: 24px;
}

[dir="rtl"] .mobile-drawer-controls {
  flex-direction: row-reverse;
}

[dir="rtl"] .hero-actions {
  justify-content: flex-start;
}

[dir="rtl"] .about-illus .illus-bar:hover {
  transform: translateX(-4px);
}

/* ── 29. VISUALLY HIDDEN ────────────────────────────────── */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}