/* ===================================================================
   الأيقونة العصرية - Modern Icon | Design System
   =================================================================== */

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

/* ── CSS Custom Properties ── */
:root {
  /* Primary palette */
  --primary: #667eea;
  --primary-dark: #5a67d8;
  --primary-light: #a3bffa;
  --primary-glow: rgba(102, 126, 234, 0.4);
  --secondary: #764ba2;
  --accent: #00d2ff;
  --accent-warm: #f093fb;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-hero: linear-gradient(135deg, #0c0c2d 0%, #1a1a4e 30%, #0d0d3b 100%);
  --gradient-accent: linear-gradient(135deg, #00d2ff 0%, #667eea 100%);
  --gradient-warm: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-green: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
  --gradient-gold: linear-gradient(135deg, #f7971e 0%, #ffd200 100%);
  --gradient-card: linear-gradient(145deg, rgba(255,255,255,0.9), rgba(255,255,255,0.6));

  /* Light theme (default) */
  --bg-primary: #f8faff;
  --bg-secondary: #ffffff;
  --bg-tertiary: #f0f4ff;
  --bg-card: rgba(255, 255, 255, 0.85);
  --bg-card-hover: rgba(255, 255, 255, 1);
  --bg-glass: rgba(255, 255, 255, 0.25);
  --bg-glass-strong: rgba(255, 255, 255, 0.7);
  --text-primary: #1a1a2e;
  --text-secondary: #4a5568;
  --text-muted: #718096;
  --text-light: #a0aec0;
  --border-color: rgba(102, 126, 234, 0.12);
  --border-light: rgba(0, 0, 0, 0.06);
  --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-xl: 0 30px 80px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 0 40px rgba(102, 126, 234, 0.15);
  --shadow-card: 0 10px 40px rgba(102, 126, 234, 0.08);
  --navbar-bg: rgba(255, 255, 255, 0.88);
  --navbar-blur: blur(20px);
  --pricing-bg: #f0f4ff;
  --input-bg: #ffffff;
  --footer-bg: #0c0c2d;
  --badge-bg: rgba(102, 126, 234, 0.1);
  --badge-text: #667eea;
  --section-alt-bg: #f6f8ff;
  --icon-bg: rgba(102, 126, 234, 0.08);
}

/* ── Dark Theme ── */
[data-theme="dark"] {
  --bg-primary: #0a0a1a;
  --bg-secondary: #12122a;
  --bg-tertiary: #1a1a3e;
  --bg-card: rgba(20, 20, 50, 0.85);
  --bg-card-hover: rgba(25, 25, 60, 1);
  --bg-glass: rgba(20, 20, 50, 0.4);
  --bg-glass-strong: rgba(20, 20, 50, 0.8);
  --text-primary: #e8e8f0;
  --text-secondary: #b0b0cc;
  --text-muted: #8888aa;
  --text-light: #666688;
  --border-color: rgba(102, 126, 234, 0.2);
  --border-light: 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-xl: 0 30px 80px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 60px rgba(102, 126, 234, 0.2);
  --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.3);
  --navbar-bg: rgba(10, 10, 26, 0.9);
  --pricing-bg: #12122a;
  --input-bg: #1a1a3e;
  --footer-bg: #060612;
  --badge-bg: rgba(102, 126, 234, 0.2);
  --badge-text: #a3bffa;
  --section-alt-bg: #0e0e24;
  --icon-bg: rgba(102, 126, 234, 0.15);
}

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

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

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

[dir="ltr"] body {
  font-family: 'Inter', 'Cairo', sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
}

ul, ol {
  list-style: none;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Section Base ── */
section {
  padding: 100px 0;
  position: relative;
}

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

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

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--badge-bg);
  color: var(--badge-text);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
  border: 1px solid var(--border-color);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.3;
}

.section-title .gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 12px 0;
  background: var(--navbar-bg);
  backdrop-filter: var(--navbar-blur);
  -webkit-backdrop-filter: var(--navbar-blur);
  border-bottom: 1px solid var(--border-light);
  transition: all 0.4s ease;
}

.navbar.scrolled {
  padding: 8px 0;
  box-shadow: var(--shadow-md);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.3rem;
}

