/* ============================================================
   نظم مصر — Landing Page
   ============================================================ */
:root {
  --bg: #f6f1e8;
  --bg-2: #fbf6ec;
  --card: #ffffff;
  --ink: #2b2d3a;
  --ink-2: #4a4d5b;
  --muted: #8a8576;
  --muted-2: #b5ad97;
  --line: #e7dfcf;
  --line-strong: #d8ccb3;

  --gold: #c5a572;
  --gold-d: #b8945f;
  --gold-dd: #a8884f;
  --gold-soft: #f3e9d3;
  --gold-softer: #faf3e3;
  --gold-grad: linear-gradient(135deg, #d9b97a 0%, #b8945f 100%);
  --gold-grad-deep: linear-gradient(135deg, #c5a572 0%, #8e6a3b 100%);

  --dark: #1f2230;
  --dark-2: #2b2d3a;

  --green: #4f9d6b;
  --red: #c4574b;
  --amber: #d9883a;
  --blue: #4b6b9d;

  --shadow-sm: 0 2px 6px rgba(43, 45, 58, 0.05);
  --shadow: 0 8px 24px -8px rgba(43, 45, 58, 0.15);
  --shadow-lg: 0 20px 50px -16px rgba(43, 45, 58, 0.25);
  --shadow-gold: 0 12px 32px -8px rgba(184, 148, 95, 0.4);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Cairo', 'Tajawal', Tahoma, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
/* العناوين الرئيسية بخط Reem Kufi الهندسي — متناسق مع هوية الشعار */
.section-head h2,
.cta-box h2,
.product-text h3,
.role-card h3,
.value-card h3,
.step h4,
.feat h4,
.show-card h4 {
  font-family: 'Reem Kufi', 'Cairo', sans-serif;
  font-weight: 700;
  letter-spacing: -0.3px;
}
.section-head h2 { line-height: 1.45; font-weight: 700; }
.product-text h3 { line-height: 1.4; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.mono { font-variant-numeric: tabular-nums; }

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 14px;
  border: 1.5px solid transparent;
  text-decoration: none;
  transition: all .2s cubic-bezier(.4,0,.2,1);
  cursor: pointer;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold-grad);
  color: #fff;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -10px rgba(184, 148, 95, .55);
  filter: brightness(1.05);
}
.btn-dark {
  background: var(--dark);
  color: #fff;
}
.btn-dark:hover {
  background: var(--dark-2);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-outline:hover {
  background: var(--gold-softer);
  border-color: var(--gold);
  color: var(--gold-d);
}
.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.3);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,.1);
  border-color: #fff;
}
.btn-lg {
  padding: 14px 28px;
  font-size: 15px;
  border-radius: 14px;
}
.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
  border-radius: 10px;
}
.btn-arrow {
  font-size: 18px;
  transition: transform .2s;
}
.btn:hover .btn-arrow {
  transform: translateX(-4px);
}

/* ============ Navigation ============ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(246, 241, 232, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: all .25s;
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gold-grad);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: 'Reem Kufi', sans-serif;
  font-weight: 700;
  font-size: 22px;
  box-shadow: var(--shadow-gold);
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-text strong {
  font-family: 'Reem Kufi', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}
.brand-text span {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 2px;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  font-weight: 700;
  font-size: 14px;
  color: var(--ink-2);
  transition: color .15s;
  position: relative;
}
.nav-links a:hover {
  color: var(--gold-d);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width .2s;
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 22px;
  color: var(--ink);
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    right: 0;
    left: 0;
    background: #fff;
    padding: 20px;
    gap: 14px;
    box-shadow: var(--shadow);
    border-top: 1px solid var(--line);
  }
}

/* ============ Hero ============ */
.hero {
  position: relative;
  padding: 120px 0 60px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
  animation: float 8s ease-in-out infinite;
}
.hero-shape.s1 {
  width: 400px;
  height: 400px;
  background: var(--gold);
  top: -80px;
  right: -120px;
}
.hero-shape.s2 {
  width: 300px;
  height: 300px;
  background: var(--gold-soft);
  bottom: 20%;
  left: -80px;
  animation-delay: -3s;
}
.hero-shape.s3 {
  width: 250px;
  height: 250px;
  background: #f5e2b4;
  top: 30%;
  right: 30%;
  animation-delay: -6s;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -30px) scale(1.05); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
}

