/* ═══════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════ */
:root {
  --navy: #0d1f3c;
  --navy-mid: #162d52;
  --navy-light: #1e3d6e;
  --orange: #e8651a;
  --orange-light: #f07d36;
  --orange-pale: #fdf0e8;
  --white: #ffffff;
  --off-white: #f7f7f5;
  --gray-50: #f4f4f2;
  --gray-100: #e8e8e4;
  --gray-200: #d0d0ca;
  --gray-400: #9a9a92;
  --gray-600: #6a6a62;
  --gray-800: #2e2e2a;
  --text-primary: #0d1f3c;
  --text-secondary: #4a5568;
  --text-muted: #8a94a6;
  --font: 'Vazirmatn', sans-serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --shadow-sm: 0 1px 3px rgba(13,31,60,0.08);
  --shadow-md: 0 4px 16px rgba(13,31,60,0.10);
  --shadow-lg: 0 12px 40px rgba(13,31,60,0.12);
  --shadow-xl: 0 24px 64px rgba(13,31,60,0.16);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.7;
  direction: rtl;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }
input, textarea, select { font-family: var(--font); }

/* ═══════════════════════════════════════════
   UTILITY
═══════════════════════════════════════════ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.section-tag::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--orange);
  display: block;
}
.section-title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  letter-spacing: -0.02em;
}
.section-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 580px;
  margin-top: 14px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  background: var(--orange);
  color: white;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  transform: translateX(110%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary:hover { background: var(--orange-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,101,26,0.35); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: white;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font);
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.btn-secondary:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.5); }
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(13, 31, 60, 0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo-mark {
  width: 60px;
  height: 60px;
  position: relative;
  display: flex;
  align-items: center;
}
.logo-svg { width: 60px; height: auto; }
.nav-logo-text {
  display: flex;
  flex-direction: column;
}
.nav-logo-fa {
  font-size: 20px;
  font-weight: 800;
  color: white;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.nav-logo-en {
  font-size: 10px;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 0;
  height: 1.5px;
  background: var(--orange);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: white; }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  padding: 9px 22px;
  background: var(--orange);
  color: white;
  border-radius: 6px;
  font-size: 13.5px;
  font-weight: 600;
  font-family: var(--font);
  transition: var(--transition);
}
.nav-cta:hover { background: var(--orange-light); transform: translateY(-1px); }
.nav-mobile-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
}
.nav-mobile-btn span {
  display: block;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 20px;
  font-weight: 600;
  color: white;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--orange); }
.mobile-close {
  position: absolute;
  top: 24px;
  left: 24px;
  font-size: 28px;
  color: white;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font);
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-canvas svg {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-content {}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid rgba(232,101,26,0.3);
  border-radius: 100px;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 28px;
  background: rgba(232,101,26,0.08);
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hero-title {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 800;
  color: white;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: normal;
  color: var(--orange);
}
.hero-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.85;
  margin-bottom: 40px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 52px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-stat-num {
  font-size: 28px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.03em;
  line-height: 1;
}
.hero-stat-num span { color: var(--orange); }
.hero-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin-top: 5px;
  font-weight: 400;
}
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.orbital-system {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1;
  position: relative;
}
.orbital-system svg {
  width: 100%;
  height: 100%;
}

/* ═══════════════════════════════════════════
   CHALLENGES
═══════════════════════════════════════════ */
.challenges {
  padding: 100px 0;
  background: var(--off-white);
}
.challenges-header {
  text-align: center;
  margin-bottom: 60px;
}
.challenges-header .section-tag { justify-content: center; }
.challenges-header .section-tag::before { display: none; }
.challenges-header .section-tag::after {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--orange);
  display: block;
}
.challenges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.challenge-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.challenge-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 3px;
  height: 0;
  background: var(--orange);
  transition: height 0.4s ease;
  border-radius: 0 var(--radius-lg) 0 0;
}
.challenge-card:hover::before { height: 100%; }
.challenge-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.challenge-icon {
  width: 48px;
  height: 48px;
  background: var(--orange-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: var(--transition);
}
.challenge-card:hover .challenge-icon { background: var(--orange); }
.challenge-icon svg { width: 22px; height: 22px; stroke: var(--orange); transition: stroke 0.3s; }
.challenge-card:hover .challenge-icon svg { stroke: white; }
.challenge-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.challenge-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ═══════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════ */
.services {
  padding: 100px 0;
  background: var(--white);
}
.services-header {
  margin-bottom: 60px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--gray-100);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.service-item {
  background: white;
  padding: 40px 36px;
  transition: var(--transition);
  position: relative;
  cursor: default;
}
.service-item:hover {
  background: var(--navy);
  z-index: 2;
}
.service-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-200);
  letter-spacing: 0.12em;
  margin-bottom: 20px;
  transition: color 0.3s;
  font-variant-numeric: tabular-nums;
}
.service-item:hover .service-num { color: rgba(255,255,255,0.2); }
.service-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-item:hover .service-icon-wrap { background: rgba(232,101,26,0.15); }
.service-icon-wrap svg { width: 24px; height: 24px; stroke: var(--navy); transition: stroke 0.3s; }
.service-item:hover .service-icon-wrap svg { stroke: var(--orange); }
.service-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  transition: color 0.3s;
}
.service-item:hover .service-name { color: white; }
.service-desc {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.8;
  transition: color 0.3s;
}
.service-item:hover .service-desc { color: rgba(255,255,255,0.55); }
.service-arrow {
  position: absolute;
  bottom: 28px;
  left: 28px;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
}
.service-item:hover .service-arrow { opacity: 1; transform: translateY(0); background: rgba(232,101,26,0.2); }
.service-arrow svg { width: 16px; height: 16px; stroke: var(--orange); }