.navbar-brand .brand-icon {
  width: 42px;
  height: 42px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px var(--primary-glow);
}

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

.navbar-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 4px 0;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.navbar-links a:hover::after,
.navbar-links a.active::after {
  width: 100%;
}

.navbar-links a:hover {
  color: var(--primary);
}

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

.navbar-toggle-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  background: var(--bg-card);
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.navbar-toggle-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px var(--primary-glow);
}

.mobile-menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  color: var(--text-primary);
  font-size: 1.4rem;
  cursor: pointer;
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-glass-strong);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 999;
  padding: 100px 30px 30px;
  flex-direction: column;
  gap: 20px;
  animation: fadeIn 0.3s ease;
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav a {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
}

.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  color: var(--text-primary);
  font-size: 1.6rem;
  cursor: pointer;
}

[dir="ltr"] .mobile-nav-close {
  right: auto;
  left: 20px;
}

/* ── Hero Section ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero);
  padding-top: 80px;
}

.hero-bg-effects {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: float 8s ease-in-out infinite;
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #667eea, transparent);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #764ba2, transparent);
  bottom: -80px;
  left: -80px;
  animation-delay: 3s;
}

.hero-orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #00d2ff, transparent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 5s;
  opacity: 0.2;
}

#particles-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: rgba(102, 126, 234, 0.15);
  border: 1px solid rgba(102, 126, 234, 0.3);
  border-radius: 50px;
  color: #a3bffa;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
  animation: slideDown 0.8s ease;
}

.hero-badge .pulse-dot {
  width: 8px;
  height: 8px;
  background: #43e97b;
  border-radius: 50%;
  animation: pulse-glow 2s infinite;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  color: white;
  line-height: 1.2;
  margin-bottom: 24px;
  animation: slideUp 1s ease;
}

.hero h1 .text-glow {
  background: linear-gradient(135deg, #00d2ff, #667eea, #f093fb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: gradient-shift 4s ease infinite;
}

.hero-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  animation: slideUp 1.2s ease;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: slideUp 1.4s ease;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 60px;
  animation: slideUp 1.6s ease;
}

.hero-stat {
  text-align: center;
}

.hero-stat-value {
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #00d2ff, #667eea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}

.scroll-indicator .mouse {
  width: 26px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-indicator .mouse .wheel {
  width: 4px;
  height: 10px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 4px;
  animation: wheel-scroll 2s infinite;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  font-family: inherit;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 6px 25px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px var(--primary-glow);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
}

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

.btn-outline-primary:hover {
  background: var(--gradient-primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px var(--primary-glow);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.1rem;
  border-radius: 16px;
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.9rem;
  border-radius: 10px;
}

/* ── Products Section ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 24px 24px 0 0;
}

.product-card.accounting::before {
  background: var(--gradient-primary);
}

.product-card.realestate::before {
  background: var(--gradient-green);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-light);
}

.product-card-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  margin-bottom: 24px;
}

.product-card.accounting .product-card-icon {
  background: var(--gradient-primary);
  box-shadow: 0 8px 25px var(--primary-glow);
}

.product-card.realestate .product-card-icon {
  background: var(--gradient-green);
  box-shadow: 0 8px 25px rgba(67, 233, 123, 0.3);
}

.product-card h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.product-card p {
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.8;
}

.product-card-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}

.product-card-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.product-card-feature i {
  color: var(--primary);
  font-size: 0.85rem;
  width: 20px;
  height: 20px;
  background: var(--icon-bg);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.product-card.realestate .product-card-feature i {
  color: #43e97b;
  background: rgba(67, 233, 123, 0.08);
}

/* ── Features Section ── */
.features-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.features-tab {
  padding: 12px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  color: var(--text-secondary);
  transition: all 0.3s ease;
  font-family: inherit;
}

.features-tab.active {
  background: var(--gradient-primary);
  color: white;
  border-color: transparent;
  box-shadow: 0 6px 20px var(--primary-glow);
}

.features-tab:hover:not(.active) {
  border-color: var(--primary);
  color: var(--primary);
}

.features-content {
  display: none;
}

