.gg-lp *, .gg-lp *::before, .gg-lp *::after { box-sizing: border-box; margin: 0; padding: 0; }
.gg-lp {
  --c-ink: #222222;
  --c-teal: #306024;
  --c-mint: #4ade80;
  --c-mint-soft: rgba(74,222,128,.16);
  --c-wash: #F3F6F1;
  --c-cta: #781824;
  --c-card: #2C3E50;
  --c-mute: #5c6570;
  --c-line: rgba(34,34,34,.08);
  --ease: cubic-bezier(.22,1,.36,1);
  --max: 1180px;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  color: var(--c-ink);
  background: #fff;
  line-height: 1.55;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  --gg-nav-h: 72px;
  --gg-scroll-gap: 20px;
  --gg-sec-y: 64px;
  --gg-sec-gap: 32px;
}
.gg-lp a { color: inherit; text-decoration: none; }
.gg-lp img { max-width: 100%; display: block; }
.gg-lp button { font-family: inherit; cursor: pointer; border: none; background: none; }
.gg-lp ul { list-style: none; }

.gg-shell { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; }

/* ===== ANIMATIONS (KlientBoost-style) ===== */
.gg-fade {
  opacity: 0;
  transform: translateY(56px);
  filter: blur(6px);
  transition: opacity .9s var(--ease), transform .9s var(--ease), filter .9s var(--ease);
}
.gg-fade.is-on { opacity: 1; transform: none; filter: none; }
.gg-fade-d1 { transition-delay: .08s; }
.gg-fade-d2 { transition-delay: .16s; }
.gg-fade-d3 { transition-delay: .24s; }
.gg-fade-d4 { transition-delay: .32s; }
.gg-fade-d5 { transition-delay: .40s; }

/* ===== NAV ===== */
.gg-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #ffffff;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(34,34,34,.08);
  transition: background .3s, box-shadow .3s, border-color .3s;
}
.gg-nav.is-stuck {
  background: #ffffff;
  box-shadow: 0 8px 28px rgba(0,0,0,.08);
  border-color: rgba(34,34,34,.1);
}
.gg-nav__row {
  position: relative;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
}
.gg-logo img { height: 48px; width: auto; max-width: 200px; object-fit: contain; }
.gg-nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.gg-nav__links a {
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-ink);
  border-radius: 8px;
  transition: color .2s, background .2s;
}
.gg-nav__links a:hover { color: var(--c-teal); background: rgba(48,96,36,.08); }
.gg-nav__links a.is-active {
  color: var(--c-teal);
  background: rgba(48,96,36,.08);
  font-weight: 800;
}
.gg-burger {
  display: none;
  width: 42px;
  height: 42px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 10px;
  background: var(--c-wash) !important;
  background-color: var(--c-wash) !important;
  color: var(--c-ink) !important;
  border: none !important;
  box-shadow: none !important;
  appearance: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
}
.gg-burger:hover,
.gg-burger:focus,
.gg-burger:focus-visible,
.gg-burger:active,
.gg-burger.is-open {
  background: var(--c-wash) !important;
  background-color: var(--c-wash) !important;
  color: var(--c-ink) !important;
  box-shadow: none !important;
  outline: none;
}
.gg-burger:focus-visible {
  outline: 2px solid var(--c-teal);
  outline-offset: 2px;
}
.gg-burger.is-open {
  background: rgba(48,96,36,.12) !important;
  background-color: rgba(48,96,36,.12) !important;
}
.gg-burger i {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--c-ink) !important;
  background-color: var(--c-ink) !important;
  border-radius: 2px;
}
.gg-burger.is-open i {
  background: var(--c-teal) !important;
  background-color: var(--c-teal) !important;
}

