:root {
  --go-red: #0b84d5;
  --go-blue: #0130c4;
  --go-accent: #008eec;
  /* primary accent (plays the "yellow" role) */
  --go-accent-grad: linear-gradient(90deg, #0b84d5 0%, #0130c4 150%);
  --go-dark: #1c1e22;
  /* navbar black */
  --go-dark-2: #141518;
  --go-gray: #8a8f98;
  --go-white: #ffffff;
  --go-transition: 0.25s ease;

  --g-font-display: "Poppins", sans-serif;
  --g-font-body: "Poppins", sans-serif;
  --g-font-brand: "Poppins", sans-serif;
  --g-radius: 10px;
  /* section-scoped extensions */
  --ggs-panel: #eef2f8;
  --ggs-line: rgba(1, 48, 196, 0.1);
  --ggs-plate: linear-gradient(135deg, #2b3038 0%, #1c1e22 55%, #35393f 100%);
  --ggs-sheen: linear-gradient(
    115deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.1) 45%,
    rgba(255, 255, 255, 0) 60%
  );
  /* derived, in-scope helpers (built from the tokens above, not new colors) */
  --ggs-pill-bg: rgba(0, 142, 236, 0.1);
  --ggs-shadow: rgba(20, 21, 24, 0.08);
  --ggs-shadow-deep: rgba(20, 21, 24, 0.22);

  --go-accent: #008eec;
  --go-accent-grad: linear-gradient(90deg, #0b84d5 0%, #0130c4 150%);
  --go-dark: #1c1e22;
  --go-gray: #8a8f98;
  --go-white: #ffffff;
  --go-whatsapp: #25d366;
  --go-transition: 0.25s ease;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  margin: 0;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ===================== TOP BAR ===================== */
.fb-topbar {
  background: #0b83d517;
  padding: 8px 0 45px;
}

.fb-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

/* Logo */
.fb-brand {
  display: flex;
  align-items: center;
  gap: 2px;
}

.fb-brand .fb-logo {
  /* width: 50px; */
  height: 100px;
  object-fit: cover;
  border-radius: 10px;
}

.fb-brand .fb-brand-icon {
  width: 38px;
  height: 38px;
  color: var(--go-red);
  font-size: 34px;
  display: flex;
  align-items: center;
  margin-right: 6px;
}

.fb-brand .fb-brand-tag {
  background: var(--go-accent-grad);
  color: var(--go-white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 10px 4px 8px;
  position: relative;
  top: -13px;
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0% 100%);
}

.fb-brand .fb-brand-name {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.3px;
  color: var(--go-dark-2);
  line-height: 1;
}

.fb-brand .fb-brand-name span {
  color: var(--go-red);
}

/* Contact info cluster */
.fb-topbar-contacts {
  display: flex;
  align-items: center;
  gap: 34px;
  flex-wrap: wrap;
}

.fb-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.fb-contact-item .fb-contact-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(212, 0, 0, 0.08);
  color: var(--go-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.fb-contact-item .fb-contact-text {
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--go-gray);
}

.fb-contact-item .fb-contact-text b {
  color: var(--go-dark-2);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* Social icons */
.fb-topbar-social {
  display: flex;
  align-items: center;
  gap: 8px;
}

.fb-topbar-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  /* border: 1px solid #e7e8eb; */
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--go-red);
  background: #e7e0e7;
  font-size: 13px;
  transition: var(--go-transition);
}

.fb-topbar-social a:hover {
  background: var(--go-red);
  border-color: var(--go-red);
  color: var(--go-white);
}

/* ===================== NAV BAR ===================== */
/* Boxed navbar, floated 50% onto the topbar above it */
.fb-navbar-wrap {
  position: absolute;
  z-index: 1000;
  top: 110px;
  width: 100%;
  /* pulls the navbar up so half its height overlaps the topbar */
}

.fb-navbar {
  background: var(--go-dark);
  border-radius: 10px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
}

.fb-navbar-inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  min-height: 74px;
  /* keep in sync with the -37px overlap above (half of this value) */
}

.fb-quote-btn {
  border-radius: 0 10px 10px 0;
}

.fb-nav {
  display: flex;
  align-items: stretch;
}

.fb-nav > li {
  position: relative;
}

.fb-nav > li > a {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 100%;
  padding: 19px 20px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--go-white);
  text-transform: uppercase;
  transition: var(--go-transition);
}

.fb-nav > li > a i.fb-caret {
  font-size: 10px;
  opacity: 0.7;
}

.fb-nav > li > a.active,
.fb-nav > li:hover > a {
  color: var(--go-red);
}

/* Level 1 dropdown */
.fb-dd {
  position: absolute;
  top: 100%;
  left: 0;
  width: 250px;
  background: var(--go-white);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.16);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--go-transition);
}

.fb-nav > li:hover > .fb-dd {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.fb-dd > li {
  position: relative;
}

.fb-dd > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 11px 18px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--go-dark-2);
  text-transform: none;
  border-left: 3px solid transparent;
  transition: var(--go-transition);
}

.fb-dd > li > a i.fb-sub-caret {
  font-size: 11px;
  color: var(--go-gray);
}

.fb-dd > li:hover > a {
  background: #f7f7f9;
  color: var(--go-red);
  border-left-color: var(--go-red);
  padding-left: 22px;
}

/* Level 2 flyout (multilevel) */
.fb-dd-l2 {
  position: absolute;
  top: 0;
  left: 100%;
  width: 260px;
  background: var(--go-white);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.16);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(8px);
  transition: var(--go-transition);
}

.fb-dd > li:hover > .fb-dd-l2 {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.fb-dd-l2 > li > a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--go-dark-2);
  border-left: 3px solid transparent;
  transition: var(--go-transition);
}

.fb-dd-l2 > li > a i {
  font-size: 6px;
  color: var(--go-blue);
}

.fb-dd-l2 > li:hover > a {
  background: #f7f7f9;
  color: var(--go-blue);
  border-left-color: var(--go-blue);
  padding-left: 22px;
}

/* Right side of navbar: search + quote */
.fb-navbar-actions {
  display: flex;
  align-items: stretch;
  flex-shrink: 0;
}

.fb-search-btn {
  width: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--go-white);
  font-size: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: none;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--go-transition);
}

.fb-search-btn:hover {
  color: var(--go-red);
}

.fb-quote-btn {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 26px;
  background: var(--go-accent-grad);
  color: var(--go-white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  border-radius: 10px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: var(--go-transition);
}

.fb-quote-btn:hover {
  filter: brightness(1.08);
  color: var(--go-white);
}

/* Search overlay */
.fb-search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 21, 24, 0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--go-transition);
}

.fb-search-overlay.fb-open {
  opacity: 1;
  visibility: visible;
}

.fb-search-overlay .fb-search-box {
  width: 90%;
  max-width: 640px;
  position: relative;
}

.fb-search-overlay input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--go-white);
  color: var(--go-white);
  font-size: 26px;
  font-weight: 500;
  padding: 12px 44px 12px 4px;
  outline: none;
}

.fb-search-overlay input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.fb-search-overlay .fb-search-submit {
  position: absolute;
  right: 4px;
  top: 14px;
  background: none;
  border: none;
  color: var(--go-white);
  font-size: 22px;
  cursor: pointer;
}

.fb-search-close {
  position: absolute;
  top: 26px;
  right: 30px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: var(--go-white);
  font-size: 18px;
  cursor: pointer;
  transition: var(--go-transition);
}

.fb-search-close:hover {
  background: var(--go-red);
  border-color: var(--go-red);
}

