/* ============================================
   WDENY COURIER — Premium SaaS Landing Page
   ============================================ */

/* ---------- CSS VARIABLES ---------- */
:root {
  /* Brand Colors */
  --primary: #1e6dd5;
  --primary-light: #3a8df5;
  --primary-dark: #0f4fa0;
  --primary-glow: rgba(30, 109, 213, 0.35);
  --accent: #00c6ff;
  --accent-glow: rgba(0, 198, 255, 0.25);
  --gold: #f5a623;
  --success: #22c55e;
  --danger: #ef4444;

  /* Light Mode */
  --bg: #f4f7fc;
  --bg-secondary: #ffffff;
  --bg-card: #ffffff;
  --bg-glass: rgba(255, 255, 255, 0.6);
  --bg-glass-border: rgba(255, 255, 255, 0.3);
  --text: #1a1a2e;
  --text-secondary: #555770;
  --text-muted: #8a8ca5;
  --border: rgba(0, 0, 0, 0.08);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.1);
  --shadow-glow: 0 0 40px var(--primary-glow);
  --navbar-bg: rgba(255, 255, 255, 0.8);
  --section-alt: #eef2f9;
  --footer-bg: #0d1b3e;
  --footer-text: #c0c8e0;
}

[data-theme="dark"] {
  --bg: #0a0e1a;
  --bg-secondary: #111827;
  --bg-card: #151c2e;
  --bg-glass: rgba(21, 28, 46, 0.7);
  --bg-glass-border: rgba(255, 255, 255, 0.08);
  --text: #e8eaf0;
  --text-secondary: #a0a6c0;
  --text-muted: #6b7199;
  --border: rgba(255, 255, 255, 0.06);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 60px var(--primary-glow);
  --navbar-bg: rgba(10, 14, 26, 0.85);
  --section-alt: #0f1629;
  --footer-bg: #060a14;
  --footer-text: #7a82a0;
}

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', 'Tajawal', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  transition: background 0.4s ease, color 0.4s ease;
}

[dir="rtl"] body {
  font-family: 'Tajawal', 'Inter', sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 100px 0;
  position: relative;
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
}

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-glow), var(--accent-glow));
  color: var(--primary-light);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
  border: 1px solid var(--bg-glass-border);
}

.section-title {
  font-size: 2.6rem;
  margin-bottom: 18px;
  letter-spacing: -0.3px;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.12rem;
  max-width: 620px;
  margin: 0 auto 20px;
  line-height: 1.75;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.highlight {
  color: var(--primary-light);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px var(--primary-glow);
}

.btn-primary.btn-pulse {
  animation: btnPulse 2.5s ease-in-out infinite;
}

@keyframes btnPulse {
  0%, 100% { box-shadow: 0 4px 20px var(--primary-glow); }
  50% { box-shadow: 0 6px 35px var(--primary-glow), 0 0 60px var(--primary-glow); }
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-ghost {
  background: var(--bg-glass);
  border: 1px solid var(--bg-glass-border);
  color: var(--text);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.9rem;
}

.btn-lg {
  padding: 18px 44px;
  font-size: 1.1rem;
  letter-spacing: 0.2px;
}

/* ---------- GLASS CARD ---------- */
.glass-card {
  background: var(--bg-glass);
  border: 1px solid var(--bg-glass-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.4s ease;
}

.glass-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  border-color: var(--primary-light);
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--navbar-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
  padding: 0 20px;
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-brand img {
  height: 40px;
  width: auto;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.3s ease;
  position: relative;
}

.navbar-nav a:hover,
.navbar-nav a.active {
  color: var(--primary-light);
}

.navbar-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-light);
  transition: width 0.3s ease;
  border-radius: 2px;
}

[dir="rtl"] .navbar-nav a::after {
  left: auto;
  right: 0;
}

.navbar-nav a:hover::after,
.navbar-nav a.active::after {
  width: 100%;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.theme-toggle,
.lang-toggle {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg-glass);
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.theme-toggle:hover,
.lang-toggle:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.lang-toggle {
  font-size: 0.75rem;
  font-weight: 700;
  width: auto;
  padding: 0 14px;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 112px;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}

/* Animated gradient background */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-gradient-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}

.hero-orb-1 {
  width: 800px;
  height: 800px;
  top: -200px;
  right: -150px;
  background: radial-gradient(circle, rgba(30, 109, 213, 0.55) 0%, transparent 70%);
  animation: heroOrb1 12s ease-in-out infinite;
}

.hero-orb-2 {
  width: 600px;
  height: 600px;
  bottom: -100px;
  left: -100px;
  background: radial-gradient(circle, rgba(108, 59, 219, 0.45) 0%, transparent 70%);
  animation: heroOrb2 15s ease-in-out infinite;
}

.hero-orb-3 {
  width: 500px;
  height: 500px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0, 198, 255, 0.25) 0%, transparent 70%);
  animation: heroOrb3 10s ease-in-out infinite;
}