/* ===== BUTTONS ===== */
.gg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  transition: transform .35s var(--ease), box-shadow .35s, background .25s, color .25s;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  text-decoration: none;
  line-height: 1.2;
  appearance: none;
  -webkit-appearance: none;
}
.gg-btn--cta,
a.gg-btn--cta,
button.gg-btn--cta,
.gg-form button.gg-btn--cta,
.gg-lp .gg-form .gg-btn--cta[type="submit"] {
  background: #781824 !important;
  background-color: #781824 !important;
  color: #ffffff !important;
  box-shadow: 0 10px 28px rgba(120,24,36,.28);
  border: none !important;
}
.gg-btn--cta:hover,
button.gg-btn--cta:hover,
a.gg-btn--cta:hover,
.gg-lp .gg-form .gg-btn--cta[type="submit"]:hover {
  background: var(--c-mint) !important;
  background-color: var(--c-mint) !important;
  color: #14532d !important;
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(74,222,128,.4);
}
.gg-btn--ghost {
  background: transparent;
  color: var(--c-ink);
  border: 1.5px solid rgba(34,34,34,.18) !important;
}
.gg-btn--ghost:hover {
  border-color: var(--c-mint) !important;
  color: var(--c-teal) !important;
  transform: translateY(-2px);
}
.gg-btn--sm { padding: 10px 18px; font-size: 13px; border-radius: 8px; }
.gg-nav__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 8px;
  flex-shrink: 0;
}
.gg-nav__audit {
  background: #781824 !important;
  background-color: #781824 !important;
  color: #ffffff !important;
  border: none !important;
  box-shadow: 0 8px 20px rgba(120,24,36,.28) !important;
  font-weight: 800 !important;
  letter-spacing: .02em;
  padding: 11px 18px !important;
  flex-shrink: 0 !important;
  white-space: nowrap !important;
}
.gg-nav__audit:hover {
  background: var(--c-mint) !important;
  background-color: var(--c-mint) !important;
  color: #14532d !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(74,222,128,.35) !important;
}
.gg-nav__cta {
  margin-left: 0;
  background: transparent !important;
  background-color: transparent !important;
  color: var(--c-ink) !important;
  border: 1.5px solid rgba(34,34,34,.2) !important;
  box-shadow: none !important;
  font-weight: 700 !important;
}
.gg-nav__cta:hover {
  background: rgba(48,96,36,.08) !important;
  border-color: var(--c-teal) !important;
  color: var(--c-teal) !important;
  transform: translateY(-1px);
  box-shadow: none !important;
}
.gg-nav__audit-mobile { display: none; }
.gg-nav__cta-mobile { display: none; }
.gg-nav__audit-short { display: none; }
.gg-nav__audit-full { display: inline; }
.gg-btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* TYPE */
.gg-kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--c-teal);
  margin-bottom: 12px;
}
.gg-hl,
.gg-highlight {
  color: var(--c-teal);
  font-weight: 700;
}
.gg-h2 {
  font-size: clamp(24px, 3.4vw, 34px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.15;
  margin-bottom: 10px;
  max-width: 640px;
}
.gg-lede {
  font-size: 16px;
  color: var(--c-mute);
  max-width: 520px;
  margin-bottom: 0;
  line-height: 1.5;
}
.gg-sec { padding: var(--gg-sec-y) 0; }
.gg-sec .gg-shell > :last-child { margin-bottom: 0; }
.gg-sec[id],
.gg-conf-strip[id] {
  scroll-margin-top: calc(var(--gg-nav-h) + var(--gg-scroll-gap));
}
.gg-sec--wash { background: var(--c-wash); }
.gg-sec--ink { background: var(--c-ink); color: #fff; }
.gg-sec--ink .gg-lede { color: rgba(255,255,255,.7); }
.gg-sec--ink .gg-kicker { color: var(--c-mint); }
.gg-sec--slate { background: var(--c-card); color: #fff; }
.gg-sec--slate .gg-lede { color: rgba(255,255,255,.7); }
.gg-sec--slate .gg-kicker { color: var(--c-mint); }

/* ===== HERO (logo maroon → green) ===== */
.gg-hero {
  position: relative;
  text-align: center;
  padding: var(--gg-sec-y) 0;
  background:
    radial-gradient(ellipse 90% 60% at 50% -10%, rgba(192,144,84,.22), transparent 55%),
    linear-gradient(180deg, #5c1520 0%, #781824 42%, #4a3a24 78%, #306024 100%);
  overflow: hidden;
  color: #fff;
  min-height: 0;
}
.gg-hero__sun {
  position: absolute;
  top: 12%;
  right: 8%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #f0d9a8, #c09054 45%, rgba(192,144,84,.18) 70%, transparent 72%);
  animation: gg-sun-pulse 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
  opacity: .85;
}
@keyframes gg-sun-pulse {
  0%, 100% { transform: scale(1); opacity: .8; }
  50% { transform: scale(1.08); opacity: 1; }
}
.gg-hero__inner {
  position: relative;
  z-index: 3;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding-top: 12px;
}
.gg-hero__title {
  font-size: clamp(34px, 5.6vw, 64px);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: 1.26;
  max-width: 920px;
  margin: 0 auto 28px;
  color: #fff;
  text-shadow: 0 3px 0 rgba(0,0,0,.08);
}
.gg-hero__mark {
  display: inline-flex;
  vertical-align: middle;
  align-items: center;
  justify-content: center;
  background: #37314D;
  color: #fff;
  padding: 0 .32em;
  border-radius: 14px;
  overflow: hidden;
  height: 1.18em;
  min-width: 11ch;
  position: relative;
  margin: .18em .08em .1em;
  box-shadow: none;
  transform: rotate(-1deg);
}
.gg-hero__swap {
  display: block;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.gg-hero__swap-list {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
  transition: transform .55s cubic-bezier(.22,1,.36,1);
  will-change: transform;
}
.gg-hero__swap-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 1.18em;
  white-space: nowrap;
  padding: 0 .05em;
  font-weight: 800;
  color: #fff;
}
.gg-btn--hero {
  background: var(--c-cta);
  color: #fff !important;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 18px 40px;
  border-radius: 999px;
  border-bottom: 6px solid #5f121c;
  box-shadow: 0 12px 0 #4a0e16, 0 22px 40px rgba(0,0,0,.22);
  transition: transform .2s, box-shadow .2s, border-bottom-width .2s;
  animation: gg-cta-pulse 2.4s ease-in-out infinite;
}
@keyframes gg-cta-pulse {
  0%, 100% { box-shadow: 0 12px 0 #4a0e16, 0 22px 40px rgba(0,0,0,.22); }
  50% { box-shadow: 0 12px 0 #4a0e16, 0 22px 48px rgba(120,24,36,.55); }
}
.gg-btn--hero:hover {
  transform: translateY(4px);
  border-bottom-width: 2px;
  border-bottom-color: #22c55e;
  box-shadow: 0 6px 0 #16a34a, 0 12px 24px rgba(74,222,128,.35);
  background: var(--c-mint);
  animation: none;
  color: #14532d !important;
}
.gg-btn--hero:active {
  transform: translateY(8px);
  border-bottom-width: 0;
  box-shadow: 0 2px 0 #4a0e16;
}
.gg-hero__stage {
  position: relative;
  width: min(860px, 100%);
  height: clamp(240px, 40vw, 340px);
  margin: 28px auto 0;
  z-index: 2;
}
.gg-cloud {
  position: absolute;
  background: #fff;
  border-radius: 999px;
  opacity: .97;
  filter: drop-shadow(0 6px 0 rgba(0,0,0,.06));
  animation: gg-cloud-drift 12s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
.gg-cloud::before,
.gg-cloud::after {
  content: '';
  position: absolute;
  background: #fff;
  border-radius: 50%;
}
.gg-cloud--1 { width: 90px; height: 34px; top: 6%; left: 4%; }
.gg-cloud--1::before { width: 42px; height: 42px; top: -22px; left: 12px; }
.gg-cloud--1::after { width: 32px; height: 32px; top: -14px; left: 42px; }
.gg-cloud--2 { width: 110px; height: 38px; top: 14%; right: 2%; animation-delay: -3s; }
.gg-cloud--2::before { width: 48px; height: 48px; top: -26px; left: 16px; }
.gg-cloud--2::after { width: 36px; height: 36px; top: -16px; left: 52px; }
.gg-cloud--3 { width: 70px; height: 26px; top: 0; left: 48%; animation-delay: -6s; }
.gg-cloud--3::before { width: 32px; height: 32px; top: -16px; left: 10px; }
.gg-cloud--3::after { width: 24px; height: 24px; top: -10px; left: 34px; }
.gg-cloud--4 { width: 80px; height: 28px; bottom: 18%; left: 0; animation-delay: -2s; }
.gg-cloud--4::before { width: 36px; height: 36px; top: -18px; left: 12px; }
.gg-cloud--4::after { width: 26px; height: 26px; top: -12px; left: 38px; }
.gg-cloud--5 { width: 64px; height: 24px; bottom: 28%; right: 6%; animation-delay: -4s; }
.gg-cloud--5::before { width: 28px; height: 28px; top: -14px; left: 8px; }
.gg-cloud--5::after { width: 20px; height: 20px; top: -8px; left: 30px; }
@keyframes gg-cloud-drift {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(18px); }
}
.gg-hero__mascot {
  position: absolute;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%) scale(.86);
  width: clamp(200px, 38vw, 280px);
  z-index: 2;
  opacity: 0;
  filter: drop-shadow(0 22px 28px rgba(0,0,0,.22));
  animation: gg-mascot-in .9s var(--ease) .35s forwards, gg-bob 4.2s ease-in-out 1.3s infinite;
}
.gg-hero__mascot svg { width: 100%; height: auto; display: block; }
@keyframes gg-mascot-in {
  to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
@keyframes gg-bob {
  0%, 100% { transform: translate(-50%, -50%); }
  50% { transform: translate(-50%, calc(-50% - 16px)); }
}
.gg-hero__tags {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}
.gg-hero__tags .gg-ftag { pointer-events: auto; }
.gg-ftag {
  position: absolute;
  z-index: 4;
  background: #fff;
  color: #2c3e50;
  border: 3px solid #2c4a6e;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 7px 0 rgba(44,74,110,.2), 0 14px 28px rgba(0,0,0,.12);
  opacity: 0;
  transform: scale(.7) translateY(12px);
  animation: gg-tag-in .6s var(--ease) forwards, gg-tag-float 5s ease-in-out infinite;
}
.gg-ftag--1 { top: 12%; left: 0; animation-delay: .55s, 1.2s; }
.gg-ftag--2 { top: 36%; left: -2%; animation-delay: .7s, 1.4s; }
.gg-ftag--3 { bottom: 14%; left: 2%; animation-delay: .85s, 1.6s; }
.gg-ftag--4 { top: 14%; right: 0; animation-delay: .65s, 1.3s; }
.gg-ftag--5 { top: 42%; right: -2%; animation-delay: .8s, 1.5s; }
@keyframes gg-tag-in {
  to { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes gg-tag-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.gg-hero__lines {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  animation: gg-fade-in .8s ease .9s forwards;
}
@keyframes gg-fade-in { to { opacity: 1; } }
.gg-hero__lines path {
  fill: none;
  stroke: rgba(255,255,255,.85);
  stroke-width: 2.5;
  stroke-dasharray: 6 7;
  stroke-linecap: round;
}
.gg-hero__zig {
  position: relative;
  z-index: 5;
  margin-top: -1px;
  line-height: 0;
  color: #fff;
  display: none;
}
.gg-hero__zig svg {
  width: 100%;
  height: clamp(32px, 5vw, 48px);
  display: block;
}

/* PROCESS */
.gg-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: var(--gg-sec-gap);
  counter-reset: step;
  align-items: start;
}
.gg-step {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 14px;
  padding: 18px 16px 20px;
  position: relative;
  cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s, border-color .25s, background .25s;
}
.gg-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(34,34,34,.08);
  border-color: rgba(48,96,36,.35);
}
.gg-step:focus-visible {
  outline: 2px solid rgba(48,96,36,.45);
  outline-offset: 3px;
}
.gg-step:active,
.gg-step.is-picked {
  background: #f3f3f3;
  box-shadow: 0 18px 40px rgba(150,150,150,.38);
  border-color: rgba(34,34,34,.12);
}
.gg-step.is-picked:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(150,150,150,.44);
}
.gg-step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--c-teal);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 12px;
}
.gg-step h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -.02em;
  line-height: 1.25;
}
.gg-step p {
  font-size: 15px;
  color: var(--c-mute);
  line-height: 1.55;
}

/* DIFF */
.gg-diff {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.gg-diff__item {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 14px;
  padding: 24px;
  transition: border-color .25s, transform .35s var(--ease), box-shadow .35s;
}
.gg-diff__item:hover {
  border-color: rgba(48,96,36,.45);
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(34,34,34,.08);
}
.gg-diff__item h3 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -.02em;
}
.gg-diff__item p {
  font-size: 14px;
  color: var(--c-mute);
  line-height: 1.5;
}
.gg-diff__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--c-teal);
  margin-bottom: 10px;
}

