:root {
  --gf-bg: #2a3444;
  --gf-bg-soft: #334155;
  --gf-card: #3a4c63;
  --gf-text: #f7f9fd;
  --gf-muted: #dde5f2;
  --gf-accent: #ffb000;
  --gf-accent-2: #ff7a00;
  --gf-border: rgba(255, 255, 255, 0.14);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: auto;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--gf-text);
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 122, 0, 0.18), transparent 35%),
    radial-gradient(circle at 80% 20%, rgba(255, 176, 0, 0.14), transparent 40%),
    linear-gradient(180deg, #35445a 0%, #2a3444 60%, #232c3a 100%),
    var(--gf-bg);
  line-height: 1.6;
  padding-bottom: 84px;
}

h1,
h2,
h3,
.brand-name {
  font-family: "Exo 2", sans-serif;
  letter-spacing: 0.2px;
}

main {
  min-height: calc(100vh - 260px);
}

.page-intro {
  max-width: 880px;
  margin: 0 auto 2rem;
  text-align: center;
}

.page-title {
  font-size: clamp(1.9rem, 2.8vw, 2.6rem);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(47, 61, 80, 0.9);
  border-bottom: 1px solid var(--gf-border);
  backdrop-filter: blur(8px);
}

.brand-icon {
  font-size: 1.8rem;
  color: var(--gf-accent);
}

.brand-name {
  margin: 0;
  font-weight: 800;
  line-height: 1;
}

.brand-sub {
  color: var(--gf-muted);
}

.desktop-nav {
  border-bottom: 1px solid var(--gf-border);
  background: rgba(54, 70, 92, 0.9);
}

.desktop-nav .nav-link {
  color: var(--gf-muted);
  border-radius: 999px;
  font-weight: 600;
  padding: 0.45rem 1rem;
}

.desktop-nav .nav-link.active {
  color: #111;
  background: linear-gradient(140deg, var(--gf-accent), var(--gf-accent-2));
}

.desktop-nav .nav-link:hover {
  color: var(--gf-text);
  background: rgba(255, 176, 0, 0.15);
}

.hero-section {
  padding: 4.5rem 0 4rem;
}

.eyebrow {
  display: inline-block;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gf-accent);
  font-size: 0.78rem;
}

.hero-text {
  color: #e0e8f6;
  max-width: 68ch;
}

.hero-card {
  background: linear-gradient(145deg, #445870, #334357);
  border: 1px solid var(--gf-border);
  border-radius: 1rem;
  padding: 1.3rem 1.4rem;
}

.section-block {
  padding: 4rem 0;
}

.section-dark {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border-top: 1px solid var(--gf-border);
  border-bottom: 1px solid var(--gf-border);
}

.service-card {
  background: var(--gf-bg-soft);
  border: 1px solid var(--gf-border);
  border-radius: 1rem;
  padding: 1.3rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 176, 0, 0.4);
}

.icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 0.9rem;
  font-size: 1.2rem;
  color: #111;
  background: linear-gradient(135deg, var(--gf-accent), var(--gf-accent-2));
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--gf-border);
  border-radius: 0.8rem;
  padding: 0.85rem 1rem;
  height: 100%;
}

.feature-item i {
  color: var(--gf-accent);
  font-size: 1.2rem;
}

.commitment-box {
  background: linear-gradient(160deg, rgba(255, 176, 0, 0.08), rgba(255, 122, 0, 0.04));
  border: 1px solid rgba(255, 176, 0, 0.25);
  border-radius: 1rem;
  padding: 1.2rem;
}

.pill {
  border-radius: 999px;
  border: 1px solid rgba(255, 176, 0, 0.35);
  padding: 0.4rem 0.8rem;
  background: rgba(0, 0, 0, 0.2);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}

.footer-section {
  border-top: 1px solid var(--gf-border);
  background: #2f3d52;
  padding: 3rem 0;
}

.quote-box {
  border: 1px solid var(--gf-border);
  border-radius: 1rem;
  padding: 1.1rem;
  background: #3a4d66;
}

.copyright-line {
  margin-top: 1rem;
  text-align: center;
  color: #f5f8ff;
  font-size: 0.9rem;
  opacity: 0.92;
}

.copyright-line a {
  color: var(--gf-accent);
  font-weight: 700;
  text-decoration: none;
}

.copyright-line a:hover {
  text-decoration: underline;
}

.mobile-app-nav {
  position: fixed;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: 1050;
  background: rgba(11, 14, 18, 0.96);
  border: 1px solid var(--gf-border);
  border-radius: 1rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.2rem;
  padding: 0.35rem;
  backdrop-filter: blur(8px);
}

.mobile-nav-link {
  text-decoration: none;
  color: var(--gf-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  border-radius: 0.8rem;
  min-height: 56px;
  font-size: 0.75rem;
  font-weight: 600;
}

.mobile-nav-link i {
  font-size: 1.05rem;
}

.mobile-nav-link.active {
  color: #111;
  background: linear-gradient(140deg, var(--gf-accent), var(--gf-accent-2));
}

.mobile-nav-link:active {
  transform: scale(0.98);
}

@media (min-width: 992px) {
  body {
    padding-bottom: 0;
  }

  html {
    scrollbar-width: thin;
  }

  html::-webkit-scrollbar {
    width: 12px;
  }

  html::-webkit-scrollbar-track {
    background: #111721;
  }

  html::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--gf-accent), var(--gf-accent-2));
    border-radius: 8px;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    padding-top: 2.8rem;
  }

  .hero-section .display-5 {
    font-size: 1.9rem;
  }
}

@media (max-width: 991.98px) {
  html {
    scrollbar-width: none;
  }

  html::-webkit-scrollbar,
  body::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
  }

  .page-home .hero-cta {
    justify-content: center;
  }

  .footer-section .container {
    text-align: center;
  }

  .footer-section .btn {
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-section .row > [class*="col-"] {
    text-align: center;
  }
}