/* Mobile toggle */
.fb-toggle-btn {
  display: none;
  width: 64px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: none;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--go-white);
  font-size: 18px;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 991.98px) {
  /* ---- Topbar ---- */
  .fb-topbar {
    padding: 0px 0;
  }

  .fb-topbar-contacts {
    display: none;
  }

  .fb-topbar-inner {
    justify-content: space-between;
    gap: 10px;
  }

  .fb-brand .fb-brand-icon {
    font-size: 28px;
  }

  .fb-brand .fb-brand-name {
    font-size: 19px;
  }

  .fb-brand .fb-brand-tag {
    font-size: 9.5px;
    padding: 3px 8px 3px 6px;
    top: -11px;
  }

  .fb-topbar-social {
    gap: 6px;
  }

  .fb-topbar-social a {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }

  .fb-topbar-social {
    display: none;
  }

  /* ---- Navbar: drop the floating/overlap effect, collapse the dark bar entirely ---- */
  /* Only the slide-in panel (fb-nav) and its backdrop are still needed here — both are
       position:fixed, so they keep working even though the bar around them is collapsed. */
  .fb-navbar-wrap {
    margin-top: 0;
  }

  .fb-navbar {
    border-radius: 0;
    box-shadow: none;
    background: transparent;
  }

  .fb-navbar-inner {
    min-height: 0;
    padding: 0;
    position: relative;
  }

  .fb-navbar-wrap .container {
    padding: 0;
  }

  .fb-navbar-actions {
    display: none;
  }

  /* search + quote hidden on mobile, per request */

  /* ---- Topbar hamburger (replaces the old in-navbar toggle on mobile) ---- */
  .fb-toggle-btn-top {
    display: flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--go-dark);
    color: var(--go-white);
    font-size: 16px;
    border: none;
  }

  /* ---- Slide-in mobile menu ---- */
  .fb-nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    background: var(--go-dark);
    flex-direction: column;
    align-items: stretch;
    padding: 80px 0 30px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    z-index: 1500;
  }

  .fb-nav.fb-nav-open {
    display: flex;
  }

  .fb-nav > li {
    width: 100%;
  }

  .fb-nav > li > a {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    justify-content: space-between;
    height: auto;
  }

  /* Nested dropdowns become static accordion panels */
  .fb-dd,
  .fb-dd-l2 {
    position: static;
    width: 100%;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.04);
    display: none;
    padding: 2px 0;
  }

  .fb-nav > li.fb-mobile-active > .fb-dd {
    display: block;
  }

  .fb-dd > li.fb-mobile-active > .fb-dd-l2 {
    display: block;
  }

  .fb-dd > li > a,
  .fb-dd-l2 > li > a {
    color: var(--go-white);
    padding-left: 32px;
    border-left: none;
  }

  .fb-dd-l2 > li > a {
    padding-left: 46px;
    font-size: 12.5px;
  }

  .fb-dd > li > a:hover,
  .fb-dd-l2 > li > a:hover {
    background: rgba(255, 255, 255, 0.06);
    padding-left: 36px;
  }

  .fb-dd-l2 > li > a:hover {
    padding-left: 50px;
  }

  .fb-nav-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: var(--go-white);
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .fb-nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1400;
  }

  .fb-nav-backdrop.fb-open {
    display: block;
  }
}

@media (max-width: 575.98px) {
  .fb-brand .fb-brand-name {
    font-size: 17px;
  }

  .fb-brand .fb-brand-icon {
    font-size: 24px;
    margin-right: 4px;
  }

  .fb-brand .fb-brand-tag {
    display: none;
  }

  .fb-contact-item {
    gap: 8px;
  }

  .fb-toggle-btn-top {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }
}

/* Demo spacer — extra top padding compensates for the navbar's overlap on desktop */
.fb-demo-spacer {
  padding: 60px 0 60px;
}

@media (min-width: 992px) {
  .fb-demo-spacer {
    padding-top: 90px;
  }
}

/* === ABOUT US  === */
.g-about {
  position: relative;
  background: var(--go-white);
  padding: 90px 0;
  border-top: 1px solid rgba(138, 143, 152, 0.2);
  /* border-bottom: 1px solid rgba(138, 143, 152, 0.2); */
}
.g-about-wrap {
  position: relative;
}
.g-about-wrap::after {
  content: "";
  display: block;
  clear: both;
}

/* -- floated media block: image + its overlapping components (static markup) -- */
.g-about-media {
  float: left;
  width: 44%;
  margin: 0 40px 24px 0;
  position: relative;
}
.g-about-frame {
  position: relative;
  border-radius: var(--g-radius);
  overflow: hidden;
  border: 1px solid rgba(138, 143, 152, 0.25);
  box-shadow: 0 25px 55px -30px rgba(28, 30, 34, 0.35);
}
.g-about-frame img {
  display: block;
  width: 100%;
  height: auto;
}
.g-about-frame-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 60%,
    rgba(28, 30, 34, 0.28) 100%
  );
  pointer-events: none;
}
.g-about-badge {
  position: absolute;
  top: -18px;
  left: -18px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--go-accent-grad);
  border: 3px solid var(--go-white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--go-white);
  font-size: 20px;
  box-shadow: 0 12px 24px -8px rgba(1, 48, 196, 0.45);
  z-index: 2;
}
.g-about-stat {
  position: absolute;
  right: -24px;
  bottom: -24px;
  background: var(--go-white);
  border: 1px solid rgba(138, 143, 152, 0.25);
  border-radius: var(--g-radius);
  padding: 16px 20px;
  min-width: 150px;
  z-index: 2;
  box-shadow: 0 20px 45px -22px rgba(28, 30, 34, 0.3);
}
.g-about-stat-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.g-about-stat-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0, 142, 236, 0.1);
  border: 1px solid rgba(0, 142, 236, 0.35);
  color: var(--go-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}
.g-about-stat-num {
  font-family: var(--g-font-brand);
  font-weight: 700;
  font-size: 20px;
  color: var(--go-dark);
  line-height: 1.1;
}
.g-about-stat-label {
  font-family: var(--g-font-body);
  font-size: 11px;
  color: var(--go-gray);
  letter-spacing: 0.3px;
  line-height: 1.3;
  margin-top: 2px;
}

/* ==========================================================================
   DYNAMIC TEXT BLOCK — single parent class, tag-only selectors below.
   Backend content contract (plain HTML, no classes):
     <p>Eyebrow label</p>              -> 1st <p>
     <p>Title copy <strong>..</strong></p> -> 2nd <p> (strong = highlighted words)
     <p>Body paragraph</p>             -> every <p> from the 3rd onward
     <ul><li>Feature line</li>...</ul> -> feature checklist (icon added via CSS, not markup)
     <a href="...">CTA label</a>       -> call-to-action button
   ========================================================================== */
.g-about-content p {
  font-family: var(--g-font-body);
  font-size: 15px;
  line-height: 1.85;
  color: var(--go-gray);
  margin-bottom: 16px;
}

/* 1st paragraph = eyebrow */
.g-about-content span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--g-font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--go-accent);
  margin-bottom: 14px;
}
.g-about-content span::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f3ed"; /* shield-halved */
  font-size: 13px;
}

/* 2nd paragraph = title */
.g-about-content h1 {
  font-family: var(--g-font-display);
  font-weight: 700;
  font-size: 38px;
  line-height: 1.2;
  color: var(--go-dark);
  margin-bottom: 18px;
}
.g-about-content h1 strong {
  font-weight: 700;
  color: var(--go-blue);
}

