/* ─── CSS Variables ─── */
:root {
  --mint: #96FCE1;
  --mint-light: #B8FFF0;
  --mint-dim: #4ABDA4;
  --mint-darker: #2E9E87;
  --dark: #080C12;
  --dark-2: linear-gradient(135deg, rgba(150,252,225,0.07), rgba(150,252,225,0.02));
  --dark-3: linear-gradient(135deg, rgba(150,252,225,0.07), rgba(150,252,225,0.02));
  --dark-4: #1E2840;
  --text: #96fce1;
  --text-muted: #e4e4e4;
  --text-dim: #adadad;
  --border: rgba(150,252,225,0.15);
  --border-dim: rgba(150,252,225,0.25);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Tajawal', 'Tajawal', sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(150,252,225,0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(26,111,212,0.05) 0%, transparent 50%),
    repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(150,252,225,0.012) 60px, rgba(150,252,225,0.012) 61px);
  pointer-events: none;
  z-index: 0;
}

/* ─── HEADER / NAV ─── */
.site-header {
  background: rgba(8,12,18,0.95);
  border-bottom: 1px solid var(--border);
  padding: 0.7rem 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.header-logo img {
  height: auto;
  width: auto;
  max-height: 46px;
  max-width: 160px;
  object-fit: contain;
  overflow: visible;
  display: block;
  line-height: 0;
}

.header-logo-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--mint);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.header-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 400;
  transition: color 0.2s;
}

.header-nav a:hover {
  color: var(--mint);
}

.nav-cta {
  background: var(--mint);
  color: var(--dark) !important;
  padding: 0.55rem 1.4rem;
  border-radius: 6px;
  font-weight: 700 !important;
  font-size: 0.82rem !important;
  transition: background 0.2s, transform 0.15s !important;
}

.nav-cta:hover {
  background: var(--mint-light) !important;
  color: var(--dark) !important;
  transform: translateY(-1px);
}

/* ─── HAMBURGER ─── */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 2200;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  position: relative;
  transition: background 0.3s;
}

.hamburger:hover {
  background: rgba(150,252,225,0.08);
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--mint);
  margin: 6px auto;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-radius: 3px;
  transform-origin: center;
}

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

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

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

/* ─── MOBILE NAV DRAWER (Premium) ─── */
.mobile-nav {
  display: flex;
  position: fixed;
  top: 0;
  right: 0;
  width: min(340px, 85vw);
  height: 100vh;
  height: 100dvh;
  background: linear-gradient(160deg, #0A0F17 0%, #080C12 100%);
  border-left: 1px solid rgba(150,252,225,0.12);
  box-shadow: -20px 0 60px rgba(0,0,0,0.5);
  z-index: 2000;
  transform: translateX(105%);
  visibility: hidden;
  transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.45s;
  overflow-y: auto;
  overflow-x: hidden;
  flex-direction: column;
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
}

.mobile-nav::-webkit-scrollbar {
  width: 4px;
}

.mobile-nav::-webkit-scrollbar-track {
  background: transparent;
}

.mobile-nav::-webkit-scrollbar-thumb {
  background: rgba(150,252,225,0.2);
  border-radius: 4px;
}

.mobile-nav.active {
  transform: translateX(0);
  visibility: visible;
}

/* Gradient accent line at top */
.mobile-nav::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--mint), transparent);
  opacity: 0.8;
}

/* Header of drawer */
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid rgba(150,252,225,0.1);
  position: sticky;
  top: 0;
  background: rgba(10,15,23,0.95);
  z-index: 2;
  backdrop-filter: blur(12px);
}

.mobile-nav-header img {
  height: 34px;
  width: auto;
  object-fit: contain;
}

.mobile-nav-close {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(150,252,225,0.15);
  background: rgba(150,252,225,0.06);
  color: var(--mint);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.mobile-nav-close:hover {
  background: var(--mint);
  color: var(--dark);
  transform: rotate(90deg);
}

/* Body of drawer */
.mobile-nav-body {
  flex: 1;
  padding: 1.5rem 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.mobile-nav-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mint-dim);
  margin-bottom: 0.8rem;
  padding-right: 0.5rem;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 500;
  padding: 0.85rem 0.9rem;
  border-radius: 12px;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.mobile-nav-link::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: var(--mint);
  border-radius: 3px;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s ease;
}