@keyframes heroOrb1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-40px, 30px) scale(1.08); }
  66% { transform: translate(20px, -20px) scale(0.95); }
}

@keyframes heroOrb2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.92); }
}

@keyframes heroOrb3 {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.3; }
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(58, 141, 245, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(58, 141, 245, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 70%);
}

/* Floating trust cards */
.hero-floating {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.hero-float {
  position: absolute;
}

.hero-float-card {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--bg-glass-border);
  border-radius: 14px;
  padding: 10px 18px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}

.hero-float-card i {
  width: 16px;
  height: 16px;
  color: var(--primary-light);
}

.hero-float-1 {
  bottom: 12%;
  right: 28%;
  animation: heroFloat1 7s ease-in-out infinite;
}

.hero-float-2 {
  top: 55%;
  right: 2%;
  animation: heroFloat2 8s ease-in-out infinite;
}

.hero-float-3 {
  top: 32%;
  right: 4%;
  animation: heroFloat3 9s ease-in-out infinite;
}

[dir="rtl"] .hero-float-1 { right: auto; left: 28%; }
[dir="rtl"] .hero-float-2 { right: auto; left: 2%; }
[dir="rtl"] .hero-float-3 { right: auto; left: 4%; }

@keyframes heroFloat1 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(2deg); }
}

@keyframes heroFloat2 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(14px) rotate(-1.5deg); }
}

@keyframes heroFloat3 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 580px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary-glow), transparent);
  border: 1px solid var(--bg-glass-border);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary-light);
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
  letter-spacing: 0.5px;
}

.hero h1 {
  font-size: 3.8rem;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}

.hero h1 .gradient-text {
  background: linear-gradient(90deg, var(--primary-light) 0%, var(--accent) 35%, rgba(255,255,255,0.8) 50%, var(--accent) 65%, var(--primary-light) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: heroShimmer 6s ease-in-out 1.5s infinite;
}

@keyframes heroShimmer {
  0% { background-position: 200% 50%; }
  100% { background-position: -200% 50%; }
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.85;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

/* Glow CTA button */
.btn-glow {
  position: relative;
  animation: btnGlowPulse 3s ease-in-out infinite;
  transition: all 0.4s ease;
}

.btn-glow:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow:
    0 12px 40px var(--primary-glow),
    0 0 80px rgba(30, 109, 213, 0.2);
}

@keyframes btnGlowPulse {
  0%, 100% { box-shadow: 0 4px 20px var(--primary-glow); }
  50% { box-shadow: 0 6px 40px var(--primary-glow), 0 0 80px rgba(30, 109, 213, 0.15); }
}

.app-stores {
  display: flex;
  gap: 12px;
  align-items: center;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 12px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: inherit;
}

.store-btn:hover {
  border-color: var(--primary-light);
  background: var(--bg-glass);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px var(--primary-glow);
}

.store-btn svg {
  flex-shrink: 0;
}

.store-btn div {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.2;
}

[dir="rtl"] .store-btn div {
  text-align: right;
}

.store-btn small {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.7;
}

.store-btn strong {
  font-size: 0.9rem;
  font-weight: 700;
}

/* Hero visual — Dashboard mockup */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  animation: heroVisualEntrance 1s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
}

.hero-mockup {
  position: relative;
  width: 100%;
  max-width: 480px;
  animation: heroMockFloat 6s ease-in-out infinite;
}

