/* Variables & Setup */
:root {
  --bg-color: #f8f9fb;
  --bg-color-rgb: 248, 249, 251;
  --text-main: #1a1f2e;
  --text-muted: #5a6478;
  
  --primary: #2d5bc7;
  --primary-hover: #244ba5;
  --secondary: #9b3d91;
  --accent: #e0433a;
  --success: #1e8a3c;
  --glass-bg: rgba(255, 255, 255, 0.6);
  --glass-border: rgba(0, 0, 0, 0.08);
  --glass-highlight: rgba(45, 91, 199, 0.08);

  --font-ar: 'Cairo', sans-serif;
  --font-en: 'Inter', sans-serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

html[lang="ar"] {
  font-family: var(--font-ar);
  direction: rtl;
}

html[lang="en"] {
  font-family: var(--font-en);
  direction: ltr;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

/* Background Gradients / Blobs */
.bg-gradient {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
  opacity: 0.4;
  will-change: transform;
}

.bg-blob-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(45, 91, 199, 0.12) 0%, transparent 70%);
  top: -10%;
  left: -10%;
  animation: floatBlob1 25s infinite ease-in-out;
}

.bg-blob-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(155, 61, 145, 0.1) 0%, transparent 70%);
  bottom: -20%;
  right: -10%;
  animation: floatBlob2 30s infinite ease-in-out;
}

.bg-blob-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(30, 138, 60, 0.08) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  animation: floatBlob3 35s infinite ease-in-out;
}

@keyframes floatBlob1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(60px, 40px) scale(1.08); }
  66% { transform: translate(-30px, 60px) scale(0.95); }
}

@keyframes floatBlob2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-50px, -30px) scale(1.05); }
  66% { transform: translate(40px, -50px) scale(0.97); }
}

@keyframes floatBlob3 {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-40%, -60%) scale(1.1); }
}

/* ————— Scroll Animation ————— */
.anim-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.anim-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Layout Utilities */
.container {
  width: 90%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}

.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 4rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 4rem; }
.pt-2 { padding-top: 1rem; }
.pt-4 { padding-top: 2rem; }
.p-5 { padding: 3rem; }
.text-center { text-align: center; }
.text-left { text-align: left; }

html[lang="ar"] .rtl-text-right { text-align: right; }
html[lang="en"] .rtl-text-right { text-align: left; }

.border-t { border-top: 1px solid var(--glass-border); }

.grid {
  display: grid;
  gap: 1.5rem;
}

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

/* Glassmorphism Components */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: border-color 0.4s var(--ease-out-quart), box-shadow 0.4s var(--ease-out-quart);
}

.glass-card:hover {
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-outline, .btn-whatsapp {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.35s var(--ease-out-quart);
  cursor: pointer;
  border: none;
  font-family: inherit;
  font-size: 1rem;
}

.btn-primary:focus-visible, .btn-secondary:focus-visible, .btn-outline:focus-visible, .btn-whatsapp:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  box-shadow: 0 4px 20px rgba(45, 91, 199, 0.25);
}

