:root {
  --gb-blue-900: #06164a;
  --gb-blue-800: #0b2670;
  --gb-orange: #ff8a00;
  --gb-orange-2: #ffc56f;
  --gb-white: #ffffff;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--gb-white);
  background: #020b2c;
}

a {
  text-decoration: none;
}

.gb-wrap {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.gb-homepage {
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 30%, rgba(255, 139, 0, 0.42), transparent 30%),
    radial-gradient(circle at 90% 72%, rgba(255, 139, 0, 0.32), transparent 25%),
    linear-gradient(160deg, #081238 0%, #0d2b81 48%, #06164a 100%);
}

.gb-topbar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(4, 14, 50, 0.74);
  font-size: 14px;
}

.gb-topbar-row,
.gb-mainnav-row,
.gb-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.gb-topbar-row {
  min-height: 52px;
}

.gb-contact-row {
  display: flex;
  gap: 14px;
  align-items: center;
}

.gb-contact-row a,
.gb-contact-row span {
  color: #fff;
}

.gb-mainnav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(7, 21, 70, 0.9);
  backdrop-filter: blur(4px);
}

.gb-mainnav-row {
  min-height: 72px;
  position: relative;
}

.gb-mainnav ul,
.gb-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gb-mainnav a,
.gb-footer a {
  color: #fff;
}

.gb-mainnav li a {
  display: block;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 8px;
}

.gb-mainnav li a.active,
.gb-mainnav li a:hover {
  background: linear-gradient(180deg, #ffb34e, #ef7d00);
  color: #1a1437;
}

.gb-brand {
  font-weight: 800;
  letter-spacing: 0.4px;
  font-size: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.gb-brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.gb-nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 10px;
  background: rgba(16, 44, 123, 0.9);
  color: #fff;
  font-size: 22px;
  align-items: center;
  justify-content: center;
}

.gb-nav-toggle:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.gb-nav-menu {
  margin-left: auto;
}

.gb-hero,
.gb-about,
.gb-services,
.gb-testimonials,
.gb-page-hero,
.gb-page-section {
  padding: 54px 0;
}

.gb-hero-grid,
.gb-about-grid,
.gb-service-grid,
.gb-page-grid,
.gb-cards-grid {
  display: grid;
  gap: 28px;
}

.gb-hero-grid {
  grid-template-columns: 0.95fr 1.25fr;
  align-items: center;
}

.gb-badge-block {
  display: flex;
  justify-content: center;
}

.gb-logo-badge {
  width: min(560px, 100%);
  height: auto;
  filter: drop-shadow(0 16px 26px rgba(255, 138, 0, 0.34));
}

.gb-logo-badge-about {
  width: min(380px, 92%);
}

.gb-eyebrow {
  margin: 0;
  font-size: clamp(20px, 2.4vw, 56px);
  font-weight: 700;
}

.gb-hero-content h2 {
  margin: 6px 0 16px;
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 800;
  line-height: 0.96;
}

.gb-hero-content h2 span,
.gb-about h2 span {
  color: var(--gb-orange-2);
}

.gb-hero-content p,
.gb-about p {
  margin: 0;
  line-height: 1.75;
}

.gb-hero-actions {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.gb-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 14px;
  font-weight: 700;
  color: #fff;
  border: 1px solid transparent;
}

.gb-btn-primary {
  background: linear-gradient(180deg, #ffa534, #f37700);
  box-shadow: 0 8px 18px rgba(255, 138, 0, 0.34);
}

.gb-btn-outline {
  background: #153f9a;
  border-color: rgba(255, 255, 255, 0.32);
}

.gb-stats {
  margin-top: 26px;
  background: rgba(255, 255, 255, 0.9);
  color: #10245f;
  border-radius: 14px;
  padding: 14px 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap: 8px;
}

.gb-stats strong {
  display: block;
  font-size: 42px;
  line-height: 0.95;
}

.gb-stats span {
  font-size: 14px;
  font-weight: 600;
}

.gb-about {
  background:
    radial-gradient(circle at 24% 16%, rgba(255, 165, 67, 0.32), transparent 34%),
    linear-gradient(180deg, rgba(6, 22, 74, 0.74), rgba(6, 22, 74, 0.95));
}

.gb-about-grid {
  grid-template-columns: 0.9fr 1.25fr;
  align-items: center;
}

.gb-about h2,
.gb-services h2 {
  margin: 0;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
}

.gb-about p {
  font-size: 18px;
}

.gb-check-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: 16px 22px;
}

.gb-check-grid ul,
.gb-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.gb-check-grid li,
.gb-list li {
  position: relative;
  padding-left: 26px;
  line-height: 1.5;
}

.gb-check-grid li::before,
.gb-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--gb-orange-2);
  font-weight: 800;
}

.gb-services {
  color: #10245f;
  background: linear-gradient(180deg, #f6f8ff 0%, #e6ebff 100%);
}

.gb-services h2,
.gb-testimonials h2,
.gb-subtitle {
  text-align: center;
}

.gb-subtitle {
  margin: 8px 0 30px;
  font-size: 34px;
}

.gb-service-grid {
  grid-template-columns: repeat(4, minmax(220px, 1fr));
}

.gb-service-card,
.gb-contact-card,
.gb-panel {
  background: #fff;
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 12px 25px rgba(14, 38, 95, 0.14);
}

.gb-service-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gb-service-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 28px;
  color: #fff;
  background: linear-gradient(180deg, #ffb34f, #ef7d00);
}

.gb-service-card h3,
.gb-contact-card h3,
.gb-panel h2,
.gb-panel h3 {
  margin: 0;
  color: #0d2f88;
}

.gb-service-card h3,
.gb-contact-card h3,
.gb-panel h3 {
  font-size: 30px;
}

.gb-panel h2 {
  font-size: 34px;
  margin-bottom: 10px;
}

.gb-service-card p,
.gb-contact-card p,
.gb-panel p {
  margin: 0;
  line-height: 1.7;
}

.gb-contact-card {
  color: #fff;
  background: linear-gradient(180deg, #0d2f88, #061a50);
  display: grid;
  gap: 10px;
}

.gb-contact-card img {
  height: 220px;
  border-radius: 10px;
  width: 100%;
  object-fit: cover;
}

.gb-contact-card h3,
.gb-contact-card p {
  color: #fff;
}

.gb-testimonials {
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 165, 67, 0.24), transparent 30%),
    linear-gradient(180deg, rgba(6, 22, 74, 0.82), rgba(6, 22, 74, 0.95));
}