/* ═══════════════════════════════════════════
   PROCESS
═══════════════════════════════════════════ */
.process {
  padding: 100px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.process-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
}
.process-header {
  text-align: center;
  margin-bottom: 70px;
}
.process-header .section-title { color: white; }
.process-header .section-subtitle { color: rgba(255,255,255,0.5); margin: 14px auto 0; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  position: relative;
  z-index: 2;
}
.process-step {
  padding: 40px 30px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.02);
  transition: var(--transition);
  position: relative;
}
.process-step:not(:last-child)::after {
  content: '←';
  position: absolute;
  top: 40px;
  left: -12px;
  color: var(--orange);
  font-size: 18px;
  opacity: 0.4;
  z-index: 3;
}
.process-step:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(232,101,26,0.25);
}
.step-num {
  font-size: 48px;
  font-weight: 800;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}
.step-title {
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}
.step-desc {
  font-size: 13.5px;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  margin-bottom: 20px;
}
.step-deliverable {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 12px 14px;
  background: rgba(232,101,26,0.1);
  border-radius: 8px;
  border: 1px solid rgba(232,101,26,0.2);
}
.step-deliverable-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
  margin-top: 1px;
}
.step-deliverable-text {
  font-size: 12.5px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════
   WHY PIRAMOON
═══════════════════════════════════════════ */
.why {
  padding: 100px 0;
  background: var(--off-white);
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-visual {
  position: relative;
}
.why-visual-inner {
  position: relative;
  width: 100%;
  max-width: 420px;
}
.why-svg-wrap svg { width: 100%; height: auto; }
.why-content {}
.why-points {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.why-point {
  display: flex;
  gap: 16px;
  padding: 20px 24px;
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.why-point:hover { box-shadow: var(--shadow-md); border-color: transparent; transform: translateX(-4px); }
.why-point-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--orange-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  transition: var(--transition);
}
.why-point:hover .why-point-icon { background: var(--orange); }
.why-point-icon svg { width: 18px; height: 18px; stroke: var(--orange); transition: stroke 0.3s; }
.why-point:hover .why-point-icon svg { stroke: white; }
.why-point-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.why-point-desc {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   DASHBOARD SHOWCASE (kept for future use)
═══════════════════════════════════════════ */
.showcase { padding: 100px 0; background: var(--white); overflow: hidden; }
.showcase-header { margin-bottom: 60px; }
.showcase-frame { background: var(--navy); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xl), 0 0 0 1px rgba(13,31,60,0.08); position: relative; }
.showcase-topbar { background: rgba(255,255,255,0.04); padding: 16px 24px; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.showcase-dot { width: 10px; height: 10px; border-radius: 50%; }
.showcase-dot:nth-child(1) { background: rgba(255,255,255,0.15); }
.showcase-dot:nth-child(2) { background: rgba(255,255,255,0.1); }
.showcase-dot:nth-child(3) { background: rgba(255,255,255,0.07); }
.showcase-topbar-title { font-size: 12px; color: rgba(255,255,255,0.3); margin-right: 12px; letter-spacing: 0.05em; }
.showcase-body { padding: 32px; display: grid; grid-template-columns: 220px 1fr; gap: 24px; min-height: 400px; }
.showcase-sidebar { background: rgba(255,255,255,0.03); border-radius: var(--radius-md); padding: 24px 18px; border: 1px solid rgba(255,255,255,0.05); }
.kpi-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius-md); padding: 18px 20px; }
.kpi-label { font-size: 10px; color: rgba(255,255,255,0.3); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; }
.kpi-value { font-size: 22px; font-weight: 800; color: white; letter-spacing: -0.03em; line-height: 1; margin-bottom: 6px; }
.kpi-change { font-size: 11px; color: #4ade80; font-weight: 600; }
.kpi-change.down { color: #f87171; }

/* ═══════════════════════════════════════════
   ARTICLES / BLOG
═══════════════════════════════════════════ */
.articles {
  padding: 100px 0;
  background: var(--off-white);
}
.articles-header {
  margin-bottom: 52px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.articles-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.25s;
}
.articles-link:hover { gap: 10px; }
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.article-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.article-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); border-color: transparent; }
.article-visual {
  height: 180px;
  position: relative;
  overflow: hidden;
}
.article-visual svg { width: 100%; height: 100%; }
.article-cat {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 12px;
  background: var(--navy);
  color: white;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
}
.article-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.article-meta {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: flex;
  gap: 12px;
}
.article-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 10px;
  flex: 1;
  transition: color 0.2s;
}
.article-card:hover .article-title { color: var(--orange); }
.article-excerpt {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.75;
}
.article-read-more {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  margin-top: 18px;
}

/* ═══════════════════════════════════════════
   CONSULTATION FORM
═══════════════════════════════════════════ */
.consult {
  padding: 100px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.consult-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.consult-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.consult-content {}
.consult-title { color: white; }
.consult-subtitle {
  color: rgba(255,255,255,0.55);
  margin-top: 14px;
  max-width: 440px;
  font-size: 16px;
  line-height: 1.8;
}
.consult-trust {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}
.trust-check {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(232,101,26,0.2);
  border: 1px solid rgba(232,101,26,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-check svg { width: 12px; height: 12px; stroke: var(--orange); }
.consult-form-wrap {
  background: white;
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  box-shadow: var(--shadow-xl);
}
.form-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-subtitle {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 28px;
}
.form-group {
  margin-bottom: 18px;
}
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 7px;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-100);
  border-radius: 8px;
  font-size: 14px;
  font-family: var(--font);
  color: var(--text-primary);
  background: var(--gray-50);
  transition: var(--transition);
  direction: rtl;
}
.form-control:focus {
  outline: none;
  border-color: var(--orange);
  background: white;
  box-shadow: 0 0 0 3px rgba(232,101,26,0.1);
}
.form-control::placeholder { color: var(--gray-400); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
textarea.form-control { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%;
  padding: 15px;
  background: var(--navy);
  color: white;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 6px;
}
.form-submit:hover { background: var(--navy-mid); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(13,31,60,0.4); }
.form-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.form-privacy {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 14px;
}
/* Honeypot field - hidden from humans */
.form-honeypot { display: none !important; visibility: hidden; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
  background: var(--gray-800);
  padding: 60px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 32px;
}
.footer-brand {}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.footer-logo-fa {
  font-size: 22px;
  font-weight: 800;
  color: white;
}
.footer-logo-en {
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: block;
}
.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  cursor: pointer;
}
.social-btn:hover { background: var(--orange); }
.social-btn svg { width: 16px; height: 16px; stroke: rgba(255,255,255,0.6); transition: stroke 0.2s; }
.social-btn:hover svg { stroke: white; }
.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  color: white;
  margin-bottom: 18px;
  letter-spacing: 0.05em;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.8); }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 12px;
  transition: color 0.2s;
}
.footer-contact-item:hover { color: rgba(255,255,255,0.8); }
.footer-contact-item svg { width: 15px; height: 15px; stroke: var(--orange); flex-shrink: 0; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.25);
}
.footer-copy span { color: rgba(255,255,255,0.4); }