.btn-primary:hover {
  box-shadow: 0 8px 30px rgba(45, 91, 199, 0.4);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--text-main);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(0, 0, 0, 0.15);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  background: linear-gradient(135deg, #1ebe5c, #0f776a);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 8px;
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

.large-btn { padding: 1rem 2.5rem; font-size: 1.1rem; border-radius: 12px; }


/* Typography */
.gradient-text {
  background: linear-gradient(135deg, var(--text-main), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.badge {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  background: var(--glass-highlight);
  border: 1px solid rgba(45, 91, 199, 0.2);
  color: var(--primary);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  letter-spacing: 0.5px;
}

.badge-inline {
  font-size: 0.6em;
  padding: 0.15em 0.6em;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  -webkit-text-fill-color: #fff;
  -webkit-background-clip: unset;
  background-clip: unset;
  border-radius: 6px;
  vertical-align: middle;
  margin: 0 6px;
  font-weight: 700;
  letter-spacing: 0.3px;
  white-space: nowrap;
  display: inline-block;
}

.badge-payg {
  background: linear-gradient(135deg, #097b65, #0a4f42);
  border: 1px solid rgba(9, 123, 101, 0.4);
  box-shadow: 0 2px 10px rgba(9, 123, 101, 0.2);
}

.highlight {
  color: var(--primary);
}

/* ————— Navbar ————— */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 24px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-svg {
  flex-shrink: 0;
}

/* ————— Hero ————— */
#hero {
  margin-top: 2rem;
  text-align: center;
}

.hero-content h1 {
  font-size: 2.6rem;
  line-height: 1.35;
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
}

.hero-content .subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 780px;
  margin: 0 auto 2.5rem;
}

.trust-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(0, 0, 0, 0.1);
}

.trust-numbers .stat h3 {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 0.15rem;
  font-weight: 800;
}
.trust-numbers .stat p {
  color: var(--text-muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: nowrap;
}

.cta-hint {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 1.2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Partners */
.partners-highlight {
  margin-top: 5rem;
  text-align: center;
  padding: 2.5rem 2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(45, 91, 199, 0.05));
  border: 1px solid rgba(45, 91, 199, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.partners-highlight h3 {
  font-size: 1.4rem;
  max-width: 800px;
  margin: 0 auto 1.5rem auto;
  line-height: 1.6;
}
.partner-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
  margin-top: 1.5rem;
  opacity: 0.8;
}
.p-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--text-muted);
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}
.p-logo:hover { 
  opacity: 1; 
  transform: translateY(-5px);
  color: var(--primary);
  border-color: rgba(45, 91, 199, 0.3);
  box-shadow: 0 8px 25px rgba(45, 91, 199, 0.12);
}

/* ————— Sections ————— */
main {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-bottom: 0;
}

/* Tinted alternating sections */
.section-tinted {
  background: linear-gradient(180deg, #eef2f9 0%, #f4f6fb 100%);
  padding: 5rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

/* Logo repeating pattern background for specific cards */
.logo-pattern {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}
.logo-pattern::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('images/logo.png');
  background-size: 40px 40px;
  background-repeat: repeat;
  opacity: 0.04; 
  transform: rotate(-15deg) scale(1.5);
  z-index: 0;
  pointer-events: none;
}
.logo-pattern > * {
  position: relative;
  z-index: 1;
}

/* Dark section for footer CTA */
.section-dark {
  background: linear-gradient(135deg, #1a1f36, #0f1525);
  color: #f0f6fc;
  padding: 5rem 0;
}
.section-dark h2,
.section-dark p,
.section-dark .cta-hint {
  color: #f0f6fc;
}
.section-dark .cta-hint {
  color: rgba(240, 246, 252, 0.7);
}
.section-dark .glass-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}
.section-dark .glass-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.section-dark .highlight-card {
  border-color: rgba(45, 91, 199, 0.4);
}
.section-dark .highlight-card::before {
  background: linear-gradient(135deg, rgba(45, 91, 199, 0.1), transparent 60%);
}

/* Non-tinted sections get padding through container */
main > section:not(.section-tinted) {
  padding: 5rem 0;
}

/* padding removed to use flex gap */

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2rem;
  margin-bottom: 0.6rem;
}
.section-header p {
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ————— Feature Cards (Pain) ————— */
.icon-wrap {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.icon-wrap.warning {
  background: rgba(224, 67, 58, 0.08);
  border: 1px solid rgba(224, 67, 58, 0.15);
}

.feature-card {
  display: flex;
  flex-direction: column;
}

.feature-card h4 {
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

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

/* Alert box */
.alert-box {
  border-top: 2px solid var(--primary);
  background: rgba(45, 91, 199, 0.04);
}

/* Pain cards in tinted section */
.section-tinted .feature-card {
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* ————— Core Value ————— */
.highlight-card {
  position: relative;
  overflow: hidden;
  border-width: 1px;
  border-color: rgba(45, 91, 199, 0.15);
}
.highlight-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(45, 91, 199, 0.04), transparent 60%);
  z-index: -1;
}

.check-list {
  list-style: none;
  margin-top: 1.5rem;
}
.check-list li {
  position: relative;
  padding-right: 1.8rem;
  padding-left: 1.8rem;
  margin-bottom: 0.9rem;
  line-height: 1.6;
}
html[lang="ar"] .check-list li::before {
  content: "✔";
  color: var(--success);
  position: absolute;
  right: 0; top: 0;
  font-size: 0.85rem;
}
html[lang="en"] .check-list li::before {
  content: "✔";
  color: var(--success);
  position: absolute;
  left: 0; top: 0;
  font-size: 0.85rem;
}

.summary-box {
  background: rgba(45, 91, 199, 0.04);
  padding: 1rem 1.2rem;
  border-radius: 10px;
  border: 1px solid rgba(45, 91, 199, 0.1);
  line-height: 1.7;
}

/* ————— Automation Feature Cards ————— */
.auto-features-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.auto-feature-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem 1.4rem;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(45, 91, 199, 0.08);
  border-radius: 14px;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.auto-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(45, 91, 199, 0.03) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.auto-feature-card:hover {
  border-color: rgba(45, 91, 199, 0.2);
  box-shadow: 0 8px 24px rgba(45, 91, 199, 0.06);
  transform: translateX(-4px);
}

html[lang="en"] .auto-feature-card:hover {
  transform: translateX(4px);
}

.auto-feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(45, 91, 199, 0.08), rgba(155, 61, 145, 0.06));
  color: var(--primary);
  border: 1px solid rgba(45, 91, 199, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 1;
}

.auto-feature-card:hover .auto-feature-icon {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(45, 91, 199, 0.12);
}

.auto-feature-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.6;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* ————— Split Layouts ————— */
.split-layout {
  display: flex;
  align-items: stretch;
  gap: 3rem;
}

.split-layout.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1 1 50%;
  min-width: 0;
}

.split-visual {
  flex: 1 1 45%;
  min-width: 0;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  color: var(--primary);
  opacity: 0.8;
  padding: 2.5rem;
  border: 1px dashed rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  width: 100%;
  text-align: center;
}

/* Folder Mockup UI */
.mockup-ui {
  width: 100%;
  text-align: right;
  direction: rtl;
}
.mockup-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  border-radius: 10px 10px 0 0;
  font-size: 0.85rem;
  font-weight: 700;
}
.mockup-tree {
  padding: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.tree-folder {
  background: rgba(255,255,255,0.7);
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
}
.tree-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.8rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: default;
}
.tree-badge {
  margin-right: auto;
  font-size: 0.65rem;
  padding: 0.15rem 0.5rem;
  border-radius: 10px;
  font-weight: 700;
}
.tree-badge.done {
  background: rgba(30,138,60,0.12);
  color: var(--success);
}
.tree-badge.progress {
  background: rgba(45,91,199,0.12);
  color: var(--primary);
}
.tree-children {
  border-top: 1px solid rgba(0,0,0,0.06);
  padding: 0.3rem 0.5rem 0.5rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.tree-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.8rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  border-radius: 6px;
  transition: background 0.2s;
}
.tree-item:hover {
  background: rgba(45,91,199,0.06);
}
.tree-folder.locked {
  opacity: 0.5;
}
.tree-folder.locked .tree-label {
  color: var(--text-muted);
}