@keyframes heroMockFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.mockup-dashboard {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--bg-glass-border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    var(--shadow-lg),
    0 0 60px rgba(30, 109, 213, 0.1);
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-glass);
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.mockup-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mockup-dots span:nth-child(1) { background: #ef4444; }
.mockup-dots span:nth-child(2) { background: #f5a623; }
.mockup-dots span:nth-child(3) { background: #22c55e; }

.mockup-title {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}

.mockup-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
}

.mockup-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mockup-mini-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border-radius: 14px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
}

.mockup-mini-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mockup-mini-icon i {
  width: 18px;
  height: 18px;
}

.mockup-mini-stat div {
  display: flex;
  flex-direction: column;
}

.mockup-mini-stat small {
  font-size: 0.68rem;
  color: var(--text-muted);
}

.mockup-mini-stat strong {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
}

.mockup-shipment {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.mockup-shipment-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.mockup-shipment-dot.delivered { background: #22c55e; box-shadow: 0 0 8px rgba(34, 197, 94, 0.4); }
.mockup-shipment-dot.transit { background: #3a8df5; box-shadow: 0 0 8px rgba(58, 141, 245, 0.4); }
.mockup-shipment-dot.pending { background: #f5a623; box-shadow: 0 0 8px rgba(245, 166, 35, 0.4); }

.mockup-shipment-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.mockup-shipment-id {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text);
}

.mockup-shipment-status {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.mockup-badge {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  white-space: nowrap;
  flex-shrink: 0;
}

.mockup-badge.success { background: rgba(34, 197, 94, 0.12); color: #22c55e; }
.mockup-badge.info { background: rgba(58, 141, 245, 0.12); color: #3a8df5; }
.mockup-badge.warning { background: rgba(245, 166, 35, 0.12); color: #f5a623; }

/* Hero orb 4 — warm accent */
.hero-orb-4 {
  width: 350px;
  height: 350px;
  top: 20%;
  left: 30%;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.12) 0%, transparent 70%);
  animation: heroOrb4 18s ease-in-out infinite;
}

@keyframes heroOrb4 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.7; }
  33% { transform: translate(50px, -30px) scale(1.1); opacity: 1; }
  66% { transform: translate(-30px, 40px) scale(0.9); opacity: 0.5; }
}

/* Hero particles */
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-particles::before,
.hero-particles::after {
  content: '';
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
}

.hero-particles::before {
  box-shadow:
    10vw 15vh 0 0 rgba(58, 141, 245, 0.35),
    75vw 10vh 0 0 rgba(0, 198, 255, 0.3),
    25vw 65vh 0 -0.5px rgba(108, 59, 219, 0.35),
    65vw 55vh 0 0 rgba(58, 141, 245, 0.25),
    45vw 35vh 0 0 rgba(0, 198, 255, 0.3),
    88vw 70vh 0 -0.5px rgba(108, 59, 219, 0.25),
    15vw 85vh 0 0 rgba(58, 141, 245, 0.3),
    55vw 80vh 0 0 rgba(0, 198, 255, 0.25);
  animation: heroParticle1 20s ease-in-out infinite alternate;
}

.hero-particles::after {
  box-shadow:
    82vw 22vh 0 0 rgba(58, 141, 245, 0.3),
    20vw 45vh 0 -0.5px rgba(0, 198, 255, 0.35),
    60vw 75vh 0 0 rgba(108, 59, 219, 0.25),
    35vw 20vh 0 0 rgba(58, 141, 245, 0.3),
    92vw 50vh 0 -0.5px rgba(0, 198, 255, 0.2),
    8vw 38vh 0 0 rgba(108, 59, 219, 0.3),
    50vw 92vh 0 0 rgba(58, 141, 245, 0.2);
  animation: heroParticle2 25s ease-in-out infinite alternate;
}

@keyframes heroParticle1 {
  0% { transform: translate(0, 0); opacity: 0.5; }
  50% { opacity: 1; }
  100% { transform: translate(15px, -30px); opacity: 0.5; }
}

@keyframes heroParticle2 {
  0% { transform: translate(0, 0); opacity: 0.6; }
  50% { opacity: 0.9; }
  100% { transform: translate(-20px, 25px); opacity: 0.6; }
}

/* Hero entrance stagger */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content > * {
  opacity: 0;
  animation: heroFadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-content > *:nth-child(1) { animation-delay: 0.15s; }
.hero-content > *:nth-child(2) { animation-delay: 0.3s; }
.hero-content > *:nth-child(3) { animation-delay: 0.45s; }
.hero-content > *:nth-child(4) { animation-delay: 0.6s; }
.hero-content > *:nth-child(5) { animation-delay: 0.75s; }
.hero-content > *:nth-child(6) { animation-delay: 0.9s; }

@keyframes heroVisualEntrance {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Trust proof strip */
.hero-trust-proof {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  padding: 10px 22px;
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--bg-glass-border);
  border-radius: 50px;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.hero-trust-avatars {
  display: flex;
}

.hero-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 2px solid var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  margin-right: -8px;
}

.hero-avatar:last-child {
  margin-right: 0;
}

[dir="rtl"] .hero-avatar {
  margin-right: 0;
  margin-left: -8px;
}

[dir="rtl"] .hero-avatar:last-child {
  margin-left: 0;
}

/* Hero glow divider */
.hero-glow-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 900px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-light), var(--accent), var(--primary-light), transparent);
  opacity: 0.4;
}

.hero-glow-line::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 8px;
  background: linear-gradient(90deg, transparent, var(--primary-glow), transparent);
  filter: blur(6px);
}

/* Mockup live indicator */
.mockup-live {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.65rem;
  font-weight: 700;
  color: #22c55e;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

[dir="rtl"] .mockup-live {
  margin-left: 0;
  margin-right: auto;
}

.mockup-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  display: inline-block;
  animation: mockupLivePulse 2s ease-in-out infinite;
}

@keyframes mockupLivePulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
  50% { opacity: 0.6; box-shadow: 0 0 0 5px rgba(34, 197, 94, 0); }
}