/* ═══════════════════════════════════════════
   SCROLL TO TOP
═══════════════════════════════════════════ */
.scroll-top {
  position: fixed;
  bottom: 32px;
  left: 32px;
  width: 44px;
  height: 44px;
  background: var(--orange);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  transition: var(--transition);
  z-index: 900;
  box-shadow: 0 4px 16px rgba(232,101,26,0.4);
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { transform: translateY(-3px); }
.scroll-top svg { width: 18px; height: 18px; stroke: white; }

/* ═══════════════════════════════════════════
   BLOG PAGE
═══════════════════════════════════════════ */
.blog-hero {
  background: var(--navy);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.blog-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
}
.blog-hero-inner {
  position: relative;
  z-index: 2;
}
.blog-hero-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: white;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.blog-hero-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  max-width: 500px;
  line-height: 1.8;
}
.blog-main {
  padding: 80px 0 100px;
  background: var(--off-white);
}
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}
.blog-posts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.blog-post-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-post-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.blog-post-thumb {
  height: 160px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-post-thumb-icon {
  opacity: 0.15;
}
.blog-post-thumb-icon svg { width: 64px; height: 64px; stroke: white; }
.blog-post-cat {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 4px 12px;
  background: var(--orange);
  color: white;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
}
.blog-post-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-post-meta {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.blog-post-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 10px;
  flex: 1;
  transition: color 0.2s;
}
.blog-post-card:hover .blog-post-title { color: var(--orange); }
.blog-post-excerpt {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
}
.blog-post-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: sticky;
  top: 96px;
}
.sidebar-widget {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--gray-100);
}
.sidebar-widget-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--gray-100);
}
.sidebar-cats {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sidebar-cat-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13.5px;
  color: var(--text-secondary);
  transition: var(--transition);
  cursor: pointer;
}
.sidebar-cat-item:hover, .sidebar-cat-item.active {
  background: var(--orange-pale);
  color: var(--orange);
}
.sidebar-cat-count {
  font-size: 11px;
  background: var(--gray-100);
  color: var(--text-muted);
  padding: 2px 8px;
  border-radius: 100px;
  font-weight: 600;
}
.sidebar-cat-item.active .sidebar-cat-count,
.sidebar-cat-item:hover .sidebar-cat-count {
  background: rgba(232,101,26,0.15);
  color: var(--orange);
}
.sidebar-cta {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
}
.sidebar-cta-title {
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
  line-height: 1.4;
}
.sidebar-cta-text {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
  line-height: 1.7;
}
.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 52px;
}
.page-btn {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  background: white;
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  cursor: pointer;
  font-family: var(--font);
}
.page-btn:hover, .page-btn.active {
  background: var(--navy);
  color: white;
  border-color: transparent;
}
.blog-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}
.blog-empty svg { width: 48px; height: 48px; stroke: var(--gray-200); margin: 0 auto 16px; }