.features-content.active {
  display: block;
  animation: fadeInUp 0.5s ease;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.feature-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: white;
}

.feature-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

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

/* Feature icon colors */
.feature-icon-purple { background: var(--gradient-primary); }
.feature-icon-green { background: var(--gradient-green); }
.feature-icon-warm { background: var(--gradient-warm); }
.feature-icon-blue { background: var(--gradient-accent); }
.feature-icon-gold { background: var(--gradient-gold); }

/* ── Pricing Section ── */
.pricing-toggle {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}

.pricing-toggle-btn {
  padding: 12px 32px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  color: var(--text-secondary);
  transition: all 0.3s ease;
  font-family: inherit;
  font-size: 0.95rem;
}

.pricing-toggle-btn.active {
  background: var(--gradient-primary);
  color: white;
  border-color: transparent;
  box-shadow: 0 6px 20px var(--primary-glow);
}

.pricing-content {
  display: none;
}

.pricing-content.active {
  display: block;
  animation: fadeInUp 0.5s ease;
}

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

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 40px 32px;
  position: relative;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.pricing-card.featured {
  border-color: var(--primary);
  transform: scale(1.05);
  box-shadow: var(--shadow-xl), 0 0 40px var(--primary-glow);
}

.pricing-card.featured::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: 25px;
  background: var(--gradient-primary);
  z-index: -1;
  opacity: 0.15;
}

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

.pricing-popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: white;
  padding: 6px 24px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}

.pricing-card-header {
  text-align: center;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border-light);
}

.pricing-plan-name {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.pricing-amount {
  font-size: 3rem;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-currency {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 600;
}

.pricing-period {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.pricing-features {
  margin-bottom: 32px;
}

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

.pricing-feature i {
  font-size: 0.85rem;
  width: 22px;
  text-align: center;
  flex-shrink: 0;
}

.pricing-feature i.fa-check {
  color: #43e97b;
}

.pricing-feature i.fa-times {
  color: #e53e3e;
}

.pricing-feature.disabled {
  opacity: 0.5;
  text-decoration: line-through;
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
}

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

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.4s ease;
}

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

.testimonial-stars {
  color: #fbbf24;
  font-size: 1rem;
  margin-bottom: 16px;
}

.testimonial-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

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

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: white;
}

.testimonial-info h5 {
  font-size: 0.95rem;
  font-weight: 700;
}

.testimonial-info span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ── Contact Section ── */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info-card {
  background: var(--gradient-primary);
  border-radius: 24px;
  padding: 48px 40px;
  color: white;
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 60%);
}

.contact-info-card h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 12px;
  position: relative;
}

.contact-info-card > p {
  opacity: 0.85;
  margin-bottom: 36px;
  position: relative;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  position: relative;
}

.contact-info-item .icon-box {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-item span {
  font-size: 0.95rem;
}

.contact-socials {
  display: flex;
  gap: 12px;
  margin-top: 36px;
  position: relative;
}

.contact-social-link {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: white;
  transition: all 0.3s ease;
}

.contact-social-link:hover {
  background: white;
  color: var(--primary);
  transform: translateY(-3px);
}

.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 40px;
  backdrop-filter: blur(10px);
}

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

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--text-secondary);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  background: var(--input-bg);
  color: var(--text-primary);
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

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

.form-success {
  background: rgba(67, 233, 123, 0.1);
  border: 1px solid rgba(67, 233, 123, 0.3);
  color: #2f9e5a;
  padding: 16px;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
  display: none;
}

/* ── Footer ── */
.footer {
  background: var(--footer-bg);
  color: rgba(255, 255, 255, 0.8);
  padding: 80px 0 0;
}

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

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

.footer-brand .brand-icon {
  width: 42px;
  height: 42px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.footer-brand span {
  font-weight: 800;
  font-size: 1.3rem;
  color: white;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.footer h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-light);
  padding-inline-start: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
}

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

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
}

.footer-bottom-links a:hover {
  color: var(--primary-light);
}

