
:root {
  --blue: #1266f1;
  --blue-2: #0a54d6;
  --navy: #071a3d;
  --navy-2: #102d5d;
  --magenta: #ef3f8f;
  --cyan: #38c6f4;
  --soft: #eef6ff;
  --cream: #f7fbff;
  --white: #ffffff;
  --text: #111c37;
  --muted: #65718d;
  --line: rgba(14, 37, 82, .12);
  --shadow: 0 28px 80px rgba(7, 26, 61, .16);
  --shadow-soft: 0 18px 45px rgba(7, 26, 61, .10);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 14px;
  --container: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.65;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.container { width: min(100% - 42px, var(--container)); margin: 0 auto; }
.skip-link { position:absolute; left:16px; top:-50px; z-index:9999; background:var(--navy); color:white; padding:10px 14px; border-radius:10px; }
.skip-link:focus { top: 12px; }

.lang-bm { display: none; }
body[data-lang="bm"] .lang-en { display: none !important; }
body[data-lang="bm"] .lang-bm { display: inline !important; }
body[data-lang="bm"] p .lang-bm,
body[data-lang="bm"] h1 .lang-bm,
body[data-lang="bm"] h2 .lang-bm,
body[data-lang="bm"] h3 .lang-bm { display: inline !important; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(12, 39, 88, .08);
}
.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 178px;
  color: var(--navy);
  font-weight: 900;
  letter-spacing: -.02em;
}
.brand img { width: 44px; height: 44px; border-radius: 50%; object-fit: contain; background: white; box-shadow: 0 10px 25px rgba(15, 41, 87, .08); }
.brand span { display: inline-flex; flex-direction: column; line-height: 1.08; font-size: 16px; white-space: nowrap; }
.brand small { font-size: 11px; color: var(--muted); font-weight: 800; letter-spacing: .02em; margin-top: 3px; }

.nav-menu {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.1vw, 18px);
  min-width: 0;
}
.nav-menu a, .more-btn {
  position: relative;
  padding: 26px 0;
  color: #263250;
  font-size: 14px;
  font-weight: 850;
  white-space: nowrap;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.nav-menu a::after, .more-btn::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 21px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--blue), var(--magenta));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}
.nav-menu a:hover::after, .nav-menu a.active::after, .nav-dropdown:hover .more-btn::after { transform: scaleX(1); }
.nav-dropdown { position: relative; }
.dropdown-panel {
  position: absolute;
  right: 0;
  top: 72px;
  min-width: 260px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.96);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: .2s ease;
}
.nav-dropdown:hover .dropdown-panel,
.nav-dropdown.open .dropdown-panel { opacity: 1; transform: translateY(0); pointer-events: auto; }
.dropdown-panel a {
  display: block;
  padding: 10px 12px;
  border-radius: 14px;
}
.dropdown-panel a:hover { background: var(--soft); }
.dropdown-panel a::after { display: none; }

