:root {
  --navy: #030B24;
  --deep-blue: #071E4D;
  --royal-blue: #0D3E8C;
  --cyan: #38BDF8;
  --gold: #C9A84C;
  --gold-light: #E0BF6A;
  --gold-dark: #A5843A;
  --bg-light: #EEF6FF;
  --white: #FFFFFF;
  --text-dark: #0F172A;
  --muted: #64748B;

  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Montserrat', sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;

  --shadow-soft: 0 10px 30px -12px rgba(7, 27, 77, 0.18);
  --shadow-card: 0 8px 24px -8px rgba(7, 27, 77, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 700;
}

img {
  display: block;
  max-width: 100%;
}

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

/* Bootstrap 5 is loaded for its utility/grid classes; these guard the
   Reboot defaults so the hand-built layout below still renders as designed. */
button {
  font-family: inherit;
}

.container {
  width: auto;
}

.navbar {
  display: block;
}

.btn {
  text-align: center;
  vertical-align: initial;
}

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  font-family: var(--font-display);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--royal-blue), var(--deep-blue));
  color: var(--white);
  box-shadow: 0 8px 20px -6px rgba(18, 102, 214, 0.55);
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--deep-blue), var(--navy));
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px -6px rgba(18, 102, 214, 0.65);
}

.btn--ghost {
  background: rgba(201, 168, 76, 0.1);
  color: var(--gold-light);
  border: 1px solid rgba(201, 168, 76, 0.5);
  backdrop-filter: blur(6px);
}

.btn--ghost:hover {
  background: rgba(201, 168, 76, 0.2);
  transform: translateY(-2px);
}

.btn--ghost-dark {
  background: transparent;
  color: var(--gold-light);
  border: 1px solid rgba(201, 168, 76, 0.55);
}

.btn--ghost-dark:hover {
  background: rgba(201, 168, 76, 0.14);
  transform: translateY(-2px);
  color: var(--gold-light);
}

.btn--cta {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: var(--navy);
  padding: 11px 22px;
  font-size: 0.9rem;
}

.btn--cta:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px -6px rgba(201, 168, 76, 0.5);
}

.btn--blue {
  background: linear-gradient(135deg, var(--royal-blue), var(--deep-blue));
  color: var(--white);
  box-shadow: 0 8px 20px -6px rgba(13, 62, 140, 0.5);
}
.btn--blue:hover {
  background: linear-gradient(135deg, var(--deep-blue), var(--navy));
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px -6px rgba(13, 62, 140, 0.6);
}

.btn--red {
  background: linear-gradient(135deg, #EF4444, #B91C1C);
  color: var(--white);
  box-shadow: 0 8px 20px -6px rgba(185, 28, 28, 0.5);
}
.btn--red:hover {
  background: linear-gradient(135deg, #DC2626, #7F1D1D);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px -6px rgba(185, 28, 28, 0.6);
}

.btn--green {
  background: linear-gradient(135deg, #22C55E, #15803D);
  color: var(--white);
  box-shadow: 0 8px 20px -6px rgba(21, 128, 61, 0.5);
}
.btn--green:hover {
  background: linear-gradient(135deg, #16A34A, #14532D);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px -6px rgba(21, 128, 61, 0.6);
}

.btn--orange {
  background: linear-gradient(135deg, #FB923C, #C2410C);
  color: var(--white);
  box-shadow: 0 8px 20px -6px rgba(194, 65, 12, 0.5);
}
.btn--orange:hover {
  background: linear-gradient(135deg, #F97316, #9A3412);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px -6px rgba(194, 65, 12, 0.6);
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: var(--navy);
  box-shadow: 0 8px 20px -6px rgba(201, 168, 76, 0.5);
}
.btn--gold:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px -6px rgba(201, 168, 76, 0.6);
}

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}

.navbar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.navbar.is-scrolled {
  background: rgba(3, 11, 36, 0.92);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 4px 20px -6px rgba(0, 0, 0, 0.25);
}

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

.navbar__logo {
  height: 42px;
  width: auto;
}

.navbar__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
  letter-spacing: 0.3px;
}

.navbar__title span {
  color: var(--cyan);
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar__close {
  display: none;
}

.navbar__menu a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.94rem;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
  transition: color 0.2s ease;
}

.navbar__menu a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cyan);
  transition: width 0.25s ease;
}

.navbar__menu a:hover {
  color: var(--white);
}

.navbar__menu a:hover::after {
  width: 100%;
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.navbar__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.navbar__burger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 140px 0 80px;
  background: var(--navy);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  -webkit-mask-image: linear-gradient(90deg,
      transparent 0%,
      transparent 6%,
      rgba(0, 0, 0, 0.25) 26%,
      rgba(0, 0, 0, 0.7) 42%,
      #000 60%,
      #000 100%);
  mask-image: linear-gradient(90deg,
      transparent 0%,
      transparent 6%,
      rgba(0, 0, 0, 0.25) 26%,
      rgba(0, 0, 0, 0.7) 42%,
      #000 60%,
      #000 100%);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(3, 11, 36, 0.55) 0%,
      rgba(3, 11, 36, 0.35) 40%,
      rgba(7, 30, 77, 0.18) 65%,
      rgba(7, 30, 77, 0.06) 100%);
}

.hero__container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

.hero__content {
  max-width: 620px;
}

.badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.14);
  border: 1px solid rgba(56, 189, 248, 0.4);
  color: #BAE6FD;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 22px;
}