/* every paragraph from the 3rd onward = body copy */
.g-about-content p:nth-of-type(n + 3) strong {
  color: var(--go-dark);
  font-weight: 600;
}

/* feature checklist */
.g-about-content ul {
  margin-top: 8px;
  margin-bottom: 26px;
}
.g-about-content ul li {
  position: relative;
  display: block;
  padding: 12px 0 12px 46px;
  border-bottom: 1px solid rgba(138, 143, 152, 0.18);
  font-family: var(--g-font-body);
  font-size: 14.5px;
  color: var(--go-dark);
  line-height: 1.5;
}
/* .g-about-content ul li:first-child{ padding-top:4px; } */
.g-about-content ul li::before {
  position: absolute;
  left: 0;
  top: 8px;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(0, 142, 236, 0.1);
  border: 1px solid rgba(0, 142, 236, 0.3);
  color: var(--go-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f00c"; /* check */
  font-size: 13px;
}

/* CTA link */
.g-about-content a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--go-accent-grad);
  color: var(--go-white);
  font-family: var(--g-font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.4px;
  padding: 14px 28px;
  border-radius: var(--g-radius);
  transition: transform var(--go-transition), box-shadow var(--go-transition);
  box-shadow: 0 14px 30px -14px rgba(1, 48, 196, 0.5);
}
.g-about-content a::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f061"; /* arrow-right */
  font-size: 13px;
}
.g-about-content a:hover {
  color: var(--go-white);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -14px rgba(1, 48, 196, 0.6);
}

@media (max-width: 991.98px) {
  .g-about-media {
    width: 48%;
  }
  .g-about-content p:nth-of-type(2) {
    font-size: 32px;
  }
}
@media (max-width: 767.98px) {
  .g-about {
    padding: 60px 0;
  }
  .g-about-media {
    float: none;
    width: 100%;
    margin: 0 0 32px 0;
  }
  .g-about-stat {
    right: 16px;
    bottom: -20px;
  }
  .g-about-badge {
    top: -16px;
    left: 16px;
  }
  .g-about-content p:nth-of-type(2) {
    font-size: 26px;
  }
}

/* ==== PRODUCT LISTING ==== */
.g-products {
  position: relative;
  background: #f0f8ff;
  padding: 90px 0;
}

.fb-stats-grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(20, 21, 24, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 21, 24, 0.05) 1px, transparent 1px);
  background-size: 38px 38px;
  -webkit-mask-image: radial-gradient(
    ellipse 80% 65% at 50% 40%,
    #000 40%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse 80% 65% at 50% 40%,
    #000 40%,
    transparent 100%
  );
  pointer-events: none;
}

.g-products-head {
  max-width: 640px;
  margin: 0 auto 50px;
  text-align: center;
}
.g-products-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--g-font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--go-accent);
  margin-bottom: 14px;
  margin-bottom: 14px;
  background: #fff;
  padding: 10px 15px;
  border-radius: 10px;
}
.g-products-title {
  font-family: var(--g-font-display);
  font-weight: 700;
  font-size: 34px;
  line-height: 1.25;
  color: var(--go-dark);
  margin-bottom: 12px;
}
.g-products-title span {
  color: var(--go-blue);
}
.g-products-desc {
  font-family: var(--g-font-body);
  font-size: 15px;
  line-height: 1.8;
  color: var(--go-gray);
}

.g-products-grid {
  margin: 0 0px;
}
.g-products-col {
  padding: 0 5px;
  margin-bottom: 28px;
}

/* -- product card: image, title and CTA all live inside ONE <a href="#"> -- */
.g-product-card {
  display: block;
  background: var(--go-white);
  border: 1px solid rgba(138, 143, 152, 0.22);
  border-radius: var(--g-radius);
  overflow: hidden;
  height: 100%;
  box-shadow: 0 18px 40px -28px rgba(28, 30, 34, 0.35);
  transition: transform var(--go-transition), box-shadow var(--go-transition),
    border-color var(--go-transition);
}
.g-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 50px -24px rgba(1, 48, 196, 0.28);
  border-color: rgba(0, 142, 236, 0.4);
}

.g-product-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/4;
}
.g-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.g-product-card:hover .g-product-media img {
  transform: scale(1.08);
}
.g-product-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 60%,
    rgba(20, 21, 24, 0.55) 100%
  );
}
.g-product-icon {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--go-accent-grad);
  color: var(--go-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  z-index: 2;
  box-shadow: 0 10px 22px -8px rgba(1, 48, 196, 0.5);
}

.g-product-body {
  padding: 18px 18px 20px;
}
.g-product-title {
  font-family: var(--g-font-display);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.35;
  color: var(--go-dark);
  margin-bottom: 14px;
  /* min-height: 46px; */
  transition: color var(--go-transition);
}
.g-product-card:hover .g-product-title {
  color: var(--go-blue);
}

.g-product-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: rgba(0, 142, 236, 0.08);
  border: 1px solid rgba(0, 142, 236, 0.28);
  border-radius: 8px;
  padding: 10px 14px;
  font-family: var(--g-font-display);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.3px;
  color: var(--go-blue);
  transition: background var(--go-transition), color var(--go-transition);
  margin: 0;
}
.g-product-cta i {
  font-size: 12px;
  transition: transform var(--go-transition);
}
.g-product-card:hover .g-product-cta {
  background: var(--go-accent-grad);
  color: var(--go-white);
}
.g-product-card:hover .g-product-cta i {
  transform: translateX(4px);
}

@media (max-width: 575.98px) {
  .g-products {
    padding: 60px 0;
  }
  .g-products-title {
    font-size: 26px;
  }
}

.g-features {
  position: relative;
  overflow: hidden;
  background: var(--go-dark);
  padding: 100px 0;
}

/* -- background treatment: drifting glow orbs + faint dot grid -- */
.g-features::before,
.g-features::after {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.28;
  pointer-events: none;
  z-index: 0;
  animation: gFeaturesDrift 12s ease-in-out infinite alternate;
}
.g-features::before {
  background: var(--go-accent-grad);
  top: -220px;
  left: -160px;
}
.g-features::after {
  background: var(--go-accent);
  bottom: -240px;
  right: -160px;
  opacity: 0.2;
  animation-delay: -6s;
}
@keyframes gFeaturesDrift {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(40px, 30px) scale(1.12);
  }
}

.g-features-texture {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.07) 1px,
    transparent 1px
  );
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(
    ellipse 70% 60% at 50% 40%,
    rgba(0, 0, 0, 0.9),
    transparent 80%
  );
  mask-image: radial-gradient(
    ellipse 70% 60% at 50% 40%,
    rgba(0, 0, 0, 0.9),
    transparent 80%
  );
  pointer-events: none;
  z-index: 0;
}

.g-features > .container {
  position: relative;
  z-index: 1;
}

.g-features-head {
  max-width: 640px;
  margin: 0 auto 54px;
  text-align: center;
}
.g-features-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--g-font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--go-accent);
  margin-bottom: 14px;
}
.g-features-title {
  font-family: var(--g-font-display);
  font-weight: 700;
  font-size: 34px;
  line-height: 1.25;
  color: var(--go-white);
  margin-bottom: 12px;
}
.g-features-title span {
  color: var(--go-red);
}
.g-features-desc {
  font-family: var(--g-font-body);
  font-size: 15px;
  line-height: 1.8;
  color: var(--go-gray);
}

.g-features-grid {
  margin: 0 -14px;
}
.g-features-col {
  padding: 0 14px;
  margin-bottom: 28px;
}

