/* 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);

  /* Premium Card Design Tokens */
  --card-bg: linear-gradient(135deg, #ffffff 60%, #f0f4ff 100%);
  --card-border: 1px solid rgba(45, 91, 199, 0.16);
  --card-border-hover: rgba(45, 91, 199, 0.35);
  --card-radius: 24px;
  --card-shadow: 0 10px 30px rgba(45, 91, 199, 0.05), 0 2px 10px rgba(0, 0, 0, 0.02);
  --card-shadow-hover: 0 20px 45px rgba(45, 91, 199, 0.12), 0 6px 18px rgba(0, 0, 0, 0.04);
}

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 {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 244, 255, 0.95) 50%, rgba(253, 244, 255, 0.95) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid rgba(45, 91, 199, 0.18);
  border-radius: var(--card-radius);
  padding: 2.75rem 2.25rem;
  box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.8), var(--card-shadow);
  transition: transform 0.4s var(--ease-out-expo), border-color 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo);
}

.glass-card:hover {
  transform: translateY(-6px);
  border-color: rgba(155, 61, 145, 0.35);
  box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.8), var(--card-shadow-hover);
}

/* 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: 0.5rem;
  padding-top: 1.5rem;
  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: 1.75rem 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.25rem auto;
  line-height: 1.6;
}
.partner-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 1rem;
  opacity: 0.95;
}
.p-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 85px;
  height: 85px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 50%;
  background: #ffffff;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 6px;
}
.p-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  display: block;
}
.p-logo:hover { 
  opacity: 1; 
  transform: translateY(-5px);
  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: 3.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: 4rem 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: 3.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: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, rgba(45, 91, 199, 0.12) 0%, rgba(155, 61, 145, 0.1) 100%);
  border: 1px solid rgba(45, 91, 199, 0.22);
}

.icon-wrap.warning {
  background: linear-gradient(135deg, rgba(224, 67, 58, 0.12) 0%, rgba(155, 61, 145, 0.08) 100%);
  border: 1px solid rgba(224, 67, 58, 0.22);
}

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

.feature-card h4 {
  margin-bottom: 0.6rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-main);
}

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

/* 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;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.99) 0%, rgba(240, 244, 255, 0.98) 50%, rgba(253, 238, 255, 0.96) 100%);
  border: 1.5px solid rgba(45, 91, 199, 0.22);
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.9), 0 16px 45px rgba(45, 91, 199, 0.08), 0 4px 15px rgba(155, 61, 145, 0.04);
}

.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: linear-gradient(135deg, rgba(45, 91, 199, 0.05) 0%, rgba(155, 61, 145, 0.04) 100%);
  padding: 1.25rem 1.5rem;
  border-radius: 14px;
  border: 1px solid rgba(45, 91, 199, 0.15);
  line-height: 1.75;
  font-size: 0.95rem;
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.5);
}

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

.auto-feature-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 244, 255, 0.95) 50%, rgba(253, 244, 255, 0.92) 100%);
  border: 1px solid rgba(45, 91, 199, 0.18);
  border-radius: 18px;
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.8), var(--card-shadow);
  transition: transform 0.4s var(--ease-out-expo), border-color 0.4s var(--ease-out-expo), box-shadow 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 {
  transform: translateY(-4px);
  border-color: rgba(155, 61, 145, 0.3);
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.8), var(--card-shadow-hover);
}

.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: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 244, 255, 0.95) 50%, rgba(253, 244, 255, 0.92) 100%);
  padding: 1.25rem 1.5rem;
  border-radius: 18px;
  border: 1px solid rgba(45, 91, 199, 0.18);
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.8), var(--card-shadow);
  font-size: 0.95rem;
  line-height: 1.6;
  transition: transform 0.4s var(--ease-out-expo), border-color 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo);
}
.grid-list li:hover {
  transform: translateY(-4px);
  border-color: rgba(155, 61, 145, 0.3);
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.8), var(--card-shadow-hover);
}

/* Inline list icons */
.li-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 8px;
  background: linear-gradient(135deg, rgba(45, 91, 199, 0.1) 0%, rgba(155, 61, 145, 0.08) 100%);
  border: 1px solid rgba(45, 91, 199, 0.2);
  border-radius: 10px;
  flex-shrink: 0;
  margin-inline-end: 12px;
  color: var(--primary);
  vertical-align: middle;
}
.icon-grid li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.icon-grid .li-icon {
  margin-top: 0;
}