/* CONF */
.gg-conf {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: start;
}
.gg-conf__list { margin-top: 24px; display: grid; gap: 12px; }
.gg-conf__list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
}
.gg-conf__list li::before {
  content: '';
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--c-teal);
}
.gg-conf__panel {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 28px;
}
.gg-conf__panel h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
}
.gg-conf__panel p {
  color: rgba(255,255,255,.7);
  font-size: 15px;
  line-height: 1.55;
}

/* PROMISES */
.gg-promises {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 36px;
}
.gg-promise {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 12px;
  padding: 18px 20px;
}
.gg-promise__ico {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(48,96,36,.14);
  color: var(--c-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
}
.gg-promise h3 {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 4px;
  letter-spacing: -.02em;
}
.gg-promise p {
  font-size: 13px;
  color: var(--c-mute);
  line-height: 1.45;
}

/* TEAM */
.gg-conf-strip {
  background: var(--c-ink);
  color: #fff;
  padding: var(--gg-sec-y) 0;
}
.gg-conf-strip .gg-kicker { color: var(--c-mint); }
.gg-conf-strip .gg-conf__list li::before { background: var(--c-mint); }
.gg-conf-strip h2 {
  font-size: clamp(24px, 3.4vw, 34px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.15;
  max-width: 640px;
  margin: 0 0 14px;
}
.gg-conf__lead {
  font-size: 16px;
  color: rgba(255,255,255,.78);
  max-width: 640px;
  margin: 0;
  line-height: 1.55;
}
.gg-team {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: var(--gg-sec-gap);
}
.gg-proof {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 24px;
}
.gg-cases {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 16px;
}
.gg-team__card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 22px 16px 20px;
  text-align: center;
}
.gg-team__photo {
  width: 132px;
  height: 132px;
  margin: 0 auto 14px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  border: 3px solid rgba(255,255,255,.22);
  box-shadow: 0 8px 20px rgba(0,0,0,.18);
}
.gg-team__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  background: #d7ddd8;
}
.gg-team__card:nth-child(3) .gg-team__photo img {
  object-position: center 30%;
}
.gg-team__role {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--c-mint);
  margin-top: 4px;
}
.gg-team__exp {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.62);
  letter-spacing: -.01em;
}
.gg-team__card h3 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 0;
  letter-spacing: -.02em;
}
.gg-team__card p {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  line-height: 1.5;
}