/* -- feature card -- */
.g-feature-card {
  position: relative;
  height: 100%;
  background: var(--go-dark-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--g-radius);
  padding: 34px 26px 30px;
  overflow: hidden;
  transition: transform var(--go-transition), border-color var(--go-transition),
    background var(--go-transition), box-shadow var(--go-transition);
}
.g-feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--go-accent-grad);
  opacity: 0;
  transition: opacity var(--go-transition);
  z-index: 0;
}
.g-feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 142, 236, 0.5);
  box-shadow: 0 30px 60px -26px rgba(0, 142, 236, 0.4);
}
.g-feature-card:hover::before {
  opacity: 0.94;
}

.g-feature-card > * {
  position: relative;
  z-index: 1;
}

/* -- flip icon: two faces, front (outline) flips to back (solid) on hover -- */
.g-feature-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 22px;
  perspective: 900px;
}
.g-feature-icon-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}
.g-feature-card:hover .g-feature-icon-inner {
  transform: rotateY(180deg);
}
.g-feature-icon-face {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.g-feature-icon-front {
  background: rgba(0, 142, 236, 0.12);
  border: 1px solid rgba(0, 142, 236, 0.35);
  color: var(--go-accent);
}
.g-feature-icon-back {
  background: var(--go-white);
  color: var(--go-blue);
  transform: rotateY(180deg);
}

.g-feature-title {
  font-family: var(--g-font-display);
  font-weight: 600;
  font-size: 19px;
  color: var(--go-white);
  margin-bottom: 10px;
  transition: color var(--go-transition);
}
.g-feature-text {
  font-family: var(--g-font-body);
  font-size: 14px;
  line-height: 1.75;
  color: var(--go-gray);
  transition: color var(--go-transition);
}
.g-feature-card:hover .g-feature-text {
  color: rgba(255, 255, 255, 0.85);
}

.g-feature-num {
  position: absolute;
  top: 20px;
  right: 22px;
  font-family: var(--g-font-brand);
  font-weight: 700;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.16);
  letter-spacing: 1px;
  transition: color var(--go-transition);
  z-index: 1;
}
.g-feature-card:hover .g-feature-num {
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 575.98px) {
  .g-features {
    padding: 70px 0;
  }
  .g-features-title {
    font-size: 26px;
  }
}

.g-counter {
  position: relative;
  overflow: hidden;
  background: var(--go-accent-grad);
  padding: 56px 0;
}

/* subtle depth behind the numbers: soft dark orb + faint dot texture */
.g-counter::before {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: rgba(20, 21, 24, 0.35);
  filter: blur(90px);
  top: -220px;
  right: -140px;
  pointer-events: none;
  z-index: 0;
}
.g-counter-texture {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.16) 1px,
    transparent 1px
  );
  background-size: 22px 22px;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

.g-counter > .container {
  position: relative;
  z-index: 1;
}

.g-counter-grid {
  margin: 0;
}
.g-counter-col {
  position: relative;
  text-align: center;
  padding: 14px 18px;
}
/* vertical divider between items on desktop */
.g-counter-col + .g-counter-col::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: rgba(255, 255, 255, 0.22);
}

.g-counter-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.32);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--go-white);
  font-size: 20px;
  transition: transform var(--go-transition), background var(--go-transition);
}
.g-counter-col:hover .g-counter-icon {
  transform: translateY(-4px) scale(1.06);
  background: rgba(255, 255, 255, 0.24);
}

.g-counter-num {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  font-family: var(--g-font-brand);
  font-weight: 700;
  font-size: 40px;
  color: var(--go-white);
  line-height: 1.1;
  margin-bottom: 8px;
}
.g-counter-suffix {
  font-family: var(--g-font-brand);
  font-weight: 700;
  font-size: 24px;
  color: var(--go-white);
}
.g-counter-label {
  font-family: var(--g-font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.4px;
  color: rgba(255, 255, 255, 0.88);
  text-transform: uppercase;
}

@media (max-width: 767.98px) {
  .g-counter-col + .g-counter-col::before {
    display: none;
  }
  .g-counter-col {
    margin-bottom: 26px;
  }
  .g-counter-col:last-child {
    margin-bottom: 0;
  }
  .g-counter-num {
    font-size: 34px;
  }
}

.ggs-why {
  position: relative;
  font-family: var(--g-font-body);
  background: var(--ggs-panel);
  padding: 110px 0 100px;
  overflow: hidden;
  isolation: isolate;
}

/* faint blueprint grid backdrop */
.ggs-why::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: linear-gradient(var(--ggs-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--ggs-line) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(
    ellipse 90% 70% at 50% 0%,
    #000 40%,
    transparent 90%
  );
  mask-image: radial-gradient(
    ellipse 90% 70% at 50% 0%,
    #000 40%,
    transparent 90%
  );
}

/* oversized diagonal signal band */
.ggs-why__blade {
  position: absolute;
  top: -12%;
  right: -8%;
  width: 46%;
  height: 130%;
  background: var(--go-accent-grad);
  opacity: 0.06;
  clip-path: polygon(40% 0%, 100% 0%, 60% 100%, 0% 100%);
  z-index: 0;
}

.ggs-why__inner {
  position: relative;
  z-index: 1;
}

/* ---------- header ---------- */
.ggs-why__head {
  max-width: 640px;
  margin: 0 auto 64px;
  text-align: center;
}

.ggs-why__logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin: 0 auto 18px;
  display: block;
  filter: drop-shadow(0 6px 14px rgba(1, 48, 196, 0.25));
}

.ggs-why__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--go-blue);
  background: rgba(1, 48, 196, 0.07);
  border: 1px solid rgba(1, 48, 196, 0.16);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.ggs-why__title {
  font-family: var(--g-font-display);
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--go-dark);
  margin: 0 0 14px;
}

.ggs-why__title span {
  background: var(--go-accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ggs-why__subtext {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--go-gray);
  margin: 0;
}

/* ---------- flip card ---------- */
.ggs-why__card {
  perspective: 1600px;
  height: 100%;
}

.ggs-why__card-inner {
  position: relative;
  width: 100%;
  height: 225px;
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transform-style: preserve-3d;
}

.ggs-why__card:hover .ggs-why__card-inner,
.ggs-why__card:focus-within .ggs-why__card-inner {
  transform: rotateY(180deg);
}

.ggs-why__face {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--g-radius);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* ----- front face ----- */
.ggs-why__face--front {
  background: var(--ggs-plate);
  justify-content: flex-end;
  padding: 26px 24px 24px;
  box-shadow: 0 18px 40px -18px rgba(1, 48, 196, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.ggs-why__face--front::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ggs-sheen);
  pointer-events: none;
}

.ggs-why__icon-plate {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--go-accent-grad);
  opacity: 0.14;
}

.ggs-why__icon-wrap {
  position: relative;
  width: 62px;
  height: 62px;
  border-radius: 14px;
  background: var(--go-accent-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 10px 22px -8px rgba(0, 142, 236, 0.55);
}

.ggs-why__icon-wrap i {
  font-size: 24px;
  color: var(--go-white);
}

/* corner ping tab */
.ggs-why__blade-tab {
  position: absolute;
  top: 0;
  right: 0;
  width: 76px;
  height: 76px;
  background: var(--go-accent-grad);
  clip-path: polygon(100% 0%, 100% 100%, 0% 0%);
}

.ggs-why__blade-tab i {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 13px;
  color: var(--go-white);
}

.ggs-why__ftitle {
  position: relative;
  font-family: var(--g-font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--go-white);
  margin: 0 0 6px;
  line-height: 1.35;
}

.ggs-why__fline {
  position: relative;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

.ggs-why__flip-hint {
  position: absolute;
  bottom: 20px;
  right: 22px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  transition: var(--go-transition);
}

.ggs-why__card:hover .ggs-why__flip-hint {
  border-color: var(--go-white);
  color: var(--go-white);
}

/* ----- back face ----- */
.ggs-why__face--back {
  background: var(--go-white);
  transform: rotateY(180deg);
  padding: 28px 26px;
  border: 1px solid rgba(1, 48, 196, 0.12);
  justify-content: center;
  box-shadow: 0 18px 40px -18px rgba(1, 48, 196, 0.28);
}

.ggs-why__face--back::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--go-accent-grad);
}