/* ═══════════════════════════════════════════
   BLOG SINGLE POST
═══════════════════════════════════════════ */
.post-hero {
  background: var(--navy);
  padding: 140px 0 60px;
  position: relative;
  overflow: hidden;
}
.post-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.post-cat-badge {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(232,101,26,0.15);
  border: 1px solid rgba(232,101,26,0.3);
  color: var(--orange);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 20px;
}
.post-title {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 800;
  color: white;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.post-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}
.post-meta-sep { color: rgba(255,255,255,0.2); }
.post-content-wrap {
  padding: 72px 0 100px;
  background: var(--white);
}
.post-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 64px;
  align-items: start;
}
.post-content {
  max-width: 100%;
}
.post-content h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin: 40px 0 16px;
  line-height: 1.3;
}
.post-content h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin: 30px 0 12px;
}
.post-content p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 20px;
}
.post-content ul, .post-content ol {
  margin: 16px 0 20px 0;
  padding-right: 24px;
}
.post-content ul { list-style: disc; }
.post-content ol { list-style: decimal; }
.post-content li {
  font-size: 15.5px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 8px;
}
.post-content blockquote {
  border-right: 3px solid var(--orange);
  padding: 16px 20px;
  background: var(--orange-pale);
  border-radius: 0 8px 8px 0;
  margin: 24px 0;
  font-size: 16px;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.7;
}
.post-content strong { color: var(--navy); font-weight: 700; }
.post-share {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-100);
}
.post-share-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}
.share-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  cursor: pointer;
}
.share-btn:hover { background: var(--navy); border-color: transparent; }
.share-btn svg { width: 15px; height: 15px; stroke: var(--text-muted); transition: stroke 0.2s; }
.share-btn:hover svg { stroke: white; }
.post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 48px;
}
.post-nav-item {
  padding: 20px 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.post-nav-item:hover { border-color: var(--orange); box-shadow: var(--shadow-md); }
.post-nav-dir {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 6px;
}
.post-nav-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
  transition: color 0.2s;
}
.post-nav-item:hover .post-nav-title { color: var(--orange); }
.post-sidebar {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ═══════════════════════════════════════════
   ADMIN PANEL
═══════════════════════════════════════════ */
.admin-body {
  background: var(--gray-50);
  min-height: 100vh;
  direction: rtl;
  font-family: var(--font);
}
.admin-login-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  padding: 24px;
}
.admin-login-box {
  background: white;
  border-radius: var(--radius-xl);
  padding: 48px 44px;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-xl);
}
.admin-login-logo {
  text-align: center;
  margin-bottom: 32px;
}
.admin-login-logo-name {
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}
.admin-login-logo-sub {
  font-size: 13px;
  color: var(--text-muted);
}
.admin-login-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
  text-align: center;
}
.admin-alert {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 13.5px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.admin-alert.error {
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.2);
  color: #dc2626;
}
.admin-alert.success {
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.2);
  color: #16a34a;
}
.admin-alert svg { width: 16px; height: 16px; flex-shrink: 0; }
/* Admin layout */
.admin-layout {
  display: flex;
  min-height: 100vh;
}
.admin-sidebar {
  width: 260px;
  background: var(--navy);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
}
.admin-sidebar-logo {
  padding: 24px 24px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.admin-sidebar-logo-name {
  font-size: 20px;
  font-weight: 800;
  color: white;
  line-height: 1.1;
}
.admin-sidebar-logo-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  margin-top: 3px;
  letter-spacing: 0.08em;
}
.admin-nav {
  padding: 20px 16px;
  flex: 1;
}
.admin-nav-section {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0 8px;
  margin: 20px 0 8px;
}
.admin-nav-section:first-child { margin-top: 0; }
.admin-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
  margin-bottom: 2px;
  cursor: pointer;
}
.admin-nav-item:hover { background: rgba(255,255,255,0.06); color: white; }
.admin-nav-item.active { background: rgba(232,101,26,0.15); color: white; }
.admin-nav-item.active svg { stroke: var(--orange); }
.admin-nav-item svg { width: 16px; height: 16px; stroke: rgba(255,255,255,0.4); transition: stroke 0.2s; flex-shrink: 0; }
.admin-nav-item:hover svg { stroke: rgba(255,255,255,0.8); }
.admin-sidebar-footer {
  padding: 16px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.admin-logout-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  transition: var(--transition);
}
.admin-logout-btn:hover { background: rgba(239,68,68,0.1); color: #f87171; }
.admin-logout-btn svg { width: 16px; height: 16px; stroke: currentColor; }
.admin-main {
  margin-right: 260px;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.admin-topbar {
  background: white;
  border-bottom: 1px solid var(--gray-100);
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 50;
}
.admin-topbar-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
}
.admin-topbar-user {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-secondary);
}
.admin-topbar-avatar {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--orange-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
}
.admin-content {
  padding: 32px;
  flex: 1;
}
.admin-page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.admin-page-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
}
.admin-page-subtitle {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-top: 3px;
}
/* Stats cards */
.admin-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.admin-stat-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 22px 24px;
  border: 1px solid var(--gray-100);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.admin-stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--orange-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.admin-stat-icon svg { width: 20px; height: 20px; stroke: var(--orange); }
