/* =====================================================
   فكرة آب | App Idea - Premium Light Design
   ===================================================== */

:root {
  --navy: #1a2744;
  --navy-light: #2a3f6e;
  --gold: #c9a84c;
  --gold-light: #e0c66a;
  --green: #25d366;
  --green-dark: #1ebe5a;
  --bg: #f8f9fb;
  --bg-alt: #f0f2f6;
  --card: #ffffff;
  --text: #1a1a2e;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --shadow: 0 4px 20px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.08);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Cairo', sans-serif;
  --section-padding: 80px 0;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.btn--primary:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26,39,68,0.2);
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--border);
}
.btn--outline:hover {
  border-color: var(--navy);
  background: rgba(26,39,68,0.03);
}

.btn--whatsapp {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
.btn--whatsapp:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37,211,102,0.3);
}

.btn--wa-outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn--wa-outline:hover {
  background: var(--green);
  color: #fff;
}

.btn--lg { padding: 14px 36px; font-size: 1rem; }

/* ========== SECTION ========== */
.section { padding: var(--section-padding); }

.section__title {
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.4;
  color: var(--navy);
}
.section__title span { color: var(--gold); }

.section__sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 44px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

/* ========== HEADER ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 0;
  transition: padding 0.3s ease, box-shadow 0.3s ease;
  background: var(--navy);
}
.header.scrolled {
  padding: 8px 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.15);
}

.header__inner { display: flex; align-items: center; justify-content: space-between; }

.logo {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-text { display: inline-flex; align-items: center; gap: 6px; }
.logo-text span {
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
}
.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
}
.footer-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin-bottom: 8px;
}

.nav__list { display: flex; gap: 4px; }

.nav__link {
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  color: rgba(255,255,255,0.75);
}
.nav__link:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.nav__cta { padding: 8px 20px; font-size: 0.85rem; gap: 6px; }

.nav__toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
}

/* ========== HERO ========== */
.hero {
  padding-top: 140px;
  padding-bottom: 60px;
  background: linear-gradient(180deg, #f0f2f6 0%, var(--bg) 100%);
  min-height: auto;
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero__badge {
  display: inline-block;
  background: rgba(201,168,76,0.12);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.hero__title {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 16px;
  color: var(--navy);
}
.hero__title span {
  color: var(--gold);
  position: relative;
}
.hero__title span::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gold);
  opacity: 0.25;
  border-radius: 4px;
}

.hero__desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 520px;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero__trust span {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--text-muted);
}
.hero__trust span i { color: var(--gold); font-size: 0.75rem; }

/* ========== HERO MOCKUP ========== */
.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.mockup-stack {
  position: relative;
  width: 340px;
  height: 380px;
}

.mockup-card {
  position: absolute;
  width: 100%;
  max-width: 300px;
  background: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transition: var(--transition);
}