.header-actions { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.lang-toggle {
  display: flex;
  gap: 2px;
  padding: 5px;
  background: #f4f7fc;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(11, 34, 78, .06);
}
.lang-toggle button {
  border: 0;
  cursor: pointer;
  background: transparent;
  color: var(--muted);
  border-radius: 999px;
  padding: 8px 11px;
  font-weight: 900;
  font-size: 13px;
}
.lang-toggle button.active { background: var(--navy); color: white; }
.mobile-menu-btn {
  display: none;
  width: 50px; height: 50px;
  border-radius: 17px;
  border: 1px solid var(--line);
  background: white;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  box-shadow: 0 8px 20px rgba(7,26,61,.08);
}
.mobile-menu-btn span { width: 22px; height: 3px; border-radius: 99px; background: var(--navy); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 950;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: white;
  background: linear-gradient(120deg, var(--blue), #7a47ff 45%, var(--magenta));
  box-shadow: 0 16px 35px rgba(18,102,241,.25);
}
.btn-secondary {
  color: white;
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.35);
  backdrop-filter: blur(12px);
}
.btn-light { color: var(--navy); background: white; border-color: rgba(255,255,255,.35); box-shadow: 0 15px 35px rgba(7,26,61,.16); }
.btn-outline { color: var(--navy); background: white; border-color: var(--line); }
.nav-cta { min-height: 42px; padding: 9px 15px; font-size: 13px; }

.hero {
  position: relative;
  min-height: clamp(620px, 88vh, 850px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
  isolation: isolate;
}
.hero.hero-sm { min-height: 460px; }
.hero-image, .hero-image::after { position: absolute; inset: 0; }
.hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: heroZoom 18s ease-in-out infinite alternate;
}
.hero-image::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(4,18,45,.88), rgba(4,18,45,.60) 46%, rgba(4,18,45,.20)),
    radial-gradient(circle at 15% 70%, rgba(18,102,241,.45), transparent 35%);
  z-index: 1;
}
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.08); } }
.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 850px; padding: 110px 0 95px; }
.hero h1 {
  margin: 18px 0 18px;
  font-size: clamp(46px, 7.6vw, 104px);
  line-height: .94;
  letter-spacing: -.065em;
  text-wrap: balance;
}
.hero.hero-sm h1 { font-size: clamp(42px, 6vw, 78px); max-width: 980px; }
.lead { font-size: clamp(18px, 2vw, 23px); max-width: 750px; color: rgba(255,255,255,.88); margin: 0 0 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 24px 0 18px; }
.trust-line { color: rgba(255,255,255,.82); font-weight: 700; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.24);
  color: rgba(255,255,255,.92);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .03em;
}
.kicker.dark { background: rgba(18,102,241,.08); color: var(--blue); border-color: rgba(18,102,241,.16); }
.kicker::before {
  content: "";
  width: 8px; height: 8px; border-radius: 50%;
  background: linear-gradient(120deg, var(--blue), var(--magenta));
  box-shadow: 0 0 0 6px rgba(18,102,241,.10);
}

.section { padding: 96px 0; position: relative; }
.section-tight { padding: 64px 0; }
.section-soft { background: linear-gradient(180deg, #f7fbff, #edf5ff); }
.section-dark { background: var(--navy); color: white; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 28px; margin-bottom: 38px; }
.section-head.center { justify-content: center; text-align: center; }
.section-head h2, .split h2, .section h2 {
  font-size: clamp(34px, 5vw, 66px);
  line-height: 1.02;
  letter-spacing: -.055em;
  margin: 14px 0 16px;
  color: var(--navy);
}
.section-dark h2, .section-dark .section-head h2 { color: white; }
.section p { color: var(--muted); font-size: 17px; }
.section-dark p { color: rgba(255,255,255,.78); }
.section-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }

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

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .9fr);
  gap: clamp(36px, 7vw, 90px);
  align-items: center;
}
.split.reverse { grid-template-columns: minmax(420px, .9fr) minmax(0, 1fr); }
.image-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: white;
  position: relative;
}
.image-card img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16/11; transition: transform .6s ease; }
.image-card:hover img { transform: scale(1.04); }
.image-stack { position: relative; }
.image-stack .caption-card {
  margin-top: 18px;
  position: relative;
  width: min(100%, 520px);
  padding: 24px;
  border-radius: 24px;
  background: white;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
}
.image-stack .caption-card b { display: block; font-size: 22px; color: var(--navy); letter-spacing: -.02em; }
.image-stack .caption-card span { color: var(--muted); }

.impact-strip { padding: 54px 0 70px; background: var(--navy); color: white; }
.impact-panel {
  background: linear-gradient(135deg, rgba(255,255,255,.09), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 32px;
  padding: 28px;
  box-shadow: 0 35px 85px rgba(2, 12, 30, .32);
}
.stat-card {
  padding: 28px;
  border-radius: 24px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}
.stat-card b { display: block; font-size: clamp(34px, 4vw, 58px); line-height: 1; letter-spacing: -.04em; }
.stat-card span { display:block; margin-top: 10px; color: rgba(255,255,255,.78); font-weight: 850; }

.info-card, .card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 14px 38px rgba(7,26,61,.06);
  transition: .25s ease;
  overflow: hidden;
}
.info-card:hover, .card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.info-card h3, .card h3 { margin: 18px 0 8px; font-size: 23px; line-height: 1.14; color: var(--navy); letter-spacing: -.03em; }
.info-card p, .card p { margin: 0; }
.icon {
  width: 54px; height: 54px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  background: linear-gradient(135deg, rgba(18,102,241,.11), rgba(239,63,143,.12));
}
.icon svg { width: 26px; height: 26px; }