.admin-stat-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.admin-stat-value {
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.03em;
}
/* Data table */
.admin-card {
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
  overflow: hidden;
}
.admin-card-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.admin-card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
}
.admin-table th {
  text-align: right;
  padding: 12px 20px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-100);
}
.admin-table td {
  padding: 14px 20px;
  font-size: 13.5px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--gray-50);
  vertical-align: middle;
}
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--gray-50); }
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
}
.status-badge.published { background: rgba(34,197,94,0.1); color: #16a34a; }
.status-badge.draft { background: rgba(234,179,8,0.1); color: #b45309; }
.status-badge.new { background: rgba(59,130,246,0.1); color: #1d4ed8; }
.status-dot { width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
.action-btns { display: flex; gap: 8px; }
.action-btn {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  border: 1px solid var(--gray-100);
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font);
}
.action-btn:hover { border-color: var(--navy); background: var(--navy); }
.action-btn svg { width: 14px; height: 14px; stroke: var(--text-muted); transition: stroke 0.2s; }
.action-btn:hover svg { stroke: white; }
.action-btn.danger:hover { border-color: #ef4444; background: #ef4444; }
/* Post editor */
.post-editor {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 24px;
  align-items: start;
}
.editor-main {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.editor-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 80px;
}
.editor-card {
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
  overflow: hidden;
}
.editor-card-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--gray-100);
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}
.editor-card-body {
  padding: 20px;
}
.admin-form-group { margin-bottom: 16px; }
.admin-form-group:last-child { margin-bottom: 0; }
.admin-form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.admin-form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--gray-100);
  border-radius: 8px;
  font-size: 14px;
  font-family: var(--font);
  color: var(--text-primary);
  background: var(--gray-50);
  transition: var(--transition);
  direction: rtl;
}
.admin-form-control:focus {
  outline: none;
  border-color: var(--orange);
  background: white;
  box-shadow: 0 0 0 3px rgba(232,101,26,0.08);
}
textarea.admin-form-control { resize: vertical; min-height: 360px; line-height: 1.7; }
.admin-form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239a9a92' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 12px center;
}
.btn-admin-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--navy);
  color: white;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
  font-family: var(--font);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.btn-admin-primary:hover { background: var(--navy-mid); transform: translateY(-1px); }