/* 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.recommended:hover {
  transform: scale(1.03) translateY(-4px);
  border-color: var(--secondary);
  box-shadow: 0 15px 40px rgba(155, 61, 145, 0.15);
}
.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(--card-bg);
  border: var(--card-border);
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  transition: transform 0.4s var(--ease-out-expo), border-color 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.decision-card:hover {
  transform: translateY(-3px);
  border-color: var(--card-border-hover);
  box-shadow: var(--card-shadow-hover);
}

.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); }
  .price-plan.recommended:hover { transform: scale(1) translateY(-4px); }
  .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; }
}

/* ═══════════════════════════════════════════════════════
   UNIFIED PREMIUM SAAS CARD SYSTEM (.nov-card)
   Used for: Solution Card, Automation Feature Cards,
             Security cards (list items), Governance & SLA
   ═══════════════════════════════════════════════════════ */

.nov-card {
  position: relative !important;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94) 0%, rgba(246, 250, 255, 0.88) 50%, rgba(253, 247, 255, 0.88) 100%) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-radius: 26px !important;
  border: 1px solid rgba(45, 91, 199, 0.12) !important;
  
  /* Layered professional SaaS shadows with inner light bezel */
  box-shadow: 
    0 1px 2px rgba(45, 91, 199, 0.02),
    0 8px 24px -2px rgba(45, 91, 199, 0.04), 
    0 24px 60px -8px rgba(155, 61, 145, 0.05),
    inset 0 1px 1px rgba(255, 255, 255, 0.95),
    inset 0 0 40px rgba(255, 255, 255, 0.5) !important;
    
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  overflow: hidden !important;
}

