/* ═══════════════════════════════════════════════════
   Golden Star Elements — Header & Footer CSS v1.1.0
═══════════════════════════════════════════════════ */

/* ─── Nuclear reset — kill ALL theme button interference ─── */
.gs-header-wrap button,
.gs-header-wrap button:link,
.gs-header-wrap button:visited,
.gs-header-wrap button:hover,
.gs-header-wrap button:focus,
.gs-header-wrap button:active,
.gs-header-wrap button:focus-visible,
.gs-header-wrap button:focus-within {
  outline: none !important;
  box-shadow: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  text-decoration: none !important;
}

/* ─── Root CSS variables ─── */
.gs-header-wrap,
.gs-footer-wrap {
  --gs-dk:   #144B45;
  --gs-dk2:  #0c2e2a;
  --gs-tl:   #4C8F6B;
  --gs-md:   #609F76;
  --gs-ac:   #7FBF8E;
  --gs-bg:   #F4F7F5;
  --gs-br:   #d0e4d8;
  --gs-mu:   #546860;
  --gs-gold: #f0d080;
  font-family: 'Plus Jakarta Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
}

/* ──────────────────────────────────────────────────
   TOP BAR
────────────────────────────────────────────────── */
.gs-topbar {
  background: var(--gs-dk2);
  position: relative;
  overflow: hidden;
  z-index: 201;
}
.gs-topbar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    rgba(96,159,118,.05) 0px, rgba(96,159,118,.05) 1px,
    transparent 1px, transparent 60px
  );
  pointer-events: none;
}
.gs-topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.gs-topbar-left  { display: flex; align-items: center; gap: 18px; }
.gs-topbar-right { display: flex; align-items: center; gap: 12px; }

.gs-topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .73rem;
  font-weight: 600;
  color: rgba(255,255,255,.65) !important;
  letter-spacing: .02em;
  text-decoration: none !important;
  transition: color .2s;
  white-space: nowrap;
}
.gs-topbar-item:hover { color: #fff !important; }
.gs-topbar-item i { color: #7FBF8E; font-size: .7rem; }

.gs-topbar-badge {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: #f0d080;
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.2);
  padding: 3px 10px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.gs-topbar-badge--live {
  color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.1);
}
@keyframes gs-pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.5; transform:scale(.8); }
}
.gs-live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4caf8a;
  animation: gs-pulse 2s infinite;
  display: inline-block;
}

/* ──────────────────────────────────────────────────
   MAIN HEADER
────────────────────────────────────────────────── */
.gs-header {
  position: sticky;
  top: 0;
  z-index: 200;
  height: 70px;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid #d0e4d8;
  box-shadow: 0 1px 16px rgba(20,75,69,.05);
  transition: box-shadow .3s, background .3s;
}
.gs-header.gs-scrolled {
  box-shadow: 0 4px 32px rgba(20,75,69,.12);
  background: #fff;
}
.gs-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* ─── Logo ─── */
.gs-logo {
  display: flex;
  align-items: center;
  text-decoration: none !important;
  flex-shrink: 0;
}
.gs-logo-img {
  width: var(--gs-logo-w-desktop, 200px);
  height: auto;
  display: block;
  transition: opacity .2s;
}
.gs-logo:hover .gs-logo-img { opacity: .85; }
.gs-logo-img--mob {
  width: var(--gs-logo-w-mobile, 150px);
}

/* ─── Desktop nav ─── */
.gs-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
.gs-nav-item { position: relative; }

/* !! FIX: force color with !important using hardcoded value to beat any theme rule !! */
.gs-nav-link {
  display: flex !important;
  align-items: center !important;
  gap: 5px !important;
  padding: 8px 13px !important;
  font-size: .85rem !important;
  font-weight: 600 !important;
  color: #546860 !important;
  border-radius: 8px !important;
  text-decoration: none !important;
  background: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  cursor: pointer !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  transition: color .2s, background .2s;
  white-space: nowrap !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  line-height: normal !important;
}
.gs-nav-link:hover  { color: #144B45 !important; background: #F4F7F5 !important; }
.gs-nav-link:focus  { color: #546860 !important; outline: none !important; box-shadow: none !important; border: none !important; }
.gs-nav-link:active { color: #144B45 !important; }

.gs-chevron {
  font-size: .6rem;
  opacity: .55;
  transition: transform .25s, opacity .2s;
  pointer-events: none;
}
.gs-nav-item:hover .gs-chevron,
.gs-nav-item:focus-within .gs-chevron {
  transform: rotate(180deg);
  opacity: 1;
}

/* ─── Dropdown ─── */
.gs-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 580px;
  background: #fff;
  border: 1px solid #d0e4d8;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(20,75,69,.13), 0 2px 8px rgba(0,0,0,.04);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility 0s linear .15s;
  z-index: 300;
}
.gs-dropdown--sm { min-width: 420px; }

/* Bridge pseudo — fills gap so cursor doesn't exit the hover zone */
.gs-has-dd {
  padding-bottom: 0;
}
.gs-has-dd::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -20px;
  right: -20px;
  height: 14px;
  background: transparent;
  z-index: 299;
}

.gs-nav-item:hover .gs-dropdown,
.gs-nav-item:focus-within .gs-dropdown,
.gs-dropdown:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
  transition: opacity .18s ease, transform .18s ease, visibility 0s linear 0s;
}