.mobile-nav-link > svg {
  flex-shrink: 0;
  color: var(--mint-dim);
  transition: all 0.25s;
}

.mobile-nav-link span {
  flex: 1;
}

.mobile-nav-arrow {
  opacity: 0.5;
  transition: all 0.25s;
}

.mobile-nav-link:hover {
  background: rgba(150,252,225,0.06);
  color: var(--mint);
}

.mobile-nav-link:hover::before {
  transform: scaleY(1);
}

.mobile-nav-link:hover > svg {
  color: var(--mint);
  transform: scale(1.1);
}

.mobile-nav-link:hover .mobile-nav-arrow {
  opacity: 1;
  transform: translateX(-3px);
}

/* Footer of drawer */
.mobile-nav-footer {
  padding: 1.2rem 1.5rem 1.5rem;
  border-top: 1px solid rgba(150,252,225,0.1);
  background: rgba(10,15,23,0.6);
}

.mobile-nav-cta {
  display: block;
  text-align: center;
  padding: 0.95rem 1.5rem;
  background: var(--mint);
  color: var(--dark);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 6px 20px rgba(150,252,225,0.25);
}

.mobile-nav-cta:hover {
  background: var(--mint-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(150,252,225,0.35);
}

.mobile-nav-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.2rem;
}

.mobile-nav-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(150,252,225,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.3s;
  text-decoration: none;
}

.mobile-nav-social a:hover {
  background: rgba(150,252,225,0.1);
  color: var(--mint);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(150,252,225,0.15);
}

/* Overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Desktop: hide mobile drawer entirely */
@media (min-width: 901px) {
  .mobile-nav, .mobile-overlay {
    display: none !important;
  }
}

/* ─── HERO ─── */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 5rem 6% 5rem;
  position: relative;
  z-index: 1;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 5rem;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--dark-2);
  border: 1px solid var(--border);
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.hero-tag-dot {
  width: 6px;
  height: 6px;
  background: var(--mint);
  border-radius: 50%;
  animation: pulse 2s infinite;
  display: inline-block;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: #fff;
}

h1 .highlight {
  color: var(--mint);
  position: relative;
}

h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--mint), transparent);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 560px;
  font-weight: 300;
  line-height: 1.8;
}

.hero-sub strong {
  color: var(--text);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn-primary {
  background: var(--mint);
  color: var(--dark);
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s;
  border: 2px solid var(--mint);
}

.btn-primary:hover {
  background: var(--mint-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(150,252,225,0.25);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s;
  border: 1px solid var(--border-dim);
}

.btn-secondary:hover {
  border-color: var(--mint);
  color: var(--mint);
}

.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

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

.stat-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--mint);
  display: block;
}

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

/* ─── HERO CARD ─── */
.hero-card {
  background: var(--dark-2);
  border: 1px solid var(--border-dim);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(150,252,225,0.1) 0%, transparent 70%);
}

.google-badge {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--dark-2);
  border: 1px solid var(--border-dim);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  margin-bottom: 1.5rem;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.google-badge:hover {
  border-color: rgba(150,252,225,0.3);
  box-shadow: 0 4px 20px rgba(150,252,225,0.1);
}

.google-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  flex-shrink: 0;
}

.badge-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
}

.badge-text span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.card-title {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.expertise-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.expertise-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.88rem;
  color: var(--text);
}

.expertise-dot {
  width: 6px;
  height: 6px;
  background: var(--mint);
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-block;
}

.card-divider {
  height: 1px;
  background: var(--border-dim);
  margin: 1.2rem 0;
}

.availability {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--mint);
}

.avail-dot {
  width: 8px;
  height: 8px;
  background: var(--mint);
  border-radius: 50%;
  animation: pulse 2s infinite;
  display: inline-block;
}