/* Subtly colored ambient glow corner inside card */
.nov-card::before {
  content: "" !important;
  position: absolute !important;
  top: -100px !important;
  right: -100px !important;
  width: 250px !important;
  height: 250px !important;
  background: radial-gradient(circle, rgba(155, 61, 145, 0.04) 0%, transparent 70%) !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

.nov-card::after {
  content: "" !important;
  position: absolute !important;
  bottom: -100px !important;
  left: -100px !important;
  width: 250px !important;
  height: 250px !important;
  background: radial-gradient(circle, rgba(45, 91, 199, 0.04) 0%, transparent 70%) !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

/* Ensure contents lie above standard pseudo element layers */
.nov-card > * {
  position: relative !important;
  z-index: 2 !important;
}

/* Hover Lift & Glow Enhancement */
.nov-card:hover {
  transform: translateY(-6px) !important;
  border-color: rgba(45, 91, 199, 0.28) !important;
  box-shadow: 
    0 4px 8px rgba(45, 91, 199, 0.03),
    0 16px 40px -4px rgba(45, 91, 199, 0.08), 
    0 36px 90px -12px rgba(155, 61, 145, 0.08),
    inset 0 1px 1px rgba(255, 255, 255, 0.98),
    inset 0 0 50px rgba(255, 255, 255, 0.7) !important;
}

/* ----------------------------------------------------
   SECTION SPECIFIC CUSTOM OVERRIDES
   ---------------------------------------------------- */

/* 1. الحل - Core Value Section */
.core-standard.nov-card {
  padding: 3rem 3.5rem !important;
}

/* Custom Checklist Bullet Badges for Arabic RTL */
.nov-card .check-list {
  list-style: none !important;
  margin-top: 2rem !important;
  padding-right: 0 !important;
}

.nov-card .check-list li {
  position: relative !important;
  padding-right: 2.25rem !important;
  padding-left: 0 !important;
  margin-bottom: 1.25rem !important;
  font-size: 1.05rem !important;
  color: var(--text-main) !important;
  line-height: 1.7 !important;
}

/* Disable standard checkmark icon to use our premium badge */
html[lang="ar"] .nov-card .check-list li::before,
html[lang="en"] .nov-card .check-list li::before {
  content: "✓" !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: absolute !important;
  right: 0 !important;
  left: auto !important;
  top: 3px !important;
  width: 22px !important;
  height: 22px !important;
  background: linear-gradient(135deg, rgba(30, 138, 60, 0.14) 0%, rgba(30, 138, 60, 0.06) 100%) !important;
  border: 1px solid rgba(30, 138, 60, 0.22) !important;
  border-radius: 50% !important;
  color: var(--success) !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
}

/* Summary Box in core-value redesign */
.nov-card .summary-box {
  background: linear-gradient(135deg, rgba(45, 91, 199, 0.05) 0%, rgba(155, 61, 145, 0.04) 100%) !important;
  border: 1px solid rgba(45, 91, 199, 0.12) !important;
  border-radius: 16px !important;
  padding: 1.4rem 1.6rem !important;
  margin-top: 2rem !important;
  font-size: 0.98rem !important;
  line-height: 1.75 !important;
  color: var(--text-main) !important;
  box-shadow: inset 0 2px 6px rgba(45, 91, 199, 0.02) !important;
}

/* 2. تنظيم المحتوى والجدولة - Automation Section */
.auto-features-grid {
  gap: 1.25rem !important;
}

.auto-feature-card.nov-card {
  padding: 1.25rem 1.5rem !important;
  gap: 1.25rem !important;
  border-radius: 20px !important;
}

/* Elegant Icon badge with soft colored border glow */
.nov-card .auto-feature-icon {
  width: 50px !important;
  height: 50px !important;
  min-width: 50px !important;
  border-radius: 14px !important;
  background: linear-gradient(135deg, rgba(45, 91, 199, 0.12) 0%, rgba(155, 61, 145, 0.08) 100%) !important;
  border: 1.5px solid rgba(45, 91, 199, 0.22) !important;
  color: var(--primary) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 4px 12px rgba(45, 91, 199, 0.04) !important;
  transition: transform 0.4s var(--ease-out-expo) !important;
}

.auto-feature-card.nov-card:hover .auto-feature-icon {
  transform: scale(1.08) rotate(3deg) !important;
  box-shadow: 0 6px 16px rgba(45, 91, 199, 0.1) !important;
}

.auto-feature-card.nov-card h4 {
  font-size: 1rem !important;
  font-weight: 700 !important;
  line-height: 1.6 !important;
}

/* 3. حماية المحتوى - Content Security Grid List Items */
.pc-list {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 1.25rem !important;
}

/* Make list items style exactly like small premium cards */
.pc-list li {
  position: relative !important;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94) 0%, rgba(246, 250, 255, 0.88) 50%, rgba(253, 247, 255, 0.88) 100%) !important;
  border-radius: 20px !important;
  border: 1px solid rgba(45, 91, 199, 0.12) !important;
  padding: 1.25rem 1.5rem !important;
  box-shadow: 
    0 1px 2px rgba(45, 91, 199, 0.02),
    0 8px 24px -2px rgba(45, 91, 199, 0.03), 
    inset 0 1px 1px rgba(255, 255, 255, 0.9) !important;
  transition: transform 0.4s var(--ease-out-expo), 
              box-shadow 0.4s var(--ease-out-expo), 
              border-color 0.4s var(--ease-out-expo) !important;
  display: flex !important;
  align-items: center !important;
  gap: 1rem !important;
  font-size: 0.98rem !important;
  line-height: 1.6 !important;
  color: var(--text-main) !important;
}