.mockup-card__top {
  display: flex;
  gap: 6px;
  padding: 12px 16px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.mockup-card__top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e5e7eb;
}
.mockup-card__top span:first-child { background: #ef4444; }
.mockup-card__top span:nth-child(2) { background: #eab308; }
.mockup-card__top span:last-child { background: #22c55e; }

.mockup-card__body {
  padding: 24px;
  text-align: center;
}
.mockup-card__body i {
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.mockup-card__body h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.mockup-card__body p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.mockup-card--mobile {
  position: relative;
  z-index: 3;
  transform: rotate(-3deg) translateY(10px);
  max-width: 220px;
  margin: 0 auto;
}
.mockup-card--tablet {
  position: absolute;
  top: 30px;
  right: -20px;
  z-index: 2;
  transform: rotate(2deg);
  max-width: 260px;
}
.mockup-card--desktop {
  position: absolute;
  bottom: -20px;
  left: -10px;
  z-index: 1;
  transform: rotate(-1deg);
  max-width: 280px;
}

.mockup-card:hover { transform: scale(1.02) rotate(0deg); z-index: 10; }

/* ========== PROBLEM - Reveal Cards ========== */
.problem { background: var(--card); }
.problem__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.problem-card {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 240px;
}
.problem-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(201,168,76,0.04) 0%, rgba(26,39,68,0.03) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.problem-card:hover,
.problem-card:focus,
.problem-card.is-open {
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(201,168,76,0.12);
  transform: translateY(-2px);
  outline: none;
}
.problem-card:hover::before,
.problem-card:focus::before,
.problem-card.is-open::before { opacity: 1; }
.problem-card__front {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.problem-card__num {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.problem-card__front i {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 14px;
}
.problem-card__question {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: auto;
}
.problem-card__hint {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 16px;
  transition: opacity 0.3s ease;
}
.problem-card:hover .problem-card__hint,
.problem-card:focus .problem-card__hint,
.problem-card.is-open .problem-card__hint { opacity: 0; }
.problem-card__answer {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, var(--bg) 20%);
  padding: 48px 24px 24px;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
  pointer-events: none;
}
.problem-card__answer p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--text);
  font-weight: 500;
}
.problem-card:hover .problem-card__answer,
.problem-card:focus .problem-card__answer,
.problem-card.is-open .problem-card__answer {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
/* spotlight border effect on answer reveal */
.problem-card:hover,
.problem-card:focus,
.problem-card.is-open {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(201,168,76,0.15), 0 8px 30px rgba(201,168,76,0.12);
}

/* ========== SOLUTION / JOURNEY ========== */
.journey {
  background: linear-gradient(180deg, #f0f3f8 0%, #e8ecf3 100%);
  position: relative;
}
.journey__intro {
  text-align: center;
  max-width: 640px;
  margin: -8px auto 48px;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}
.journey__track {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 0 0 20px;
}
.journey__rail {
  position: absolute;
  top: 30px;
  inset-inline-start: 30px;
  inset-inline-end: 30px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--navy));
  border-radius: 4px;
  z-index: 0;
}
.journey__step {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  animation: journeyFadeIn 0.6s ease both;
  animation-delay: calc(var(--i, 0) * 0.12s);
}
@keyframes journeyFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.journey__dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  position: relative;
  z-index: 2;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  flex-shrink: 0;
}
.journey__step:hover .journey__dot {
  transform: scale(1.15);
  box-shadow: 0 0 0 6px rgba(201,168,76,0.15);
}
.journey__card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 14px 16px;
  margin-top: 16px;
  width: 100%;
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.3s ease;
}
.journey__step:hover .journey__card {
  border-color: var(--gold);
  box-shadow: 0 6px 24px rgba(201,168,76,0.10);
  transform: translateY(-3px);
}
.journey__label {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.journey__card h4 {
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 6px;
  font-weight: 700;
}
.journey__card p {
  font-size: 0.78rem;
  line-height: 1.65;
  color: var(--text-light);
}
.journey__cta {
  text-align: center;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.journey__cta p {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 16px;
}
.journey__cta .btn { font-size: 0.95rem; padding: 14px 32px; }

/* ========== INFRASTRUCTURE MONITORING ========== */
.infra {
  background: var(--bg-alt);
  position: relative;
}
.infra__alert {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: -6px auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.infra__summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 32px;
}
.infra__summary-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}
.infra__summary-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.infra__summary-card i { font-size: 1.2rem; color: var(--gold); }
.infra__summary-num { font-size: 1.3rem; font-weight: 800; color: var(--navy); }
.infra__summary-label { font-size: 0.78rem; color: var(--text-light); }
.infra__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
}
.infra-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 18px 16px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.infra-card:hover {
  border-color: var(--gold);
  box-shadow: 0 6px 24px rgba(201,168,76,0.08);
}
.infra-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.infra-card__info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.infra-card__info h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
}
.infra-card__badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 20px;
  background: rgba(16,185,129,0.12);
  color: #10b981;
  border: 1px solid rgba(16,185,129,0.2);
}
.infra-card__desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}
.infra-card__services {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.infra-card__services span {
  font-size: 0.62rem;
  padding: 2px 10px;
  border-radius: 20px;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text-light);
}
.infra-card__metrics {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.infra-metric {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.infra-metric__label {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--text-light);
}
.infra-metric__val {
  font-weight: 600;
  color: var(--navy);
  text-align: right;
}
.infra-metric__bar {
  height: 5px;
  background: var(--border);
  border-radius: 6px;
  overflow: hidden;
}
.infra-metric__fill {
  height: 100%;
  border-radius: 6px;
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(90deg, #10b981, #34d399);
}
.infra-metric__fill.cpu-fill { background: linear-gradient(90deg, #3b82f6, #60a5fa); }
.infra-metric__fill.ram-fill { background: linear-gradient(90deg, #8b5cf6, #a78bfa); }
.infra-metric__fill.disk-fill { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.infra-card__network {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.infra-card__network-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--text-light);
}
.infra-card__network-info .network-in i { color: #3b82f6; margin-inline-end: 4px; }
.infra-card__network-info .network-out i { color: #f59e0b; margin-inline-end: 4px; }
.infra-card__network-info .net-in-val,
.infra-card__network-info .net-out-val {
  font-weight: 600;
  color: var(--navy);
}
.infra-card__chart {
  height: 42px;
  position: relative;
}
.infra-card__chart canvas {
  width: 100% !important;
  height: 42px !important;
}
.infra-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.68rem;
  color: var(--text-light);
  padding-top: 8px;
  border-top: 1px solid var(--border);
}
.infra-card__uptime {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--text-light);
}
.infra-card__uptime strong {
  color: #10b981;
  display: inline-flex;
  align-items: center;
}
.infra-card__uptime strong::after {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  background: #10b981;
  border-radius: 50%;
  margin-inline-start: 4px;
  animation: livePulse 2s ease-in-out infinite;
}
.infra-card__last-check {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--text-muted);
}
.infra-card__last-check .check-time { color: #10b981; font-weight: 600; }
.infra__cta {
  text-align: center;
  margin-top: 32px;
}
.infra__cta .btn { font-size: 0.92rem; padding: 14px 32px; }

/* Live indicators */
@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.live-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #10b981;
  border-radius: 50%;
  animation: livePulse 1.5s ease-in-out infinite;
  vertical-align: middle;
  margin-inline-end: 4px;
}
.live-indicator {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: #10b981;
  border-radius: 50%;
  animation: livePulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
.services { background: var(--card); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.service-flip {
  perspective: 1000px;
  height: 320px;
  cursor: pointer;
  outline: none;
}
.service-flip:focus-visible .service-flip__inner,
.service-flip:hover .service-flip__inner,
.service-flip.is-flipped .service-flip__inner {
  transform: rotateY(180deg);
}

.service-flip__inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

.service-flip__front,
.service-flip__back {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 20px;
  text-align: center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
}

.service-flip__front {
  background: var(--bg);
  border: 1px solid var(--border);
  z-index: 2;
}
.service-flip__front:hover { border-color: var(--navy); }

.service-flip__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  background: var(--navy);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
}
.service-flip__front h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--navy);
}
.service-flip__front p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 12px;
}
.service-flip__hint {
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 600;
}

.service-flip__back {
  background: linear-gradient(135deg, #1a2744 0%, #2a3f6e 100%);
  border: 1px solid rgba(255,255,255,0.08);
  transform: rotateY(180deg);
  z-index: 1;
}
.service-flip__back h3 {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.service-flip__back ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  width: 100%;
}
.service-flip__back ul li {
  padding: 4px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.service-flip__back ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.6rem;
  color: var(--gold);
}
.service-flip__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 22px;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  background: var(--green);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
}
.service-flip__btn:hover {
  background: var(--green-dark);
  transform: scale(1.04);
}
.service-flip__btn i { font-size: 0.9rem; }

/* ========== PORTFOLIO ========== */
.portfolio { background: var(--bg-alt); }
.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 36px;
}
.portfolio-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  transition: var(--transition);
}
.portfolio-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.portfolio-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
}
.portfolio-card__icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 14px;
}
.portfolio-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}
.portfolio-card__type {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}
.portfolio-card__desc {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 14px;
}
.portfolio-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.portfolio-card__tags span {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
}
.portfolio-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  border: 1px solid var(--navy);
  padding: 7px 18px;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition);
}
.portfolio-card__link:hover {
  background: var(--navy);
  color: #fff;
}
.portfolio__cta { text-align: center; }