/* ─── SECTION BASE ─── */
section {
  position: relative;
  z-index: 1;
  padding: 6rem 6%;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-tag {
  display: inline-block;
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 580px;
  font-weight: 300;
}

/* ─── TRUST STRIP ─── */
.trust-strip {
  background: var(--dark-2);
  border-top: 1px solid var(--border-dim);
  border-bottom: 1px solid var(--border-dim);
  padding: 2rem 6%;
  position: relative;
  z-index: 1;
}

.trust-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.trust-icon {
  width: 36px;
  height: 36px;
  background: var(--dark-2);
  border: 1px solid var(--border-dim);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-item strong {
  color: var(--text);
  display: block;
  font-size: 0.9rem;
}

/* ─── PROBLEM SECTION ─── */
.problem-section {
  background: var(--dark-2);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.problem-card {
  border: 1px solid rgba(227,67,67,0.2);
  border-radius: 12px;
  padding: 1.5rem;
  background: rgba(227,67,67,0.04);
}

.problem-card .card-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #E34343;
  margin-bottom: 0.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.solution-block {
  margin-top: 3rem;
  background: var(--dark-2);
  border: 1px solid var(--border-dim);
  border-radius: 16px;
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}

.solution-item h4 {
  color: var(--mint);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.solution-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── SERVICES ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--dark-2);
  border: 1px solid var(--border-dim);
  border-radius: 14px;
  padding: 1.8rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  border-color: var(--mint);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.service-card.featured {
  border-color: var(--mint);
  background: var(--dark-2);
}

.service-card.featured::after {
  content: 'التخصص الرئيسي';
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--mint);
  color: var(--dark);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

.service-icon {
  width: 44px;
  height: 44px;
  background: var(--dark-2);
  border: 1px solid var(--border-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.6rem;
}

.service-en {
  font-size: 0.72rem;
  color: var(--mint-dim);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  display: block;
}

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

.service-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.tag {
  background: var(--dark-2);
  border: 1px solid var(--border-dim);
  color: var(--text-muted);
  font-size: 0.7rem;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}

/* ─── AUDIENCE ─── */
.audience-section {
  background: var(--dark-3);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-top: 3rem;
}

.audience-card {
  background: var(--dark-2);
  border: 1px solid var(--border-dim);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: border-color 0.2s;
}

.audience-card:hover {
  border-color: var(--mint);
}

.audience-icon {
  width: 44px;
  height: 44px;
  background: var(--dark-2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.audience-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.4rem;
}

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

/* ─── WHY ME ─── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  border-radius: 12px;
  background: var(--dark-2);
  border: 1px solid var(--border-dim);
}

.why-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--mint);
  opacity: 0.25;
  line-height: 1;
  flex-shrink: 0;
  min-width: 40px;
}

.why-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.why-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── CONTENT ─── */
.content-section {
  background: var(--dark-2);
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.article-card {
  background: var(--dark-3);
  border: 1px solid var(--border-dim);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.25s;
}

.article-card:hover {
  transform: translateY(-3px);
  border-color: var(--mint);
}

.article-cat {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mint);
  padding: 1rem 1.2rem 0;
}

.article-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  padding: 0.5rem 1.2rem;
  line-height: 1.5;
}

.article-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  padding: 0 1.2rem 1rem;
  line-height: 1.6;
}

.article-footer {
  border-top: 1px solid var(--border-dim);
  padding: 0.8rem 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  color: var(--text-dim);
}

.read-more {
  color: var(--mint);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.78rem;
}

/* ─── PROCESS ─── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3rem;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 24px;
  right: 12%;
  left: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--mint-dim), transparent);
}

.step {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--dark-2);
  border: 1px solid var(--border-dim);
  border-radius: 12px;
}

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--dark-2);
  border: 1px solid var(--border-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 900;
  color: var(--mint);
  margin: 0 auto 1rem;
}

.step h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.step p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── CTA ─── */
.cta-section {
  background: var(--dark-2);
  border-top: 1px solid var(--border-dim);
  border-bottom: 1px solid var(--border-dim);
}

.cta-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.cta-inner h2 {
  margin-bottom: 1rem;
}

.cta-inner p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  font-weight: 300;
}

/* ─── FORMS ─── */
.cta-form, .contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cta-form input, .cta-form textarea,
.contact-form input, .contact-form textarea {
  background: rgba(150,252,225,0.07);
  border: 1px solid var(--border-dim);
  border-radius: 8px;
  color: var(--text);
  padding: 0.7rem 1rem;
  font-size: 0.95rem;
  font-family: 'Tajawal', sans-serif;
  transition: border-color 0.2s;
  width: 100%;
}

.cta-form input:focus, .cta-form textarea:focus,
.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--mint);
}

