:root {
  --gf-cyan: #00d9ff;
  --gf-dark: #04060b;
  --gf-dark-soft: #0b111f;
  --gf-text: #f7f7ff;
  --gf-muted: #9fb0c4;
}
.gf-header {
  background: linear-gradient(90deg, rgba(4,6,11,0.95), rgba(8,23,35,0.95));
  border-bottom: 2px solid var(--gf-cyan);
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
}
.gf-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.gf-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.gf-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--gf-text);
  font-size: 1.35rem;
  font-weight: 700;
  text-decoration: none;
}
.gf-logo img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}
.gf-menu {
  list-style: none;
  display: flex;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
}
.gf-menu a {
  color: var(--gf-text);
  text-decoration: none;
  font-weight: 500;
}
.gf-menu a:hover { color: var(--gf-cyan); }
.gf-cta {
  background: var(--gf-cyan);
  color: #000;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
}
.gf-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--gf-text);
  font-size: 1.8rem;
}
@media (max-width: 900px) {
  .gf-menu {
    display: none;
    position: absolute;
    right: 1.25rem;
    top: 80px;
    flex-direction: column;
    width: min(280px, calc(100% - 2.5rem));
    background: var(--gf-dark-soft);
    padding: 1.25rem;
    border-radius: 1rem;
    border: 1px solid rgba(255,255,255,0.08);
  }
  .gf-menu.open { display: flex; }
  .gf-menu li { border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 0.6rem; margin-bottom: 0.6rem; }
  .gf-menu li:last-child { border-bottom: 0; margin-bottom: 0; padding-bottom: 0; }
  .gf-mobile-toggle { display: inline-flex; cursor: pointer; }
}

.gf-footer {
  background: linear-gradient(180deg, #03050b 0%, #000000 100%);
  padding: 3.5rem 0 2rem;
  color: var(--gf-text);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.gf-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.gf-footer-brand h4 {
  margin: 0;
  font-size: 1.4rem;
}
.gf-footer-brand p { color: rgba(255,255,255,0.65); margin-top: 0.9rem; }
.gf-footer-column h5 {
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.82rem;
  color: var(--gf-muted);
}
.gf-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.gf-footer-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
}
.gf-footer-links a:hover { color: var(--gf-cyan); }
.gf-footer-contact div {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
}
.gf-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
}
.gf-social {
  display: flex;
  gap: 0.8rem;
}
.gf-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: grid;
  place-items: center;
  color: var(--gf-text);
  text-decoration: none;
}
.gf-social a:hover { border-color: var(--gf-cyan); color: var(--gf-cyan); }

body > div header.bg-gradient-to-r.from-green-800.to-black,
body > div footer.bg-gray-900.text-white { display: none !important; }