/* Compact chips (MOAT / extra promises) */
.gg-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: var(--gg-sec-gap);
}
.gg-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  background: #fff;
  border: 2px solid rgba(34,34,34,.22);
  color: var(--c-ink);
}
.gg-chip em {
  font-style: normal;
  color: var(--c-mint);
  margin-right: 6px;
}
.gg-chip__tick {
  width: 15px;
  height: 15px;
  margin-right: 7px;
  flex: 0 0 auto;
  color: var(--c-teal);
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.gg-chips--on-wash .gg-chip { background: #fff; }
.gg-moat-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--c-teal);
  margin: 8px 0 0;
}
#why {
  text-align: center;
}
#why .gg-h2 {
  margin-left: auto;
  margin-right: auto;
}
#why .gg-moat-label {
  text-align: center;
}
#why .gg-chips {
  display: flex;
  flex-wrap: nowrap;
  justify-content: stretch;
  align-items: stretch;
  gap: 8px;
}
#why .gg-chip {
  flex: 1 1 16.666%;
  width: 16.666%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  white-space: normal;
  line-height: 1.3;
  padding: 12px 8px;
  border-radius: 16px;
  font-size: 12px;
  box-sizing: border-box;
}
#why .gg-chip__tick {
  margin-right: 0;
  margin-bottom: 6px;
}
#promises .gg-h2 {
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.12;
  margin-bottom: 14px;
}

/* Mini cases inside proof */
.gg-case {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 14px;
  padding: 18px 20px;
}
.gg-case__note {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--c-mint);
  margin-bottom: 8px;
}
.gg-case h3 {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -.02em;
}
.gg-case__row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  align-items: start;
  font-size: 13px;
  line-height: 1.45;
}
.gg-case__row strong {
  display: block;
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 4px;
  color: var(--c-mute);
}
.gg-case__row span:last-child strong { color: var(--c-teal); }
.gg-case__arrow {
  color: var(--c-teal);
  font-weight: 800;
  padding-top: 16px;
}
.gg-sec--slate .gg-case__arrow { color: var(--c-mint); }