.program-card { padding: 0; }
.program-card figure { margin: 0; overflow: hidden; aspect-ratio: 16/10; }
.program-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.program-card:hover img { transform: scale(1.06); }
.program-card .card-body { padding: 24px; }
.program-card a { color: var(--blue); font-weight: 900; display: inline-block; margin-top: 14px; }

.campaign {
  padding: 42px;
  border-radius: 36px;
  color: white;
  background:
    radial-gradient(circle at top left, rgba(52,198,243,.25), transparent 28%),
    linear-gradient(135deg, #071a3d, #0a3272 55%, #102d5d);
  box-shadow: var(--shadow);
}
.campaign h2 { color: white; }
.campaign p { color: rgba(255,255,255,.80); }
.progress { height: 12px; border-radius: 999px; background: rgba(255,255,255,.15); overflow: hidden; margin: 26px 0 8px; }
.progress span { display: block; height: 100%; width: 0; border-radius: inherit; background: linear-gradient(90deg, var(--cyan), var(--magenta)); transition: width 1.1s ease; }

.ways-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.way-card { padding: 22px; border-radius: 22px; background: white; border:1px solid var(--line); box-shadow: 0 12px 32px rgba(7,26,61,.06); }
.way-card h3 { margin: 12px 0 6px; }

.bank-box {
  background: linear-gradient(135deg, #081c43, #112d63);
  color: white;
  border-radius: 30px;
  padding: 30px;
  box-shadow: var(--shadow);
}
.bank-line { display: grid; grid-template-columns: 145px 1fr; gap: 12px; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.bank-line span:first-child { color: rgba(255,255,255,.66); font-weight: 800; }
.bank-line b { letter-spacing: .02em; }
.copy-btn { margin-top: 18px; width: 100%; }
.muted-note { font-size: 14px; color: var(--muted); }

.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); padding: 20px 0; }
.faq summary { cursor: pointer; font-weight: 900; color: var(--navy); font-size: 18px; }
.faq details p { margin: 12px 0 0; }

.gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.gallery-item { border: 0; padding: 0; margin: 0; border-radius: 22px; overflow: hidden; cursor: pointer; box-shadow: 0 12px 32px rgba(7,26,61,.08); background: white; }
.gallery-item img { width: 100%; height: 230px; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.07); }
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(4,12,28,.86);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: min(100%, 1180px); max-height: 86vh; border-radius: 24px; box-shadow: var(--shadow); }
.lightbox button { position: absolute; top: 20px; right: 20px; width: 48px; height: 48px; border:0; border-radius: 50%; background: white; color: var(--navy); font-size: 26px; cursor:pointer; }