/* ── Scroll Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

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

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

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(67, 233, 123, 0.6); }
  50% { box-shadow: 0 0 0 8px rgba(67, 233, 123, 0); }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes wheel-scroll {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(10px); }
}

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

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

/* ── Stats Band ── */
.stats-band {
  padding: 60px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat-item {
  text-align: center;
  padding: 20px;
}

.stat-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  margin: 0 auto 16px;
}

.stat-value {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ── CTA Band ── */
.cta-band {
  background: var(--gradient-hero);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.15), transparent);
  border-radius: 50%;
}

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

.cta-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  margin-bottom: 32px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
  
  .navbar-links {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }
  
  .hero-stat-value {
    font-size: 1.6rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .product-card-features {
    grid-template-columns: 1fr;
  }
  
  .pricing-toggle,
  .features-tabs {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }
  
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  
  .stat-value {
    font-size: 1.8rem;
  }
}

/* ── Utilities ── */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 16px; }
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Back to Top Button ── */
.back-to-top {
  position: fixed;
  bottom: 32px;
  left: 32px;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: var(--gradient-primary);
  color: white;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px var(--primary-glow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 900;
}

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

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

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px var(--primary-glow);
}

.back-to-top:active {
  transform: translateY(-2px);
}

/* ── Active Navbar Link ── */
.navbar-links a.active {
  color: var(--primary);
}

/* ── Trusted By Section ── */
.trusted-by {
  padding: 48px 0;
  border-bottom: 1px solid var(--border-light);
  background: var(--bg-primary);
}

.trusted-by-label {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 32px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.trusted-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trusted-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
  font-size: 1rem;
  font-weight: 700;
  opacity: 0.6;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.trusted-logo i {
  font-size: 1.5rem;
  color: var(--text-muted);
}

.trusted-logo:hover {
  opacity: 1;
  color: var(--primary);
}

.trusted-logo:hover i {
  color: var(--primary);
}

/* ── FAQ Section ── */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-sm);
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: 0 4px 20px var(--primary-glow);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  text-align: inherit;
  transition: all 0.3s ease;
  gap: 16px;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question i {
  font-size: 0.85rem;
  color: var(--primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), padding 0.4s ease;
}

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

.faq-answer p {
  padding: 0 28px 24px;
  color: var(--text-muted);
  line-height: 1.9;
  font-size: 0.95rem;
}

/* ── WhatsApp Floating Button ── */
.whatsapp-float {
  position: fixed;
  bottom: 96px;
  left: 32px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
  z-index: 900;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  animation: whatsapp-pulse 2s infinite;
}

[dir="ltr"] .whatsapp-float {
  left: auto;
  right: 32px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 35px rgba(37, 211, 102, 0.5);
  color: white;
}

.whatsapp-tooltip {
  position: absolute;
  right: 68px;
  background: var(--bg-card);
  color: var(--text-primary);
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.3s ease;
  pointer-events: none;
}

[dir="ltr"] .whatsapp-tooltip {
  right: auto;
  left: 68px;
  transform: translateX(-10px);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0.1); }
}

/* ── Form Validation ── */
.form-error {
  display: none;
  color: #e53e3e;
  font-size: 0.82rem;
  font-weight: 600;
  margin-top: 6px;
  padding-inline-start: 4px;
}