.pc-list li:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(45, 91, 199, 0.25) !important;
  box-shadow: 
    0 12px 30px -4px rgba(45, 91, 199, 0.08), 
    inset 0 1px 1px rgba(255, 255, 255, 0.95) !important;
}

/* Beautiful Icon inside list card */
.pc-list li .li-icon {
  width: 46px !important;
  height: 46px !important;
  min-width: 46px !important;
  padding: 10px !important;
  background: linear-gradient(135deg, rgba(45, 91, 199, 0.12) 0%, rgba(155, 61, 145, 0.08) 100%) !important;
  border: 1.5px solid rgba(45, 91, 199, 0.2) !important;
  border-radius: 12px !important;
  color: var(--primary) !important;
  margin: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Results box in Content Security */
.alert-success.nov-card {
  padding: 1.25rem 1.5rem !important;
  border-radius: 18px !important;
  border-right: 4px solid var(--success) !important;
  border-left: 1px solid rgba(45, 91, 199, 0.12) !important;
}

/* 4. split-visual mockup containers */
.split-visual.nov-card {
  padding: 1.5rem !important;
}

.mockup-ui {
  background: rgba(255, 255, 255, 0.5) !important;
  border-radius: 18px !important;
  border: 1px solid rgba(45, 91, 199, 0.08) !important;
  box-shadow: 
    0 8px 32px rgba(45, 91, 199, 0.03),
    inset 0 1px 2px rgba(255, 255, 255, 0.8) !important;
  overflow: hidden !important;
}

.mockup-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%) !important;
  padding: 0.85rem 1.25rem !important;
  border-radius: 18px 18px 0 0 !important;
}

.tree-folder {
  background: rgba(255, 255, 255, 0.85) !important;
  border: 1px solid rgba(45, 91, 199, 0.08) !important;
  border-radius: 12px !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02) !important;
}

.sec-player-area {
  padding: 1.25rem !important;
}

.sec-video-frame {
  background: linear-gradient(135deg, #f4f7fc, #e9eff9) !important;
  border-radius: 12px !important;
  border: 1px solid rgba(45, 91, 199, 0.12) !important;
  height: 140px !important;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.04) !important;
}

.sec-layer {
  background: rgba(30, 138, 60, 0.08) !important;
  border: 1px solid rgba(30, 138, 60, 0.15) !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  color: var(--success) !important;
}

.sec-device-info {
  background: rgba(45, 91, 199, 0.05) !important;
  border: 1px solid rgba(45, 91, 199, 0.08) !important;
  border-radius: 8px !important;
}

/* 5. إدارة حسابات الطلبة & الثبات وقت الضغط - Governance & SLA Cards */
.cards-grid-2 {
  gap: 2rem !important;
}

.glass-card.logo-pattern.nov-card,
.glass-card.sla-card.nov-card {
  padding: 3rem 3.5rem !important;
  flex: 1 !important;
}

.nov-card .circle-list {
  padding-right: 0 !important;
  list-style: none !important;
}

.nov-card .circle-list li {
  position: relative !important;
  padding-right: 1.6rem !important;
  margin-bottom: 0.9rem !important;
  font-size: 1.05rem !important;
  line-height: 1.65 !important;
  color: var(--text-main) !important;
}

/* Circle list custom bullet point */
html[lang="ar"] .nov-card .circle-list li::before,
html[lang="en"] .nov-card .circle-list li::before {
  content: "" !important;
  width: 7px !important;
  height: 7px !important;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%) !important;
  border-radius: 50% !important;
  position: absolute !important;
  right: 0 !important;
  left: auto !important;
  top: 10px !important;
}

