/**
 * أونلي - UNLY Master Stylesheet
 * Complete UI & Responsive Wizard Framework
 */

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@600;700;800;900&family=Tajawal:wght@400;500;700&display=swap');

:root {
  --font-heading: 'Cairo', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Tajawal', -apple-system, BlinkMacSystemFont, sans-serif;

  --primary: #10B981;
  --primary-hover: #059669;
  --primary-dark: #047857;
  --primary-deep: #064E3B;
  --primary-light: #ECFDF5;
  --primary-subtle: rgba(16, 185, 129, 0.08);
  --primary-glow: rgba(16, 185, 129, 0.35);
  --primary-gradient: linear-gradient(135deg, #10B981 0%, #059669 100%);
  --primary-gradient-hover: linear-gradient(135deg, #34D399 0%, #10B981 100%);
  
  --inv-bg-dark: #03150d;
  --inv-bg-card: rgba(255, 255, 255, 0.04);
  --inv-accent-emerald: #10B981;
  --inv-accent-mint: #34D399;
  --inv-accent-gold: #F59E0B;

  --bg-page: #F8FAFC;
  --bg-card: #FFFFFF;
  --bg-subtle: #F1F5F9;

  --text-main: #0F172A;
  --text-body: #1E293B;
  --text-muted: #475569;
  --text-subtle: #64748B;
  --text-disabled: #94A3B8;

  --border-light: #E2E8F0;
  --border-medium: #CBD5E1;
  --border-focus: #10B981;

  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-pill: 9999px;

  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 12px 28px -4px rgba(15, 23, 42, 0.08), 0 4px 10px -2px rgba(15, 23, 42, 0.03);
}

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

html, body {
  min-height: 100%;
  background-color: var(--bg-page);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .logo, .btn-glow, .btn-ghost, .btn-outline, .badge, .nav-links, .et-sec-h, .legal-h2, .inv-hero-title, .how-title, .about-title, .contact-title, .pr-title, .et-title {
  font-family: var(--font-heading) !important;
}

p, span, li, a, label, input, select, textarea, .pr-p, .et-p, .legal-p, .how-step-desc, .about-card-desc, .contact-card-desc {
  font-family: var(--font-body);
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, select, textarea {
  font-size: inherit;
  outline: none;
}

.wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ================= Header & Navbar (Dark Emerald Glass) ================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(1, 24, 12, 0.92) !important;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(16, 185, 129, 0.22) !important;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.4);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.35rem;
  font-weight: 900;
  color: #FFFFFF !important;
  text-decoration: none;
}

.logo .disp {
  letter-spacing: -0.02em;
  color: #FFFFFF !important;
  font-weight: 800;
  -webkit-text-fill-color: initial;
}

.logo .dot {
  color: var(--primary);
  font-size: 14px;
}

.logo .logo-sub {
  font-size: 11px;
  font-weight: 700;
  color: #34D399;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 2px 8px;
  border-radius: 6px;
  margin-inline-start: 6px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14.5px;
  font-weight: 700;
  color: #E2E8F0 !important;
}

.nav-links a {
  color: #E2E8F0 !important;
  transition: all 0.25s ease;
  position: relative;
}

.nav-links a:hover {
  color: #34D399 !important;
  transform: translateY(-1px);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 800;
  color: #E2E8F0 !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(16, 185, 129, 0.3) !important;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  transition: all 0.25s ease;
}

.lang-switcher:hover {
  background: rgba(16, 185, 129, 0.2) !important;
  border-color: #10B981 !important;
  color: #FFFFFF !important;
}

.btn-glow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #10B981 0%, #059669 100%) !important;
  color: #FFFFFF !important;
  font-family: var(--font-heading) !important;
  font-weight: 800;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.4);
  transition: all 0.25s ease;
  text-decoration: none;
  padding: 12px 28px;
  font-size: 14px;
}

.btn-glow:hover {
  background: linear-gradient(135deg, #34D399 0%, #10B981 100%) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.55);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06) !important;
  color: #FFFFFF !important;
  border: 1.5px solid rgba(16, 185, 129, 0.35) !important;
  font-family: var(--font-heading) !important;
  font-weight: 700;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.25s ease;
  padding: 10px 22px;
  font-size: 14px;
  text-decoration: none;
}

.btn-ghost:hover {
  background: rgba(16, 185, 129, 0.2) !important;
  border-color: #10B981 !important;
  color: #FFFFFF !important;
  transform: translateY(-1px);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(16, 185, 129, 0.35);
  color: #FFFFFF;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading) !important;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
  text-decoration: none;
}

.btn-outline:hover {
  border-color: #10B981;
  background: rgba(16, 185, 129, 0.15);
  color: #34D399;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--bg-subtle);
  color: var(--text-main);
  border: 1px solid var(--border-light);
  font-weight: 700;
  border-radius: var(--radius-pill);
  cursor: pointer;
  padding: 10px 22px;
  font-size: 14px;
}

.hover-scale {
  transition: transform 0.25s ease;
}
.hover-scale:hover {
  transform: scale(1.025);
}

/* ================= 5-Step Wizard UI ================= */
.wiz-top {
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.02);
}