/* Mockup scan line */
.mockup-body::after {
  content: '';
  position: absolute;
  top: -10%;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(180deg, transparent, rgba(58, 141, 245, 0.06), transparent);
  animation: mockupScan 4s ease-in-out 2s infinite;
  pointer-events: none;
}

@keyframes mockupScan {
  0% { top: -10%; }
  100% { top: 110%; }
}

/* Hero enhancements — responsive */
@media (max-width: 768px) {
  .hero-trust-proof {
    font-size: 0.75rem;
    padding: 8px 16px;
  }

  .hero-trust-avatars {
    display: none;
  }

  .hero-particles {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-trust-proof {
    font-size: 0.7rem;
    padding: 6px 14px;
  }
}

/* ---------- TRACKING ---------- */
.tracking {
  background: var(--section-alt);
  padding: 80px 0;
}

.tracking-box {
  max-width: 720px;
  margin: 0 auto;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--bg-glass-border);
  border-radius: 24px;
  padding: 48px 40px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.tracking-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.tracking-box h2 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.tracking-box p {
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.tracking-form {
  display: flex;
  gap: 12px;
}

.tracking-form input {
  flex: 1;
  padding: 16px 20px;
  border-radius: 12px;
  border: 2px solid var(--border);
  background: var(--bg-secondary);
  color: var(--text);
  font-size: 1rem;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.tracking-form input:focus {
  outline: none;
  border-color: var(--primary-light);
  box-shadow: 0 0 0 4px var(--primary-glow);
}

.tracking-form .btn {
  white-space: nowrap;
}

/* ---------- ABOUT ---------- */
.about {
  position: relative;
  overflow: hidden;
}

.about-bg-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 500px 400px at 20% 30%, rgba(30, 109, 213, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 400px 350px at 80% 70%, rgba(108, 59, 219, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.about .section-header {
  position: relative;
  z-index: 1;
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-lead {
  font-size: 1.08rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 16px;
}

.about-subsidiary {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.about-subsidiary a {
  color: var(--primary-light);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s ease;
}

.about-subsidiary a:hover {
  color: var(--accent);
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 8px;
}

.about-feature-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  border-radius: 16px;
  transition: all 0.4s ease;
}

.about-feature-card:hover {
  transform: translateX(6px);
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md), 0 0 30px var(--primary-glow);
}

[dir="rtl"] .about-feature-card:hover {
  transform: translateX(-6px);
}

.about-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary-glow), var(--accent-glow));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary-light);
}

.about-feature-icon i {
  width: 20px;
  height: 20px;
}

.about-feature-text h4 {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
}

.about-cta {
  margin-top: 32px;
}

/* About visual — Metric cards + rings */
.about-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-visual-wrapper {
  position: relative;
  width: 400px;
  height: 400px;
}

.about-metric-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--bg-glass-border);
  border-radius: 16px;
  padding: 14px 20px;
  box-shadow: var(--shadow-md);
  z-index: 2;
  transition: all 0.4s ease;
}

.about-metric-card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: var(--shadow-lg), 0 0 30px var(--primary-glow);
  border-color: var(--primary-light);
}