/* Security Mockup UI */
.sec-status {
  margin-right: auto;
  font-size: 0.7rem;
  opacity: 0.85;
}
.sec-player-area {
  padding: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.sec-video-frame {
  position: relative;
  background: linear-gradient(135deg, #f0f2f8, #e8ecf4);
  border-radius: 8px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
}
.sec-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-20deg);
  font-size: 0.7rem;
  color: rgba(45,91,199,0.15);
  font-weight: 700;
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 2px;
}
.sec-layers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem;
}
.sec-layer {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.6rem;
  background: rgba(30,138,60,0.06);
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--success);
  border: 1px solid rgba(30,138,60,0.12);
}
.sec-device-info {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.6rem;
  font-size: 0.7rem;
  color: var(--text-muted);
  background: rgba(0,0,0,0.03);
  border-radius: 6px;
  direction: rtl;
}

.feature-list {
  margin-top: 1.5rem;
  list-style-position: inside;
  color: var(--text-muted);
}
.feature-list li { margin-bottom: 0.6rem; line-height: 1.6; }

.grid-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  list-style: none;
}
.grid-list li {
  background: rgba(255, 255, 255, 0.7);
  padding: 0.8rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.9rem;
  line-height: 1.5;
  transition: border-color 0.3s ease;
}
.grid-list li:hover {
  border-color: rgba(45, 91, 199, 0.2);
}

/* Inline list icons */
.li-icon {
  flex-shrink: 0;
  vertical-align: middle;
  margin-inline-end: 8px;
}
.icon-grid li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.icon-grid .li-icon {
  margin-top: 2px;
}

/* Decision list with icons */
.decision-list {
  list-style: none;
}
.decision-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

/* Target card header */
.target-header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
}
.alert-success {
  border-left: 3px solid var(--success);
  border-right: 3px solid var(--success);
}

/* ————— Governance & SLA ————— */
.circle-list {
  list-style: none;
  margin-top: 1.2rem;
}
.circle-list li {
  margin-bottom: 0.6rem;
  padding: 0 1.2rem;
  position: relative;
  line-height: 1.6;
}
.circle-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  position: absolute;
  top: 10px;
}
html[lang="ar"] .circle-list li::before { right: 0; }
html[lang="en"] .circle-list li::before { left: 0; }

.sla-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.sla-icon {
  margin: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(45, 91, 199, 0.06);
  border: 1px solid rgba(45, 91, 199, 0.12);
}

/* ————— Pricing ————— */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.price-plan {
  position: relative;
  display: flex;
  flex-direction: column;
}

.price-plan h3 { font-size: 1.7rem; margin: 1rem 0; font-weight: 800; }
.plan-type {
  font-size: 1.05rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}
.plan-features { list-style: none; flex: 1; text-align: left;}
html[lang="ar"] .plan-features { text-align: right; }
.plan-features li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--glass-border);
  font-size: 0.9rem;
  line-height: 1.5;
}