/* PROOF quotes */
.gg-quote {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 14px;
  padding: 24px;
  transition: transform .35s var(--ease), box-shadow .35s;
}
.gg-quote:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(34,34,34,.08);
}
.gg-quote__stars {
  color: var(--c-mint);
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 12px;
}
.gg-quote p {
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 16px;
  color: var(--c-ink);
}
.gg-quote__who {
  font-size: 13px;
  font-weight: 700;
}
.gg-quote__who span {
  display: block;
  font-weight: 500;
  color: var(--c-mute);
  margin-top: 2px;
}

/* COMPARE */
.gg-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}
.gg-compare__col {
  border-radius: 14px;
  padding: 28px 24px;
  border: 1px solid var(--c-line);
  background: #fff;
}
.gg-compare__col--us {
  border-color: rgba(48,96,36,.45);
  background: #f3f8f1;
}
.gg-compare__col h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 16px;
}
.gg-compare__col--us h3 { color: #306024; }
.gg-compare__col li {
  padding: 10px 0;
  border-bottom: 1px solid var(--c-line);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  gap: 10px;
}
.gg-compare__col li:last-child { border-bottom: 0; }
.gg-compare__col--us li::before { content: '✓'; color: var(--c-teal); font-weight: 800; }
.gg-compare__col--them li::before { content: '-'; color: var(--c-mute); }

/* PRICING */
.gg-prices {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: var(--gg-sec-gap);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  align-items: stretch;
}
.gg-price {
  background: #fff;
  border: 2px solid var(--c-line);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s, border-color .25s;
}
.gg-price:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(34,34,34,.1);
  border-color: var(--c-mint);
}
.gg-price--feat {
  border-color: var(--c-mint);
  box-shadow: 0 16px 40px rgba(74,222,128,.22);
  position: relative;
}
.gg-price h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -.02em;
  line-height: 1.35;
  color: var(--c-ink);
}
.gg-price__amt {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px 12px;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: 4px;
  color: var(--c-teal);
  line-height: 1.1;
}
.gg-price__amt small {
  font-size: 14px;
  font-weight: 600;
  color: var(--c-mute);
}
.gg-price__was {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--c-mute);
  text-decoration: line-through;
  margin-bottom: 4px;
}
.gg-price__off {
  display: inline-block;
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--c-teal);
  line-height: 1;
  align-self: center;
}
.gg-price__tagline {
  margin: 14px 0 18px;
  padding: 12px 14px;
  background: var(--c-mint-soft);
  border: 1px solid rgba(74,222,128,.45);
  border-radius: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--c-teal);
  text-align: center;
  line-height: 1.45;
}
.gg-nudge {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 240;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 340px;
  width: calc(100% - 40px);
  padding: 12px 36px 24px 12px;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(34, 34, 34, .16);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.gg-nudge.is-on {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.gg-nudge.is-off {
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
}
.gg-nudge__pulse {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--c-cta);
  box-shadow: 0 0 0 0 rgba(120, 24, 36, .45);
  animation: gg-nudge-pulse 1.8s ease-out infinite;
}
.gg-nudge__copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.gg-nudge__copy strong {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--c-cta);
}
.gg-nudge__copy span {
  font-size: 12px;
  font-weight: 600;
  color: var(--c-ink);
  line-height: 1.4;
}
.gg-nudge__x {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--c-mute);
  font-size: 18px;
  line-height: 1;
}
.gg-nudge__x:hover {
  background: var(--c-wash);
  color: var(--c-ink);
}
.gg-nudge__dots {
  position: absolute;
  left: 36px;
  bottom: 10px;
  display: flex;
  gap: 6px;
}
.gg-nudge__dots i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-line);
  display: block;
}
.gg-nudge__dots i.is-on {
  background: var(--c-cta);
}
@keyframes gg-nudge-pulse {
  0% { box-shadow: 0 0 0 0 rgba(120, 24, 36, .45); }
  70% { box-shadow: 0 0 0 8px rgba(120, 24, 36, 0); }
  100% { box-shadow: 0 0 0 0 rgba(120, 24, 36, 0); }
}
.gg-price > p {
  font-size: 14px;
  color: var(--c-mute);
  margin-bottom: 18px;
}
.gg-price ul {
  margin-bottom: 24px;
  flex: 1;
}
.gg-price li {
  padding: 10px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--c-line);
  padding-left: 18px;
  position: relative;
  line-height: 1.4;
}
.gg-price li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--c-mint);
  font-weight: 800;
}
.gg-price li em {
  font-style: normal;
  color: var(--c-mute);
  font-weight: 500;
  font-size: 12px;
}
.gg-price .gg-btn { width: 100%; margin-top: auto; }

/* TRUST BADGES */
.gg-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 720px;
  margin: 20px auto 0;
}
.gg-trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  padding: 14px 10px;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 12px;
}
.gg-trust__item svg {
  width: 22px;
  height: 22px;
  color: var(--c-teal);
  flex-shrink: 0;
}
.gg-trust__item span {
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--c-mute);
}