/* ========== STATS ========== */
.stats {
  background: var(--navy);
  padding: 40px 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stats__item {
  text-align: center;
  padding: 20px 12px;
}
.stats__item i {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 8px;
}
.stats__item h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
.stats__item p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
}

/* ========== MARKETS ========== */
.markets { background: var(--card); }
.markets__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}
.market-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
}
.market-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.market-card__flag { font-size: 2.4rem; display: block; margin-bottom: 10px; }
.market-card__badge {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 50px;
  margin-bottom: 10px;
}
.market-card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; }
.markets__outro {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ========== READY PROJECTS ========== */
.ready-projects { background: var(--bg-alt); }
.ready-projects__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}
.rp-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  transition: var(--transition);
}
.rp-card:hover {
  border-color: var(--navy);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.rp-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  background: var(--navy);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
}
.rp-card h4 { font-size: 0.88rem; font-weight: 700; color: var(--navy); }
.ready-projects__cta { text-align: center; }

/* ========== PRICING ========== */
.pricing { background: var(--card); }
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}
.pricing-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px 18px;
  text-align: center;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.pricing-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.pricing-card--featured {
  border-color: var(--gold);
  background: var(--card);
  box-shadow: var(--shadow);
}
.pricing-card__badge {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 50px;
}
.pricing-card h3 {
  font-size: 1rem;
  font-weight: 800;
  margin: 16px 0 8px;
  color: var(--navy);
}
.pricing-card__price {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 14px;
}
.pricing-card__price span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}
.pricing-card__features {
  text-align: right;
  margin-bottom: 18px;
  flex: 1;
}
.pricing-card__features li {
  padding: 4px 0;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
}
.pricing-card__features li i { color: var(--gold); font-size: 0.8rem; flex-shrink: 0; }
.pricing-card .btn { width: 100%; }
.pricing__note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.82rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ========== PROCESS STEPPER ========== */
.process-section { background: var(--bg-alt); }
.process-shell {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  max-width: 880px;
  margin: 0 auto;
}
.process-preview {
  flex: 1;
  min-width: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: border-color 0.3s ease;
}
.process-preview:hover { border-color: var(--gold); }
.process-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 8px;
}
.process-count {
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.process-count #processCurrent {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
}
.process-count__sep { margin: 0 4px; }
.process-preview__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  transition: none;
}
.process-preview__text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  transition: none;
}
.process-controls {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}
.process-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: inherit;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--navy);
}
.process-btn:hover { border-color: var(--gold); color: var(--gold); }
.process-btn--prev i { font-size: 0.7rem; }
.process-btn--next i { font-size: 0.7rem; }
.process-btn:active { transform: scale(0.96); }
.process-track {
  position: relative;
  flex: 0 0 240px;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 4px 0;
}
.process-track__line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
  right: 18px;
  z-index: 0;
}
.process-track__line::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: var(--process-progress);
  background: linear-gradient(180deg, var(--gold), var(--navy));
  transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.process-step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px 12px 8px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-align: right;
  position: relative;
  z-index: 1;
  border-radius: var(--radius);
  transition: background 0.25s ease;
  -webkit-tap-highlight-color: transparent;
}
.process-step:hover { background: rgba(201,168,76,0.06); }
.process-step:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.process-step__num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.process-step.active .process-step__num {
  border-color: var(--gold);
  background: var(--gold);
  color: #fff;
  box-shadow: 0 4px 12px rgba(201,168,76,0.3);
}
.process-step__title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.3;
  transition: color 0.3s ease;
}
.process-step.active .process-step__title { color: var(--navy); font-weight: 700; }
.process-step.completed .process-step__num {
  border-color: #10b981;
  background: #10b981;
  color: #fff;
}
.process-step.completed .process-step__title { color: #10b981; }
.process-cta {
  text-align: center;
  margin-top: 40px;
}
.process-cta .btn { font-size: 0.92rem; padding: 14px 32px; }
@media (max-width: 768px) {
  .process-shell { flex-direction: column; gap: 24px; }
  .process-preview { padding: 24px 20px; }
  .process-preview__title { font-size: 1.05rem; }
  .process-preview__text { font-size: 0.82rem; }
  .process-track { flex: none; width: 100%; }
  .process-count #processCurrent { font-size: 1.6rem; }
  .process-controls { justify-content: center; }
}
@media (max-width: 480px) {
  .process-preview { padding: 20px 16px; }
  .process-preview__title { font-size: 0.95rem; }
  .process-preview__text { font-size: 0.78rem; }
  .process-step { padding: 10px 10px 10px 4px; }
  .process-step__num { width: 32px; height: 32px; font-size: 0.7rem; }
  .process-step__title { font-size: 0.78rem; }
  .process-count #processCurrent { font-size: 1.4rem; }
  .process-btn { font-size: 0.78rem; padding: 6px 14px; }
  .process-cta .btn { font-size: 0.85rem; padding: 12px 24px; }
}

/* ========== TRACK PROJECT CTA (index) ========== */
.track-cta { background: var(--navy); text-align: center; }
.track-cta__inner { max-width: 500px; }
.track-cta__title { font-size: 1.4rem; font-weight: 800; color: #fff; margin-bottom: 10px; }
.track-cta__desc { font-size: 0.92rem; color: rgba(255,255,255,0.7); margin-bottom: 22px; }
.track-cta .btn { background: var(--gold); color: var(--navy); }
.track-cta .btn:hover { background: var(--gold-light); }
@media (max-width: 480px) {
  .track-cta__title { font-size: 1.15rem; }
  .track-cta__desc { font-size: 0.85rem; }
}

/* ========== PAYMENT ========== */
.payment { background: var(--card); }
.payment__steps {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.payment__step {
  text-align: center;
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 24px 32px;
  border-radius: var(--radius);
  min-width: 150px;
}
.payment__step:hover { border-color: var(--gold); }
.payment__pct {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--navy);
  display: block;
  margin-bottom: 4px;
}
.payment__step p { font-size: 0.88rem; color: var(--text-muted); }
.payment__notes { max-width: 600px; margin: 0 auto; }
.payment__notes p {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 0.92rem;
  font-weight: 600;
}
.payment__notes p i { color: var(--gold); font-size: 1rem; }

/* ========== WHY US ========== */
.why-us { background: var(--bg-alt); }
.why-us__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.why-us__item {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 24px 20px;
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
}
.why-us__item:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.why-us__item i {
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.why-us__item h4 { font-size: 0.92rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.why-us__item p { color: var(--text-muted); font-size: 0.82rem; }

/* ========== COMPANY ========== */
.company { background: var(--card); }
.company__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}
.company__item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  transition: var(--transition);
}
.company__item:hover {
  border-color: var(--navy);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.company__item i {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.company__item h4 { font-size: 0.9rem; font-weight: 700; color: var(--navy); }
.company__cta { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ========== INVESTMENT / RWANDEKA ========== */
.investment { background: var(--bg-alt); }

.investment__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.investment__stat {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 12px;
  text-align: center;
  transition: var(--transition);
}
.investment__stat:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}
.investment__stat-num {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 2px;
}
.investment__stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

.investment__alert {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 32px;
}
.investment__alert i {
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.investment__alert p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.investment__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 28px;
}
.investment__tab {
  padding: 8px 20px;
  border: 1px solid var(--border);
  border-radius: 50px;
  background: var(--card);
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.investment__tab:hover {
  border-color: var(--gold);
  color: var(--navy);
}
.investment__tab.active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.investment__tab i { font-size: 0.8rem; }

.investment__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 16px;
  margin-bottom: 36px;
}

.invest-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.invest-card:hover { box-shadow: var(--shadow); }

.invest-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  cursor: pointer;
  user-select: none;
  transition: var(--transition);
}
.invest-card__header:hover { background: var(--bg); }
.invest-card__code {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  padding: 3px 10px;
  border-radius: 50px;
  white-space: nowrap;
  flex-shrink: 0;
}
.invest-card__titles { flex: 1; min-width: 0; }
.invest-card__titles h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}
.invest-card__titles span {
  font-size: 0.72rem;
  color: var(--text-muted);
  display: block;
}
.invest-card__arrow {
  font-size: 0.8rem;
  color: var(--gold);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.invest-card.open .invest-card__arrow { transform: rotate(180deg); }

.invest-card__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.invest-card.open .invest-card__body {
  max-height: 800px;
  padding: 0 20px 20px;
}

.invest-card__summary {
  font-size: 0.88rem;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.7;
}
.invest-card__report {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 12px;
}
.invest-card__report h5 {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.invest-card__report h5 i { color: var(--gold); font-size: 0.75rem; }
.invest-card__report p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.invest-card__examples {
  margin-bottom: 14px;
}
.invest-card__examples h5 {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.invest-card__examples ul {
  list-style: none;
  padding: 0;
}
.invest-card__examples ul li {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 3px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.invest-card__examples ul li::before {
  content: '\f111';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.35rem;
  color: var(--gold);
}
.invest-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green);
  font-family: var(--font);
  border: 1px solid var(--green);
  background: transparent;
  padding: 7px 18px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.invest-card__cta:hover {
  background: var(--green);
  color: #fff;
}

.investment__cta {
  text-align: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
}
.investment__cta h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.investment__cta p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ========== INVESTMENT DASHBOARD ========== */
.dashboard { background: var(--bg); }

.dash-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}
.dash-stat {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 14px;
  text-align: center;
}
.dash-stat:hover { border-color: var(--navy); }
.dash-stat__val {
  display: block;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.2;
}
.dash-stat__val.up { color: #16a34a; }
.dash-stat__val.down { color: #dc2626; }
.dash-stat__label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 2px;
}

.dash-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: rgba(201,168,76,0.07);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: var(--radius);
  padding: 12px 18px;
  margin-bottom: 28px;
}
.dash-note i {
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.dash-note p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.dash-charts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}
.dash-chart-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.dash-chart-box h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  text-align: center;
}
.dash-chart-wrap {
  position: relative;
  width: 100%;
  max-height: 280px;
}
.dash-chart-wrap canvas { width: 100% !important; height: auto !important; max-height: 260px; }

.dash-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}
.dash-list-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.dash-list-box h4 {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.dash-list-box--up h4 { color: #16a34a; }
.dash-list-box--down h4 { color: #dc2626; }

.dash-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
}
.dash-list-item:last-child { border-bottom: none; }
.dash-list-item__name {
  font-weight: 600;
  color: var(--text);
  flex: 1;
}
.dash-list-item__code {
  font-size: 0.7rem;
  color: var(--gold);
  font-weight: 700;
  background: rgba(201,168,76,0.1);
  padding: 2px 8px;
  border-radius: 50px;
  margin-left: 8px;
}
.dash-list-item__change {
  font-weight: 700;
  font-size: 0.82rem;
  white-space: nowrap;
}
.dash-list-item__change.up { color: #16a34a; }
.dash-list-item__change.down { color: #dc2626; }
.dash-list-item__change.stable { color: var(--text-muted); }

.dash-table-wrap {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 28px;
}
.dash-table-wrap h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.dash-table-filter {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.dash-table-filter label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}
.dash-table-filter select {
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font);
  font-size: 0.85rem;
  background: var(--card);
  color: var(--text);
}
.dash-table-scroll { overflow-x: auto; }
.dash-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}
.dash-table th {
  text-align: right;
  padding: 10px 8px;
  font-weight: 700;
  color: var(--text-muted);
  border-bottom: 2px solid var(--border);
  white-space: nowrap;
  font-size: 0.78rem;
}
.dash-table td {
  padding: 10px 8px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.dash-table tr:hover td { background: var(--bg); }
.dash-table__code {
  font-size: 0.7rem;
  color: var(--gold);
  font-weight: 700;
  background: rgba(201,168,76,0.1);
  padding: 2px 8px;
  border-radius: 50px;
  display: inline-block;
}
.dash-table__name { font-weight: 600; }
.dash-table__score {
  font-weight: 800;
  color: var(--navy);
}
.dash-table__change {
  font-weight: 700;
  white-space: nowrap;
}
.dash-table__change.up { color: #16a34a; }
.dash-table__change.down { color: #dc2626; }
.dash-table__change.stable { color: var(--text-muted); }
.dash-table__status {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
}
.dash-table__status.up { background: rgba(22,163,74,0.1); color: #16a34a; }
.dash-table__status.down { background: rgba(220,38,38,0.1); color: #dc2626; }
.dash-table__status.stable { background: rgba(107,114,128,0.1); color: var(--text-muted); }
.dash-table__action {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green);
  border: 1px solid var(--green);
  padding: 4px 12px;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition);
}
.dash-table__action:hover {
  background: var(--green);
  color: #fff;
}

/* ========== INVEST CARD COMPACT (index page) ========== */
.invest-card-compact {
  max-width: 560px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.invest-card-compact:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.invest-card-compact__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  background: var(--navy);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
}
.invest-card-compact h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.invest-card-compact > p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 18px;
}
.invest-card-compact__stats {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.invest-card-compact__stats span {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.invest-card-compact__stats span strong {
  color: var(--navy);
  font-weight: 800;
}
.invest-card-compact .btn--lg { padding: 14px 40px; }

/* ========== INVEST HERO (investment.html) ========== */
.invest-hero {
  padding-top: 130px;
  padding-bottom: 60px;
  background: linear-gradient(180deg, #f0f2f6 0%, var(--bg) 100%);
}
.invest-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.invest-hero__badge {
  display: inline-block;
  background: rgba(201,168,76,0.12);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.invest-hero__title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--navy);
  margin-bottom: 14px;
}
.invest-hero__title span { color: var(--gold); }
.invest-hero__desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}
.invest-hero__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.invest-hero__visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.invest-hero__stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow);
}
.invest-hero__stat-num {
  display: block;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.2;
}
.invest-hero__stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ========== COMPANY INFO (investment.html) ========== */
.company-info { background: var(--card); }
.company-info__card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  margin-bottom: 20px;
}
.company-info__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.company-info__field--full { grid-column: 1 / -1; }
.company-info__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}
.company-info__value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}
.company-info__alert {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: rgba(201,168,76,0.07);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: var(--radius);
  padding: 14px 18px;
}
.company-info__alert i {
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.company-info__alert p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ========== ACTIVITIES (investment.html) ========== */
.activities { background: var(--bg-alt); }

.dash-cta { text-align: center; }

/* ========== SECTORS ========== */
.sectors { background: var(--card); }
.sectors__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.sector-tag {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.sector-tag:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.sector-tag i { color: var(--gold); }

/* ========== IDEAS ========== */
.ideas { background: var(--bg-alt); }
.ideas__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}
.idea-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 14px 18px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.88rem;
  transition: var(--transition);
}
.idea-item:hover {
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.idea-item i { color: var(--navy); font-size: 1rem; }

/* ========== FAQ ========== */
.faq { background: var(--card); }
.faq__list { max-width: 680px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__question {
  width: 100%;
  background: none;
  border: none;
  color: var(--navy);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: right;
  transition: var(--transition);
}
.faq__question:hover { color: var(--gold); }
.faq__question i { transition: transform 0.3s; color: var(--gold); font-size: 0.85rem; }
.faq__item.active .faq__question i { transform: rotate(180deg); }
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq__item.active .faq__answer { max-height: 300px; padding-bottom: 18px; }
.faq__answer p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.8; }

/* ========== FINAL CTA ========== */
.cta-final {
  background: var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final__title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: #fff;
}
.cta-final__desc {
  font-size: 1.02rem;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin: 0 auto 32px;
}
.cta-final__btn {
  font-size: 1.1rem;
  padding: 16px 44px;
}
.cta-final .btn--whatsapp:hover {
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
}

/* ========== FOOTER ========== */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 50px 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 36px;
  padding-bottom: 32px;
}
.footer__brand h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
}
.footer__brand h3 span { color: var(--text-muted); font-weight: 500; font-size: 0.9rem; }
.footer__brand p { color: var(--text-muted); margin-top: 6px; font-size: 0.88rem; }
.footer__links h4, .footer__contact h4 { font-size: 0.92rem; font-weight: 700; margin-bottom: 12px; color: var(--navy); }
.footer__links ul li { margin-bottom: 6px; }
.footer__links ul li a { color: var(--text-muted); font-size: 0.85rem; transition: var(--transition); }
.footer__links ul li a:hover { color: var(--navy); }
.footer__contact a { display: block; color: var(--text-muted); font-size: 0.85rem; margin-bottom: 8px; transition: var(--transition); }
.footer__contact a:hover { color: var(--navy); }
.footer__contact i { margin-left: 6px; color: var(--navy); width: 16px; }
.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 16px 0;
  text-align: center;
}
.footer__bottom p { color: var(--text-muted); font-size: 0.8rem; }

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 50px;
  height: 50px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  z-index: 999;
  transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); }