.ggs-why__btitle {
  font-family: var(--g-font-display);
  font-size: 16.5px;
  font-weight: 700;
  color: var(--go-dark);
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
}

.ggs-why__btitle i {
  color: var(--go-accent);
  font-size: 15px;
}

.ggs-why__points {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ggs-why__points li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13.3px;
  line-height: 1.55;
  color: #4c5361;
  margin-bottom: 9px;
}

.ggs-why__points li:last-child {
  margin-bottom: 0;
}

.ggs-why__points i {
  color: var(--go-accent);
  font-size: 11px;
  margin-top: 4px;
  flex-shrink: 0;
}

/* ---------- responsive ---------- */
@media (max-width: 991px) {
  .ggs-why {
    padding: 80px 0 70px;
  }
  .ggs-why__card-inner {
    height: 320px;
  }
}

@media (max-width: 575px) {
  .ggs-why__card-inner {
    height: 300px;
  }
  .ggs-why__face--front,
  .ggs-why__face--back {
    padding: 22px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ggs-why__card-inner {
    transition: none;
  }
}

/* ---------- centerpiece spinning wheel (replaces a card) ---------- */
.ggs-why__spin-wrap {
  position: relative;
  width: 230px;
  height: 230px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ggs-why__spin-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: ggs-spin 16s linear infinite;
}

.ggs-why__spin-ring text {
  font-family: var(--g-font-display);
  font-weight: 600;
  font-size: 22px;
}

.ggs-why__spin-dashes {
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  /* border: 1.5px dashed rgba(1, 48, 196, 0.22); */
}

@keyframes ggs-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.ggs-why__spin-center {
  position: relative;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: var(--go-accent-grad);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--go-white);
  box-shadow: 0 16px 34px -12px rgba(0, 142, 236, 0.55);
}

.ggs-why__spin-center i {
  font-size: 22px;
  margin-bottom: 5px;
}

.ggs-why__spin-center strong {
  font-family: var(--g-font-display);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 1;
}

.ggs-why__spin-center small {
  font-size: 9.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 3px;
}

@media (max-width: 991px) {
  .ggs-why__spin-wrap {
    width: 200px;
    height: 200px;
    margin-top: 36px;
  }
  .ggs-why__spin-center {
    width: 96px;
    height: 96px;
  }
}

@media (max-width: 575px) {
  .ggs-why__spin-wrap {
    width: 180px;
    height: 180px;
  }
  .ggs-why__spin-center {
    width: 88px;
    height: 88px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ggs-why__spin-ring {
    animation: none;
  }
}

.ggs-faq-section {
  background: var(--ggs-panel);
  padding: 90px 0;
  font-family: var(--g-font-body);
  overflow: hidden;
}
.ggs-faq-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------------- LEFT: product visual ---------------- */
.ggs-faq-pill {
  display: inline-block;
  background: var(--ggs-pill-bg);
  color: var(--go-blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 7px 18px;
  border-radius: 30px;
  margin-bottom: 18px;
}
.ggs-faq-title {
  font-family: var(--g-font-display);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.32;
  color: var(--go-dark);
  margin: 0 0 16px;
  max-width: 380px;
}
.ggs-faq-lead {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--go-gray);
  margin: 0 0 40px;
  max-width: 360px;
  font-weight: 400;
}

/* control-panel visual (built with CSS, no external asset needed) */
.ggs-faq-media {
  position: relative;
  max-width: 280px;
}
.ggs-faq-media-backdrop {
  position: absolute;
  inset: -18px -14px 14px 14px;
  background: linear-gradient(
    150deg,
    var(--go-red),
    var(--go-blue) 55%,
    var(--go-dark)
  );
  border-radius: 26px;
  transform: rotate(-4deg);
  z-index: 0;
}
.ggs-faq-panel {
  position: relative;
  z-index: 1;
  background: var(--ggs-plate);
  border-radius: 20px;
  padding: 26px 22px 22px;
  box-shadow: 0 18px 30px var(--ggs-shadow-deep);
  overflow: hidden;
}
.ggs-faq-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ggs-sheen);
  pointer-events: none;
}
.ggs-faq-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.ggs-faq-panel-brand {
  font-family: var(--g-font-brand);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.6px;
  color: var(--go-white);
  text-transform: uppercase;
}
.ggs-faq-panel-led {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--go-accent);
  box-shadow: 0 0 8px 2px rgba(0, 142, 236, 0.7);
}
.ggs-faq-keypad {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 18px;
}
.ggs-faq-key {
  aspect-ratio: 1;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--go-gray);
  font-size: 0.78rem;
  font-weight: 600;
  font-family: var(--g-font-body);
}
.ggs-faq-key.is-active {
  background: var(--go-accent);
  color: var(--go-white);
  border-color: transparent;
}
.ggs-faq-panel-shield {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--go-accent);
  font-size: 1.4rem;
}
.ggs-faq-media-tag {
  position: absolute;
  left: -18px;
  bottom: -22px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--go-white);
  border-left: 4px solid var(--go-accent);
  border-radius: var(--g-radius);
  box-shadow: 0 14px 30px var(--ggs-shadow-deep);
  padding: 11px 16px 11px 12px;
}
.ggs-faq-media-tag-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--go-accent);
  color: var(--go-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.ggs-faq-media-tag-text p {
  margin: 0;
  line-height: 1.25;
}
.ggs-faq-media-tag-num {
  font-family: var(--g-font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--go-dark);
}
.ggs-faq-media-tag-label {
  font-size: 0.68rem;
  color: var(--go-gray);
}

/* ---------------- RIGHT: accordion ---------------- */
.ggs-faq-item {
  background: var(--go-white);
  border: 1px solid var(--ggs-line);
  border-radius: 14px;
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px var(--ggs-shadow);
}
.ggs-faq-item:last-child {
  margin-bottom: 0;
}

.ggs-faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--go-white);
  border: none;
  padding: 19px 22px;
  text-align: left;
  font-family: var(--g-font-display);
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--go-dark);
  cursor: pointer;
  transition: color var(--go-transition);
}
.ggs-faq-btn:not(.collapsed) {
  color: var(--go-blue);
}

.ggs-faq-icon {
  width: 34px;
  height: 34px;
  border-radius: var(--g-radius);
  background: var(--ggs-pill-bg);
  color: var(--go-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
  transition: transform var(--go-transition), background var(--go-transition),
    color var(--go-transition);
}
.ggs-faq-btn:not(.collapsed) .ggs-faq-icon {
  background: var(--go-accent-grad);
  color: var(--go-white);
  transform: rotate(45deg);
}

.ggs-faq-body {
  padding: 0 22px 20px;
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--go-gray);
}