/* HONESTY / PROMISE */
.gg-honesty {
  text-align: center;
}
.gg-honesty__copy {
  max-width: 780px;
  margin: 28px auto 0;
  text-align: left;
}
.gg-honesty__copy p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--c-mute);
  margin: 0 0 16px;
}
.gg-honesty__copy p:last-child { margin-bottom: 0; }
.gg-honesty__close {
  margin-top: 8px !important;
  padding: 16px 18px;
  background: var(--c-mint-soft);
  border: 1px solid rgba(74,222,128,.4);
  border-radius: 12px;
  color: var(--c-teal) !important;
  font-weight: 800 !important;
  font-size: 15px !important;
  line-height: 1.45 !important;
  text-align: center;
}
.gg-honesty__terms {
  margin: 8px 0 20px;
  padding: 16px 18px;
  background: var(--c-wash);
  border: 1px solid var(--c-line);
  border-radius: 12px;
}
.gg-honesty__terms h3 {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .02em;
  color: var(--c-ink);
  margin: 0 0 8px;
}
.gg-honesty__terms p {
  margin: 0 !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
}
.gg-honesty__terms strong { color: var(--c-ink); font-weight: 800; }

.gg-aff {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.gg-aff .gg-kicker,
.gg-aff .gg-h2,
.gg-aff .gg-lede {
  display: block;
  width: 100%;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.gg-aff .gg-lede {
  margin-bottom: 28px;
}
.gg-aff__flow {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 28px;
  counter-reset: aff;
}
.gg-aff__flow li {
  position: relative;
  padding: 18px 16px 16px;
  background: var(--c-wash);
  border: 1px solid var(--c-line);
  border-radius: 14px;
  text-align: left;
}
.gg-aff__flow li::before {
  counter-increment: aff;
  content: counter(aff);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin-bottom: 8px;
  border-radius: 50%;
  background: var(--c-teal);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}
.gg-aff__flow strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 4px;
}
.gg-aff__flow span {
  display: block;
  font-size: 13px;
  color: var(--c-mute);
  line-height: 1.45;
}
.gg-aff__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.gg-aff__note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--c-mute);
}
.gg-aff__note a {
  color: var(--c-teal);
  font-weight: 700;
  text-decoration: underline;
}
.gg-foot__grid--3 {
  grid-template-columns: 1fr 1fr 1fr;
  max-width: 720px;
}

/* GUARANTEE BOX */
.gg-guarantee {
  max-width: 720px;
  margin: var(--gg-sec-gap) auto 0;
  padding: 28px;
  background: linear-gradient(135deg, rgba(74,222,128,.12), rgba(48,96,36,.08));
  border: 1.5px solid rgba(74,222,128,.45);
  border-radius: 16px;
}
.gg-guarantee h3 {
  font-size: clamp(18px, 2.4vw, 22px);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.3;
  color: var(--c-teal);
  margin-bottom: 12px;
}
.gg-guarantee p {
  font-size: 15px;
  color: var(--c-ink);
  line-height: 1.65;
  margin: 0;
}

/* CHECKOUT */
.gg-checkout {
  max-width: 560px;
  margin: 36px auto 0;
  background: #fff;
  border: 2px solid var(--c-mint);
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 16px 40px rgba(74,222,128,.15);
}
.gg-checkout h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;
}
.gg-checkout > p {
  font-size: 14px;
  color: var(--c-mute);
  margin-bottom: 22px;
}
.gg-checkout__base {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--c-line);
  font-size: 15px;
  font-weight: 700;
}
.gg-checkout__addons {
  display: grid;
  gap: 10px;
  margin: 16px 0;
}
.gg-addon {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 14px;
  border: 1.5px solid var(--c-line);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.gg-addon:hover,
.gg-addon:has(input:checked) {
  border-color: var(--c-mint);
  background: var(--c-mint-soft);
}
.gg-addon input {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: var(--c-teal);
  flex-shrink: 0;
  cursor: pointer;
}
.gg-addon__body {
  flex: 1;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}
.gg-addon__label {
  font-size: 14px;
  font-weight: 700;
  color: var(--c-ink);
  line-height: 1.4;
}
.gg-addon__price {
  font-size: 14px;
  font-weight: 800;
  color: var(--c-teal);
  white-space: nowrap;
}
.gg-checkout__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0 20px;
  margin-top: 4px;
  border-top: 2px solid var(--c-line);
}
.gg-checkout__total span {
  font-size: 15px;
  font-weight: 700;
}
.gg-checkout__total strong {
  font-size: 28px;
  font-weight: 800;
  color: var(--c-teal);
  letter-spacing: -.02em;
}
.gg-checkout .gg-btn { width: 100%; }
.gg-checkout .gg-field { margin-bottom: 4px; }