.wiz-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.wiz-back {
  background: transparent;
  border: 1.5px solid var(--border-light);
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 13.5px;
  transition: all 0.2s ease;
}

.wiz-back:hover {
  background: var(--bg-subtle);
  color: var(--text-main);
  border-color: var(--border-medium);
}

.wiz-progress-txt {
  font-size: 13.5px;
  color: var(--text-subtle);
}

.wiz-progress-txt b {
  color: var(--primary-dark);
}

.lang-btn {
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  padding: 5px 12px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  color: var(--text-main);
}

.bar-outer {
  width: 100%;
  height: 4px;
  background: #E2E8F0;
}

.bar-inner {
  height: 100%;
  background: var(--primary-gradient);
  transition: width 0.35s ease;
}

.wiz-body {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: calc(100vh - 68px);
  background: var(--bg-page);
}

.wiz-side {
  background: #FFFFFF;
  border-inline-end: 1px solid var(--border-light);
  padding: 32px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wiz-side-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14px;
  color: var(--text-subtle);
  cursor: pointer;
  transition: all 0.2s ease;
}

.wiz-side-item:hover {
  background: var(--bg-subtle);
  color: var(--text-main);
}

.wiz-side-item .n {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  background: var(--bg-subtle);
  color: var(--text-subtle);
  flex-shrink: 0;
}

.wiz-side-item.active {
  background: var(--primary-light);
  color: var(--primary-deep);
  border: 1px solid rgba(16, 185, 129, 0.3);
  font-weight: 800;
}

.wiz-side-item.active .n {
  background: var(--primary);
  color: #FFFFFF;
}

.wiz-side-item.done {
  color: var(--text-main);
}

.wiz-side-item.done .n {
  background: #D1FAE5;
  color: var(--primary-deep);
}

.wiz-main {
  padding: 40px 32px 80px;
  max-width: 860px;
  width: 100%;
  margin: 0 auto;
}

.step-eyebrow {
  font-size: 13px;
  font-weight: 800;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.step-title {
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 8px;
}

.step-sub {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 30px;
}

/* ================= Form Fields ================= */
.row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.row3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
  width: 100%;
}

.field label {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 6px;
}

.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  background: #FFFFFF;
  border: 1.5px solid var(--border-medium);
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  color: var(--text-main);
  font-family: 'Cairo', sans-serif;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-sm);
}

.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--primary);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.18);
}

.file-drop {
  border: 2px dashed var(--border-medium);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  background: #F8FAFC;
  cursor: pointer;
  transition: all 0.2s ease;
}

.file-drop:hover {
  border-color: var(--primary);
  background: var(--primary-light);
}

.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: #FFFFFF;
  border: 1.5px solid var(--border-medium);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.15s ease;
}

.chip:hover {
  border-color: var(--primary);
  color: var(--primary-dark);
}

.chip.active {
  background: var(--primary);
  color: #FFFFFF !important;
  border-color: var(--primary);
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.card-glass {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}

.wiz-footer-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
  gap: 16px;
}

.save-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-subtle);
  font-weight: 600;
}

.dot2 {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  display: inline-block;
}

/* ================= 10 CV Templates Grid & Selector ================= */
.cv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.cv-card {
  background: #FFFFFF;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 16px;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
}

.cv-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.cv-card.active {
  border-color: var(--primary);
  background: var(--primary-light);
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.25);
}

.cv-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cv-modal-inner {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

/* ================= Landing Page & Sections ================= */
.section {
  padding: 85px 0;
  position: relative;
}

.section-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 48px;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  font-weight: 900;
  color: #FFFFFF !important;
  margin-bottom: 12px;
  line-height: 1.3;
  font-family: var(--font-heading) !important;
  background: linear-gradient(135deg, #FFFFFF 0%, #34D399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-head p {
  font-size: 15.5px;
  color: #D1D5DB;
  line-height: 1.8;
  font-family: var(--font-body);
}

.steps4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.step4 {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(16, 185, 129, 0.22);
  border-radius: 18px;
  padding: 28px 24px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  transition: all 0.25s ease;
}

.step4:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(16, 185, 129, 0.2);
  border-color: #10B981;
  background: rgba(255, 255, 255, 0.055);
}

.step4 .num {
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 8px;
  margin-bottom: 14px;
  background: rgba(16, 185, 129, 0.15);
  color: #34D399;
  border: 1px solid rgba(16, 185, 129, 0.3);
  font-family: var(--font-heading);
}

.step4 h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 8px;
  font-family: var(--font-heading);
}

.step4 p {
  font-size: 14.5px;
  color: #D1D5DB;
  line-height: 1.75;
  font-family: var(--font-body);
}