/* ---------------- responsive ---------------- */
@media (max-width: 991.98px) {
  .ggs-faq-title {
    font-size: 1.7rem;
  }
  .ggs-faq-media {
    margin: 0 auto 70px;
  }
  .ggs-faq-media-backdrop {
    inset: -14px -10px 10px 10px;
  }
}
@media (max-width: 575.98px) {
  .ggs-faq-section {
    padding: 60px 0;
  }
  .ggs-faq-title {
    max-width: 100%;
  }
  .ggs-faq-lead {
    max-width: 100%;
  }
  .ggs-faq-btn {
    padding: 16px 16px;
    font-size: 0.88rem;
  }
}

.ggs-marquee {
  position: relative;
  background: var(--ggs-plate);
  border-top: 1px solid var(--ggs-line);
  border-bottom: 1px solid var(--ggs-line);
  padding: 16px 0;
  overflow: hidden;
}

/* edge fade so items dissolve in/out instead of hard-cutting at the frame */
.ggs-marquee::before,
.ggs-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90px;
  z-index: 2;
  pointer-events: none;
}
.ggs-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #1c1e22 0%, rgba(28, 30, 34, 0) 100%);
}
.ggs-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #1c1e22 0%, rgba(28, 30, 34, 0) 100%);
}

.ggs-marquee-track {
  display: flex;
  width: max-content;
  animation: ggs-scroll 26s linear infinite;
}
.ggs-marquee:hover .ggs-marquee-track {
  animation-play-state: paused;
}

/* two identical groups back to back = seamless loop at -50% */
.ggs-marquee-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.ggs-marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 34px;
  white-space: nowrap;
  font-family: var(--g-font-display);
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--go-white);
}
.ggs-marquee-item i {
  color: var(--go-accent);
  font-size: 0.8rem;
}
.ggs-marquee-sep {
  color: var(--go-gray);
  font-size: 0.6rem;
  flex-shrink: 0;
}

@keyframes ggs-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ggs-marquee-track {
    animation: none;
  }
}

@media (max-width: 575.98px) {
  .ggs-marquee-item {
    padding: 0 22px;
    font-size: 0.78rem;
  }
  .ggs-marquee::before,
  .ggs-marquee::after {
    width: 50px;
  }
}

/* === TESTIMONIALS SECTION === */
.ggs-testi {
  background: #e5f3fd;
  padding: 0px 0 100px;
  overflow: hidden;
}

/* ---------- marquee heading (pure CSS, no JS) ---------- */
.ggs-testi-marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid var(--ggs-line);
  border-bottom: 1px solid var(--ggs-line);
  padding: 22px 0;
  margin-bottom: 70px;
}
.ggs-testi-marquee__track {
  display: inline-flex;
  align-items: center;
  animation: ggsTestiMarquee 24s linear infinite;
}
.ggs-testi-marquee__group {
  display: inline-flex;
  align-items: center;
  gap: 34px;
  padding-right: 34px;
}
.ggs-testi-marquee__word {
  font-family: var(--g-font-display);
  font-weight: 700;
  font-size: clamp(34px, 5vw, 58px);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--go-dark);
}
.ggs-testi-marquee__word--outline {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--go-blue);
}
.ggs-testi-marquee__star {
  color: var(--go-accent);
  font-size: 26px;
  animation: ggsTestiStarSpin 6s linear infinite;
}
@keyframes ggsTestiMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes ggsTestiStarSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ---------- section head ---------- */
.ggs-testi__head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
}
.ggs-testi__subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ggs-pill-bg);
  color: var(--go-blue);
  font-family: var(--g-font-display);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 30px;
  margin: 0 0 18px;
}
.ggs-testi__title {
  font-family: var(--g-font-display);
  font-weight: 700;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.2;
  color: var(--go-dark);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin: 0;
}

/* ---------- testimonial card ---------- */
.ggs-testi__wrap {
  position: relative;
}
.ggs-testi__bg-icon {
  position: absolute;
  right: 5%;
  bottom: 0;
  font-size: 190px;
  color: var(--ggs-panel);
  z-index: 0;
  pointer-events: none;
}
.ggs-testi__card {
  position: relative;
  z-index: 1;
  background: var(--ggs-panel);
  border: 1px solid var(--ggs-line);
  border-radius: 24px;
  padding: 56px;
  box-shadow: 0 24px 50px var(--ggs-shadow);
}
.ggs-testi__slides {
  position: relative;
  /* min-height: 400px; */
}

.ggs-testi__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  gap: 60px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.ggs-testi__slide.ggs-testi__slide--active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* avatar block */
.ggs-testi__avatar-wrap {
  position: relative;
  flex: 0 0 280px;
}
.ggs-testi__avatar {
  position: relative;
  width: 100%;
  aspect-ratio: 3/3.4;
  border-radius: 20px;
  background: var(--ggs-plate);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 18px 34px var(--ggs-shadow-deep);
}
.ggs-testi__avatar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ggs-sheen);
  pointer-events: none;
}
.ggs-testi__avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
/* darken the lower edge so the badges/verified tag stay legible over any photo */
.ggs-testi__avatar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20, 21, 24, 0) 55%,
    rgba(20, 21, 24, 0.6) 100%
  );
  z-index: 1;
  pointer-events: none;
}
.ggs-testi__avatar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ggs-sheen);
  z-index: 2; /* was missing a z-index before — now sits above the photo */
  pointer-events: none;
}
.ggs-testi__verified {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(20, 21, 24, 0.55);
  backdrop-filter: blur(3px);
  color: var(--go-white);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 20px;
}
.ggs-testi__verified i {
  color: var(--go-accent);
  font-size: 9px;
}
.ggs-testi__quote-badge {
  position: absolute;
  right: -16px;
  bottom: -16px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--go-accent-grad);
  color: var(--go-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 12px 26px rgba(1, 48, 196, 0.3);
}

/* content block */
.ggs-testi__content {
  flex: 1;
  min-width: 0;
}
.ggs-testi__doodle {
  color: var(--go-blue);
  font-size: 24px;
  margin-bottom: 14px;
  display: inline-block;
  opacity: 0.5;
}
.ggs-testi__quote {
  font-family: var(--g-font-body);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(18px, 1.9vw, 23px);
  line-height: 1.55;
  color: var(--go-dark);
  margin: 0 0 28px;
}

.ggs-testi__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 26px;
}
.ggs-testi__name {
  font-family: var(--g-font-display);
  font-size: 16.5px;
  font-weight: 600;
  color: var(--go-blue);
  letter-spacing: 0.2px;
  margin: 0 0 4px;
}
.ggs-testi__role {
  font-size: 13px;
  color: var(--go-gray);
}
.ggs-testi__stars {
  display: flex;
  gap: 4px;
  color: #d7dce4;
  font-size: 16px;
}
.ggs-testi__stars i.ggs-star--filled {
  color: var(--go-accent);
}

.ggs-testi__footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  flex-wrap: wrap;
}

.ggs-testi__progress-bar {
  display: flex;
  gap: 6px;
  margin-bottom: 34px;
}
.ggs-testi__dot {
  width: 22px;
  height: 4px;
  border-radius: 4px;
  background: var(--ggs-line);
  transition: background var(--go-transition), width var(--go-transition);
}
.ggs-testi__dot--active {
  width: 34px;
  background: var(--go-accent-grad);
}

.ggs-testi__nav {
  display: flex;
  align-items: center;
  gap: 16px;
}
.ggs-testi__arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--ggs-line);
  background: var(--go-white);
  color: var(--go-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: background var(--go-transition), color var(--go-transition),
    border-color var(--go-transition);
}
.ggs-testi__arrow:hover {
  background: var(--go-accent-grad);
  color: var(--go-white);
  border-color: transparent;
}
.ggs-testi__counter {
  font-family: var(--g-font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--go-dark);
}
.ggs-testi__counter span {
  font-size: 13px;
  font-weight: 500;
  color: var(--go-gray);
}

