
    .las {
      width: 64px;
      height: 64px;
      color: #034AAB;
      margin: 10px;
    }

:root {
  --megisty-primary: #0F172A;
  --megisty-primary-2: #111C33;
  --megisty-surface: #1E293B;
  --megisty-secondary: #2563EB;
  --megisty-secondary-hover: #1D4ED8;
  --megisty-text: #F8FAFC;
  --megisty-text-muted: rgba(248, 250, 252, 0.72);
  --megisty-muted: #94A3B8;
  --megisty-border: rgba(248, 250, 252, 0.12);
  --megisty-border-2: rgba(248, 250, 252, 0.08);
  --megisty-shadow: 0 16px 40px rgba(2, 8, 23, 0.38);
  --megisty-inverse: rgba(248, 250, 252, 0.92);
  --megisty-radius: 14px;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body.meg-body {
  background: var(--megisty-primary);
  color: var(--megisty-text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.65;
  letter-spacing: -0.01em;
}

body.meg-body a {
  color: var(--megisty-text);
}

body.meg-body a:hover {
  color: var(--megisty-text);
}

.section-pad {
  padding-top: 84px;
  padding-bottom: 84px;
}

@media (max-width: 991.98px) {
  .section-pad {
    padding-top: 56px;
    padding-bottom: 56px;
  }
}

.section-alt {
  background: var(--megisty-surface);
}

.btn-primary {
  --bs-btn-bg: var(--megisty-secondary);
  --bs-btn-border-color: var(--megisty-secondary);
  --bs-btn-hover-bg: var(--megisty-secondary-hover);
  --bs-btn-hover-border-color: var(--megisty-secondary-hover);
  --bs-btn-active-bg: var(--megisty-secondary-hover);
  --bs-btn-active-border-color: var(--megisty-secondary-hover);
}

.btn-outline-light {
  --bs-btn-color: rgba(248, 250, 252, 0.9);
  --bs-btn-border-color: rgba(248, 250, 252, 0.22);
  --bs-btn-hover-bg: rgba(248, 250, 252, 0.08);
  --bs-btn-hover-border-color: rgba(248, 250, 252, 0.28);
  --bs-btn-hover-color: rgba(248, 250, 252, 0.95);
}

h1, h2, h3, h4, h5, h6 {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--megisty-text);
  letter-spacing: -0.02em;
}

h1 { font-weight: 700; line-height: 1.12; }
h2 { font-weight: 700; line-height: 1.16; }
h3 { font-weight: 700; line-height: 1.2; }
h4 { font-weight: 700; line-height: 1.25; }
h5 { font-weight: 700; line-height: 1.3; }
h6 { font-weight: 700; line-height: 1.35; }

p { color: var(--megisty-muted); }

a {
  color: var(--megisty-secondary);
  text-decoration: none;
}

a:hover { color: #3B82F6; }

.btn {
  border-radius: 10px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.btn-primary {
  background-color: var(--megisty-secondary);
  border-color: var(--megisty-secondary);
}

.btn-primary:hover {
  background-color: #1D4ED8;
  border-color: #1D4ED8;
}

.card {
  border-radius: var(--megisty-radius);
  border-color: var(--megisty-border);
  background: var(--megisty-surface);
  color: var(--megisty-text);
}

.card .card-title,
.card .card-body {
  color: var(--megisty-text);
}

.card .text-muted {
  color: rgba(248, 250, 252, 0.62) !important;
}

.card-img-top {
  border-top-left-radius: var(--megisty-radius);
  border-top-right-radius: var(--megisty-radius);
  object-fit: cover;
}

.shadow-soft { box-shadow: var(--megisty-shadow); }

.section-pad {
  padding-top: 72px;
  padding-bottom: 72px;
}

@media (max-width: 991.98px) {
  .section-pad {
    padding-top: 56px;
    padding-bottom: 56px;
  }
}

.meg-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--megisty-border);
  background:
    radial-gradient(900px 360px at 12% 10%, rgba(37, 99, 235, 0.22), transparent 60%),
    radial-gradient(700px 280px at 85% 5%, rgba(29, 78, 216, 0.18), transparent 55%),
    linear-gradient(180deg, rgba(30, 41, 59, 0.22), transparent 55%);
}

.meg-hero h1 {
  letter-spacing: -0.02em;
}

.meg-hero p {
  color: rgba(148, 163, 184, 0.95);
}

.meg-hero-home {
  padding-top: 96px;
}

.meg-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(248, 250, 252, 0.14);
  background: rgba(248, 250, 252, 0.06);
  color: rgba(248, 250, 252, 0.84);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: -0.01em;
}

.meg-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--megisty-border);
  box-shadow: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  overflow: hidden;
}

.meg-card:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 99, 235, 0.28);
  box-shadow: var(--megisty-shadow);
}

.meg-card-media {
  height: 210px;
  background: rgba(255, 255, 255, 0.04);
}

.meg-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05);
}

.meg-kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(248, 250, 252, 0.62);
  font-weight: 700;
}

.meg-divider {
  height: 1px;
  background: var(--megisty-border);
  margin: 24px 0;
}