.hero-chip {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(255,255,255,.7);
  border: 1px solid var(--gold-soft);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--gold-d);
  margin-bottom: 22px;
  backdrop-filter: blur(8px);
}
.hero-title {
  font-family: 'Reem Kufi', 'Cairo', sans-serif;
  font-size: clamp(36px, 5.5vw, 60px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 22px;
  letter-spacing: -0.5px;
}
.hero-title .gold-text {
  font-family: inherit;
  font-weight: 700;
}
.hero-sub {
  font-size: 17px;
  color: var(--ink-2);
  margin-bottom: 32px;
  max-width: 540px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.stat-num {
  font-size: 36px;
  font-weight: 900;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
  margin-top: 4px;
}

/* ============ Mockup window (hero) ============ */
.hero-preview {
  position: relative;
}
.mockup-window {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  transform: perspective(1200px) rotateY(6deg) rotateX(-1deg);
  transition: transform .4s;
}
.mockup-window:hover {
  transform: perspective(1200px) rotateY(0deg) rotateX(0deg);
}
.mockup-window.big {
  transform: none;
}
.mockup-bar {
  background: #f0eadf;
  padding: 12px 14px;
  display: flex;
  gap: 6px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.mockup-bar .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.mockup-bar .dot.red { background: #ff5f57; }
.mockup-bar .dot.yellow { background: #febc2e; }
.mockup-bar .dot.green { background: #28c840; }
.mockup-url {
  margin-inline-start: 14px;
  font-size: 11.5px;
  color: var(--muted);
  font-weight: 700;
}
.mockup-body {
  display: grid;
  grid-template-columns: 130px 1fr;
  min-height: 360px;
}
.mockup-sidebar {
  background: var(--dark);
  padding: 18px 10px;
  color: #cfd2d8;
}
.m-logo {
  width: 36px;
  height: 36px;
  background: var(--gold-grad);
  border-radius: 9px;
  display: grid;
  place-items: center;
  color: #fff;
  font-family: 'Reem Kufi', sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin: 0 auto 16px;
}
.m-nav-item {
  padding: 8px 10px;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 600;
  color: #8e8a80;
  margin-bottom: 3px;
}
.m-nav-item.active {
  background: rgba(255,255,255,.1);
  color: var(--gold);
}
.mockup-content {
  padding: 16px;
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
}
.m-card {
  background: var(--bg-2);
  border-radius: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  grid-column: span 1;
}
.m-card.alt { background: linear-gradient(135deg, var(--gold-softer), #fff); border-color: var(--gold); }
.m-card-head {
  font-size: 11px;
  color: var(--muted);
  font-weight: 700;
}
.m-card-val {
  font-size: 20px;
  font-weight: 900;
  color: var(--ink);
  margin-top: 4px;
}
.m-card-val small {
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
}
.m-card-sub {
  font-size: 10.5px;
  color: var(--green);
  margin-top: 4px;
  font-weight: 700;
}
.m-row {
  grid-column: span 2;
  display: flex;
  justify-content: space-between;
  padding: 8px 10px;
  background: #fff;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid var(--line);
}
.m-row .ok { color: var(--green); font-weight: 800; }
.m-row .warn { color: var(--amber); font-weight: 800; }

.float-badge {
  position: absolute;
  background: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 700;
  font-size: 12.5px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gold-soft);
  animation: floatY 4s ease-in-out infinite;
}
.float-badge.fb1 { top: 10%; right: -30px; }
.float-badge.fb2 { bottom: 20%; right: -50px; animation-delay: -1.5s; }
.float-badge.fb3 { top: 50%; left: -40px; animation-delay: -3s; }
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@media (max-width: 980px) {
  .float-badge { display: none; }
}

/* ============ Trust bar ============ */
.trust {
  background: var(--dark);
  padding: 22px 0;
  margin-top: -10px;
  position: relative;
  z-index: 2;
}
.trust-items {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 50px;
  justify-content: center;
  color: rgba(255,255,255,.85);
  font-weight: 700;
  font-size: 14px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ============ Sections ============ */
.section {
  padding: 90px 0;
}
.section-alt {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-dark {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.section-dark::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: var(--gold);
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.12;
}
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.section-head.light h2,
.section-head.light .lead {
  color: #fff;
}
.kicker {
  display: inline-block;
  padding: 6px 14px;
  background: var(--gold-softer);
  color: var(--gold-d);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.kicker.gold {
  background: rgba(197, 165, 114, 0.15);
  color: var(--gold);
  border: 1px solid rgba(197, 165, 114, 0.4);
}
.section-head h2 {
  font-family: 'Reem Kufi', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}
.section-head .lead {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.8;
}

/* ============ About / Value Cards ============ */
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 1000px) { .value-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .value-grid { grid-template-columns: 1fr; } }
.value-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 30px 24px;
  text-align: center;
  transition: all .3s;
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--gold);
}
.v-ico {
  font-size: 42px;
  margin-bottom: 14px;
}
.value-card h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--ink);
}
.value-card p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.7;
}

/* ============ Product / Booking form mockup ============ */
.product-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}
@media (max-width: 1000px) { .product-grid { grid-template-columns: 1fr; } }

.book-form {
  display: grid !important;
  grid-template-columns: 1fr 1.4fr 1fr !important;
  gap: 14px;
  padding: 18px !important;
}
.bf-col {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px;
}
.bf-title {
  font-weight: 800;
  font-size: 12px;
  text-align: center;
  margin-bottom: 12px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  padding-bottom: 8px;
}
.bf-field {
  margin-bottom: 8px;
}
.bf-field label {
  display: block;
  font-size: 10px;
  color: var(--muted);
  margin-bottom: 3px;
  font-weight: 700;
}
.bf-input {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 6px 8px;
  font-size: 11.5px;
  font-weight: 600;
}
.addons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.addon {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  padding: 8px 6px;
  text-align: center;
  font-size: 10px;
  position: relative;
}
.addon span { font-size: 18px; display: block; }
.addon b { display: block; margin: 4px 0; font-size: 10.5px; }
.addon small { color: var(--muted); font-weight: 700; }
.addon.checked {
  background: var(--gold-softer);
  border-color: var(--gold);
}
.addon.checked::after {
  content: '✓';
  position: absolute;
  top: 4px;
  right: 4px;
  width: 14px;
  height: 14px;
  background: var(--gold-grad);
  color: #fff;
  border-radius: 4px;
  font-size: 9px;
  display: grid;
  place-items: center;
  font-weight: 900;
}
.summary-col { background: linear-gradient(180deg, var(--bg-2), #fff); }
.sum-row {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  padding: 4px 0;
  border-bottom: 1px dotted var(--line);
  font-weight: 600;
}
.sum-row:last-of-type { border-bottom: none; }
.sum-total {
  text-align: center;
  padding: 10px 0;
  margin: 6px 0;
  border-top: 1px dashed var(--gold);
  border-bottom: 1px dashed var(--gold);
}
.sum-total > div:first-child { font-size: 10px; color: var(--muted); font-weight: 700; }
.sum-total .big-num {
  font-size: 28px;
  font-weight: 900;
  color: var(--gold-d);
  letter-spacing: -1px;
  line-height: 1;
  margin: 3px 0;
}
.sum-total .unit { font-size: 10px; color: var(--muted); font-weight: 600; }
.sum-row.remain b { color: var(--red); font-size: 13px; }
.sum-row.paid b { color: var(--ink); }

.product-text h3 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 22px;
  color: var(--ink);
  line-height: 1.3;
}
.check-list {
  list-style: none;
  margin-bottom: 30px;
}
.check-list li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 15px;
  color: var(--ink-2);
}
.check-list li::before {
  content: '✓';
  position: absolute;
  right: 0;
  top: 8px;
  width: 22px;
  height: 22px;
  background: var(--gold-grad);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 12px;
}

/* ============ Features Grid ============ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 900px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .features-grid { grid-template-columns: 1fr; } }
.feat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 24px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.feat::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  filter: blur(40px);
  transition: opacity .3s;
}
.feat:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow);
}
.feat:hover::before { opacity: 0.4; }
.feat-ico {
  font-size: 32px;
  width: 60px;
  height: 60px;
  background: var(--gold-softer);
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.feat h4 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--ink);
  position: relative;
  z-index: 1;
}
.feat p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ============ Showcase ============ */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
@media (max-width: 800px) { .showcase-grid { grid-template-columns: 1fr; } }
.show-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 24px;
  backdrop-filter: blur(10px);
  transition: all .3s;
}
.show-card:hover {
  background: rgba(255,255,255,.06);
  transform: translateY(-4px);
  border-color: var(--gold);
}
.show-img {
  height: 220px;
  border-radius: 14px;
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.show-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.4) 0%, transparent 50%);
}
.show-label {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: var(--gold-grad);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  z-index: 2;
}
.dashboard-mock {
  background:
    linear-gradient(135deg, #f6f1e8 0%, #fff 100%),
    repeating-linear-gradient(45deg, #c5a572 0 4px, transparent 4px 12px);
}
.dashboard-mock::before {
  content: '📊';
  font-size: 80px;
  opacity: 0.6;
}
.calendar-mock {
  background:
    linear-gradient(135deg, #2b2d3a 0%, #1f2230 100%);
}
.calendar-mock::before {
  content: '';
  position: absolute;
  inset: 30px;
  background:
    repeating-linear-gradient(90deg, rgba(197,165,114,.5) 0 1px, transparent 1px 35px),
    repeating-linear-gradient(0deg, rgba(197,165,114,.5) 0 1px, transparent 1px 35px);
  border-radius: 8px;
}
.calendar-mock .show-label { background: var(--gold-grad); }
.calendar-mock::after {
  background: linear-gradient(0deg, rgba(0,0,0,.5) 0%, transparent 60%);
}
.receipt-mock {
  background: #fff;
  border: 2px dashed var(--gold);
}
.receipt-mock::before {
  content: '🧾';
  font-size: 80px;
}
.receipt-mock .show-label { background: var(--gold-grad); }
.receipt-mock::after { background: none; }
.reports-mock {
  background:
    linear-gradient(180deg, var(--gold-softer), #fff);
}
.reports-mock::before {
  content: '';
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  height: 100px;
  background:
    linear-gradient(to top, var(--gold) 0%, var(--gold) 30%, transparent 30%) 0% 100% / 18% 100% no-repeat,
    linear-gradient(to top, var(--gold-d) 0%, var(--gold-d) 60%, transparent 60%) 22% 100% / 18% 100% no-repeat,
    linear-gradient(to top, var(--gold) 0%, var(--gold) 50%, transparent 50%) 44% 100% / 18% 100% no-repeat,
    linear-gradient(to top, var(--gold-d) 0%, var(--gold-d) 80%, transparent 80%) 66% 100% / 18% 100% no-repeat,
    linear-gradient(to top, var(--gold) 0%, var(--gold) 70%, transparent 70%) 88% 100% / 18% 100% no-repeat;
  border-radius: 4px;
}
.reports-mock::after { background: none; }
.reports-mock .show-label { background: var(--gold-grad); }

.show-card h4 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 8px;
  color: #fff;
}
.show-card p {
  font-size: 14px;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
}

/* ============ Steps ============ */
.steps {
  display: flex;
  gap: 0;
  align-items: stretch;
  flex-wrap: wrap;
  justify-content: center;
}
.step {
  flex: 1;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 30px 22px;
  text-align: center;
  position: relative;
  transition: all .3s;
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--gold);
}
.step-num {
  width: 50px;
  height: 50px;
  background: var(--gold-grad);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 900;
  margin: 0 auto 16px;
  box-shadow: var(--shadow-gold);
}
.step h4 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 8px;
}
.step p {
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.7;
}
.step-arrow {
  display: grid;
  place-items: center;
  font-size: 26px;
  color: var(--gold);
  font-weight: 900;
  padding: 0 14px;
}
@media (max-width: 900px) {
  .step-arrow { transform: rotate(-90deg); padding: 14px 0; }
  .steps { flex-direction: column; }
}

/* ============ Pricing ============ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
@media (max-width: 880px) { .pricing-grid { grid-template-columns: 1fr; } }
.price-card {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 18px;
  padding: 34px 28px;
  text-align: center;
  transition: all .3s;
  display: flex;
  flex-direction: column;
}
.price-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.price-card.featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, #fff 0%, var(--gold-softer) 100%);
  box-shadow: var(--shadow-gold);
  transform: scale(1.05);
  z-index: 2;
}
.price-card.featured:hover { transform: scale(1.05) translateY(-4px); }
.p-tag {
  display: inline-block;
  padding: 5px 14px;
  background: var(--gold-softer);
  color: var(--gold-d);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}
.price-card.featured .p-tag {
  background: var(--gold-grad);
  color: #fff;
}
.price-card h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
}
.p-price {
  margin-bottom: 24px;
  font-family: 'Reem Kufi', sans-serif;
  font-size: 36px;
  font-weight: 900;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.price-card ul {
  list-style: none;
  text-align: right;
  margin-bottom: 28px;
  flex: 1;
}
.price-card li {
  padding: 7px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  color: var(--ink-2);
}
.price-card li:last-child { border-bottom: none; }

/* ============ Roles Section ============ */
.roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 30px;
}
@media (max-width: 880px) { .roles-grid { grid-template-columns: 1fr; } }
.role-card {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 18px;
  padding: 30px 26px;
  text-align: center;
  transition: all .3s;
  display: flex;
  flex-direction: column;
}
.role-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow);
}
.role-card.featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, #fff 0%, var(--gold-softer) 100%);
  box-shadow: var(--shadow-gold);
  transform: scale(1.03);
}
.role-card.featured:hover { transform: scale(1.03) translateY(-4px); }
.role-icon {
  font-size: 42px;
  width: 78px;
  height: 78px;
  background: var(--gold-softer);
  border: 2px solid var(--gold-soft);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
}
.role-card.featured .role-icon {
  background: var(--gold-grad);
  border-color: var(--gold);
}
.role-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--ink);
}
.role-tag {
  display: inline-block;
  padding: 5px 14px;
  background: var(--gold-softer);
  color: var(--gold-d);
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 800;
  margin-bottom: 18px;
}
.role-card.featured .role-tag {
  background: var(--gold-grad);
  color: #fff;
}
.role-card ul {
  list-style: none;
  text-align: right;
  flex: 1;
}
.role-card li {
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13.5px;
  color: var(--ink-2);
  display: flex;
  gap: 6px;
  align-items: flex-start;
}
.role-card li:last-child { border-bottom: none; }
.roles-note {
  background: var(--dark);
  color: rgba(255, 255, 255, .85);
  border-radius: 14px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
}
.roles-note .ico {
  font-size: 28px;
  flex: none;
}
.roles-note b {
  color: var(--gold);
  font-weight: 800;
}