@media (max-width: 991.98px) {
  .ggs-testi__card {
    padding: 40px 28px;
  }
}
@media (max-width: 767.98px) {
  .ggs-testi {
    padding: 60px 0 70px;
  }
  .ggs-testi__card {
    border-radius: 18px;
  }
  .ggs-testi__slides {
    min-height: 660px;
  }
  .ggs-testi__slide {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
  .ggs-testi__avatar-wrap {
    flex: 0 0 auto;
    width: 200px;
  }
  .ggs-testi__bg-icon {
    display: none;
  }
  .ggs-testi__footer {
    align-items: flex-start;
  }
}
/* TESTIMONIALS SECTION (copy till here) */

/* ===================================================
   CTA / CONTACT SECTION (copy from here)
   =================================================== */
.ggs-cta {
  background: var(--ggs-panel);
  padding: 90px 0;
  overflow: hidden;
}

.ggs-cta__subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ggs-pill-bg);
  color: var(--go-blue);
  font-family: var(--g-font-display);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 30px;
  margin: 0 0 18px;
}
.ggs-cta__title {
  font-family: var(--g-font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.22;
  color: var(--go-dark);
  margin: 0 0 16px;
  max-width: 460px;
}
.ggs-cta__lead {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--go-gray);
  margin: 0 0 36px;
  max-width: 440px;
}

/* ---------- contact info list ---------- */
.ggs-cta__info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}
.ggs-cta__info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--go-white);
  border: 1px solid var(--ggs-line);
  border-radius: var(--g-radius);
  padding: 16px 18px;
  box-shadow: 0 6px 18px var(--ggs-shadow);
}
.ggs-cta__info-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--go-accent-grad);
  color: var(--go-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.ggs-cta__info-label {
  font-size: 11.5px;
  color: var(--go-gray);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin: 0 0 2px;
}
.ggs-cta__info-value {
  font-family: var(--g-font-display);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--go-dark);
  margin: 0;
}
.ggs-cta__info-value a {
  color: inherit;
  text-decoration: none;
}
.ggs-cta__info-value a:hover {
  color: var(--go-blue);
}

/* ---------- map ---------- */
.ggs-cta__map {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--ggs-line);
  box-shadow: 0 14px 34px var(--ggs-shadow);
  filter: grayscale(0.15);
}
.ggs-cta__map iframe {
  width: 100%;
  height: 260px;
  border: 0;
  display: block;
}

/* ---------- form card ---------- */
.ggs-cta__form-card {
  position: relative;
  background: var(--go-white);
  border: 1px solid var(--ggs-line);
  border-radius: 22px;
  padding: 44px;
  box-shadow: 0 24px 50px var(--ggs-shadow);
}
.ggs-cta__form-head {
  margin-bottom: 26px;
}
.ggs-cta__form-title {
  font-family: var(--g-font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--go-dark);
  margin: 0 0 6px;
}
.ggs-cta__form-sub {
  font-size: 0.85rem;
  color: var(--go-gray);
  margin: 0;
}

.ggs-cta__group {
  margin-bottom: 20px;
}
.ggs-cta__label {
  display: block;
  font-family: var(--g-font-display);
  font-weight: 600;
  font-size: 12.5px;
  color: var(--go-dark);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.ggs-cta__control {
  width: 100%;
  background: var(--ggs-panel);
  border: 1px solid var(--ggs-line);
  border-radius: var(--g-radius);
  padding: 13px 16px;
  font-family: var(--g-font-body);
  font-size: 0.92rem;
  color: var(--go-dark);
  transition: border-color var(--go-transition), box-shadow var(--go-transition),
    background var(--go-transition);
}
.ggs-cta__control::placeholder {
  color: var(--go-gray);
}
.ggs-cta__control:focus {
  outline: none;
  background: var(--go-white);
  border-color: var(--go-accent);
  box-shadow: 0 0 0 3px var(--ggs-pill-bg);
}
select.ggs-cta__control {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'><path d='M1 1l6 6 6-6' stroke='%238a8f98' stroke-width='1.6' fill='none' fill-rule='evenodd'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
textarea.ggs-cta__control {
  resize: vertical;
  min-height: 120px;
}

.ggs-cta__btn {
  width: 100%;
  border: none;
  background: var(--go-accent-grad);
  color: var(--go-white);
  font-family: var(--g-font-display);
  font-weight: 600;
  font-size: 0.94rem;
  letter-spacing: 0.3px;
  padding: 15px 20px;
  border-radius: var(--g-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: filter var(--go-transition), transform var(--go-transition);
}
.ggs-cta__btn:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

/* success state */
.ggs-cta__success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 40px 10px;
}
.ggs-cta__success.is-visible {
  display: flex;
}
.ggs-cta__form.is-hidden {
  display: none;
}
.ggs-cta__success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--go-accent-grad);
  color: var(--go-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.ggs-cta__success-title {
  font-family: var(--g-font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--go-dark);
  margin: 0;
}
.ggs-cta__success-text {
  font-size: 0.88rem;
  color: var(--go-gray);
  margin: 0;
  max-width: 320px;
}

@media (max-width: 991.98px) {
  .ggs-cta__form-card {
    padding: 32px;
  }
}
@media (max-width: 575.98px) {
  .ggs-cta {
    padding: 60px 0;
  }
  .ggs-cta__form-card {
    padding: 26px;
    border-radius: 18px;
  }
}
/* CTA / CONTACT SECTION (copy till here) */

/* === FOOTER === */
.g-footer {
  position: relative;
  overflow: hidden;
  background: var(--go-dark-2);
  padding-top: 90px;
}

/* angled top edge + soft glow so it doesn't feel like a flat slab */
.g-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 35px;
  background: var(--go-white);
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%);
  z-index: 0;
}
.g-footer::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: var(--go-accent-grad);
  opacity: 0.14;
  filter: blur(120px);
  top: -140px;
  right: -140px;
  pointer-events: none;
  z-index: 0;
}

.g-footer > .container {
  position: relative;
  z-index: 1;
}

/* -- brand column -- */
.g-footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.g-footer-brand-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--go-accent-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--go-white);
  font-size: 19px;
  flex-shrink: 0;
}
.g-footer-brand-name {
  font-family: var(--g-font-brand);
  font-weight: 700;
  font-size: 20px;
  color: var(--go-white);
  letter-spacing: 0.5px;
  line-height: 1.1;
}
.g-footer-brand-name span {
  color: var(--go-accent);
}
.g-footer-brand-tag {
  font-family: var(--g-font-body);
  font-size: 11px;
  color: var(--go-gray);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-top: 3px;
}

.g-footer-about {
  font-size: 14px;
  line-height: 1.8;
  color: var(--go-gray);
  margin-bottom: 24px;
  max-width: 320px;
}

.g-footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
}
.g-footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--go-white);
  font-size: 14px;
  transition: background var(--go-transition), transform var(--go-transition),
    border-color var(--go-transition);
}
.g-footer-social a:hover {
  background: var(--go-accent-grad);
  border-color: transparent;
  transform: translateY(-3px);
}

/* -- generic column heading (styled p, not a heading tag) -- */
.g-footer-heading {
  font-family: var(--g-font-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--go-white);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}
.g-footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 2px;
  background: var(--go-accent-grad);
}