.btn-admin-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: white;
  color: var(--text-secondary);
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
  font-family: var(--font);
  border: 1.5px solid var(--gray-100);
  cursor: pointer;
  transition: var(--transition);
}
.btn-admin-secondary:hover { border-color: var(--navy); color: var(--navy); }
.btn-admin-orange {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--orange);
  color: white;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
  font-family: var(--font);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.btn-admin-orange:hover { background: var(--orange-light); transform: translateY(-1px); }
/* Consultation requests table */
.consult-detail {
  background: var(--gray-50);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 300px;
}
/* Responsive admin */
@media (max-width: 1024px) {
  .admin-stats-row { grid-template-columns: repeat(2, 1fr); }
  .post-editor { grid-template-columns: 1fr; }
  .editor-sidebar { position: static; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 110px 0 60px; }
  .hero-visual { display: none; }
  .why-inner { grid-template-columns: 1fr; gap: 40px; }
  .why-visual { display: none; }
  .consult-inner { grid-template-columns: 1fr; gap: 48px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .process-step:not(:last-child)::after { display: none; }
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
  .post-layout { grid-template-columns: 1fr; }
  .post-sidebar { position: static; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-mobile-btn { display: flex; }
  .challenges-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .articles-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .blog-posts-grid { grid-template-columns: 1fr; }
  .admin-stats-row { grid-template-columns: 1fr 1fr; }
  .post-nav { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .challenges-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .consult-form-wrap { padding: 28px 20px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .admin-stats-row { grid-template-columns: 1fr; }
}