.news-slider { overflow: hidden; border-radius: 32px; margin-top: 28px; }
.news-track { display: flex; gap: 18px; width: max-content; animation: slideTrack 48s linear infinite; }
.news-track:hover { animation-play-state: paused; }
.news-slide { width: 360px; border-radius: 24px; overflow: hidden; background: white; box-shadow: var(--shadow-soft); }
.news-slide img { width: 100%; height: 220px; object-fit: cover; }
.news-slide div { padding: 18px; }
.news-slide.visual-only div { display:none; }
.news-slide.visual-only img { height: 260px; }
@keyframes slideTrack { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.update-card { padding: 0; overflow: hidden; }
.update-card img { width: 100%; height: 220px; object-fit: cover; }
.update-card .card-body { padding: 22px; }
.update-card time { color: var(--blue); font-weight: 900; font-size: 13px; }
.update-card h3 { margin-top: 8px; }

.report-table { width: 100%; border-collapse: collapse; overflow: hidden; border-radius: 22px; background: white; box-shadow: var(--shadow-soft); }
.report-table th, .report-table td { padding: 16px; border-bottom: 1px solid var(--line); text-align: left; }
.report-table th { background: var(--navy); color: white; }
.report-table tr:last-child td { border-bottom: 0; }

.form-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 28px;
  box-shadow: var(--shadow-soft);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid .full { grid-column: 1/-1; }
label { display:block; font-weight:900; color: var(--navy); margin-bottom: 7px; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #f8fbff;
  color: var(--text);
  padding: 14px 14px;
  border-radius: 16px;
  outline: none;
}
textarea { min-height: 140px; resize: vertical; }

.footer {
  background: #071a3d;
  color: white;
  padding: 70px 0 24px;
}
.footer-grid { display: grid; grid-template-columns: 1.2fr 1.4fr 1fr; gap: 42px; }
.footer p { color: rgba(255,255,255,.76); }
.footer h3 { margin-top: 0; }
.footer .brand { color: white; margin-bottom: 16px; }
.footer-note { font-size: 14px; }
.footer-links { display: grid; grid-template-columns: repeat(2,1fr); gap: 8px 18px; }
.footer-links a, .footer a { color: rgba(255,255,255,.82); }
.footer-links a:hover, .footer a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 45px; padding-top: 20px; display:flex; justify-content:space-between; gap:16px; color: rgba(255,255,255,.6); font-size: 13px; }

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 880;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.floating-actions a {
  width: 58px; height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--magenta));
  box-shadow: 0 18px 40px rgba(18,102,241,.28);
}
.floating-actions .icon { background: transparent; color: white; width: 32px; height: 32px; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

@media (max-width: 1320px) {
  .nav-menu { gap: 11px; }
  .nav-menu a, .more-btn { font-size: 13px; }
  .brand { min-width: 168px; }
  .nav-cta { display: none; }
}
@media (max-width: 1140px) {
  .mobile-menu-btn { display: inline-flex; }
  .nav-menu {
    position: fixed;
    top: 82px; left: 16px; right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255,255,255,.98);
    box-shadow: var(--shadow);
    max-height: calc(100vh - 110px);
    overflow: auto;
  }
  body.nav-open .nav-menu { display: flex; }
  .nav-menu a, .more-btn {
    padding: 12px 14px;
    border-radius: 14px;
    font-size: 15px;
  }
  .nav-menu a::after, .more-btn::after { display: none; }
  .nav-menu a.active, .nav-menu a:hover { background: var(--soft); color: var(--blue); }
  .nav-dropdown { width: 100%; }
  .more-btn { width: 100%; text-align: left; display: flex; justify-content: space-between; }
  .dropdown-panel {
    position: static;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    display: grid;
    min-width: 0;
    box-shadow: none;
    border-radius: 16px;
    background: #f7fbff;
    margin-top: 6px;
  }
  .brand span { font-size: 17px; }
}