/* -- link lists -- */
.g-footer-links li {
  margin-bottom: 13px;
}
.g-footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--go-gray);
  transition: color var(--go-transition), gap var(--go-transition),
    padding-left var(--go-transition);
}
.g-footer-links a i {
  font-size: 10px;
  color: var(--go-accent);
  transition: transform var(--go-transition);
}
.g-footer-links a:hover {
  color: var(--go-white);
  padding-left: 4px;
}
.g-footer-links a:hover i {
  transform: translateX(3px);
}

/* -- contact list -- */
.g-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}
.g-footer-contact-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(0, 142, 236, 0.12);
  border: 1px solid rgba(0, 142, 236, 0.3);
  color: var(--go-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}
.g-footer-contact-text {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--go-gray);
  padding-top: 6px;
}
.g-footer-contact-text a {
  color: var(--go-gray);
  transition: color var(--go-transition);
}
.g-footer-contact-text a:hover {
  color: var(--go-white);
}

/* -- newsletter -- */
.g-footer-newsletter {
  margin-top: 8px;
}
.g-footer-newsletter-label {
  font-size: 13px;
  color: var(--go-gray);
  margin-bottom: 12px;
  line-height: 1.6;
}
.g-footer-newsletter-form {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--g-radius);
  padding: 5px;
}
.g-footer-newsletter-form input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  outline: none;
  padding: 10px 12px;
  font-family: var(--g-font-body);
  font-size: 13.5px;
  color: var(--go-white);
}
.g-footer-newsletter-form input::placeholder {
  color: var(--go-gray);
}
.g-footer-newsletter-form button {
  border: none;
  background: var(--go-accent-grad);
  color: var(--go-white);
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  cursor: pointer;
  transition: transform var(--go-transition);
}
.g-footer-newsletter-form button:hover {
  transform: translateX(2px);
}

/* -- bottom bar -- */
.g-footer-bottom {
  position: relative;
  z-index: 1;
  margin-top: 70px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
}
.g-footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.g-footer-copy {
  font-size: 13px;
  color: var(--go-gray);
}
.g-footer-copy a {
  color: var(--go-accent);
}
.g-footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 22px;
}
.g-footer-bottom-links a {
  font-size: 13px;
  color: var(--go-gray);
  transition: color var(--go-transition);
}
.g-footer-bottom-links a:hover {
  color: var(--go-white);
}

@media (max-width: 991.98px) {
  .g-footer-col {
    margin-bottom: 44px;
  }
  .g-footer-totop {
    right: 24px;
  }
}
@media (max-width: 575.98px) {
  .g-footer {
    padding-top: 70px;
  }
  .g-footer-bottom-inner {
    justify-content: center;
    text-align: center;
  }
}

/* ==========================================================================
   FLOATING ACTION BUTTONS — WhatsApp (left) + Go To Top (right)
   Fixed to the viewport, safe-area aware, fully responsive.
   ========================================================================== */

/* -- WhatsApp: bottom-left, always visible, pulsing ring -- */
.g-float-whatsapp {
  position: fixed;
  left: 24px;
  bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--go-whatsapp);
  color: var(--go-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 14px 30px -10px rgba(37, 211, 102, 0.6);
  z-index: 1500;
  transition: transform var(--go-transition), box-shadow var(--go-transition);
}
.g-float-whatsapp:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 18px 36px -10px rgba(37, 211, 102, 0.7);
  color: var(--go-white);
}
.g-float-whatsapp::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--go-whatsapp);
  z-index: -1;
  animation: gWhatsappPing 2.4s ease-out infinite;
}
@keyframes gWhatsappPing {
  0% {
    transform: scale(1);
    opacity: 0.55;
  }
  100% {
    transform: scale(1.9);
    opacity: 0;
  }
}

/* -- Go To Top: bottom-right, hidden until the page is scrolled -- */
.g-float-totop {
  position: fixed;
  right: 24px;
  bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--go-accent-grad);
  color: var(--go-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 14px 30px -12px rgba(1, 48, 196, 0.55);
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity var(--go-transition), visibility var(--go-transition),
    transform var(--go-transition);
}
.g-float-totop.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.g-float-totop:hover {
  transform: translateY(-4px);
  color: var(--go-white);
}

/* ==========================================================================
   RESPONSIVE — smaller footprint + tighter offsets on small screens
   ========================================================================== */
@media (max-width: 767.98px) {
  .g-float-whatsapp {
    width: 52px;
    height: 52px;
    font-size: 23px;
    left: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  }
  .g-float-totop {
    width: 44px;
    height: 44px;
    font-size: 16px;
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  }
}
@media (max-width: 420px) {
  .g-float-whatsapp {
    width: 48px;
    height: 48px;
    font-size: 21px;
    left: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  }
  .g-float-totop {
    width: 42px;
    height: 42px;
    font-size: 15px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  }
}

.phero-wrap {
  --phero-blue: #3b82f6;
  --phero-blue-light: rgba(59, 130, 246, 0.18);
  --phero-white: #ffffff;
  --phero-muted: rgba(255, 255, 255, 0.65);
  --phero-sep: rgba(255, 255, 255, 0.4);

  font-family: "DM Sans", sans-serif;
  position: relative;
  width: 100%;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Background image */
.phero-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* Dark + blue overlay */
.phero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 30, 60, 0.82) 0%,
    rgba(29, 78, 216, 0.55) 100%
  );
  z-index: 1;
}

/* Blue accent line at bottom */
.phero-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--phero-blue),
    #60a5fa,
    var(--phero-blue)
  );
  z-index: 3;
}

/* Content */
.phero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 52px 24px 48px;
}

.phero-title {
  font-family: "DM Serif Display", serif;
  font-size: clamp(1.9rem, 5vw, 2.8rem);
  color: var(--phero-white);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 18px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}

/* Breadcrumb nav */
.phero-nav {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 999px;
  padding: 7px 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.phero-item {
  display: flex;
  align-items: center;
  gap: 2px;
}

.phero-link {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--phero-muted);
  text-decoration: none;
  padding: 3px 8px;
  border-radius: 999px;
  transition: color 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}

.phero-link:hover {
  color: var(--phero-white);
  background: var(--phero-blue-light);
}

.phero-home {
  display: flex;
  align-items: center;
  color: var(--phero-muted);
  padding: 3px 8px;
  border-radius: 999px;
  text-decoration: none;
  transition: color 0.18s ease, background 0.18s ease;
}
.phero-home:hover {
  color: var(--phero-white);
  background: var(--phero-blue-light);
}

.phero-sep {
  color: var(--phero-sep);
  font-size: 0.78rem;
  user-select: none;
  padding: 0 1px;
}

.phero-active {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--phero-white);
  background: var(--phero-blue);
  padding: 3px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

.sitemap-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 15px;
}

.sitemap-title {
  color: #2b2a28;
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.sitemap-card {
  background-color: white;
  border: 2px solid var(--go-blue);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  display: block;
  color: #2b2a28;
}

.sitemap-card:hover {
  background-color: var(--go-blue);
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(213, 158, 6, 0.3);
  text-decoration: none;
}

.card-label {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.card-description {
  font-size: 0.9rem;
  opacity: 0.8;
}

.sitemap-card:hover .card-description {
  opacity: 1;
}

.category-section {
  margin-bottom: 40px;
}

.category-header {
  color: var(--go-blue);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--go-blue);
}

.main-links {
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  .sitemap-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .category-header {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }

  .sitemap-card {
    padding: 15px;
  }

  .card-label {
    font-size: 1rem;
  }
}