.about-metric-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.about-metric-icon i {
  width: 18px;
  height: 18px;
}

.about-metric-info {
  display: flex;
  flex-direction: column;
}

.about-metric-info strong {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
}

.about-metric-info span {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.about-metric-1 {
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  animation: aboutCardFloat1 6s ease-in-out infinite;
}

.about-metric-2 {
  bottom: 28%;
  left: 0;
  animation: aboutCardFloat2 7s ease-in-out infinite;
}

.about-metric-3 {
  bottom: 10%;
  right: 0;
  animation: aboutCardFloat3 8s ease-in-out infinite;
}

@keyframes aboutCardFloat1 {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes aboutCardFloat2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

@keyframes aboutCardFloat3 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Center glow & rings */
.about-center-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
}

.about-ring-1 {
  width: 200px;
  height: 200px;
  border-color: rgba(58, 141, 245, 0.15);
  animation: aboutRingSpin 25s linear infinite;
  border-style: dashed;
}

.about-ring-2 {
  width: 280px;
  height: 280px;
  border-color: rgba(0, 198, 255, 0.1);
  animation: aboutRingSpin 35s linear infinite reverse;
  border-style: dashed;
}

@keyframes aboutRingSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.about-hub {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 0 40px var(--primary-glow), 0 0 80px rgba(30, 109, 213, 0.15);
  position: relative;
  z-index: 1;
}

.about-hub i {
  width: 28px;
  height: 28px;
}

/* ---------- SERVICES ---------- */
.services {
  background: var(--section-alt);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  text-align: center;
  padding: 40px 28px;
}

.service-card .icon-box {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary-glow), var(--accent-glow));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--primary-light);
  transition: all 0.3s ease;
}

.service-card:hover .icon-box {
  background: var(--primary);
  color: #fff;
  transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ---------- PROTECTION ---------- */
.protection {
  position: relative;
  overflow: hidden;
}

.protection-box {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.protection-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.protection-item {
  text-align: center;
  padding: 32px 20px;
}

.protection-item .icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--success), #22c55e80);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
  color: #fff;
}

.protection-item h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.protection-item p {
  color: var(--text-secondary);
  font-size: 0.88rem;
}

/* ---------- FEATURES ---------- */
.features {
  background: var(--section-alt);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}

.features-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.features-col:last-child .feature-item {
  flex-direction: row-reverse;
  text-align: right;
}

[dir="rtl"] .features-col:last-child .feature-item {
  flex-direction: row;
  text-align: left;
}

[dir="rtl"] .features-col:first-child .feature-item {
  flex-direction: row-reverse;
  text-align: right;
}

.feature-item .feat-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary-glow), var(--accent-glow));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary-light);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.feature-item:hover .feat-icon {
  background: var(--primary);
  color: #fff;
  transform: scale(1.1);
}

.feature-item h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.feature-item p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.6;
}

.features-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.features-illustration {
  width: 100%;
  max-width: 400px;
  animation: floatImg 6s ease-in-out infinite;
}

/* ---------- PRICING ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.pricing-card {
  text-align: center;
  padding: 40px 28px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pricing-card .btn {
  margin-top: auto;
}

.pricing-card.featured {
  border: 2px solid var(--primary-light);
  box-shadow: var(--shadow-glow), 0 0 80px rgba(30, 109, 213, 0.15);
  transform: scale(1.05);
  z-index: 2;
}

.pricing-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.pricing-card.featured::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30, 109, 213, 0.06) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}

.pricing-card.featured > * {
  position: relative;
  z-index: 1;
}

.pricing-savings {
  display: inline-block;
  background: rgba(34, 197, 94, 0.12);
  color: var(--success);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  margin-top: 8px;
}

.pricing-popular {
  position: absolute;
  top: 12px;
  right: 16px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 5;
}

[dir="rtl"] .pricing-popular {
  right: auto;
  left: 16px;
}

.pricing-card h3 {
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.pricing-card.featured h3 {
  margin-top: 28px;
}
}

.pricing-price {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--primary-light);
  margin: 20px 0 6px;
}

.pricing-price span {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing-divider {
  width: 60px;
  height: 2px;
  background: var(--border);
  margin: 16px auto;
  border-radius: 2px;
}

.pricing-features {
  text-align: left;
  margin: 20px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

[dir="rtl"] .pricing-features {
  text-align: right;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.pricing-features li i {
  color: var(--success);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.pricing-extra {
  margin-top: 40px;
  text-align: center;
  padding: 28px;
  border-radius: 16px;
  background: var(--bg-glass);
  border: 1px solid var(--bg-glass-border);
}

.pricing-extra h4 {
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.pricing-extra-grid {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}

.pricing-extra-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.pricing-extra-item i {
  color: var(--primary-light);
}

/* ---------- INDUSTRY ---------- */
.industry {
  background: var(--section-alt);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.industry-card {
  text-align: center;
  padding: 36px 24px;
}

.industry-card .ind-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
}