.hero__title {
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero__subtitle {
  font-size: 1.2rem;
  color: #DBEAFE;
  font-weight: 500;
  margin-bottom: 16px;
  max-width: 560px;
}

.hero__desc {
  color: #B8CCEC;
  font-size: 1rem;
  max-width: 560px;
  margin-bottom: 34px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 36px;
  z-index: 3;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.85);
}

.hero__scroll-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounce 2.2s infinite;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.hero__scroll-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.hero__scroll:hover .hero__scroll-icon {
  background: rgba(201, 168, 76, 0.18);
  border-color: var(--gold-light);
  color: var(--gold-light);
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

/* ---------- Scroll to top ---------- */
.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--royal-blue), var(--deep-blue));
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s, background 0.25s ease;
  z-index: 90;
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: var(--navy);
}

/* ---------- Section generic ---------- */
.section {
  padding: 100px 0;
}

.section--light {
  background: var(--bg-light);
}

.section__head {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  color: var(--royal-blue);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section__head h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.25;
}

.section__head p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section__head--left {
  margin: 0;
  text-align: left;
  max-width: 480px;
}

.section__head--dark h2 {
  color: var(--white);
}

.eyebrow--light {
  color: #7DD3FC;
}

/* ---------- DRKKG top: text + 3D illustration ---------- */
.drkkg__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 56px;
}

.drkkg__illustration {
  width: 260px;
  flex-shrink: 0;
  cursor: grab;
  touch-action: none;
  user-select: none;
}

.drkkg__illustration svg {
  width: 100%;
  height: auto;
  will-change: transform;
}

.drkkg__illustration.is-dragging {
  cursor: grabbing;
}

/* ---------- Highlight grid (DRKKG) ---------- */
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.highlight-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(11, 61, 145, 0.06);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.highlight-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-soft);
  border-color: rgba(18, 102, 214, 0.25);
}

.highlight-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(18, 102, 214, 0.12), rgba(56, 189, 248, 0.14));
  color: var(--royal-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.highlight-card:hover .highlight-card__icon {
  transform: scale(1.12) rotate(-6deg);
}

.highlight-card__icon svg {
  width: 26px;
  height: 26px;
}

.highlight-card h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.highlight-card p {
  color: var(--muted);
  font-size: 0.92rem;
}

/* ---------- Portal / Services grid ---------- */
.portal-featured {
  display: flex;
  align-items: center;
  gap: 24px;
  background: linear-gradient(120deg, rgba(234, 88, 12, 0.08), rgba(234, 88, 12, 0.02));
  border: 1px solid rgba(234, 88, 12, 0.25);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-bottom: 32px;
  box-shadow: var(--shadow-card);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.portal-featured:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(234, 88, 12, 0.5);
}

.portal-featured__icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, #FB923C, #C2410C);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.portal-featured:hover .portal-featured__icon {
  transform: scale(1.12) rotate(-6deg);
}

.portal-featured__icon svg {
  width: 28px;
  height: 28px;
}

.portal-featured__body {
  flex: 1;
  min-width: 0;
}

.portal-featured__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #C2410C;
  margin-bottom: 6px;
}

.portal-featured__body h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.portal-featured__body p {
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 640px;
}

.portal-featured__cta {
  flex-shrink: 0;
  white-space: nowrap;
}

.portal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.portal-card {
  background: var(--white);
  border: 1px solid rgba(11, 61, 145, 0.08);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.portal-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-soft);
  border-color: rgba(11, 61, 145, 0.25);
}

.portal-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--deep-blue), var(--royal-blue));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.portal-card:hover .portal-card__icon {
  transform: scale(1.12) rotate(-6deg);
}

.portal-card__icon svg {
  width: 24px;
  height: 24px;
}

.portal-card__icon--navy {
  background: linear-gradient(135deg, var(--deep-blue), var(--navy));
}