.repeat-card {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(16, 185, 129, 0.22);
  border-radius: 18px;
  padding: 22px 26px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  transition: all 0.25s ease;
}

.repeat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(16, 185, 129, 0.15);
  border-color: #10B981;
}

.cta-banner {
  background: radial-gradient(circle at 50% 50%, #064E3B 0%, #03150d 100%);
  border-top: 1px solid rgba(16, 185, 129, 0.25);
  border-bottom: 1px solid rgba(16, 185, 129, 0.25);
  color: #FFFFFF;
  padding: 75px 24px;
  text-align: center;
}

.cta-banner h2 {
  color: #FFFFFF;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  margin-bottom: 24px;
  font-family: var(--font-heading);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #34D399;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.35);
  padding: 5px 16px;
  border-radius: 30px;
  margin-bottom: 14px;
  font-family: var(--font-heading);
}

.eyebrow .ln {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 8px #10B981;
}

/* ================= Footer ================= */
.site.glass-panel {
  background: #061109 !important;
  color: #CBD5E1;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 30px;
  padding: 60px 24px;
}

.foot-grid h4 {
  color: #FFFFFF;
  font-size: 14.5px;
  font-weight: 800;
  margin-bottom: 18px;
}

.foot-grid a {
  color: #94A3B8;
  font-size: 13.5px;
}

.foot-grid a:hover {
  color: var(--primary);
}

/* ================= Mobile Navigation Drawer & Hamburger ================= */
.mobile-burger-btn {
  display: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 8px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  z-index: 1001;
  transition: all 0.25s ease;
}

.mobile-burger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: #FFFFFF;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-burger-btn:hover {
  background: rgba(16, 185, 129, 0.2);
  border-color: #10B981;
}

.mobile-burger-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-burger-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-burger-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav-drawer {
  position: fixed;
  top: 72px;
  inset-inline-end: 0;
  width: 100%;
  max-width: 320px;
  height: calc(100vh - 72px);
  background: rgba(1, 24, 12, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-inline-start: 1px solid rgba(16, 185, 129, 0.25);
  box-shadow: -10px 0 30px rgba(0,0,0,0.5);
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

[dir="rtl"] .mobile-nav-drawer {
  transform: translateX(-100%);
}

.mobile-nav-drawer.active {
  transform: translateX(0) !important;
}

.mobile-nav-inner {
  padding: 30px 24px 60px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 10px;
  color: #E2E8F0;
  font-size: 15.5px;
  font-weight: 700;
  transition: all 0.2s ease;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav-link:hover {
  background: rgba(16, 185, 129, 0.15);
  color: #34D399;
  border-color: rgba(16, 185, 129, 0.3);
}

.mobile-nav-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 12px 0;
}

.mobile-lang-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 14px;
}

/* ================= Static Pages (Glassmorphic Emerald Luxury) ================= */
.static-page-content {
  background: rgba(3, 21, 13, 0.88);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 20px;
  padding: 50px 40px;
  margin: 40px auto 60px auto;
  max-width: 980px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 35px rgba(16, 185, 129, 0.15);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: #E5E7EB;
  position: relative;
  overflow: hidden;
}

.static-page-content h1 {
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #FFFFFF 0%, #34D399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.static-page-content h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #34D399;
  margin: 32px 0 14px 0;
  border-bottom: 1px solid rgba(16, 185, 129, 0.2);
  padding-bottom: 8px;
}

.static-page-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #A7F3D0;
  margin: 24px 0 10px 0;
}

.static-page-content p {
  font-size: 15.5px;
  line-height: 1.85;
  color: #D1D5DB;
  margin-bottom: 16px;
}

.static-page-content ul, .static-page-content ol {
  margin: 16px 0 24px 24px;
  padding: 0;
}

[dir="rtl"] .static-page-content ul, [dir="rtl"] .static-page-content ol {
  margin: 16px 24px 24px 0;
}

.static-page-content li {
  margin-bottom: 10px;
  line-height: 1.75;
  color: #E5E7EB;
}

.static-page-content a {
  color: #34D399;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: all 0.2s ease;
}

.static-page-content a:hover {
  color: #10B981;
  text-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
}

/* ================= Responsive Queries ================= */
@media (max-width: 992px) {
  .wiz-body {
    grid-template-columns: 1fr;
  }
  .wiz-side {
    display: none;
  }
  .steps4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }
  .nav-links, .nav-right {
    display: none !important;
  }
  .mobile-burger-btn {
    display: flex !important;
  }
}

@media (max-width: 640px) {
  .row2, .row3 {
    grid-template-columns: 1fr;
  }
  .steps4 {
    grid-template-columns: 1fr;
  }
  .foot-grid {
    grid-template-columns: 1fr;
  }
  .wiz-main {
    padding: 24px 16px 60px;
  }
  .static-page-content {
    padding: 30px 18px;
    margin: 20px 12px 40px;
  }
}