.cta-form input::placeholder, .cta-form textarea::placeholder,
.contact-form input::placeholder, .contact-form textarea::placeholder {
  color: var(--text-dim);
}

.form-submit {
  background: var(--mint);
  color: var(--dark);
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  font-family: 'Tajawal', sans-serif;
  cursor: pointer;
  transition: all 0.2s;
}

.form-submit:hover {
  background: var(--mint-light);
  transform: translateY(-2px);
}

/* ─── CONTACT ─── */
.contact-section {
  background: var(--dark-2);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.contact-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
}

.contact-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.channel {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1rem;
  background: var(--dark-2);
  border: 1px solid var(--border-dim);
  border-radius: 8px;
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: all 0.2s;
}

.channel:hover {
  border-color: var(--mint);
  color: var(--text);
}

.channel-icon {
  width: 32px;
  height: 32px;
  background: var(--dark-2);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ─── PROOF / RESULTS ─── */
.proof-wrapper {
  background: var(--dark-2);
  border: 1px solid var(--border-dim);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  margin-top: 2rem;
}

.proof-head {
  margin-bottom: 2.5rem;
}

.proof-head h2 {
  font-size: clamp(1.5rem, 2.5vw, 1.8rem);
  color: #fff;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

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

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

.proof-card {
  background: var(--dark-2);
  border: 1px solid var(--border-dim);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.proof-card:hover {
  border-color: var(--mint);
  transform: translateY(-3px);
}

.proof-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.proof-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.proof-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid var(--border-dim);
  display: block;
  margin-top: auto;
}

/* ─── FOOTER ─── */
.custom-footer-area {
  background-color: #050709;
  border-top: 1px solid rgba(150, 252, 225, 0.15);
  padding: 5rem 5% 2rem;
  font-family: 'Tajawal', sans-serif;
  color: #a0abbc;
  direction: rtl;
  position: relative;
  overflow: hidden;
}

.custom-footer-area::before {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(150, 252, 225, 0.03) 0%, transparent 70%);
  z-index: 0;
}

.footer-main-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1fr;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.footer-logo {
  max-width: 180px;
  height: auto;
  margin-bottom: 1.5rem;
  display: block;
}

.footer-col-brand p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer-col-links h4 {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 10px;
}

.footer-col-links h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 2px;
  background: #96FCE1;
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav-list li {
  margin-bottom: 0.8rem;
}

.footer-nav-list a {
  color: #a0abbc;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-nav-list a:hover {
  color: #96FCE1;
  transform: translateX(-8px);
}

.footer-col-badge img {
  width: 150px;
  height: auto;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5));
}

.footer-col-badge img:hover {
  transform: scale(1.05);
}

.footer-bottom-bar {
  max-width: 1200px;
  margin: 4rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
  font-size: 0.95rem;
}

.footer-legal-links a {
  color: #a0abbc;
  text-decoration: none;
  margin-right: 1.5rem;
  transition: color 0.3s ease;
}

.footer-legal-links a:hover {
  color: #96FCE1;
}

/* ─── SCROLL TO TOP ─── */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 44px;
  height: 44px;
  background: var(--mint);
  color: var(--dark);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(150,252,225,0.3);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(150,252,225,0.4);
}

/* ─── WHATSAPP FLOAT BUTTON ─── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: all 0.3s;
  animation: whatsapp-pulse 2s infinite;
}

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

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

@media (max-width: 600px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 1.5rem;
    right: 1.5rem;
  }
  .scroll-top {
    bottom: 1.5rem;
    left: 1.5rem;
  }
}

/* ─── SCREEN READER ONLY ─── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .proof-wrapper { padding: 2rem 1.5rem; }
  .proof-grid { grid-template-columns: 1fr; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .problem-grid { grid-template-columns: 1fr; }
  .solution-block { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .header-nav { display: none; }
  .hamburger { display: block; }
  .mobile-nav { display: flex; }
  .site-header { padding: 0.5rem 4%; }
  .header-logo img { max-height: 40px; max-width: 130px; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1rem; }
  .trust-inner { flex-direction: column; gap: 1rem; }
  .footer-main-grid {
    grid-template-columns: 1fr;
    text-align: right;
  }
  .footer-bottom-bar {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  .footer-legal-links a {
    margin: 0 0.5rem;
  }
}