/* FAQ */
.gg-faq {
  max-width: 720px;
  margin: var(--gg-sec-gap) auto 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.gg-faq__item {
  border: 1px solid var(--c-line);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s;
}
.gg-faq__item:hover { border-color: rgba(74,222,128,.55); }
.gg-faq__item.is-open {
  border-color: rgba(74,222,128,.6);
  background: #f3f8f1;
}
.gg-lp .gg-faq__q,
.gg-faq__q {
  width: 100%;
  text-align: left;
  padding: 16px 52px 16px 18px;
  font-size: 16px;
  font-weight: 750;
  letter-spacing: -.02em;
  line-height: 1.35;
  position: relative;
  color: var(--c-ink) !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  cursor: pointer;
  appearance: none;
}
.gg-lp .gg-faq__q:hover {
  color: var(--c-teal) !important;
  background: var(--c-mint-soft) !important;
}
.gg-faq__q::after {
  content: '+';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
  color: var(--c-mint);
  background: rgba(74,222,128,.18);
  transition: transform .3s var(--ease), background .2s, color .2s;
}
.gg-faq__item.is-open .gg-faq__q::after {
  transform: translateY(-50%) rotate(45deg);
  background: var(--c-mint);
  color: #14532d;
}
.gg-faq__a {
  max-height: 0;
  overflow: hidden;
  color: var(--c-mute);
  font-size: 15px;
  line-height: 1.6;
  padding: 0 18px;
  transition: max-height .4s var(--ease), padding .25s;
}
.gg-faq__item.is-open .gg-faq__a {
  max-height: 240px;
  padding: 0 18px 18px;
}

/* FORMS */
.gg-forms {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 16px;
  margin-top: 36px;
}
.gg-formbox {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 16px;
  padding: 28px 24px;
}
.gg-formbox h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 6px;
}
.gg-formbox > p {
  font-size: 14px;
  color: var(--c-mute);
  margin-bottom: 20px;
}
.gg-form { display: grid; gap: 14px; }
.gg-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.gg-field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
}
.gg-field input,
.gg-field select,
.gg-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--c-line);
  border-radius: 10px;
  font: inherit;
  background: #fff;
  color: var(--c-ink);
  outline: none;
  transition: border-color .2s;
}
.gg-field input:focus,
.gg-field select:focus,
.gg-field textarea:focus {
  border-color: var(--c-teal);
}
.gg-field textarea { min-height: 88px; resize: vertical; }
.gg-form-msg {
  font-size: 14px;
  font-weight: 600;
  min-height: 1.2em;
}
.gg-form-msg.is-ok { color: var(--c-teal); }
.gg-form-msg.is-err { color: #c0392b; }
.gg-safe {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--c-line);
  font-size: 13px;
  color: var(--c-mute);
}
.gg-safe strong {
  display: block;
  color: var(--c-ink);
  margin-bottom: 10px;
  font-size: 14px;
}
.gg-safe li { padding: 4px 0; }

/* FINAL */
.gg-final {
  text-align: center;
  padding: 88px 0;
  background: var(--c-ink);
  color: #fff;
}
.gg-final .gg-h2 {
  margin-left: auto;
  margin-right: auto;
}
.gg-final .gg-lede {
  margin: 0 auto 28px;
  color: rgba(255,255,255,.7);
}
.gg-final .gg-btn-row { justify-content: center; }
.gg-final .gg-btn--ghost {
  color: #fff !important;
  border-color: rgba(255,255,255,.3) !important;
}

.gg-foot {
  background: linear-gradient(180deg, #1a1a1a 0%, #121212 100%);
  color: rgba(255,255,255,.55);
  padding: 56px 0 40px;
  text-align: center;
  font-size: 13px;
  line-height: 1.6;
  border-top: 1px solid rgba(255,255,255,.06);
}
.gg-foot strong { color: #fff; }
.gg-foot__inner {
  max-width: 640px;
  margin: 0 auto;
}
.gg-foot__brand {
  margin-bottom: 0;
}
.gg-foot__name {
  display: block;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: #fff;
  margin-bottom: 6px;
}
.gg-foot__tag {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.45);
  letter-spacing: .01em;
}
.gg-foot__rule {
  width: 40px;
  height: 2px;
  margin: 22px auto;
  background: var(--c-teal);
  border-radius: 2px;
  opacity: .85;
}
.gg-foot__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 520px;
  margin: 0 auto;
  padding: 22px 8px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px;
  text-align: center;
}
.gg-foot__grid--solo {
  grid-template-columns: 1fr;
  max-width: 320px;
}
.gg-foot__block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 4px 20px;
  min-height: 72px;
}
.gg-foot__block + .gg-foot__block {
  border-left: 1px solid rgba(255,255,255,.08);
}
.gg-foot__label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.gg-foot__mail {
  color: #fff !important;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -.01em;
  text-decoration: none !important;
  transition: color .2s;
  word-break: break-all;
}
.gg-foot__mail:hover {
  color: var(--c-mint) !important;
}
.gg-foot__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.gg-foot__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.85) !important;
  transition: background .25s, border-color .25s, color .25s, transform .25s, box-shadow .25s;
}
.gg-foot__social a:hover {
  background: var(--c-teal);
  border-color: var(--c-teal);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(48,96,36,.35);
}
.gg-foot__social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.gg-foot__copy {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.07);
  color: rgba(255,255,255,.32);
  font-size: 12px;
}
.gg-foot__copy a {
  color: rgba(255,255,255,.55);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.2);
  transition: color .2s, border-color .2s;
}
.gg-foot__copy a:hover {
  color: #fff;
  border-color: rgba(255,255,255,.55);
}

