:root {
  --gic-bg: #08090b;
  --gic-surface: #12151a;
  --gic-text: #f7f4ed;
  --gic-muted: #a8adb7;
  --gic-gold: #d7a928;
  --gic-gold-light: #f0cc62;
  --gic-line: rgba(255, 255, 255, .13);
}

.gic-site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  padding: 16px 0;
  transition: background .25s ease, box-shadow .25s ease;
 
}

.gic-site-header.is-scrolled {
  background: rgba(8, 9, 11, .94);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .24);
  border-bottom: 1px solid var(--gic-line);
   background:#08090b
}

.gic-header-wrap {
  width: min(1320px, calc(100% - 48px));
  margin: auto;
  display: flex;
  align-items: center;
  gap: 26px;
}

.gic-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.gic-brand img {
  width: auto;
  height: 58px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, .35));
}

.gic-primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  margin-left: auto;
}

.gic-primary-nav a {
  color: var(--gic-text);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  opacity: .86;
  transition: color .2s ease, opacity .2s ease;
}

.gic-primary-nav a:hover,
.gic-primary-nav a:focus {
  color: var(--gic-gold-light);
  opacity: 1;
}

.gic-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
  border: 1px solid var(--gic-gold);
  border-radius: 999px;
  background: var(--gic-gold);
  color: #090909 !important;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .2s ease, background .2s ease;
}

.gic-header-cta:hover,
.gic-header-cta:focus {
  background: var(--gic-gold-light);
  transform: translateY(-2px);
}

.gic-menu-toggle {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 1px solid var(--gic-line);
  border-radius: 10px;
  background: transparent;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.gic-mobile-menu {
  display: none;
}

@media (max-width: 1050px) {
  .gic-primary-nav,
  .gic-header-cta {
    display: none;
  }

  .gic-menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .gic-mobile-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 24px;
    right: 24px;
    padding: 14px;
    border: 1px solid var(--gic-line);
    border-radius: 16px;
    background: rgba(12, 14, 18, .98);
    box-shadow: 0 18px 50px rgba(0, 0, 0, .35);
  }

  .gic-mobile-menu.is-open {
    display: grid;
    gap: 4px;
  }

  .gic-mobile-menu a {
    padding: 12px 10px;
    border-radius: 9px;
    color: var(--gic-text);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
  }

  .gic-mobile-menu a:hover {
    background: rgba(255, 255, 255, .07);
    color: var(--gic-gold-light);
  }
}

@media (max-width: 700px) {
  .gic-header-wrap {
    width: calc(100% - 28px);
  }

  .gic-brand img {
    height: 46px;
  }
}

.gic-site-footer {
  margin-top: 0;
  background: var(--gic-bg);
  color: var(--gic-text);
  border-top: 1px solid var(--gic-line);
}

.gic-footer-inner {
  width: min(1200px, calc(100% - 48px));
  margin: auto;
  padding: 32px 0 18px;
}

.gic-footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.gic-footer-brand img {
  width: auto;
  height: 48px;
  margin-bottom: 12px;
}

.gic-footer-brand p {
  max-width: 420px;
  margin: 0;
  color: var(--gic-muted);
  line-height: 1.7;
  font-size: 14px;
}

.gic-footer-title {
  margin: 0 0 10px;
  color: var(--gic-gold-light);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.gic-footer-links {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gic-site-footer ul li {
  margin-bottom: 0 !important;
  color: inherit;
}

.gic-footer-links a,
.gic-footer-policies a {
  color: #c8ccd3;
  text-decoration: none;
  font-size: 14px;
}

.gic-footer-links a:hover,
.gic-footer-policies a:hover {
  color: var(--gic-gold-light);
}

.gic-footer-links a {
  color: #c8ccd3;
  text-decoration: none;
  font-size: 14px;
}

.gic-footer-links a:hover {
  color: var(--gic-gold-light);
}

.gic-footer-social {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gic-footer-social a {
  color: #c8ccd3;
  text-decoration: none;
  font-size: 14px;
}

.gic-footer-social a:hover {
  color: var(--gic-gold-light);
}

.gic-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-top: 22px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: #8f959e;
  font-size: 12px;
}

.gic-footer-policies {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 760px) {
  .gic-footer-inner {
    width: calc(100% - 28px);
  }

  .gic-footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .gic-footer-bottom {
    display: grid;
    gap: 14px;
  }
}