.form-group.has-error input,
.form-group.has-error textarea {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

.form-group.has-error .form-error {
  display: block;
  animation: fadeInUp 0.3s ease;
}

.form-success {
  background: rgba(67, 233, 123, 0.08);
  border: 1px solid rgba(67, 233, 123, 0.25);
  border-radius: 16px;
  text-align: center;
  padding: 40px 24px;
  display: none;
}

.form-success h4 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.form-success p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.btn-loading {
  pointer-events: none;
  opacity: 0.85;
}

.btn-loading .fa-paper-plane {
  display: none;
}

.btn-loading .fa-spinner {
  display: inline-block !important;
}

/* ── Responsive additions ── */
@media (max-width: 768px) {
  .trusted-logos {
    gap: 24px;
  }
  
  .trusted-logo {
    font-size: 0.85rem;
  }

  .trusted-logo i {
    font-size: 1.2rem;
  }
  
  .faq-question {
    padding: 18px 20px;
    font-size: 0.95rem;
  }
  
  .faq-answer p {
    padding: 0 20px 20px;
  }
  
  .whatsapp-float {
    bottom: 90px;
    left: 20px;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  [dir="ltr"] .whatsapp-float {
    left: auto;
    right: 20px;
  }
  
  .back-to-top {
    bottom: 24px;
    left: 20px;
    width: 44px;
    height: 44px;
  }
  
  [dir="ltr"] .back-to-top {
    left: auto;
    right: 20px;
  }
}

/* ═══════════════ INTERNAL PAGES STYLES ═══════════════ */

/* ── General Content ── */
.page-hero {
  padding: 160px 0 100px;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: white;
  margin-bottom: 20px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  font-size: 0.95rem;
}

.breadcrumbs i {
  font-size: 0.8rem;
  opacity: 0.5;
}

[dir="ltr"] .breadcrumbs i {
  transform: rotate(180deg);
}

.page-content-wrapper {
  background: var(--bg-primary);
  min-height: 400px;
}

.page-main-content {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 60px;
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
  line-height: 2;
}

/* ── About Page ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.about-stat-item {
  text-align: center;
}

.about-stat-item .stat-num {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.about-stat-item .stat-label {
  color: var(--text-muted);
  font-weight: 600;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.mv-card {
  background: var(--bg-card);
  padding: 50px;
  border-radius: 24px;
  border: 1px solid var(--border-color);
  text-align: center;
  transition: all 0.4s ease;
}

.mv-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.mv-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
}

/* ── Help Center ── */
.help-section {
  margin-bottom: 80px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.video-card {
  background: var(--bg-card);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: all 0.4s ease;
}

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

.video-thumb {
  position: relative;
  cursor: pointer;
}

.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  box-shadow: 0 0 30px var(--primary-glow);
  transition: all 0.3s ease;
}

.video-card:hover .play-overlay {
  transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
  padding: 24px;
  text-align: center;
}

.video-info h3 {
  margin-bottom: 20px;
  font-size: 1.2rem;
}

/* ── Updates Timeline ── */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-color);
  right: 20px;
}

[dir="ltr"] .timeline::before {
  right: auto;
  left: 20px;
}

.timeline-item {
  position: relative;
  padding-right: 60px;
  margin-bottom: 40px;
}

[dir="ltr"] .timeline-item {
  padding-right: 0;
  padding-left: 60px;
}

.timeline-dot {
  position: absolute;
  width: 16px;
  height: 16px;
  background: var(--primary);
  border-radius: 50%;
  right: 13px;
  top: 5px;
  z-index: 2;
  box-shadow: 0 0 0 5px var(--badge-bg);
}

[dir="ltr"] .timeline-dot {
  right: auto;
  left: 13px;
}

.timeline-date {
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.update-tags {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.tag {
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: white;
}

.tag-purple { background: var(--gradient-primary); }
.tag-green { background: var(--gradient-green); }
.tag-blue { background: var(--gradient-accent); }
.tag-gold { background: var(--gradient-gold); }
.tag-warm { background: var(--gradient-warm); }

/* ── Legal Pages ── */
.legal-wrapper {
  color: var(--text-primary);
}

.legal-section {
  margin-bottom: 40px;
}

.legal-section h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 20px;
  border-right: 4px solid var(--primary);
  padding-right: 15px;
}

[dir="ltr"] .legal-section h3 {
  border-right: none;
  border-left: 4px solid var(--primary);
  padding-right: 0;
  padding-left: 15px;
}

.legal-section p, .legal-section li {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 15px;
}

.legal-section ul {
  padding-right: 20px;
  list-style: disc;
}

[dir="ltr"] .legal-section ul {
  padding-right: 0;
  padding-left: 20px;
}

/* ── Responsive Internal Pages ── */
@media (max-width: 992px) {
  .about-grid, .mission-vision-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .page-main-content {
    padding: 30px 20px;
  }
  .timeline::before {
    display: none;
  }
  .timeline-item {
    padding-right: 0;
  }
  [dir="ltr"] .timeline-item {
    padding-left: 0;
  }
  .timeline-dot {
    display: none;
  }
}


