/* ── Hero ── */
.hp-hero {
  background: linear-gradient(160deg, var(--c-primary-bg) 0%, #f8fbf4 50%, var(--c-secondary-bg) 100%);
  padding: 40px 24px 48px;
  position: relative;
  overflow: hidden;
}
.hp-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--c-primary);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 100px;
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-sm);
  margin-bottom: 22px;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--c-primary);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }

.hp-hero h1 { font-size: 44px; font-weight: 700; line-height: 1.35; margin-bottom: 18px; }
.hp-hero h1 em { font-style: normal; color: var(--c-primary); }
.hero-sub { font-size: 18px; color: var(--c-muted); margin-bottom: 24px; line-height: 1.8; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 36px; margin-top: 28px; padding-top: 24px;
  border-top: 1px solid var(--c-border);
}
.stat-num  { font-size: 28px; font-weight: 700; color: var(--c-primary); }
.stat-label { font-size: 13px; color: var(--c-muted); margin-top: -2px; }

.hero-visual {
  background: white;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}
.hero-img { width: 100%; height: 420px; object-fit: cover; object-position: center top; display: block; }
.hero-floating {
  position: absolute; bottom: 20px; left: 20px;
  background: white;
  border-radius: var(--r-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 12px;
}
.hero-floating-icon {
  width: 42px; height: 42px;
  border-radius: var(--r-sm);
  background: var(--c-primary-bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.hero-floating strong { display: block; color: var(--c-primary); font-size: 15px; }
.hero-floating span   { font-size: 13px; color: var(--c-muted); }

/* ── Services Grid ── */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.svc-card {
  background: white;
  border-radius: var(--r-lg);
  padding: 32px 28px;
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-sm);
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.svc-card::after {
  content: ''; position: absolute; top: 0; right: 0;
  width: 4px; height: 100%; background: var(--c-primary);
  opacity: 0; transition: opacity .3s;
}
.svc-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--c-primary-bg); }
.svc-card:hover::after { opacity: 1; }
.svc-icon {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  background: var(--c-primary-bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}
.svc-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 10px; }
.svc-card p  { color: var(--c-muted); font-size: 15px; line-height: 1.8; margin-bottom: 20px; }
.svc-link {
  color: var(--c-primary);
  font-size: 14px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px;
  cursor: pointer;
}
.svc-link:hover { text-decoration: underline; color: var(--c-primary); }

/* ── About Snippet ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-photo-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-md);
}
.about-photo-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.photo-badge {
  position: absolute; bottom: 20px; right: 20px; left: 20px;
  background: white;
  padding: 14px 16px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
}
.photo-badge strong { display: block; font-size: 15px; color: var(--c-primary); margin-bottom: 2px; }
.photo-badge span   { font-size: 13px; color: var(--c-muted); }
.about-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0 28px; }

/* ── About Full Page ── */
.about-page-in {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: start;
}
.sidebar-photo {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 24px;
}
.sidebar-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.cert-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  border-radius: var(--r-md);
  background: var(--c-primary-bg);
  margin-bottom: 10px;
}
.cert-icon { font-size: 20px; }
.cert-label { font-size: 13px; font-weight: 600; color: var(--c-primary); }
.about-content h2 { font-size: 28px; font-weight: 700; margin-bottom: 20px; }
.about-content p  { color: var(--c-muted); margin-bottom: 16px; line-height: 1.9; font-size: 16px; }
.about-content h3 { font-size: 20px; font-weight: 700; margin: 32px 0 16px; color: var(--c-text); }

/* ── Packages Overview Cards ── */
.pkgs-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 860px;
  margin: 0 auto;
}
.pkg-overview-card {
  background: var(--c-bg);
  border: 2px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
  cursor: pointer;
  text-decoration: none;
  color: var(--c-text) !important;
}
.pkg-overview-card:hover {
  border-color: var(--c-primary-l);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  color: var(--c-text) !important;
}
.pkg-overview-icon {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  background: var(--c-primary-bg);
  display: flex; align-items: center; justify-content: center;
}
.pkg-overview-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.pkg-overview-card p  { color: var(--c-muted); font-size: 15px; line-height: 1.8; margin: 0; }
.pkg-overview-cta     { color: var(--c-primary); font-size: 14px; font-weight: 600; margin-top: auto; }

/* ── فوتر ── */
.hp-footer {
  background: #1e2419;
  color: rgba(255,255,255,.65);
  padding: 56px 24px 28px;
}
.hp-footer-inner { max-width: var(--max-w); margin: 0 auto; }
.hp-footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.hp-footer-brand {
  color: white;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hp-footer-desc { font-size: 14px; line-height: 1.9; }
.hp-footer-col h4 {
  color: white; font-size: 13px; font-weight: 600;
  margin-bottom: 14px; text-transform: uppercase; letter-spacing: .5px;
}
.hp-footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.hp-footer-col ul a {
  color: rgba(255,255,255,.55);
  font-size: 14px;
  transition: color .2s;
}
.hp-footer-col ul a:hover { color: white; }
.hp-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}

/* ── Free videos intro ── */
.free-intro {
  max-width: 680px;
  margin: 0 auto 28px;
  text-align: center;
  color: var(--c-muted);
  font-size: 16px;
  line-height: 1.9;
}