@media (max-width: 900px) {
  .container { width: min(100% - 36px, var(--container)); }
  .nav-wrap { min-height: 86px; }
  .brand { min-width: 0; }
  .brand img { width: 46px; height: 46px; }
  .brand span { font-size: 18px; }
  .brand small { display: none; }
  .hero { min-height: 720px; align-items: end; }
  .hero.hero-sm { min-height: 430px; }
  .hero-content { padding: 120px 0 58px; }
  .hero h1 { font-size: clamp(42px, 13vw, 68px); }
  .hero-image::after { background: linear-gradient(180deg, rgba(4,18,45,.25), rgba(4,18,45,.88)); }
  .section { padding: 72px 0; }
  .split, .split.reverse { grid-template-columns: 1fr; }
  .grid-2, .grid-3, .grid-4, .ways-grid { grid-template-columns: 1fr; }
  .section-head { display:block; text-align: center; }
  .section h2, .section-head h2, .split h2 { font-size: clamp(34px, 10vw, 54px); }
  .impact-strip { padding: 42px 0 58px; }
  .impact-panel { padding: 20px; border-radius: 28px; }
  .stat-card { padding: 28px 26px; }
  .image-stack .caption-card { width: 100%; margin: 16px 0 0; }
  .campaign { padding: 28px; border-radius: 30px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item img { height: 190px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .floating-actions { right: 12px; bottom: 16px; }
  .floating-actions a { width: 52px; height: 52px; }
}

@media (max-width: 520px) {
  .header-actions { gap: 7px; }
  .lang-toggle button { padding: 7px 10px; }
  .mobile-menu-btn { width: 50px; height: 50px; }
  .brand span { font-size: 17px; }
  .hero-actions .btn, .section-actions .btn { width: 100%; }
  .gallery-grid { grid-template-columns: 1fr; }
  .news-slide { width: 300px; }
  .bank-line { grid-template-columns: 1fr; gap: 2px; }
}


/* V2.1 updates: secure forms and Exabytes CSR sponsorship footer */
.form-hp { display: none !important; visibility: hidden !important; height: 0 !important; opacity: 0 !important; pointer-events: none !important; }
.form-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: -6px;
}
.sponsor-footer {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.sponsor-footer a {
  display: inline-flex;
  background: #fff;
  border-radius: 14px;
  padding: 8px 10px;
  box-shadow: 0 16px 40px rgba(0,0,0,.18);
}
.sponsor-footer img {
  width: 210px;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
.sponsor-footer p {
  margin: 0;
  font-size: 13px;
  color: rgba(255,255,255,.68);
  text-align: right;
}
@media (max-width: 760px) {
  .sponsor-footer {
    align-items: flex-start;
    flex-direction: column;
  }
  .sponsor-footer p {
    text-align: left;
  }
  .sponsor-footer img {
    width: 190px;
  }
}


/* V2.2 premium footer selected design */
.footer.footer-premium {
  position: relative;
  overflow: hidden;
  padding: 84px 0 48px;
  background:
    radial-gradient(circle at 8% 85%, rgba(42, 103, 255, .42), transparent 34%),
    radial-gradient(circle at 92% 82%, rgba(229, 49, 168, .22), transparent 32%),
    linear-gradient(135deg, #031332 0%, #061c47 45%, #041631 100%);
  color: #fff;
}
.footer-premium-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0%, rgba(255,255,255,.04) 44%, transparent 70%),
    radial-gradient(circle at 18% 74%, rgba(231, 53, 178, .15), transparent 24%);
}
.footer-premium-bg::before {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: 11%;
  height: 180px;
  background:
    linear-gradient(90deg, transparent, rgba(39, 112, 255, .32), rgba(237, 58, 177, .25), transparent);
  filter: blur(34px);
  transform: rotate(-2deg);
}
.footer-premium-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 1.1fr) minmax(360px, 1.15fr) minmax(280px, .9fr);
  gap: 38px;
  align-items: center;
  padding: 52px 48px 34px;
  border: 1px solid rgba(117, 168, 255, .34);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(9, 36, 86, .82), rgba(5, 22, 53, .66)),
    radial-gradient(circle at 10% 92%, rgba(229, 51, 167, .18), transparent 24%);
  box-shadow:
    0 32px 90px rgba(0, 0, 0, .28),
    inset 0 1px 0 rgba(255, 255, 255, .08);
}
.footer-premium-panel::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(120, 172, 255, .18);
  border-radius: 27px;
  pointer-events: none;
}
.footer-brand-block,
.footer-columns,
.footer-sponsor-premium {
  position: relative;
  z-index: 1;
}
.footer-logo-lockup {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #fff;
  text-decoration: none;
}
.footer-main-logo {
  width: 118px;
  height: 118px;
  object-fit: contain;
  border-radius: 999px;
  background: #fff;
  padding: 10px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .2);
}
.footer-org-name {
  font-size: clamp(28px, 2.8vw, 42px);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -1.25px;
}
.footer-accent-line {
  display: block;
  width: 86px;
  height: 3px;
  margin: 24px 0 22px 142px;
  border-radius: 20px;
  background: linear-gradient(90deg, #2a7fff, #ef3aae);
  box-shadow: 0 0 18px rgba(239, 58, 174, .35);
}
.footer-brand-block p {
  max-width: 470px;
  margin: 0 0 0 142px;
  color: rgba(255, 255, 255, .78);
  line-height: 1.72;
  font-size: 16px;
}
.footer-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px 44px;
  padding: 8px 42px;
  border-left: 1px solid rgba(255,255,255,.17);
  border-right: 1px solid rgba(255,255,255,.17);
}
.footer-column h3 {
  margin: 0 0 16px;
  color: #55a1ff;
  font-size: 13px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
.footer-column h3::after {
  content: "";
  display: block;
  width: 86px;
  height: 1px;
  margin-top: 10px;
  background: linear-gradient(90deg, #2a7fff, rgba(239, 58, 174, .6), transparent);
}
.footer-column a {
  display: block;
  color: rgba(255,255,255,.86);
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  margin: 0 0 13px;
  transition: transform .2s ease, color .2s ease;
}
.footer-column a:hover {
  color: #fff;
  transform: translateX(4px);
}
.footer-mini-contact {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.footer-mini-contact > span {
  display: grid;
  grid-template-columns: 42px 1fr;
  grid-template-rows: auto auto;
  gap: 2px 12px;
  align-items: center;
  min-width: 0;
  color: rgba(255,255,255,.74);
}
.footer-mini-contact strong {
  color: rgba(255,255,255,.62);
  font-size: 12px;
  font-weight: 700;
}
.footer-mini-contact a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.footer-mini-icon {
  grid-row: 1 / 3;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(48,128,255,.26), rgba(239,58,174,.16));
  color: #7fb8ff;
}
.footer-mini-icon svg { width: 19px; height: 19px; }
.footer-sponsor-premium {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 34px 28px;
  border: 1px solid rgba(119, 171, 255, .22);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 18px 52px rgba(0,0,0,.18);
}
.sponsor-label {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  justify-content: center;
  color: #71aaff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.sponsor-label span {
  width: 62px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(117, 174, 255, .75), transparent);
}
.sponsor-label em {
  font-style: normal;
  text-align: center;
}
.exabytes-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 330px);
  padding: 22px 24px;
  border-radius: 19px;
  border: 1px solid rgba(121, 174, 255, .24);
  background: rgba(5, 23, 56, .58);
  box-shadow: 0 0 28px rgba(68, 136, 255, .15);
}
.exabytes-badge img {
  width: 270px;
  max-width: 100%;
  height: auto;
  display: block;
}
.footer-premium-bottom {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-top: 18px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.68);
  font-size: 13px;
}
.footer-bottom-links {
  display: inline-flex;
  gap: 18px;
  align-items: center;
}
.footer-bottom-links a {
  color: rgba(255,255,255,.76);
  text-decoration: none;
}
.footer-bottom-links a:hover { color: #fff; }

@media (max-width: 1180px) {
  .footer-premium-panel {
    grid-template-columns: 1fr 1fr;
  }
  .footer-sponsor-premium {
    grid-column: 1 / -1;
    min-height: auto;
  }
}
@media (max-width: 860px) {
  .footer.footer-premium { padding: 54px 0 34px; }
  .footer-premium-panel {
    grid-template-columns: 1fr;
    padding: 32px 22px 26px;
    border-radius: 26px;
  }
  .footer-logo-lockup {
    align-items: flex-start;
    gap: 16px;
  }
  .footer-main-logo {
    width: 82px;
    height: 82px;
    padding: 7px;
  }
  .footer-org-name {
    font-size: 27px;
  }
  .footer-accent-line,
  .footer-brand-block p {
    margin-left: 98px;
  }
  .footer-columns {
    border-left: 0;
    border-right: 0;
    padding: 0;
  }
  .footer-mini-contact {
    grid-template-columns: 1fr;
  }
  .footer-premium-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 560px) {
  .footer-logo-lockup {
    flex-direction: column;
  }
  .footer-accent-line,
  .footer-brand-block p {
    margin-left: 0;
  }
  .footer-columns {
    grid-template-columns: 1fr;
  }
  .exabytes-badge img {
    width: 235px;
  }
}


.bank-line b { word-break: break-word; }