.price-plan.recommended {
  border: 1px solid var(--secondary);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transform: scale(1.03);
  z-index: 2;
}
.price-plan .ribbon {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  padding: 0.25rem 1.2rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  z-index: 10;
}

.addon { font-size: 0.8rem; color: var(--accent); margin-top: 1rem; text-align: left;}
html[lang="ar"] .addon { text-align: right; }
.traffic-addon { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1rem;}

/* Decision Section Improved UI */
.decision-section {
  max-width: 900px;
  margin: 0 auto;
  padding-top: 2rem;
}

.decision-heading {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1.5rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.decision-heading::before {
  content: "";
  display: block;
  width: 4px;
  height: 18px;
  background: var(--primary);
  border-radius: 2px;
}

html[lang="en"] .decision-heading {
  text-align: left;
}

.decision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.decision-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.decision-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.rev-share .decision-icon {
  background: rgba(45, 91, 199, 0.06);
  color: var(--primary);
  border: 1px solid rgba(45, 91, 199, 0.12);
}

.payg .decision-icon {
  background: rgba(30, 138, 60, 0.06);
  color: var(--success);
  border: 1px solid rgba(30, 138, 60, 0.12);
}

.decision-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  position: relative;
  z-index: 1;
}

.decision-badge {
  display: inline-block;
  align-self: flex-start;
  padding: 0.25rem 0.6rem;
  background: rgba(45, 91, 199, 0.1);
  color: var(--primary);
  border: 1px solid rgba(45, 91, 199, 0.2);
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.payg .decision-badge {
  background: rgba(30, 138, 60, 0.1);
  color: var(--success);
  border: 1px solid rgba(30, 138, 60, 0.2);
}

.decision-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
  font-weight: 600;
}

.decision-arrow {
  display: none;
}

.decision-card.rev-share {
  border-color: rgba(45, 91, 199, 0.12);
}

.decision-card.payg {
  border-color: rgba(30, 138, 60, 0.12);
}

@media (max-width: 600px) {
  .decision-grid {
    grid-template-columns: 1fr;
  }
}

/* ————— Target Audience ————— */
.good-fit .target-header h3 {
  color: var(--success);
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.good-fit .target-header {
  border-bottom: 1px solid rgba(30, 138, 60, 0.2);
  padding-bottom: 0.6rem;
}
.bad-fit .target-header h3 {
  color: var(--accent);
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.bad-fit .target-header {
  border-bottom: 1px solid rgba(224, 67, 58, 0.2);
  padding-bottom: 0.6rem;
}
.target-card ul { list-style: none; }
.target-card li { margin-bottom: 0.6rem; position: relative; padding: 0 1.4rem; line-height: 1.6;}

html[lang="ar"] .good-fit li::before { content: "✔"; position: absolute; right: 0; color: var(--success); font-size: 0.85rem; }
html[lang="en"] .good-fit li::before { content: "✔"; position: absolute; left: 0; color: var(--success); font-size: 0.85rem; }

html[lang="ar"] .bad-fit li::before { content: "✖"; position: absolute; right: 0; color: var(--accent); font-size: 0.85rem; }
html[lang="en"] .bad-fit li::before { content: "✖"; position: absolute; left: 0; color: var(--accent); font-size: 0.85rem; }

/* ————— FAQ ————— */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item h4 { margin-bottom: 0.5rem; color: var(--primary); }
.faq-item p { line-height: 1.7; color: var(--text-muted); }

/* ————— Footer ————— */
.footer-cta {
  padding-bottom: 2rem;
}
.footer-cta .container {
  max-width: 1440px;
  width: 90%;
  margin: 0 auto;
  padding: 0 24px;
}
.copyright {
  margin-top: 2rem;
  color: rgba(240, 246, 252, 0.5);
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

/* ————— Floating WhatsApp ————— */
.floating-wa {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
  z-index: 1000;
  transition: all 0.3s var(--ease-out-expo);
  text-decoration: none;
}
.floating-wa:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}
html[lang="ar"] .floating-wa {
  right: auto;
  left: 2rem;
}

/* ————— Responsive ————— */
@media (max-width: 768px) {
  .hero-content h1 { font-size: 2.2rem; }
  .grid-list { grid-template-columns: 1fr; }
  .split-layout, .split-layout.reverse { flex-direction: column; }
  .split-text, .split-visual { flex: 1 1 100%; min-width: 100%; }
  .price-plan.recommended { transform: scale(1); }
  .trust-numbers { gap: 1.2rem; }
  .stat-divider { display: none; }
  .cta-group { flex-direction: column; flex-wrap: wrap; }
  .cards-grid { grid-template-columns: 1fr; }
  .cards-grid-2 { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  main { gap: 3.5rem; padding-bottom: 3.5rem; }
  .p-5 { padding: 2rem; }
}