.gs-dd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.gs-dd-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none !important;
  transition: background .15s;
}
.gs-dd-item:hover { background: #F4F7F5; }
.gs-dd-ico {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: #F4F7F5;
  border: 1px solid #d0e4d8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #144B45 !important;
  font-size: 13px;
  flex-shrink: 0;
  transition: background .15s, color .15s, border-color .15s;
}
.gs-dd-item:hover .gs-dd-ico {
  background: linear-gradient(135deg, #144B45, #4C8F6B);
  color: #fff !important;
  border-color: transparent;
}
.gs-dd-label { font-size: .83rem; font-weight: 700; color: #144B45 !important; line-height: 1.2; margin-bottom: 2px; }
.gs-dd-desc  { font-size: .74rem; color: #546860 !important; line-height: 1.3; }

.gs-dd-footer {
  margin-top: 8px;
  padding: 10px 12px;
  background: linear-gradient(135deg, rgba(20,75,69,.04), rgba(96,159,118,.06));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.gs-dd-trust {
  font-size: .77rem;
  font-weight: 600;
  color: #144B45 !important;
  display: flex;
  align-items: center;
  gap: 7px;
}
.gs-dd-trust i { color: #609F76; }
.gs-dd-cta-link {
  font-size: .77rem;
  font-weight: 700;
  color: #609F76 !important;
  text-decoration: none !important;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color .2s;
}
.gs-dd-cta-link:hover { color: #144B45 !important; }
.gs-dd-cta-link i { font-size: .65rem; }

/* ─── Header actions ─── */
.gs-hdr-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.gs-hdr-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  font-size: .82rem;
  font-weight: 700;
  color: #144B45 !important;
  border: 1.5px solid #d0e4d8 !important;
  border-radius: 9px;
  text-decoration: none !important;
  background: transparent;
  transition: background .2s, border-color .2s;
  white-space: nowrap;
}
.gs-hdr-phone:hover { background: #F4F7F5; border-color: #609F76 !important; }
.gs-hdr-phone i {
  width: 22px; height: 22px;
  background: #144B45;
  color: #fff !important;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
}

.gs-btn-cta {
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  padding: 10px 20px !important;
  background: linear-gradient(135deg, #144B45, #4C8F6B) !important;
  color: #fff !important;
  font-size: .84rem !important;
  font-weight: 700 !important;
  border-radius: 10px !important;
  border: none !important;
  cursor: pointer !important;
  text-decoration: none !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  box-shadow: 0 4px 14px rgba(20,75,69,.25) !important;
  transition: transform .2s, box-shadow .2s, opacity .2s !important;
  white-space: nowrap !important;
  outline: none !important;
  line-height: normal !important;
}
.gs-btn-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(20,75,69,.35) !important;
  opacity: .94;
  color: #fff !important;
}
.gs-btn-cta i { font-size: .82rem !important; color: #fff !important; }

/* ─── Hamburger ─── */
.gs-hamburger {
  display: none !important;
  flex-direction: column;
  gap: 5px;
  padding: 9px;
  cursor: pointer;
  border: 1.5px solid #d0e4d8 !important;
  border-radius: 9px;
  background: transparent !important;
  outline: none !important;
  box-shadow: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  transition: background .2s, border-color .2s;
}
.gs-hamburger:hover        { background: #F4F7F5 !important; border-color: #609F76 !important; }
.gs-hamburger:focus,
.gs-hamburger:focus-visible { outline: none !important; box-shadow: none !important; }

.gs-hline {
  width: 20px; height: 2px;
  background: #144B45;
  border-radius: 2px;
  transition: transform .3s cubic-bezier(.4,0,.2,1), opacity .3s, width .3s;
  transform-origin: center;
  display: block;
  pointer-events: none;
}
.gs-hamburger.gs-open .gs-hline:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.gs-hamburger.gs-open .gs-hline:nth-child(2) { opacity: 0; transform: scaleX(0); }
.gs-hamburger.gs-open .gs-hline:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── CTA mobile show/hide
   Default: hidden on mobile only. On desktop always visible.
   .gs-cta-mob-visible = show on mobile too ────────────── */
@media (max-width: 960px) {
  .gs-cta-mob-hidden .gs-btn-cta { display: none !important; }
  /* gs-cta-mob-visible: keep the inline-flex from .gs-btn-cta, no override needed */
}

/* ──────────────────────────────────────────────────
   MOBILE OVERLAY
   Note: JS moves this element to <body> on init
   to escape Elementor's stacking context.
────────────────────────────────────────────────── */
.gs-mob-overlay {
  position: fixed !important;
  inset: 0 !important;
  z-index: 999999 !important;
  background: rgba(10, 36, 32, .82);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .3s ease, visibility .3s ease;
}
.gs-mob-overlay.gs-open {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: all !important;
}

.gs-mob-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 90vw);
  background: #fff;
  box-shadow: -20px 0 60px rgba(0,0,0,.15);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
  overscroll-behavior: contain;
}
.gs-mob-overlay.gs-open .gs-mob-panel {
  transform: translateX(0);
}

.gs-mob-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid #d0e4d8;
  flex-shrink: 0;
}
.gs-mob-close {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: #F4F7F5 !important;
  border: 1px solid #d0e4d8 !important;
  outline: none !important;
  box-shadow: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: #144B45 !important;
  font-size: 15px;
  transition: background .2s;
  flex-shrink: 0;
}
.gs-mob-close:hover        { background: #ddeae0 !important; }
.gs-mob-close:focus,
.gs-mob-close:focus-visible { outline: none !important; box-shadow: none !important; }

.gs-mob-nav {
  flex: 1;
  padding: 10px 0;
  overflow-y: auto;
}

.gs-mob-link {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 13px 20px !important;
  font-size: .92rem !important;
  font-weight: 600 !important;
  color: #144B45 !important;
  text-decoration: none !important;
  cursor: pointer !important;
  background: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  width: 100% !important;
  text-align: left !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  transition: background .15s;
  line-height: normal !important;
}
.gs-mob-link:hover        { background: #F4F7F5 !important; }
.gs-mob-link:focus,
.gs-mob-link:focus-visible { outline: none !important; box-shadow: none !important; }

.gs-mob-caret {
  font-size: .62rem;
  color: #546860;
  transition: transform .25s;
  flex-shrink: 0;
  pointer-events: none;
}
.gs-mob-acc-btn.gs-acc-open .gs-mob-caret { transform: rotate(180deg); }

.gs-mob-sub {
  display: none;
  background: #F4F7F5;
  border-top: 1px solid rgba(0,0,0,.05);
  border-bottom: 1px solid rgba(0,0,0,.05);
}
.gs-mob-sub.gs-sub-open { display: block; }

.gs-mob-sub-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 20px 9px 32px;
  font-size: .85rem;
  font-weight: 500;
  color: #546860 !important;
  text-decoration: none !important;
  transition: color .15s, background .15s;
}
.gs-mob-sub-link:hover { color: #144B45 !important; background: rgba(20,75,69,.04); }
.gs-mob-sub-link i { color: #609F76 !important; font-size: 12px; width: 14px; text-align: center; flex-shrink: 0; }
.gs-mob-sub-link--all { font-weight: 700; color: #609F76 !important; }

.gs-mob-bottom {
  padding: 16px 20px;
  border-top: 1px solid #d0e4d8;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}
.gs-mob-cta-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 13px !important;
  background: linear-gradient(135deg, #144B45, #4C8F6B) !important;
  color: #fff !important;
  font-size: .9rem !important;
  font-weight: 700 !important;
  border-radius: 12px !important;
  text-decoration: none !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  box-shadow: 0 4px 16px rgba(20,75,69,.25) !important;
  transition: opacity .2s;
}
.gs-mob-cta-btn:hover { opacity: .9; color: #fff !important; }
.gs-mob-contacts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.gs-mob-contact-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px;
  border: 1.5px solid #d0e4d8 !important;
  border-radius: 10px;
  font-size: .79rem;
  font-weight: 700;
  color: #144B45 !important;
  text-decoration: none !important;
  transition: background .2s, border-color .2s;
}
.gs-mob-contact-link:hover { background: #F4F7F5; border-color: #609F76 !important; }
.gs-mob-contact-link i { color: #609F76 !important; font-size: 12px; }

/* ──────────────────────────────────────────────────
   FOOTER
────────────────────────────────────────────────── */
.gs-footer-wrap {
  background: var(--gs-dk2);
  position: relative;
  overflow: hidden;
}
.gs-footer-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 10% 20%, rgba(96,159,118,.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 90% 80%, rgba(20,75,69,.15) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.gs-footer-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}
.gs-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 28px 44px;
  position: relative;
  z-index: 1;
}

.gs-ft-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: 48px;
}
.gs-ft-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-decoration: none !important;
  transition: background .25s, border-color .25s;
}
.gs-ft-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(96,159,118,.3);
}
.gs-ft-card-ico {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: linear-gradient(135deg, rgba(96,159,118,.2), rgba(96,159,118,.1));
  border: 1px solid rgba(96,159,118,.2);
  display: flex; align-items: center; justify-content: center;
  color: #7FBF8E !important;
  font-size: 14px;
  flex-shrink: 0;
}
.gs-ft-card-label {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.35);
  margin-bottom: 4px;
}
.gs-ft-card-value {
  font-size: .88rem;
  font-weight: 700;
  color: rgba(255,255,255,.85);
  line-height: 1.3;
  word-break: break-all;
}
.gs-ft-card-sub { font-size: .73rem; color: rgba(255,255,255,.35); margin-top: 2px; }

.gs-ft-main {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: 28px;
}
.gs-ft-logo {
  display: block;
  text-decoration: none !important;
  margin-bottom: 16px;
}
.gs-ft-logo-img {
  width: var(--gs-ft-logo-w-desktop, 200px);
  height: auto;
  display: block;
  transition: opacity .2s;
}
.gs-ft-logo:hover .gs-ft-logo-img { opacity: .85; }
.gs-ft-desc {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  line-height: 1.75;
  margin-bottom: 20px;
  margin-top: 0;
}
.gs-ft-trust      { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
.gs-ft-trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
}
.gs-ft-trust-item i { color: #7FBF8E !important; font-size: .85rem; width: 16px; text-align: center; }

.gs-ft-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.gs-ft-col-head {
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.32);
  margin: 0 0 16px;
}
.gs-ft-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.gs-ft-col ul li a {
  font-size: .83rem;
  font-weight: 500;
  color: rgba(255,255,255,.5) !important;
  text-decoration: none !important;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: color .2s;
}
.gs-ft-col ul li a::before {
  content: '';
  display: inline-block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  flex-shrink: 0;
  transition: background .2s;
}
.gs-ft-col ul li a:hover         { color: #7FBF8E !important; }
.gs-ft-col ul li a:hover::before { background: #7FBF8E; }

.gs-ft-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.gs-ft-copy { font-size: .77rem; color: rgba(255,255,255,.28); }
.gs-ft-legal { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.gs-ft-legal a { font-size: .77rem; font-weight: 500; color: rgba(255,255,255,.28) !important; text-decoration: none !important; transition: color .2s; }
.gs-ft-legal a:hover { color: rgba(255,255,255,.6) !important; }
.gs-ft-legal-sep { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,.18); display: inline-block; }

/* ──────────────────────────────────────────────────
   RESPONSIVE
────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .gs-ft-main    { grid-template-columns: 220px 1fr; gap: 36px; }
  .gs-ft-cols    { grid-template-columns: repeat(2, 1fr); }
  .gs-ft-cards   { grid-template-columns: 1fr 1fr; }
}

/* 960px — hamburger breakpoint */
@media (max-width: 960px) {
  .gs-nav          { display: none !important; }
  .gs-hdr-phone    { display: none !important; }
  .gs-hamburger    { display: flex !important; }
  .gs-topbar-right { display: none; }
  /* Logo uses mobile width variable */
  .gs-logo-img     { width: var(--gs-logo-w-mobile, 150px) !important; }
  .gs-ft-logo-img  { width: var(--gs-ft-logo-w-mobile, 160px) !important; }
  /* CTA visibility on mobile controlled by modifier class */
  .gs-cta-mob-hidden .gs-btn-cta { display: none !important; }
  /* gs-cta-mob-visible: .gs-btn-cta keeps its display:inline-flex */
}

@media (max-width: 768px) {
  .gs-ft-main  { grid-template-columns: 1fr; gap: 32px; }
  .gs-ft-desc  { max-width: 440px; }
  .gs-ft-cards { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .gs-header-inner  { padding: 0 16px; }
  .gs-topbar-inner  { padding: 0 16px; }
  .gs-topbar-item:nth-child(n+2) { display: none; }
  .gs-footer-inner  { padding: 48px 20px 36px; }
  .gs-ft-cols       { grid-template-columns: 1fr 1fr; }
  .gs-ft-bottom     { flex-direction: column; align-items: flex-start; }
  .gs-ft-legal      { gap: 10px; }
}

@media (max-width: 420px) {
  .gs-logo-tagline    { display: none; }
  .gs-mob-contacts    { grid-template-columns: 1fr; }
  .gs-ft-cols         { grid-template-columns: 1fr; }
}