/* Premium SLA Badge */
.nov-card .sla-icon {
  width: 72px !important;
  height: 72px !important;
  border-radius: 20px !important;
  background: linear-gradient(135deg, rgba(45, 91, 199, 0.12) 0%, rgba(155, 61, 145, 0.08) 100%) !important;
  border: 1.5px solid rgba(45, 91, 199, 0.22) !important;
  color: var(--primary) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 1.5rem auto !important;
  box-shadow: 
    0 6px 16px rgba(45, 91, 199, 0.06), 
    inset 0 1px 1px rgba(255, 255, 255, 0.8) !important;
  transition: transform 0.4s var(--ease-out-expo) !important;
}

.sla-card.nov-card:hover .sla-icon {
  transform: scale(1.1) rotate(5deg) !important;
}

/* SLA card paragraph styling */
.sla-card.nov-card p {
  font-size: 1.05rem !important;
  line-height: 1.75 !important;
  color: var(--text-main) !important;
}

/* ----------------------------------------------------
   RESPONSIVE LAYOUT RULES FOR NEW CARD SYSTEM
   ---------------------------------------------------- */
@media (max-width: 992px) {
  .pc-list {
    grid-template-columns: 1fr !important;
  }
}

  .nov-card {
    border-radius: 20px !important;
  }


/* ═══════════════════════════════════════════════════════
   PREMIUM COMPONENT REDESIGN — SUB-COMPONENTS & DASHBOARDS
   ═══════════════════════════════════════════════════════ */

/* Window Control Dots */
.window-controls {
  display: flex !important;
  gap: 6px !important;
  align-items: center !important;
}

.window-controls .dot {
  width: 9px !important;
  height: 9px !important;
  border-radius: 50% !important;
  display: inline-block !important;
}