.gb-testimonials .gb-subtitle {
  color: rgba(255, 255, 255, 0.86);
}

.gb-testimonial-slider {
  position: relative;
  overflow: hidden;
}

.gb-testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.gb-testimonial-slide {
  min-width: 100%;
  background: rgba(255, 255, 255, 0.96);
  color: #10245f;
  border-radius: 14px;
  padding: 30px;
  box-shadow: 0 12px 25px rgba(5, 18, 56, 0.35);
}

.gb-testimonial-slide p {
  margin: 0 0 16px;
  line-height: 1.8;
  font-size: 18px;
}

.gb-testimonial-slide h3 {
  margin: 0;
  font-size: 24px;
  color: #0d2f88;
}

.gb-testimonial-slide span {
  display: block;
  margin-top: 6px;
  color: #4e68ae;
  font-weight: 600;
}

.gb-testimonial-dots {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.gb-testimonial-dots button {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.4);
  padding: 0;
}

.gb-testimonial-dots button.active {
  width: 28px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffb34e, #ef7d00);
}

.gb-page-hero {
  background: linear-gradient(180deg, rgba(6, 22, 74, 0.28), rgba(6, 22, 74, 0));
}

.gb-page-hero h1 {
  margin: 0;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
}

.gb-page-hero p {
  margin: 10px 0 0;
  max-width: 75ch;
  line-height: 1.7;
}

.gb-page-section {
  background: linear-gradient(180deg, #f6f8ff 0%, #e6ebff 100%);
  color: #10245f;
}

.gb-page-grid {
  grid-template-columns: repeat(2, minmax(300px, 1fr));
}

.gb-cards-grid {
  grid-template-columns: repeat(3, minmax(260px, 1fr));
}

.gb-meta {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #5070c5;
}

.gb-form {
  display: grid;
  gap: 10px;
}

.gb-form label {
  font-weight: 600;
  color: #12327f;
}

.gb-form input,
.gb-form textarea {
  width: 100%;
  border: 1px solid #ced8ff;
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
}

.gb-form input:focus,
.gb-form textarea:focus {
  outline: 2px solid rgba(15, 58, 165, 0.25);
  border-color: #6f8fea;
}

.gb-footer {
  padding: 34px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  background:
    radial-gradient(circle at 30% 0%, rgba(255, 138, 0, 0.25), transparent 30%),
    #071b56;
}

.gb-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.gb-footer-brand img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.gb-footer-menu {
  justify-content: center;
}

.gb-footer-menu a {
  padding: 8px 10px;
  border-radius: 8px;
}

.gb-footer-menu a.active,
.gb-footer-menu a:hover {
  background: rgba(255, 255, 255, 0.14);
}

.gb-footer p {
  margin: 8px 0 0;
}

.gb-footer-social {
  display: flex;
  gap: 10px;
}

.gb-footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.gb-contact-row a i,
.gb-footer-social a i,
.gb-social-links a i {
  color: #fff;
}

.gb-social-links a {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #12327f;
}

.gb-map-panel {
  width: 100%;
  height: 380px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 25px rgba(14, 38, 95, 0.14);
}

.gb-map-panel iframe {
  width: 100%;
  height: 380px;
  border: 0;
}

@media (max-width: 1100px) {
  .gb-hero-grid,
  .gb-about-grid,
  .gb-page-grid {
    grid-template-columns: 1fr;
  }

  .gb-badge-block {
    justify-content: flex-start;
  }

  .gb-service-grid,
  .gb-cards-grid {
    grid-template-columns: repeat(2, minmax(230px, 1fr));
  }

  .gb-footer-row {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 860px) {
  .gb-topbar-row {
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px 0;
  }

  .gb-contact-row {
    flex-wrap: wrap;
    gap: 10px;
  }

  .gb-contact-right {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .gb-mainnav-row {
    min-height: 66px;
  }

  .gb-nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .gb-mainnav .gb-nav-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    margin-left: 0;
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 10px;
    border-radius: 12px;
    background: rgba(4, 14, 50, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 16px 30px rgba(2, 6, 24, 0.55);
  }

  .gb-mainnav .gb-nav-menu.is-open {
    display: flex;
  }

  .gb-mainnav li a {
    padding: 12px;
  }

  .gb-hero,
  .gb-about,
  .gb-services,
  .gb-testimonials,
  .gb-page-hero,
  .gb-page-section {
    padding: 36px 0;
  }

  .gb-service-grid,
  .gb-check-grid,
  .gb-stats,
  .gb-cards-grid {
    grid-template-columns: 1fr;
  }

  .gb-subtitle {
    font-size: 28px;
  }

  .gb-testimonial-slide {
    padding: 22px;
  }

  .gb-testimonial-slide p {
    font-size: 16px;
  }

  .gb-footer {
    padding: 28px 0;
  }

  .gb-footer-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }

  .gb-footer-brand {
    flex-direction: column;
    text-align: center;
  }

  .gb-footer-menu {
    justify-content: center;
    gap: 8px;
  }
}