.industry-card h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.industry-card p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.7;
}

/* ---------- WHY US ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  padding: 32px 24px;
  text-align: center;
}

.why-card .why-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary-glow), var(--accent-glow));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary-light);
  margin: 0 auto 16px;
  transition: all 0.3s ease;
}

.why-card:hover .why-icon {
  background: var(--primary);
  color: #fff;
  transform: rotate(10deg) scale(1.1);
}

.why-card h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.why-card p {
  color: var(--text-secondary);
  font-size: 0.88rem;
}

/* ---------- SPECIAL OFFER ---------- */
.offer {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.offer::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 12s ease-in-out infinite;
}

.offer::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 198, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 15s ease-in-out infinite reverse;
}

.offer .container {
  position: relative;
  z-index: 2;
}

.offer-eyebrow {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.offer h2 {
  color: #fff;
  font-size: 2.8rem;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.offer p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 4px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.offer-gift {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.18);
  padding: 18px 40px;
  border-radius: 16px;
  font-size: 1.4rem;
  font-weight: 800;
  margin: 28px 0 36px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  letter-spacing: 0.3px;
}

.offer .btn {
  background: #fff;
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 18px 48px;
}

.offer .btn:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.offer-urgency {
  margin-top: 20px;
  font-size: 0.88rem;
  opacity: 0.7;
}

/* ---------- CTA ---------- */
.cta {
  text-align: center;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background:
    radial-gradient(circle 300px at 40% 50%, var(--primary-glow) 0%, transparent 70%),
    radial-gradient(circle 250px at 60% 40%, var(--accent-glow) 0%, transparent 70%),
    radial-gradient(circle 200px at 50% 60%, rgba(108, 59, 219, 0.06) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
  animation: ctaPulse 8s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50% { transform: translate(-50%, -50%) scale(1.08); opacity: 0.85; }
}

.cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
  opacity: 0.3;
}

.cta h2 {
  font-size: 2.8rem;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
  letter-spacing: -0.5px;
}

.cta p {
  color: var(--text-secondary);
  font-size: 1.18rem;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

/* ---------- CONTACT ---------- */
.contact {
  background: var(--section-alt);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.contact-info > p {
  color: var(--text-secondary);
  margin-bottom: 36px;
  font-size: 1.08rem;
  line-height: 1.8;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-method .cm-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary-glow), var(--accent-glow));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary-light);
  flex-shrink: 0;
}

.contact-method span {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.contact-method strong {
  display: block;
  font-size: 1rem;
  color: var(--text);
}

.contact-form-box {
  padding: 36px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 2px solid var(--border);
  background: var(--bg-secondary);
  color: var(--text);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-light);
  box-shadow: 0 0 0 4px var(--primary-glow);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ---------- PLAN MODAL ---------- */
body.modal-open {
  overflow: hidden;
}

.plan-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(5, 10, 24, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.plan-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.plan-modal-dialog {
  width: 100%;
  max-width: 560px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  position: relative;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.plan-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--bg-glass-border);
  background: var(--bg-secondary);
  color: var(--text);
  border-radius: 10px;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

[dir="rtl"] .plan-modal-close {
  right: auto;
  left: 14px;
}

.plan-modal-dialog h3 {
  margin-bottom: 10px;
  font-size: 1.5rem;
  padding-right: 44px;
}

[dir="rtl"] .plan-modal-dialog h3 {
  padding-right: 0;
  padding-left: 44px;
}

.plan-modal-subtitle {
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.plan-selected-name {
  color: var(--primary-light);
  display: inline-block;
  margin-inline-start: 6px;
}

.plan-modal-form .form-group {
  margin-bottom: 14px;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand img {
  height: 44px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--footer-text);
  transition: all 0.3s ease;
  font-size: 1rem;
}

.footer-social a:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(30, 109, 213, 0.25);
}

.footer-social a[aria-label="Instagram"]:hover {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.footer-social a[aria-label="LinkedIn"]:hover {
  background: #0077b5;
}

.footer-col h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  color: var(--footer-text);
  font-size: 0.88rem;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--primary-light);
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.85rem;
}

/* ---------- SCROLL TO TOP ---------- */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--primary);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 20px var(--primary-glow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 999;
}