.meg-prose {
  color: rgba(248, 250, 252, 0.86);
  font-size: 16px;
  line-height: 1.75;
}

.meg-prose p,
.meg-prose li {
  color: rgba(248, 250, 252, 0.78);
}

.meg-prose :where(div, span, small, strong, em, b, i, u, s, mark, blockquote) {
  color: rgba(248, 250, 252, 0.82) !important;
}

.meg-prose :where(h1, h2, h3, h4, h5, h6) {
  color: rgba(248, 250, 252, 0.94) !important;
}

.meg-prose :where(p, li, ul, ol) {
  color: rgba(248, 250, 252, 0.78) !important;
}

.meg-prose :where([class^="color-"], [class*=" color-"]) {
  color: rgba(248, 250, 252, 0.82) !important;
}

.meg-prose :where(code, pre, kbd, samp) {
  color: rgba(248, 250, 252, 0.92) !important;
}

.meg-prose h2,
.meg-prose h3,
.meg-prose h4 {
  margin-top: 28px;
  margin-bottom: 12px;
}

.meg-prose a {
  color: var(--megisty-secondary);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(37, 99, 235, 0.35);
}

.meg-prose a:hover {
  text-decoration-color: rgba(37, 99, 235, 0.7);
}

.meg-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.meg-list a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(248, 250, 252, 0.10);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(248, 250, 252, 0.92);
}

.meg-list a:hover {
  border-color: rgba(37, 99, 235, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

.meg-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid rgba(248, 250, 252, 0.12);
  background: rgba(248, 250, 252, 0.06);
  flex: 0 0 auto;
}

.meg-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  color: rgba(248, 250, 252, 0.70);
  font-size: 13px;
}

.meg-meta i {
  opacity: 0.8;
  margin-right: 6px;
}

.meg-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.meg-section-head h2,
.meg-section-head h3 {
  margin: 0;
}

.meg-section-sub {
  margin: 0;
  max-width: 72ch;
  color: rgba(248, 250, 252, 0.72);
}

.meg-timeline {
  margin: 0;
  padding: 0;
  list-style: none;
  border-left: 1px solid rgba(248, 250, 252, 0.12);
}

.meg-timeline li {
  position: relative;
  padding: 0 0 18px 18px;
  margin-left: 10px;
}

.meg-timeline li::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 2px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--megisty-secondary);
  box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.18);
}

footer.meg-footer {
  background: var(--megisty-primary);
  border-top: 1px solid rgba(248, 250, 252, 0.08);
}

footer.meg-footer.meg-footer-main {
  padding-top: 64px;
  padding-bottom: 32px;
}

.meg-footer-logo {
  max-height: 44px;
  width: auto;
}

@media (min-width: 992px) {
  .meg-footer-logo {
    max-height: 82px;
  }
}

.meg-logo {
  display: block;
  width: auto;
}

.meg-logo--on-dark {
  filter: none;
}

header.megisty-header {
  position: sticky;
  top: 0;
  z-index: 1050;
  background: var(--megisty-primary) !important;
  border-bottom: 1px solid rgba(248, 250, 252, 0.08);
}

header.megisty-header .navbar {
  background: var(--megisty-primary) !important;
  padding-top: 14px;
  padding-bottom: 14px;
}

header.megisty-header .navbar-brand {
  color: var(--megisty-inverse) !important;
  font-weight: 700;
  letter-spacing: -0.02em;
}

header.megisty-header .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.18) !important;
}

header.megisty-header .navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25) !important;
}

.megisty-header .navbar .navbar-brand img {
  display: block;
  width: auto;
  max-height: 56px;
}

@media (min-width: 992px) {
  .megisty-header .navbar .navbar-brand img {
    max-height: 64px;
  }
}

header.megisty-header .navbar-nav .nav-link {
  color: rgba(248, 250, 252, 0.85) !important;
  font-weight: 500;
  position: relative;
}

header.megisty-header .navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--megisty-secondary);
  transition: width 180ms ease;
}

header.megisty-header .navbar .nav-link.active {
  color: #ffffff !important;
}

header.megisty-header .navbar-nav .nav-link:hover,
header.megisty-header .navbar-nav .nav-link:focus {
  color: rgba(248, 250, 252, 0.98) !important;
}

header.megisty-header .navbar-nav .nav-link:hover::after,
header.megisty-header .navbar-nav .nav-link:focus::after {
  width: 100%;
}

header.megisty-header .navbar-nav .nav-link.is-active {
  color: rgba(248, 250, 252, 0.98) !important;
}

    header.megisty-header .dropdown-menu {
      border-radius: 12px;
      box-shadow: 0 18px 40px rgba(2, 8, 23, 0.28);
      padding: 10px;
    }

    header.megisty-header .dropdown-item {
      color: rgba(255, 255, 255, 0.9) !important;
      border-radius: 10px;
      padding: 10px 12px;
    }

    header.megisty-header .dropdown-item:hover,
    header.megisty-header .dropdown-item:focus {
      background-color: rgba(37, 99, 235, 0.18) !important;
      color: var(--megisty-secondary) !important;
    }