/* ============ CTA Banner ============ */
.cta {
  padding: 70px 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: var(--gold);
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.2;
}
.cta-box {
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 1;
}
.cta-box h2 {
  font-family: 'Reem Kufi', sans-serif;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.cta-box p {
  font-size: 17px;
  color: rgba(255,255,255,.75);
  margin-bottom: 28px;
}
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============ Contact ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.ci-item {
  display: flex;
  gap: 14px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 20px;
  transition: all .2s;
}
.ci-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}
.ci-ico {
  width: 48px;
  height: 48px;
  background: var(--gold-softer);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 22px;
  flex: none;
}
.ci-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
}
.ci-val {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-top: 2px;
}

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
}
.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}
@media (max-width: 500px) { .cf-row { grid-template-columns: 1fr; } }
.cf-field {
  margin-bottom: 14px;
}
.cf-field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--ink-2);
}
.cf-field input,
.cf-field select,
.cf-field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  background: var(--bg-2);
  transition: all .15s;
  outline: none;
}
.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus {
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(197,165,114,.15);
}
.cf-note {
  margin-top: 14px;
  padding: 12px 14px;
  background: var(--gold-softer);
  border: 1px solid var(--gold-soft);
  border-radius: 10px;
  font-size: 12.5px;
  color: var(--ink-2);
  text-align: center;
}
.cf-note b { color: var(--gold-d); }

/* ============ Footer ============ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  padding: 60px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
.footer .brand-text strong { color: #fff; }
.footer .brand-text span { color: var(--gold); }
.footer-about {
  margin-top: 14px;
  font-size: 13.5px;
  line-height: 1.8;
  max-width: 320px;
}
.footer h5 {
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
.footer a {
  display: block;
  font-size: 13.5px;
  color: rgba(255,255,255,.6);
  padding: 5px 0;
  transition: color .15s;
}
.footer a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  color: rgba(255,255,255,.5);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom b { color: var(--gold); }

/* ============ Reveal animations ============ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s cubic-bezier(.4,0,.2,1), transform .8s cubic-bezier(.4,0,.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.feat.reveal { transition-delay: calc(var(--i) * 0.06s); }
