   MEG HERO DASHBOARD — Split Layout
   ═══════════════════════════════════════════════════════════ */

.meg-hero-dashboard {
  background-color: var(--navy);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
}

/* Arka plan desen */
.meg-hero-dashboard::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 30% 50%, rgba(201,168,76,.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 80% 20%, rgba(44,122,123,.08) 0%, transparent 60%);
  pointer-events: none;
}
.meg-hero-dashboard::after {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(201,168,76,.04);
  pointer-events: none;
}

.meg-hero-dashboard__inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 52px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

/* ── Sol Panel ─────────────────────────────────────────── */
.meg-hero-left__content { max-width: 520px; }

.meg-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,.12);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 100px;
  padding: 6px 16px 6px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
}
.meg-hero-badge__dot {
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: heroPulse 2s infinite;
}
@keyframes heroPulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .5; transform: scale(1.5); }
}

.meg-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.8vw, 48px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}

.meg-hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,.65);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 460px;
}

.meg-hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.meg-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .3px;
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
}
.meg-hero-btn--gold {
  background: var(--gold);
  color: var(--navy);
}
.meg-hero-btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,.35);
}
.meg-hero-btn--outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.35);
}
.meg-hero-btn--outline:hover {
  border-color: rgba(255,255,255,.8);
  background: rgba(255,255,255,.06);
}

/* Sol istatistikler */
.meg-hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.meg-hero-stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.meg-hero-stat span {
  font-size: 11px;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}
.meg-hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.12);
  flex-shrink: 0;
}

/* ── Sağ Panel ─────────────────────────────────────────── */
.meg-hero-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* KPI Kartları */
.meg-hero-right__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.meg-hero-kpi {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  backdrop-filter: blur(8px);
}

.meg-hero-kpi__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.meg-hero-kpi__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.meg-hero-kpi__icon {
  font-size: 14px;
  color: rgba(255,255,255,.3);
}
.meg-hero-kpi--gold .meg-hero-kpi__icon { color: var(--gold); }
.meg-hero-kpi--teal .meg-hero-kpi__icon { color: var(--teal-light); }

.meg-hero-kpi__num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}
.meg-hero-kpi--gold .meg-hero-kpi__num { color: var(--gold); }
.meg-hero-kpi--teal .meg-hero-kpi__num { color: var(--teal-light); }

.meg-hero-kpi__sub {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  display: flex;
  align-items: center;
  gap: 5px;
}
.meg-hero-kpi__sub i { color: #4ade80; font-size: 10px; }

.meg-hero-badge-pill {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 9px;
  border-radius: 100px;
  background: rgba(44,122,123,.25);
  color: var(--teal-light);
  border: 1px solid rgba(44,122,123,.4);
  margin-right: 4px;
}
.meg-hero-kpi__badges { margin-top: 8px; }

/* Beyanname Kartı */
.meg-hero-beyan {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.meg-hero-beyan__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: rgba(13,27,62,.6);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.meg-hero-beyan__header i { color: rgba(255,255,255,.2); }

.meg-hero-beyan__list {
  list-style: none;
  margin: 0;
  padding: 8px 0;
  display: flex;
  flex-direction: column;
}
.meg-hero-beyan__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  border-bottom: 1px solid rgba(255,255,255,.04);
  transition: background var(--transition);
}
.meg-hero-beyan__item:last-child { border-bottom: none; }
.meg-hero-beyan__item:hover { background: rgba(255,255,255,.04); }

.meg-hero-beyan__tag {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .8px;
  padding: 3px 8px;
  border-radius: 5px;
  white-space: nowrap;
  flex-shrink: 0;
}
.meg-hero-beyan__desc {
  flex: 1;
  font-size: 12px;
  color: rgba(255,255,255,.65);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.meg-hero-beyan__date {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.35);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Geçmiş beyanname satırı */
.meg-hero-beyan__item--past {
  opacity: .38 !important;
  order: 999;
  background: rgba(0,0,0,.15) !important;
}
.meg-hero-beyan__item--past .meg-hero-beyan__tag {
  filter: grayscale(1) !important;
  opacity: .5 !important;
}
.meg-hero-beyan__item--past .meg-hero-beyan__desc {
  color: rgba(255,255,255,.3) !important;
  text-decoration: line-through;
  text-decoration-color: rgba(255,255,255,.2);
}
.meg-hero-beyan__item--past .meg-hero-beyan__date {
  color: rgba(255,255,255,.2) !important;
}

/* Yaklaşan beyanname satırı (≤3 gün) */
.meg-hero-beyan__item--upcoming {
  background: rgba(234, 179, 8, .07);
  border-left: 3px solid #eab308;
  padding-left: 15px;
}
.meg-hero-beyan__item--upcoming .meg-hero-beyan__desc {
  color: rgba(255,255,255,.9);
}
.meg-hero-beyan__item--upcoming .meg-hero-beyan__date {
  color: #eab308;
  font-weight: 800;
}
.meg-hero-beyan__item--upcoming::after {
  content: '⚡';
  font-size: 11px;
  flex-shrink: 0;
  margin-left: 2px;
}
.meg-hero-beyan__empty {
  padding: 14px 18px;
  font-size: 12px;
  color: rgba(255,255,255,.35);
  margin: 0;
}

/* Hızlı Erişim */
.meg-hero-ql {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.meg-hero-ql__header {
  padding: 12px 18px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  background: rgba(13,27,62,.6);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.meg-hero-ql__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.meg-hero-ql__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  text-decoration: none;
  border-right: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: background var(--transition);
}
.meg-hero-ql__item:nth-child(2n) { border-right: none; }
.meg-hero-ql__item:nth-last-child(-n+2) { border-bottom: none; }
.meg-hero-ql__item:hover { background: rgba(201,168,76,.08); }
.meg-hero-ql__item > i:first-child {
  width: 32px; height: 32px;
  background: rgba(201,168,76,.12);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  color: var(--gold);
  flex-shrink: 0;
}
.meg-hero-ql__item > div { flex: 1; min-width: 0; }
.meg-hero-ql__label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.8);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.meg-hero-ql__sub {
  display: block;
  font-size: 10px;
  color: rgba(255,255,255,.35);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.meg-hero-ql__arrow {
  font-size: 9px;
  color: rgba(255,255,255,.2);
  flex-shrink: 0;
  transition: color var(--transition), transform var(--transition);
}
.meg-hero-ql__item:hover .meg-hero-ql__arrow {
  color: var(--gold);
  transform: translateX(3px);
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 1100px) {
  .meg-hero-dashboard__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .meg-hero-left__content { max-width: 100%; }
  .meg-hero-dashboard { padding: 100px 0 60px; min-height: auto; }
}

@media (max-width: 640px) {
  .meg-hero-right__stats { grid-template-columns: 1fr 1fr; }
  .meg-hero-kpi__num { font-size: 28px; }
  .meg-hero-stats { gap: 16px; }
  .meg-hero-stat strong { font-size: 20px; }
  .meg-hero-ql__grid { grid-template-columns: 1fr; }
  .meg-hero-ql__item { border-right: none; }
  .meg-hero-ql__item:nth-last-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.05); }
  .meg-hero-ql__item:last-child { border-bottom: none; }
}

@media (max-width: 420px) {
  .meg-hero-right__stats { grid-template-columns: 1fr; }
  .meg-hero-btns { flex-direction: column; }
  .meg-hero-btn { justify-content: center; }
}