/* ========== RESPONSIVE ========== */
@media (min-width: 1200px) {
  .pricing__grid { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; }
}

@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__desc { margin: 0 auto 28px; }
  .hero__actions { justify-content: center; }
  .hero__trust { justify-content: center; }
  .hero__visual { display: none; }
  .hero__title { font-size: 2.2rem; }
  .hero__title span::after { display: none; }
}

@media (max-width: 768px) {
  :root { --section-padding: 60px 0; }
  .section__title { font-size: 1.5rem; }
  .hero__title { font-size: 1.7rem; }
  .cta-final__title { font-size: 1.5rem; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio__grid { grid-template-columns: 1fr; }
  .markets__grid { grid-template-columns: 1fr; }
  .ready-projects__grid { grid-template-columns: repeat(2, 1fr); }
  .company__grid { grid-template-columns: 1fr; }
  .company__cta { flex-direction: column; align-items: center; }
  .footer__inner { grid-template-columns: 1fr; text-align: center; gap: 24px; }
  .payment__steps { flex-direction: column; align-items: center; }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100vh;
    background: var(--navy);
    padding: 72px 20px 20px;
    transition: 0.35s ease;
    z-index: 1001;
    border-left: 1px solid rgba(255,255,255,0.08);
    box-shadow: -4px 0 30px rgba(0,0,0,0.3);
  }
  .nav.open { right: 0; }
  .nav__list { flex-direction: column; gap: 2px; }
  .nav__link { display: block; padding: 10px 14px; font-size: 0.95rem; color: rgba(255,255,255,0.7); }
  .nav__link:hover { background: rgba(255,255,255,0.08); color: #fff; }
  .nav__toggle { display: block; z-index: 1002; }
  .nav__cta { display: none; }
  .pricing__grid { grid-template-columns: 1fr; }
  .services__grid { grid-template-columns: 1fr; }
  .service-flip { height: 280px; }
  .problem__grid { grid-template-columns: 1fr; }
  .problem-card { min-height: 200px; }
  .journey__track {
    flex-direction: column;
    gap: 28px;
  }
  .journey__rail { display: none; }
  .journey__step {
    flex-direction: row;
    gap: 16px;
    position: relative;
    text-align: right;
    animation: none;
    opacity: 1;
    transform: none;
  }
  .journey__step::before {
    content: '';
    position: absolute;
    top: 36px;
    width: 3px;
    height: calc(100% + 28px);
    background: linear-gradient(180deg, var(--gold), var(--navy));
    z-index: 0;
    border-radius: 2px;
    inset-inline-start: 16.5px;
  }
  .journey__step:last-child::before { display: none; }
  .journey__dot {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
    flex-shrink: 0;
    margin: 0;
    z-index: 1;
  }
  .journey__card {
    margin-top: 0;
    padding: 14px 16px;
    z-index: 1;
  }
  .why-us__grid { grid-template-columns: 1fr; }
  .ideas__grid { grid-template-columns: 1fr 1fr; }
  .investment__stats { grid-template-columns: repeat(2, 1fr); }
  .investment__grid { grid-template-columns: 1fr; }
  .investment__cta h3 { font-size: 1.15rem; }
  .dash-stats { grid-template-columns: repeat(2, 1fr); }
  .dash-charts { grid-template-columns: 1fr; }
  .dash-lists { grid-template-columns: 1fr; }
  .invest-hero__inner { grid-template-columns: 1fr; text-align: center; }
  .invest-hero__actions { justify-content: center; }
  .invest-hero__title { font-size: 1.5rem; }
  .invest-hero__stat-card { padding: 14px 20px; }
  .invest-hero__stat-num { font-size: 1.3rem; }
  .company-info__grid { grid-template-columns: 1fr; }
  .brand-logo { width: 40px; height: 40px; }
  .logo { font-size: 1.1rem; gap: 8px; }
  .logo-text span { font-size: 0.75rem; }
  .footer__brand { display: flex; flex-direction: column; align-items: center; }
  .infra__summary { grid-template-columns: repeat(2, 1fr); }
  .infra__grid { grid-template-columns: 1fr; }
  .infra-card__footer { flex-direction: column; gap: 4px; align-items: flex-start; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero__title { font-size: 1.4rem; }
  .section__title { font-size: 1.3rem; }
  .cta-final__title { font-size: 1.3rem; }
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .ready-projects__grid { grid-template-columns: 1fr; }
  .ideas__grid { grid-template-columns: 1fr 1fr; }
  .investment__stats { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .dash-stats { grid-template-columns: 1fr 1fr; gap: 10px; }
  .dash-stat__val { font-size: 1rem; }
  .journey__track { padding-inline-start: 32px; gap: 24px; }
  .journey__intro { font-size: 0.85rem; margin-bottom: 32px; }
  .journey__card h4 { font-size: 0.82rem; }
  .journey__card p { font-size: 0.72rem; }
  .infra__summary { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .infra-card { padding: 16px 14px; }
  .infra-card__info h3 { font-size: 0.88rem; }
}

/* ========== MY PROJECTS DASHBOARD ========== */
.mp-dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.mp-dash-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}
.mp-dash-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.mp-dash-tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: 20px;
  background: rgba(201,168,76,0.1);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.2);
}
.mp-dash-tag--status { background: rgba(26,39,68,0.08); color: var(--navy); border-color: rgba(26,39,68,0.15); }
.mp-dash-code {
  font-size: 0.72rem;
  color: var(--text-muted);
  direction: ltr;
  text-align: left;
  font-weight: 600;
}
.mp-dash-wa { font-size: 0.82rem !important; padding: 8px 18px !important; }
.mp-progress-row {
  display: flex;
  align-items: center;
  gap: 28px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-bottom: 24px;
}
.mp-progress-ring-wrap { position: relative; flex-shrink: 0; }
.mp-progress-ring-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  transform: rotate(90deg);
}
.mp-progress-stage {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.mp-progress-stage strong { color: var(--navy); }
.mp-progress-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.mp-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}
.mp-summary-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 14px;
  text-align: center;
  transition: border-color 0.3s ease;
}
.mp-summary-card:hover { border-color: var(--gold); }
.mp-summary-label {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.mp-summary-val {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
}
.mp-summary-val--gold { color: var(--gold); }
.mp-section { margin-bottom: 32px; }
.mp-section__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mp-section__title i { color: var(--gold); font-size: 0.9rem; }
.mp-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-inline-start: 0;
}
.mp-timeline::before {
  content: '';
  position: absolute;
  top: 12px;
  bottom: 12px;
  right: 15px;
  width: 2px;
  background: var(--border);
}
.mp-timeline-item {
  display: flex;
  gap: 14px;
  padding: 10px 0;
  position: relative;
}
.mp-timeline-marker {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  background: var(--bg);
  border-radius: 50%;
}
.mp-timeline-body { flex: 1; min-width: 0; }
.mp-timeline-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2px;
}
.mp-timeline-name { font-weight: 700; font-size: 0.88rem; color: var(--navy); }
.mp-timeline-pct { font-size: 0.75rem; color: var(--text-muted); font-weight: 600; }
.mp-timeline-status { font-size: 0.7rem; color: var(--text-muted); display: block; margin-bottom: 4px; }
.mp-timeline-notes { font-size: 0.78rem; color: var(--text-muted); line-height: 1.6; }
.mp-timeline-item.mp-stage--done .mp-timeline-name { color: #10b981; }
.mp-timeline-item.mp-stage--current .mp-timeline-name { color: var(--gold); }
.mp-timeline-item.mp-stage--current .mp-timeline-marker { background: var(--gold); border-radius: 50%; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; }
.mp-timeline-item.mp-stage--current .mp-timeline-marker i { color: #fff !important; }
.mp-pay-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin-bottom: 14px;
}
.mp-pay-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  transition: border-color 0.3s ease;
}
.mp-pay-card:hover { border-color: var(--gold); }
.mp-pay-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.mp-pay-name { font-size: 0.82rem; font-weight: 700; color: var(--navy); }
.mp-pay-detail {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.mp-pay-status {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 20px;
  margin-bottom: 6px;
}
.mp-pay-status--paid { background: rgba(16,185,129,0.1); color: #10b981; }
.mp-pay-status--due_next { background: rgba(201,168,76,0.1); color: var(--gold); }
.mp-pay-status--pending { background: rgba(156,163,175,0.1); color: #6b7280; }
.mp-pay-note { font-size: 0.72rem; color: var(--text-muted); line-height: 1.5; }
.mp-pay-summary {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.mp-pay-next {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 600;
}
.mp-deliverables {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.mp-deliverable {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--navy);
  background: var(--card);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 20px;
}
.mp-updates {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mp-update {
  display: flex;
  gap: 14px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
}
.mp-update-date {
  flex-shrink: 0;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
  min-width: 80px;
}
.mp-update-body strong { font-size: 0.85rem; color: var(--navy); display: block; margin-bottom: 2px; }
.mp-update-body p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }
.mp-contact {
  text-align: center;
  padding: 28px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-top: 8px;
}
.mp-contact p { font-size: 0.95rem; color: var(--text); margin-bottom: 14px; }
@media (max-width: 768px) {
  .mp-dash-header { flex-direction: column; align-items: flex-start; }
  .mp-progress-row { flex-direction: column; text-align: center; padding: 20px; }
  .mp-summary { grid-template-columns: repeat(2, 1fr); }
  .mp-pay-grid { grid-template-columns: 1fr; }
  .mp-update { flex-direction: column; gap: 6px; }
  .mp-update-date { min-width: auto; }
}
@media (max-width: 480px) {
  .mp-dash-title { font-size: 1.1rem; }
  .mp-summary { grid-template-columns: 1fr 1fr; gap: 8px; }
  .mp-summary-card { padding: 12px 10px; }
  .mp-progress-ring-wrap svg { width: 100px !important; height: 100px !important; }
  .mp-progress-ring-text { font-size: 1.2rem; }
  .mp-progress-stage { font-size: 0.85rem; }
  .mp-progress-desc { font-size: 0.78rem; }
  .mp-pay-card { padding: 12px; }
  .mp-contact { padding: 20px; }
  .mp-contact .btn { font-size: 0.85rem; padding: 12px 20px; }
}