.portal-card__icon--red {
  background: linear-gradient(135deg, #EF4444, #B91C1C);
}

.portal-card__icon--green {
  background: linear-gradient(135deg, #22C55E, #15803D);
}

.portal-card__icon--teal {
  background: linear-gradient(135deg, #14B8A6, #0F766E);
}

.portal-card h3 {
  font-size: 1.08rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.portal-card p {
  color: var(--muted);
  font-size: 0.9rem;
  flex-grow: 1;
  margin-bottom: 22px;
}

.portal-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--royal-blue);
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap 0.2s ease, color 0.2s ease;
}

.portal-card__link:hover {
  gap: 10px;
  color: var(--deep-blue);
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 32px;
  align-items: stretch;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--white);
  border: 1px solid rgba(11, 61, 145, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-item__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--bg-light);
  color: var(--royal-blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-item__icon svg {
  width: 20px;
  height: 20px;
}

.contact-item__label {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 4px;
}

.contact-item__value {
  font-size: 0.96rem;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.5;
}

.contact-info__cta {
  margin-top: 8px;
  justify-content: center;
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  min-height: 340px;
}

.contact-map iframe {
  display: block;
}

/* ---------- Stats ---------- */
.stats {
  position: relative;
  background: linear-gradient(135deg, var(--navy), var(--deep-blue));
  background-size: cover;
  background-position: center;
  padding: 72px 0;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 20, 0.82);
}

.stats .container {
  position: relative;
  z-index: 1;
}

.stats .section__head {
  margin-bottom: 44px;
}

.section__head--dark p {
  color: #C7D6EE;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat__value {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.stat__label {
  color: #AFC6EE;
  font-size: 0.92rem;
  font-weight: 500;
}

/* ---------- CTA ---------- */
.cta {
  background: linear-gradient(135deg, var(--royal-blue), var(--deep-blue) 60%, var(--navy));
  padding: 96px 0;
  text-align: center;
}

.cta__inner {
  max-width: 720px;
  margin: 0 auto;
}

.cta h2 {
  color: var(--white);
  font-size: clamp(1.7rem, 3.4vw, 2.3rem);
  margin-bottom: 18px;
  line-height: 1.3;
}

.cta p {
  color: #D6E6FB;
  font-size: 1.05rem;
  margin-bottom: 36px;
}

.cta__actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* ---------- Footer ---------- */
.footer {
  background: #051235;
  color: #B8C7E6;
  padding: 64px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand {
  display: flex;
  gap: 16px;
}

.footer__logo {
  height: 48px;
  width: auto;
}

.footer__title {
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.footer__desc {
  font-size: 0.88rem;
  line-height: 1.6;
}

.footer__heading {
  color: var(--white);
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 16px;
}

.footer__links,
.footer__contact {
  display: flex;
  flex-direction: column;
}

.footer__links a {
  font-size: 0.88rem;
  padding: 6px 0;
  transition: color 0.2s ease;
}

.footer__links a:hover {
  color: var(--cyan);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  margin-bottom: 12px;
  color: #B8C7E6;
}

.footer__contact-item svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold);
}

.footer__bottom {
  text-align: center;
  padding: 24px;
  font-size: 0.82rem;
  color: #7C8CB0;
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay.is-visible {
  transition-delay: 0.12s;
}

.reveal--delay2.is-visible {
  transition-delay: 0.24s;
}

.reveal--delay3.is-visible {
  transition-delay: 0.36s;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {

  .highlight-grid,
  .portal-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-map {
    min-height: 300px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  .navbar__menu {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 78%;
    max-width: 320px;
    background: rgba(3, 11, 36, 0.98);
    backdrop-filter: blur(14px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 28px;
    padding: 40px;
    transition: right 0.35s ease;
    z-index: 99;
  }

  .navbar__close {
    position: absolute;
    top: 22px;
    right: 22px;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  }

  .navbar__close:hover {
    background: rgba(56, 189, 248, 0.16);
    border-color: rgba(56, 189, 248, 0.45);
    transform: rotate(90deg);
  }

  .navbar__menu.is-open {
    right: 0;
  }

  .navbar__burger {
    display: flex;
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .hero__bg {
    -webkit-mask-image: none;
    mask-image: none;
  }

  .hero__overlay {
    background: linear-gradient(180deg, rgba(3, 11, 36, 0.94) 0%, rgba(3, 11, 36, 0.88) 55%, rgba(3, 11, 36, 0.7) 100%);
  }

  .hero__content {
    max-width: 100%;
  }

  .drkkg__top {
    flex-direction: column;
    text-align: center;
    gap: 28px;
  }

  .section__head--left {
    text-align: center;
    max-width: 100%;
  }

  .drkkg__illustration {
    width: 200px;
  }
}

@media (max-width: 640px) {
  .navbar__title {
    font-size: 1rem;
  }

  .navbar__logo {
    height: 34px;
  }

  .btn--cta {
    padding: 9px 16px;
    font-size: 0.82rem;
  }

  .hero {
    padding: 120px 0 60px;
  }

  .hero__title {
    font-size: 2.2rem;
  }

  .hero__subtitle {
    font-size: 1.05rem;
  }

  .section {
    padding: 70px 0;
  }

  .highlight-grid,
  .portal-grid {
    grid-template-columns: 1fr;
  }

  .contact-info {
    padding: 24px;
  }

  .portal-featured {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }

  .portal-featured__cta {
    width: 100%;
    justify-content: center;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .cta__actions {
    flex-direction: column;
  }

  .cta__actions .btn {
    width: 100%;
    justify-content: center;
  }
}