@media (max-width: 960px) {
  .gg-steps { grid-template-columns: repeat(2, 1fr); }
  .gg-diff { grid-template-columns: repeat(2, 1fr); }
  .gg-team { grid-template-columns: repeat(2, 1fr); }
  .gg-proof { grid-template-columns: 1fr; }
  .gg-cases { grid-template-columns: 1fr; }
  .gg-prices { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .gg-trust { grid-template-columns: 1fr; max-width: 520px; }
  .gg-trust__item { flex-direction: row; justify-content: flex-start; text-align: left; padding: 12px 14px; }
  .gg-forms { grid-template-columns: 1fr; }
  .gg-conf { grid-template-columns: 1fr; gap: 24px; }
  .gg-compare { grid-template-columns: 1fr; }
  .gg-foot__grid {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 320px;
    padding: 8px 0;
  }
  .gg-foot__block {
    padding: 16px 20px;
    min-height: 0;
  }
  .gg-foot__block + .gg-foot__block {
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.08);
  }
  .gg-honesty__copy { text-align: left; }
  #why .gg-chips { flex-wrap: wrap; }
  #why .gg-chip {
    flex: 1 1 calc(50% - 8px);
    width: auto;
  }
}
@media (max-width: 768px) {
  .gg-lp { --gg-nav-h: 64px; --gg-sec-y: 48px; --gg-sec-gap: 24px; }
  .gg-hero__zig { display: block; }
  .gg-shell, .gg-nav__row { width: calc(100% - 32px); }
  .gg-sec { padding: var(--gg-sec-y) 0; }
  .gg-hero { padding: 24px 0 0; }
  .gg-hero__inner { width: calc(100% - 40px); padding-top: 0; }
  .gg-hero__title {
    font-size: clamp(26px, 7.2vw, 32px);
    line-height: 1.16;
    letter-spacing: -.03em;
    margin-bottom: 24px;
  }
  .gg-hero__mark {
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0 !important;
    height: auto !important;
    margin: 2px auto 0;
    padding: .06em .4em;
    border-radius: 12px;
    box-sizing: border-box;
    transform: none;
    box-shadow: none;
  }
  .gg-hero__mark + br { display: none; }
  .gg-hero__swap { width: 100%; height: 1.2em !important; }
  .gg-hero__swap-list li {
    height: 1.2em !important;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }
  .gg-btn--hero { font-size: 14px; padding: 14px 28px; border-bottom-width: 5px; }
  .gg-hero__sun { width: 70px; height: 70px; top: 18%; }
  .gg-hero__lines { display: none; }
  .gg-hero__stage {
    height: auto;
    min-height: 0;
    margin-top: 16px;
    padding-bottom: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .gg-hero__mascot {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    margin: 8px auto 8px;
    width: min(180px, 52vw);
    opacity: 1;
    animation: gg-bob-m 4.5s ease-in-out infinite;
  }
  @keyframes gg-bob-m {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }
  .gg-ftag {
    position: relative;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    display: inline-flex;
    margin: 5px;
    font-size: 11px;
    padding: 8px 12px;
    opacity: 1;
    animation: none;
    transform: none;
  }
  .gg-hero__tags {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
    order: 2;
    max-width: 100%;
  }
  .gg-cloud--4, .gg-cloud--5 { display: none; }
  .gg-logo img { height: 40px; max-width: 170px; }
  .gg-nav__row { height: 64px; }
  .gg-nav__links {
    display: none;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px 16px;
    border-bottom: 1px solid var(--c-line);
    box-shadow: 0 12px 28px rgba(0,0,0,.08);
  }
  .gg-nav__links.is-open { display: flex; }
  .gg-nav__links a { padding: 12px 10px; }
  .gg-burger { display: flex; order: 3; flex-shrink: 0; }
  .gg-nav__actions {
    display: flex !important;
    order: 2;
    margin-left: auto;
    gap: 6px;
    flex-shrink: 0 !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  .gg-nav__actions .gg-nav__audit,
  a.gg-nav__audit {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    padding: 10px 12px !important;
    font-size: 11px !important;
    line-height: 1.2 !important;
    max-width: none !important;
    width: auto !important;
    height: auto !important;
    min-height: 36px;
  }
  .gg-nav__actions .gg-nav__cta,
  a.gg-nav__cta {
    display: none !important;
  }
  .gg-nav__audit-mobile { display: none !important; }
  .gg-nav__cta-mobile {
    display: block !important;
    margin-top: 4px;
    padding: 12px 10px !important;
    font-weight: 800 !important;
    color: var(--c-cta) !important;
  }
  .gg-logo { flex-shrink: 1; min-width: 0; }
  .gg-logo img { max-width: min(140px, 38vw); }
  .gg-nav__audit-full { display: none !important; }
  .gg-nav__audit-short { display: inline !important; }
  .gg-promises { grid-template-columns: 1fr; }
  .gg-team { grid-template-columns: repeat(2, 1fr); }
  .gg-row2 { grid-template-columns: 1fr; }
  .gg-diff { grid-template-columns: 1fr; }
  .gg-steps { grid-template-columns: 1fr; }
  .gg-cases { grid-template-columns: 1fr; }
  .gg-nudge {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
    width: auto;
  }
  .gg-aff__flow { grid-template-columns: 1fr; }
  .gg-aff__actions .gg-btn { white-space: normal; }
  .gg-foot__grid--3 { grid-template-columns: 1fr; }
  .gg-foot__grid--3 .gg-foot__block + .gg-foot__block { border-left: 0; border-top: 1px solid rgba(255,255,255,.08); }
}
@media (max-width: 400px) {
  .gg-team { grid-template-columns: 1fr; }
  .gg-hero__title { font-size: 24px; }
  .gg-team__photo { width: 120px; height: 120px; }
  #why .gg-chip { flex: 1 1 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .gg-lp *, .gg-lp *::before, .gg-lp *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .gg-fade { opacity: 1 !important; transform: none !important; filter: none !important; }
}