.window-controls .dot.red { background: #ff5f56 !important; }
.window-controls .dot.yellow { background: #ffbd2e !important; }
.window-controls .dot.green { background: #27c93f !important; }

/* 1. Core Value Grid & Dashboard Monitor */
.core-standard-grid {
  display: grid !important;
  grid-template-columns: 1.2fr 1fr !important;
  gap: 3rem !important;
  align-items: center !important;
}

.core-dashboard-side {
  width: 100% !important;
  min-width: 0 !important;
}

.dashboard-preview {
  background: #0d111d !important;
  border-radius: 18px !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  overflow: hidden !important;
  box-shadow: 
    0 4px 12px rgba(0, 0, 0, 0.15),
    0 16px 45px rgba(0, 0, 0, 0.25) !important;
  font-family: var(--font-family) !important;
  text-align: left !important;
  direction: ltr !important;
}

.dashboard-preview .dashboard-header {
  display: flex !important;
  align-items: center !important;
  gap: 0.75rem !important;
  padding: 0.8rem 1rem !important;
  background: rgba(255, 255, 255, 0.02) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
}

.dashboard-preview .dashboard-title {
  font-size: 0.72rem !important;
  font-weight: 600 !important;
  color: rgba(255, 255, 255, 0.45) !important;
  letter-spacing: 0.5px !important;
  margin-left: auto !important;
}

.dashboard-preview .dashboard-body {
  padding: 1.25rem !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0.9rem !important;
}

.dashboard-preview .status-item {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.35rem !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
  padding-bottom: 0.75rem !important;
}

.dashboard-preview .status-item:last-of-type {
  border-bottom: none !important;
  padding-bottom: 0 !important;
}

.dashboard-preview .status-label {
  font-size: 0.72rem !important;
  color: rgba(255, 255, 255, 0.45) !important;
  text-align: right !important;
  direction: rtl !important;
}

.dashboard-preview .status-value-group {
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  color: #fff !important;
}

.dashboard-preview .status-value-muted {
  font-size: 0.8rem !important;
  color: rgba(255, 255, 255, 0.6) !important;
  text-align: left !important;
}

.dashboard-preview .green-dot {
  width: 7px !important;
  height: 7px !important;
  border-radius: 50% !important;
  background: #27c93f !important;
  box-shadow: 0 0 8px #27c93f !important;
  display: inline-block !important;
}

.dashboard-preview .shield-badge {
  font-size: 0.68rem !important;
  background: rgba(155, 61, 145, 0.25) !important;
  color: #f19ef4 !important;
  padding: 0.15rem 0.55rem !important;
  border-radius: 20px !important;
  border: 1px solid rgba(155, 61, 145, 0.4) !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

.dashboard-preview .system-stats {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 0.75rem !important;
  margin-top: 0.35rem !important;
}

.dashboard-preview .stat-box {
  background: rgba(255, 255, 255, 0.02) !important;
  padding: 0.6rem !important;
  border-radius: 8px !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  text-align: center !important;
}

.dashboard-preview .stat-val {
  font-size: 1.05rem !important;
  font-weight: 800 !important;
}

.dashboard-preview .stat-lbl {
  font-size: 0.62rem !important;
  color: rgba(255, 255, 255, 0.4) !important;
  margin-top: 0.1rem !important;
}

/* 2. Video Player Mockup Polish */
.sec-video-frame {
  position: relative !important;
  overflow: hidden !important;
}

.player-overlay {
  position: absolute !important;
  inset: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(0, 0, 0, 0.05) !important;
  z-index: 2 !important;
  pointer-events: none !important;
}

.play-btn-glow {
  filter: drop-shadow(0 4px 12px rgba(45, 91, 199, 0.3)) !important;
  transform: scale(1) !important;
  transition: transform 0.3s ease !important;
}

.sec-video-frame:hover .play-btn-glow {
  transform: scale(1.1) !important;
}

/* Video controls bar inside the player mockup */
.video-controls-bar {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 21, 37, 0.92) 100%) !important;
  padding: 0.5rem 0.8rem !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.6rem !important;
  color: #fff !important;
  z-index: 5 !important;
  direction: ltr !important;
}

.video-controls-bar .control-icon {
  cursor: pointer !important;
  opacity: 0.75 !important;
  transition: opacity 0.2s, transform 0.2s !important;
}

.video-controls-bar .control-icon:hover {
  opacity: 1 !important;
  transform: scale(1.05) !important;
}

.video-controls-bar .time-stamp {
  font-size: 0.65rem !important;
  color: rgba(255, 255, 255, 0.8) !important;
  font-weight: 500 !important;
  white-space: nowrap !important;
}

.video-controls-bar .scrub-bar {
  flex: 1 !important;
  height: 4px !important;
  background: rgba(255, 255, 255, 0.22) !important;
  border-radius: 2px !important;
  position: relative !important;
}

.video-controls-bar .scrub-progress {
  width: 32% !important;
  height: 100% !important;
  background: var(--primary) !important;
  border-radius: 2px !important;
}

/* 3. Governance student dashboard widget */
.mini-student-dashboard {
  margin-top: 2rem !important;
  background: rgba(255, 255, 255, 0.65) !important;
  border: 1px solid rgba(45, 91, 199, 0.12) !important;
  border-radius: 16px !important;
  padding: 1.1rem !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0.75rem !important;
  box-shadow: 
    0 4px 12px rgba(45, 91, 199, 0.02),
    inset 0 1px 1px rgba(255, 255, 255, 0.9) !important;
  direction: rtl !important;
}

.dashboard-header-mini {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  color: var(--text-main) !important;
  border-bottom: 1px solid rgba(45, 91, 199, 0.08) !important;
  padding-bottom: 0.5rem !important;
}

.dashboard-header-mini .user-count {
  font-size: 0.72rem !important;
  background: rgba(45, 91, 199, 0.08) !important;
  color: var(--primary) !important;
  padding: 0.15rem 0.5rem !important;
  border-radius: 10px !important;
}

.student-row {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 0.75rem !important;
  padding: 0.35rem 0 !important;
}

.student-row .student-info {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.15rem !important;
  flex: 1 !important;
}

.student-row .student-name {
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  color: var(--text-main) !important;
}

.student-row .student-course {
  font-size: 0.72rem !important;
  color: var(--text-muted) !important;
}

.student-row .status-pill {
  font-size: 0.68rem !important;
  padding: 0.15rem 0.5rem !important;
  border-radius: 20px !important;
  font-weight: 700 !important;
}

.student-row .status-pill.active-pill {
  background: rgba(30, 138, 60, 0.1) !important;
  color: var(--success) !important;
}

.student-row .status-pill.expired-pill {
  background: rgba(224, 67, 58, 0.1) !important;
  color: var(--error) !important;
}

.student-row .action-btn {
  font-size: 0.72rem !important;
  padding: 0.35rem 0.65rem !important;
  border-radius: 8px !important;
  border: none !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  transition: all 0.2s !important;
  font-family: inherit !important;
}

.student-row .action-btn.suspend-btn {
  background: rgba(224, 67, 58, 0.07) !important;
  color: #e0433a !important;
}

.student-row .action-btn.suspend-btn:hover {
  background: rgba(224, 67, 58, 0.14) !important;
}

.student-row .action-btn.activate-btn {
  background: var(--primary) !important;
  color: #fff !important;
  box-shadow: 0 4px 10px rgba(45, 91, 199, 0.15) !important;
}

.student-row .action-btn.activate-btn:hover {
  background: #234ca8 !important;
}

/* 4. SLA card peak wave & status widget */
.sla-status-panel {
  margin: 1.5rem 0 !important;
  background: rgba(255, 255, 255, 0.65) !important;
  border: 1px solid rgba(45, 91, 199, 0.12) !important;
  border-radius: 18px !important;
  padding: 1.25rem !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0.75rem !important;
  align-items: center !important;
  box-shadow: 
    0 4px 12px rgba(45, 91, 199, 0.02),
    inset 0 1px 1px rgba(255, 255, 255, 0.9) !important;
}

.sla-badge-pulse {
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
}

.sla-badge-pulse .pulse-dot {
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background: #27c93f !important;
  box-shadow: 0 0 8px #27c93f !important;
}

.sla-badge-pulse .sla-percentage {
  font-size: 0.85rem !important;
  font-weight: 800 !important;
  color: var(--primary) !important;
}

.uptime-wave {
  width: 100% !important;
  height: 32px !important;
  overflow: hidden !important;
  opacity: 0.85 !important;
}

.uptime-wave .wave-svg {
  width: 100% !important;
  height: 100% !important;
  stroke: var(--primary) !important;
  stroke-width: 1.5 !important;
  fill: none !important;
}

.sla-status-panel .load-text {
  font-size: 0.72rem !important;
  color: var(--text-muted) !important;
  font-weight: 600 !important;
}

/* responsive rule overrides for split structures */
@media (max-width: 992px) {
  .core-standard-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
}

/* Pricing Section Premium CTA Button */
.pricing-cta-wrap {
  margin-top: 1.75rem !important;
  display: flex !important;
  justify-content: center !important;
  width: 100% !important;
  position: relative !important;
  z-index: 5 !important;
}

.pricing-cta-btn {
  display: inline-block !important;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%) !important;
  color: #fff !important;
  padding: 14px 28px !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  border-radius: 16px !important;
  box-shadow: 0 4px 14px rgba(45, 91, 199, 0.25) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  cursor: pointer !important;
  border: none !important;
  text-align: center !important;
}

.pricing-cta-btn:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 22px rgba(155, 61, 145, 0.35) !important;
  color: #fff !important;
}

/* Ensure centering on mobile and full width if needed */
@media (max-width: 576px) {
  .pricing-cta-btn {
    width: 100% !important;
    padding: 14px 20px !important;
  }
}