[dir="rtl"] .scroll-top {
  right: auto;
  left: 30px;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-3px);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-buttons,
  .app-stores {
    justify-content: center;
  }

  .hero-floating {
    display: none;
  }

  .hero-visual {
    max-width: 480px;
    margin: 0 auto;
  }

  .about-split {
    grid-template-columns: 1fr;
  }

  .about-visual-wrapper {
    max-width: 400px;
    margin: 0 auto;
    height: 320px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .features-center {
    order: -1;
  }

  .features-col:last-child .feature-item {
    flex-direction: row;
    text-align: left;
  }

  [dir="rtl"] .features-col:last-child .feature-item {
    flex-direction: row-reverse;
    text-align: right;
  }

  [dir="rtl"] .features-col:first-child .feature-item {
    flex-direction: row;
    text-align: left;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .plan-modal-dialog {
    max-width: 620px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  section {
    padding: 70px 0;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .navbar-nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--navbar-bg);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }

  .navbar-nav.open {
    display: flex;
  }

  .mobile-toggle {
    display: flex;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .industry-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .tracking-form {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .footer-social {
    justify-content: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .protection-features {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
    max-width: 340px;
  }

  .hero-visual {
    max-width: 100%;
  }

  .mockup-dashboard {
    max-width: 100%;
  }

  .about-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-visual-wrapper {
    height: 280px;
    max-width: 320px;
    margin: 0 auto;
  }

  .about-metric-card {
    padding: 10px 14px;
    font-size: 0.78rem;
  }

  .about-ring-1 {
    width: 160px;
    height: 160px;
  }

  .about-ring-2 {
    width: 240px;
    height: 240px;
  }

  .app-stores {
    justify-content: center;
  }

  .offer h2 {
    font-size: 2rem;
  }

  .offer-gift {
    font-size: 1.1rem;
    padding: 14px 24px;
  }

  .cta h2 {
    font-size: 1.8rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    justify-content: center;
    max-width: 340px;
  }

  .plan-modal {
    padding: 14px;
  }

  .plan-modal-dialog {
    max-height: calc(100vh - 28px);
    padding: 24px;
  }

  .plan-modal-dialog h3 {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .pricing-price {
    font-size: 2rem;
  }

  .mockup-dashboard {
    padding: 12px;
  }

  .mockup-stat-row {
    gap: 8px;
  }

  .about-visual-wrapper {
    height: 240px;
    max-width: 280px;
  }

  .about-metric-card {
    padding: 8px 10px;
    font-size: 0.72rem;
  }

  .about-ring-1 {
    width: 120px;
    height: 120px;
  }

  .about-ring-2 {
    width: 180px;
    height: 180px;
  }

  .offer h2 {
    font-size: 1.6rem;
  }

  .offer-gift {
    font-size: 0.95rem;
    padding: 12px 20px;
  }

  .cta h2 {
    font-size: 1.5rem;
  }

  .plan-modal-close {
    width: 36px;
    height: 36px;
    top: 10px;
    right: 10px;
  }

  [dir="rtl"] .plan-modal-close {
    right: auto;
    left: 10px;
  }
}

/* ---------- AOS CUSTOM ANIMATIONS ---------- */
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos].aos-animate {
  opacity: 1;
}

[data-aos="fade-up"] {
  transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
}

[data-aos="fade-down"] {
  transform: translateY(-30px);
}

[data-aos="fade-down"].aos-animate {
  transform: translateY(0);
}

[data-aos="fade-right"] {
  transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
  transform: translateX(0);
}

[data-aos="fade-left"] {
  transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
  transform: translateX(0);
}

[data-aos="zoom-in"] {
  transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
  transform: scale(1);
}

[data-aos="flip-up"] {
  transform: perspective(600px) rotateX(10deg);
}

[data-aos="flip-up"].aos-animate {
  transform: perspective(600px) rotateX(0);
}

/* ---------- UTILITY ---------- */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-4 { margin-top: 32px; }
