:root {
  --gp-ink: #17162b;
  --gp-copy: #596079;
  --gp-brand: #2f1c67;
  --gp-brand-2: #5c38df;
  --gp-green: #20ca78;
  --gp-green-dark: #087746;
  --gp-soft: #f5f3fb;
  --gp-line: #e5e1f1;
  --gp-white: #fff;
  --gp-shadow: 0 26px 70px rgba(28, 19, 67, .16);
  --gp-ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #fff;
  color: var(--gp-ink);
  font-family: "Nunito Sans", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body, button, input, textarea { font-family: "Nunito Sans", system-ui, sans-serif; }
h1, h2, h3, h4 {
  margin: 0;
  color: var(--gp-ink);
  font-family: Poppins, system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -.035em;
}
p { margin: 0; }
a { color: inherit; text-decoration: none; }
.msym {
  font-family: "Material Symbols Outlined";
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  direction: ltr;
  font-feature-settings: "liga";
}
.gp-shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}
.gp-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--gp-brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.gp-kicker::before {
  width: 24px;
  height: 3px;
  border-radius: 8px;
  background: var(--gp-green);
  content: "";
}
.gp-button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 22px;
  border: 1px solid var(--gp-brand);
  border-radius: 9px;
  background: var(--gp-brand);
  box-shadow: 0 13px 28px rgba(47, 28, 103, .22);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  transition: transform .2s var(--gp-ease), box-shadow .2s ease, background .2s ease;
}
.gp-button:hover {
  background: #241550;
  box-shadow: 0 18px 34px rgba(47, 28, 103, .28);
  color: #fff;
  transform: translateY(-2px);
}
.gp-button.is-ghost {
  border-color: #cfc8e8;
  background: #fff;
  box-shadow: none;
  color: var(--gp-brand);
}
.gp-button.is-ghost:hover { background: #f5f3fb; }
.gp-button .msym { font-size: 20px; }
.gp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 28px;
  color: #727990;
  font-size: 13px;
  font-weight: 700;
}
.gp-breadcrumb a:hover { color: var(--gp-brand); }
.gp-breadcrumb .msym { font-size: 16px; }

.gp-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 18%, rgba(111, 78, 238, .18), transparent 32%),
    radial-gradient(circle at 9% 82%, rgba(32, 202, 120, .12), transparent 27%),
    linear-gradient(145deg, #fbfaff 0%, #f1edfb 58%, #fafafe 100%);
}
.gp-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .5;
  background-image: linear-gradient(rgba(47, 28, 103, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(47, 28, 103, .045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to right, #000, transparent 72%);
  content: "";
}
.gp-hero-grid {
  min-height: 670px;
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(470px, 1.04fr);
  gap: 56px;
  align-items: center;
  padding-block: 62px 74px;
}
.gp-hero-copy h1 {
  max-width: 690px;
  margin-top: 15px;
  font-size: clamp(42px, 4.7vw, 66px);
  line-height: .99;
}
.gp-hero-copy h1 mark {
  position: relative;
  z-index: 0;
  background: none;
  color: var(--gp-green-dark);
}
.gp-hero-copy h1 mark::after {
  position: absolute;
  right: 0;
  bottom: .02em;
  left: 0;
  z-index: -1;
  height: .22em;
  border-radius: 80%;
  background: var(--gp-green);
  opacity: .8;
  content: "";
  transform: rotate(-1deg);
}
.gp-lead {
  max-width: 610px;
  margin-top: 24px;
  color: var(--gp-copy);
  font-size: 19px;
  line-height: 1.62;
}
.gp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.gp-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 28px;
  color: #444a63;
  font-size: 13px;
  font-weight: 800;
}
.gp-trust span { display: inline-flex; align-items: center; gap: 6px; }
.gp-trust .msym { color: var(--gp-green-dark); font-size: 18px; }
.gp-visual {
  position: relative;
  min-width: 0;
}
.gp-visual::before {
  position: absolute;
  inset: 10% 4%;
  border-radius: 50%;
  background: rgba(78, 50, 190, .25);
  filter: blur(70px);
  content: "";
}

.gp-proof {
  position: relative;
  z-index: 3;
  margin-top: -26px;
}
.gp-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--gp-line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(25, 19, 52, .1);
}
.gp-proof-item {
  min-height: 116px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 23px 25px;
  border-right: 1px solid var(--gp-line);
}
.gp-proof-item:last-child { border: 0; }
.gp-proof-item strong {
  color: var(--gp-brand);
  font-family: Poppins, sans-serif;
  font-size: 20px;
  line-height: 1.15;
}
.gp-proof-item span {
  margin-top: 6px;
  color: var(--gp-copy);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.gp-section { padding-block: 104px; }
.gp-section.is-soft { background: #f7f6fb; }
.gp-section.is-dark {
  position: relative;
  overflow: hidden;
  background: #17142d;
  color: #fff;
}
.gp-section.is-dark::before {
  position: absolute;
  inset: -20%;
  opacity: .28;
  background: radial-gradient(circle at 20% 30%, #5f3ce3, transparent 24%), radial-gradient(circle at 78% 68%, #0d9c5b, transparent 22%);
  content: "";
}
.gp-section.is-dark h2, .gp-section.is-dark h3 { color: #fff; }
.gp-section-head {
  max-width: 760px;
  margin-bottom: 42px;
}
.gp-section-head.is-centered {
  margin-inline: auto;
  text-align: center;
}
.gp-section-head.is-centered .gp-kicker { justify-content: center; }
.gp-section-head h2 {
  margin-top: 14px;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.08;
}
.gp-section-head p {
  margin-top: 17px;
  color: var(--gp-copy);
  font-size: 17px;
  line-height: 1.65;
}
.gp-section.is-dark .gp-section-head p { color: #bdb8d6; }
.gp-section.is-dark .gp-kicker { color: #64e6a8; }

.gp-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.gp-card {
  min-height: 250px;
  padding: 27px;
  border: 1px solid var(--gp-line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 34px rgba(27, 20, 61, .055);
  transition: transform .25s var(--gp-ease), box-shadow .25s ease, border-color .25s ease;
}
.gp-card:hover {
  border-color: #cfc5ed;
  box-shadow: 0 22px 46px rgba(27, 20, 61, .11);
  transform: translateY(-5px);
}
.gp-card-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #eeeafd;
  color: var(--gp-brand);
}
.gp-card-icon .msym { font-size: 24px; }
.gp-card h3 { margin-top: 21px; font-size: 19px; line-height: 1.2; }
.gp-card p {
  margin-top: 10px;
  color: var(--gp-copy);
  font-size: 15px;
  line-height: 1.65;
}

.gp-flow-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, .7fr);
  gap: 56px;
  align-items: center;
}
.gp-flow-list {
  position: relative;
  display: grid;
  gap: 12px;
}
.gp-flow-item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 15px;
  padding: 19px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 10px;
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(8px);
}
.gp-flow-item > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: rgba(102, 73, 232, .3);
  color: #7ff0b8;
  font-family: Poppins, sans-serif;
  font-weight: 800;
}
.gp-flow-item h3 { font-size: 16px; letter-spacing: -.01em; }
.gp-flow-item p {
  margin-top: 4px;
  color: #bbb6d1;
  font-size: 14px;
  line-height: 1.5;
}
.gp-flow-aside {
  position: relative;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(102, 73, 232, .22), rgba(24, 21, 46, .9));
  box-shadow: 0 28px 70px rgba(0, 0, 0, .25);
}
.gp-flow-aside .msym {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #64e6a8;
  color: #17142d;
  font-size: 28px;
}
.gp-flow-aside h3 { margin-top: 22px; font-size: 25px; }
.gp-flow-aside p {
  margin-top: 12px;
  color: #c6c1dc;
  font-size: 16px;
  line-height: 1.65;
}
.gp-flow-aside ul { margin: 20px 0 0; padding: 0; list-style: none; }
.gp-flow-aside li {
  display: flex;
  gap: 8px;
  margin-top: 9px;
  color: #eeecf7;
  font-size: 14px;
  font-weight: 700;
}
.gp-flow-aside li::before { color: #64e6a8; content: "✓"; }

.gp-outcome-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.gp-outcome {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 17px;
  padding: 25px;
  border: 1px solid var(--gp-line);
  border-radius: 11px;
  background: #fff;
}
.gp-outcome .msym {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e7f9f0;
  color: var(--gp-green-dark);
}
.gp-outcome h3 { font-size: 17px; letter-spacing: -.01em; }
.gp-outcome p {
  margin-top: 5px;
  color: var(--gp-copy);
  font-size: 14px;
  line-height: 1.55;
}

.gp-audience {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.gp-audience span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 15px;
  border: 1px solid #ddd7ed;
  border-radius: 999px;
  background: #fff;
  color: #3b3650;
  font-size: 14px;
  font-weight: 800;
}
.gp-audience .msym { color: var(--gp-brand); font-size: 18px; }

.gp-faq { max-width: 900px; }
.gp-faq-list { display: grid; gap: 10px; }
.gp-faq-item {
  overflow: hidden;
  border: 1px solid var(--gp-line);
  border-radius: 10px;
  background: #fff;
}
.gp-faq-item.is-open { border-color: #bdb1df; }
.gp-faq-question {
  width: 100%;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  border: 0;
  background: transparent;
  color: var(--gp-ink);
  cursor: pointer;
  text-align: left;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 700;
}
.gp-faq-question .msym { color: var(--gp-brand); }
.gp-faq-answer {
  display: none;
  padding: 0 22px 21px;
  color: var(--gp-copy);
  font-size: 15px;
  line-height: 1.65;
}
.gp-faq-item.is-open .gp-faq-answer { display: block; }

.gp-cta { padding-bottom: 104px; }
.gp-cta-box {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(390px, 1fr);
  gap: 48px;
  align-items: center;
  padding: 50px;
  border-radius: 14px;
  background: #17142d;
  box-shadow: 0 30px 70px rgba(23, 20, 45, .2);
}
.gp-cta-box::before {
  position: absolute;
  inset: -20%;
  z-index: -1;
  background: radial-gradient(circle at 18% 38%, rgba(89, 55, 219, .56), transparent 25%), radial-gradient(circle at 88% 78%, rgba(32, 202, 120, .24), transparent 22%);
  content: "";
}
.gp-cta-copy .gp-kicker { color: #69e9ac; }
.gp-cta-copy h2 {
  margin-top: 14px;
  color: #fff;
  font-size: clamp(32px, 3.4vw, 44px);
  line-height: 1.08;
}
.gp-cta-copy > p {
  margin-top: 14px;
  color: #beb9d4;
  font-size: 16px;
  line-height: 1.65;
}
.gp-contact-list { display: grid; gap: 11px; margin-top: 25px; }
.gp-contact-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}
.gp-contact-list .msym { color: #69e9ac; font-size: 20px; }
.gp-form-card {
  padding: 26px;
  border-radius: 11px;
  background: #fff;
  box-shadow: 0 22px 50px rgba(0, 0, 0, .28);
}
.gp-form-card h3 { font-size: 20px; }
.gp-form-card > p { margin-top: 5px; color: var(--gp-copy); font-size: 13px; }
.gp-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
  margin-top: 18px;
}
.gp-field label {
  display: block;
  margin-bottom: 5px;
  color: #454a5f;
  font-size: 12px;
  font-weight: 800;
}
.gp-field input, .gp-field textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid #d8d5e4;
  border-radius: 7px;
  outline: none;
  color: var(--gp-ink);
  font-size: 14px;
}
.gp-field input:focus, .gp-field textarea:focus {
  border-color: var(--gp-brand);
  box-shadow: 0 0 0 3px #ebe7f8;
}
.gp-field.is-wide { grid-column: 1 / -1; }
.gp-form-card .gp-button { width: 100%; margin-top: 14px; border: 0; cursor: pointer; }
.gp-form-card .gp-button:disabled { cursor: wait; opacity: .7; }
.gp-form-privacy {
  margin-top: 10px;
  color: #888da0;
  font-size: 11px;
  line-height: 1.45;
  text-align: center;
}
.gp-form-privacy a { color: var(--gp-brand); text-decoration: underline; }
.gp-form-error { display: none; margin-top: 10px; color: #b42336; font-size: 12px; font-weight: 800; }
.gp-form-success { padding: 36px 10px; text-align: center; }
.gp-form-success .msym { color: var(--gp-green-dark); font-size: 52px; }
.gp-form-success h3 { margin-top: 12px; }
.gp-form-success p { margin-top: 8px; color: var(--gp-copy); line-height: 1.55; }

[data-gp-reveal] {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .44s var(--gp-ease), transform .48s var(--gp-ease);
}
[data-gp-reveal].is-visible { opacity: 1; transform: none; }

/* Aplicativo mobile */
.gp-mobile-stage {
  min-height: 565px;
  display: grid;
  place-items: center;
  perspective: 1200px;
}
.gp-phone {
  position: relative;
  z-index: 2;
  width: 292px;
  height: 580px;
  padding: 11px;
  border: 2px solid #353052;
  border-radius: 42px;
  background: #141126;
  box-shadow: 0 35px 75px rgba(23, 17, 58, .32);
  transform: rotateY(-5deg) rotateX(2deg);
}
.gp-phone::before {
  position: absolute;
  top: 17px;
  left: 50%;
  z-index: 8;
  width: 82px;
  height: 22px;
  border-radius: 20px;
  background: #100d20;
  content: "";
  transform: translateX(-50%);
}
.gp-phone-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 31px;
  background: #f8f7fc;
}
.gp-app-top {
  height: 76px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 18px 14px;
  background: #fff;
  color: var(--gp-ink);
}
.gp-app-logo { color: var(--gp-brand); font-family: Poppins, sans-serif; font-size: 17px; font-weight: 800; }
.gp-app-avatar {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #2f1c67;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
}
.gp-app-view {
  position: absolute;
  inset: 76px 0 59px;
  overflow: hidden;
  padding: 17px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(18px);
  transition: opacity .35s ease, transform .45s var(--gp-ease);
}
.gp-app-view.is-active { opacity: 1; pointer-events: auto; transform: none; }
.gp-app-view h3 { font-size: 18px; }
.gp-app-view > p { margin-top: 3px; color: #7a7e91; font-size: 11px; }
.gp-app-card {
  margin-top: 12px;
  padding: 13px;
  border: 1px solid #e5e1f0;
  border-radius: 11px;
  background: #fff;
  box-shadow: 0 7px 18px rgba(32, 23, 69, .06);
}
.gp-app-row { display: flex; align-items: center; gap: 9px; }
.gp-app-row + .gp-app-row { margin-top: 11px; padding-top: 11px; border-top: 1px solid #efedf5; }
.gp-channel {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  flex: none;
  border-radius: 9px;
  background: #ece8fa;
  color: var(--gp-brand);
}
.gp-channel.is-green { background: #def7e9; color: #07854b; }
.gp-channel.is-blue { background: #e4f0ff; color: #2173c9; }
.gp-app-row b { display: block; font-size: 11px; }
.gp-app-row small { display: block; margin-top: 2px; color: #86899a; font-size: 9px; }
.gp-unread {
  min-width: 19px;
  margin-left: auto;
  padding: 3px 5px;
  border-radius: 10px;
  background: #2f1c67;
  color: #fff;
  font-size: 8px;
  font-weight: 900;
  text-align: center;
}
.gp-mini-pipeline { display: grid; gap: 8px; margin-top: 12px; }
.gp-mini-deal {
  padding: 10px;
  border-left: 3px solid var(--gp-green);
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 5px 14px rgba(30, 24, 56, .06);
}
.gp-mini-deal b { display: flex; justify-content: space-between; font-size: 10px; }
.gp-mini-deal small { color: #7d8191; font-size: 9px; }
.gp-ticket {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  padding: 11px;
  border-radius: 9px;
  background: #fff;
}
.gp-ticket .msym { color: var(--gp-brand); font-size: 19px; }
.gp-ticket b { display: block; font-size: 10px; }
.gp-ticket small { color: #818495; font-size: 8.5px; }
.gp-mobile-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-top: 12px; }
.gp-mobile-metric { padding: 11px; border-radius: 9px; background: #fff; }
.gp-mobile-metric span { color: #7d8194; font-size: 8px; }
.gp-mobile-metric strong { display: block; margin-top: 4px; color: var(--gp-brand); font-family: Poppins, sans-serif; font-size: 18px; }
.gp-mini-chart {
  height: 85px;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  margin-top: 12px;
  padding: 12px;
  border-radius: 9px;
  background: #fff;
}
.gp-mini-chart i { flex: 1; border-radius: 4px 4px 1px 1px; background: linear-gradient(#714feb, #2f1c67); animation: gp-bars 2.4s var(--gp-ease) infinite alternate; }
.gp-mini-chart i:nth-child(2) { animation-delay: -.6s; }
.gp-mini-chart i:nth-child(3) { animation-delay: -1.1s; }
.gp-mini-chart i:nth-child(4) { animation-delay: -.25s; }
.gp-app-tabs {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 6;
  height: 59px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  border-top: 1px solid #e8e4f1;
  background: #fff;
}
.gp-app-tab {
  display: grid;
  place-items: center;
  padding: 7px 0;
  border: 0;
  background: none;
  color: #8f91a0;
  cursor: pointer;
}
.gp-app-tab .msym { font-size: 20px; }
.gp-app-tab span:last-child { margin-top: 2px; font-size: 7px; font-weight: 800; }
.gp-app-tab.is-active { color: var(--gp-brand); }
.gp-phone-callout {
  position: absolute;
  z-index: 4;
  min-width: 150px;
  padding: 12px 14px;
  border: 1px solid #e1dcee;
  border-radius: 10px;
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 14px 30px rgba(28, 20, 62, .13);
  color: var(--gp-copy);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;
  backdrop-filter: blur(8px);
  animation: gp-float 4s ease-in-out infinite;
}
.gp-phone-callout .msym { display: block; margin-bottom: 6px; color: var(--gp-brand); font-size: 22px; }
.gp-phone-callout.is-left { top: 100px; left: 0; }
.gp-phone-callout.is-right { right: -4px; bottom: 95px; animation-delay: -2s; }

/* WorkStation do Closer */
.gp-workstation {
  position: relative;
  min-height: 505px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 18px;
  background: #1b1735;
  box-shadow: 0 34px 80px rgba(23, 17, 58, .3);
  transform: perspective(1200px) rotateY(-3deg);
}
.gp-ws-top {
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  color: #fff;
}
.gp-ws-top strong { font-family: Poppins, sans-serif; font-size: 14px; }
.gp-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 9px;
  border-radius: 20px;
  background: rgba(32, 202, 120, .16);
  color: #70efb3;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .08em;
}
.gp-live::before { width: 6px; height: 6px; border-radius: 50%; background: #36dc8d; content: ""; animation: gp-pulse 1.5s ease-out infinite; }
.gp-ws-body {
  min-height: 420px;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  overflow: hidden;
  border-radius: 11px;
  background: #f8f7fc;
}
.gp-ws-side { padding: 15px 10px; background: #fff; }
.gp-ws-brand { padding: 0 7px 12px; color: var(--gp-brand); font-family: Poppins, sans-serif; font-size: 13px; font-weight: 800; }
.gp-ws-nav {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 5px;
  padding: 8px;
  border-radius: 7px;
  color: #75798d;
  font-size: 9px;
  font-weight: 800;
}
.gp-ws-nav.is-active { background: #ede9fa; color: var(--gp-brand); }
.gp-ws-nav .msym { font-size: 16px; }
.gp-ws-main { padding: 17px; }
.gp-ws-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.gp-ws-heading h3 { font-size: 16px; }
.gp-ws-heading p { margin-top: 3px; color: #85889b; font-size: 9px; }
.gp-ws-call-button {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 10px;
  border-radius: 7px;
  background: var(--gp-brand);
  color: #fff;
  font-size: 8px;
  font-weight: 900;
}
.gp-ws-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 14px; }
.gp-ws-kpi { padding: 10px; border: 1px solid #e7e3f0; border-radius: 8px; background: #fff; }
.gp-ws-kpi span { color: #888b9b; font-size: 7.5px; }
.gp-ws-kpi strong { display: block; margin-top: 3px; color: var(--gp-ink); font-family: Poppins, sans-serif; font-size: 15px; }
.gp-ws-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 9px; margin-top: 9px; }
.gp-ws-panel { padding: 12px; border: 1px solid #e7e3f0; border-radius: 8px; background: #fff; }
.gp-ws-panel h4 { font-size: 10px; letter-spacing: 0; }
.gp-ws-agenda { margin-top: 9px; }
.gp-ws-meeting {
  display: grid;
  grid-template-columns: 31px minmax(0, 1fr) auto;
  gap: 7px;
  align-items: center;
  padding: 8px 0;
  border-top: 1px solid #f0eef5;
}
.gp-ws-meeting time { color: var(--gp-brand); font-size: 8px; font-weight: 900; }
.gp-ws-meeting b { display: block; font-size: 8.5px; }
.gp-ws-meeting small { display: block; color: #8a8d9c; font-size: 7px; }
.gp-ws-meeting em { padding: 3px 5px; border-radius: 8px; background: #def7e9; color: #07854b; font-size: 6.5px; font-style: normal; font-weight: 900; }
.gp-goal-ring {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  margin: 13px auto 5px;
  border-radius: 50%;
  background: conic-gradient(var(--gp-green) 0 72%, #ebe8f2 72% 100%);
  animation: gp-goal 1.4s var(--gp-ease) both;
}
.gp-goal-ring::before { width: 70px; height: 70px; border-radius: 50%; background: #fff; content: ""; }
.gp-goal-ring strong { position: absolute; color: var(--gp-brand); font-family: Poppins, sans-serif; font-size: 17px; }
.gp-goal-caption { color: #7e8192; font-size: 7px; text-align: center; }
.gp-objection {
  margin-top: 10px;
  padding: 9px;
  border-left: 3px solid #5e3de1;
  border-radius: 6px;
  background: #f0edfb;
  color: #4a4268;
  font-size: 7.5px;
  line-height: 1.4;
}

/* Campanhas de WhatsApp */
.gp-wa-console {
  position: relative;
  z-index: 2;
  min-height: 505px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 34px 80px rgba(23, 17, 58, .28);
  transform: perspective(1200px) rotateY(-3deg);
}
.gp-wa-bar {
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 17px;
  background: #19152f;
  color: #fff;
}
.gp-wa-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: Poppins, sans-serif;
  font-size: 12px;
  font-weight: 800;
}
.gp-wa-brand .msym { color: #72eab1; font-size: 21px; }
.gp-wa-official {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(32, 202, 120, .14);
  color: #78efb7;
  font-size: 7.5px;
  font-weight: 900;
  letter-spacing: .08em;
}
.gp-wa-official i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #37dd8e;
  animation: gp-pulse 1.5s ease-out infinite;
}
.gp-wa-body {
  min-height: 450px;
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  background: #f7f6fb;
}
.gp-wa-side {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 17px 9px;
  border-right: 1px solid #e8e4f1;
  background: #fff;
}
.gp-wa-side > span {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 7px;
  border-radius: 7px;
  color: #7f8295;
  font-size: 7.2px;
  font-weight: 800;
}
.gp-wa-side > span.is-active { background: #e5f8ee; color: #087746; }
.gp-wa-side .msym { font-size: 15px; }
.gp-wa-main { min-width: 0; padding: 15px; }
.gp-wa-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.gp-wa-heading small {
  display: block;
  color: #85899c;
  font-size: 7px;
  font-weight: 800;
  text-transform: uppercase;
}
.gp-wa-heading strong {
  display: block;
  margin-top: 2px;
  color: var(--gp-ink);
  font-family: Poppins, sans-serif;
  font-size: 13px;
}
.gp-wa-approved {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 7px 8px;
  border-radius: 7px;
  background: #def7e9;
  color: #087746;
  font-size: 7px;
  font-weight: 900;
}
.gp-wa-approved .msym { font-size: 13px; }
.gp-wa-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  margin-top: 12px;
}
.gp-wa-kpis > div {
  min-width: 0;
  padding: 8px 9px;
  border: 1px solid #e5e1ef;
  border-radius: 8px;
  background: #fff;
}
.gp-wa-kpis span { display: block; color: #888b9c; font-size: 6.3px; font-weight: 800; }
.gp-wa-kpis strong { display: block; margin-top: 2px; color: var(--gp-brand); font-family: Poppins, sans-serif; font-size: 12px; }
.gp-wa-kpis small { display: block; overflow: hidden; color: #9a9cad; font-size: 5.8px; text-overflow: ellipsis; white-space: nowrap; }
.gp-wa-workspace {
  display: grid;
  grid-template-columns: minmax(150px, .95fr) minmax(130px, 1.05fr);
  gap: 8px;
  margin-top: 8px;
}
.gp-wa-phone {
  overflow: hidden;
  border: 7px solid #242135;
  border-radius: 22px;
  background: #ebe6dd;
  box-shadow: 0 12px 24px rgba(30, 25, 50, .13);
}
.gp-wa-phone-top {
  height: 45px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 7px;
  background: #075e54;
  color: #fff;
}
.gp-wa-phone-top > .msym { font-size: 13px; }
.gp-wa-phone-top > .msym:last-child { margin-left: auto; }
.gp-wa-phone-top > i {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--gp-brand);
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
}
.gp-wa-phone-top b { display: block; font-size: 7px; }
.gp-wa-phone-top small { display: block; margin-top: 1px; color: rgba(255,255,255,.72); font-size: 5.5px; }
.gp-wa-chat {
  min-height: 223px;
  padding: 9px;
  background:
    linear-gradient(rgba(239, 232, 221, .93), rgba(239, 232, 221, .93)),
    radial-gradient(circle, #c7bcae 1px, transparent 1px);
  background-size: auto, 12px 12px;
}
.gp-wa-date {
  width: max-content;
  display: block;
  margin: 0 auto 8px;
  padding: 3px 6px;
  border-radius: 5px;
  background: #d8edf2;
  color: #59747a;
  font-size: 5px;
  font-weight: 900;
}
.gp-wa-bubble {
  position: relative;
  padding: 9px 8px 14px;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,.06);
  color: #31343b;
  font-size: 6.2px;
  line-height: 1.45;
}
.gp-wa-bubble small { position: absolute; right: 6px; bottom: 4px; color: #69a5ac; font-size: 4.8px; }
.gp-wa-actions { display: grid; gap: 3px; margin-top: 4px; }
.gp-wa-actions span {
  padding: 5px;
  border-radius: 5px;
  background: #fff;
  color: #1688a2;
  font-size: 5.5px;
  font-weight: 900;
  text-align: center;
}
.gp-wa-routing {
  padding: 12px;
  border: 1px solid #e5e1ef;
  border-radius: 9px;
  background: #fff;
}
.gp-wa-routing h4 { font-size: 9px; letter-spacing: 0; }
.gp-wa-routing > div {
  position: relative;
  display: grid;
  grid-template-columns: 27px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  margin-top: 15px;
}
.gp-wa-routing > div:not(:last-child)::after {
  position: absolute;
  top: 27px;
  bottom: -15px;
  left: 13px;
  width: 1px;
  background: #ddd8eb;
  content: "";
}
.gp-wa-routing i {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #e5f8ee;
  color: #087746;
  font-style: normal;
}
.gp-wa-routing .msym { font-size: 15px; }
.gp-wa-routing b { display: block; font-size: 7.5px; }
.gp-wa-routing small { display: block; margin-top: 2px; color: #9295a5; font-size: 6px; line-height: 1.25; }

/* E-mail Marketing */
.gp-email-console {
  position: relative;
  z-index: 2;
  min-height: 505px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 34px 80px rgba(23, 17, 58, .28);
  transform: perspective(1200px) rotateY(-3deg);
}
.gp-email-bar {
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 17px;
  background: #19152f;
  color: #fff;
}
.gp-email-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: Poppins, sans-serif;
  font-size: 12px;
  font-weight: 800;
}
.gp-email-brand .msym { color: #72eab1; font-size: 21px; }
.gp-email-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(32, 202, 120, .14);
  color: #78efb7;
  font-size: 7.5px;
  font-weight: 900;
  letter-spacing: .08em;
}
.gp-email-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #37dd8e;
  animation: gp-pulse 1.5s ease-out infinite;
}
.gp-email-body {
  min-height: 450px;
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  background: #f7f6fb;
}
.gp-email-side {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 17px 9px;
  border-right: 1px solid #e8e4f1;
  background: #fff;
}
.gp-email-side > span {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 7px;
  border-radius: 7px;
  color: #7f8295;
  font-size: 7.5px;
  font-weight: 800;
}
.gp-email-side > span.is-active { background: #eeeafd; color: var(--gp-brand); }
.gp-email-side .msym { font-size: 15px; }
.gp-email-main { min-width: 0; padding: 16px; }
.gp-email-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.gp-email-heading small {
  display: block;
  color: #85899c;
  font-size: 7px;
  font-weight: 800;
  text-transform: uppercase;
}
.gp-email-heading strong {
  display: block;
  margin-top: 2px;
  color: var(--gp-ink);
  font-family: Poppins, sans-serif;
  font-size: 13px;
}
.gp-email-send {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 9px;
  border-radius: 7px;
  background: var(--gp-brand);
  color: #fff;
  font-size: 7.5px;
  font-weight: 900;
}
.gp-email-send .msym { font-size: 14px; }
.gp-email-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
  margin-top: 13px;
}
.gp-email-kpis > div {
  min-width: 0;
  padding: 9px;
  border: 1px solid #e5e1ef;
  border-radius: 8px;
  background: #fff;
}
.gp-email-kpis span { display: block; color: #888b9c; font-size: 6.5px; font-weight: 800; }
.gp-email-kpis strong { display: block; margin-top: 2px; color: var(--gp-brand); font-family: Poppins, sans-serif; font-size: 13px; }
.gp-email-kpis small { display: block; overflow: hidden; margin-top: 1px; color: #9a9cad; font-size: 5.8px; text-overflow: ellipsis; white-space: nowrap; }
.gp-email-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(120px, .82fr);
  gap: 8px;
  margin-top: 8px;
}
.gp-email-preview, .gp-email-journey {
  min-width: 0;
  padding: 10px;
  border: 1px solid #e5e1ef;
  border-radius: 9px;
  background: #fff;
}
.gp-email-subject {
  padding-bottom: 8px;
  border-bottom: 1px solid #efedf5;
}
.gp-email-subject span { display: block; color: #9698a8; font-size: 6px; text-transform: uppercase; }
.gp-email-subject b { display: block; overflow: hidden; margin-top: 2px; font-size: 7.5px; text-overflow: ellipsis; white-space: nowrap; }
.gp-email-message {
  margin-top: 8px;
  overflow: hidden;
  padding: 13px;
  border-radius: 7px;
  background:
    radial-gradient(circle at 88% 10%, rgba(108, 76, 230, .2), transparent 35%),
    linear-gradient(145deg, #f5f1ff, #fff 66%);
}
.gp-email-logo { color: var(--gp-brand); font-family: Poppins, sans-serif; font-size: 10px; font-weight: 900; }
.gp-email-label {
  display: inline-block;
  margin-top: 17px;
  color: var(--gp-green-dark);
  font-size: 5.5px;
  font-weight: 900;
  letter-spacing: .08em;
}
.gp-email-message h3 { max-width: 175px; margin-top: 4px; font-size: 14px; line-height: 1.08; }
.gp-email-message p { max-width: 190px; margin-top: 6px; color: #676b7f; font-size: 6.5px; line-height: 1.45; }
.gp-email-message em {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-top: 10px;
  padding: 6px 8px;
  border-radius: 5px;
  background: var(--gp-brand);
  color: #fff;
  font-size: 6px;
  font-style: normal;
  font-weight: 900;
}
.gp-email-message em .msym { font-size: 10px; }
.gp-email-journey h4 { font-size: 8.5px; letter-spacing: 0; }
.gp-email-journey > div {
  position: relative;
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 7px;
  align-items: center;
  margin-top: 11px;
}
.gp-email-journey > div:not(:last-child)::after {
  position: absolute;
  top: 20px;
  bottom: -11px;
  left: 9px;
  width: 1px;
  background: #ddd8eb;
  content: "";
}
.gp-email-journey i {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #efedf5;
  color: #85889b;
  font-style: normal;
}
.gp-email-journey .is-done i { background: #dcf7e9; color: var(--gp-green-dark); }
.gp-email-journey .is-current i { background: #eeeafd; color: var(--gp-brand); animation: gp-email-focus 2.2s ease-in-out infinite; }
.gp-email-journey .msym { font-size: 11px; }
.gp-email-journey b { display: block; font-size: 6.8px; }
.gp-email-journey small { display: block; margin-top: 1px; color: #9295a5; font-size: 5.6px; line-height: 1.25; }

/* Visuais dos serviços */
.gp-service-visual {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
}
.gp-blueprint, .gp-tailor-board, .gp-mentoring-map {
  position: relative;
  z-index: 2;
  width: min(100%, 520px);
  padding: 27px;
  border: 1px solid #dcd5ef;
  border-radius: 16px;
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--gp-shadow);
  backdrop-filter: blur(10px);
}
.gp-blueprint::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: .45;
  background-image: linear-gradient(#dfd9ed 1px, transparent 1px), linear-gradient(90deg, #dfd9ed 1px, transparent 1px);
  background-size: 24px 24px;
  content: "";
  mask-image: linear-gradient(to bottom right, #000, transparent);
}
.gp-service-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 23px;
}
.gp-service-top strong { font-family: Poppins, sans-serif; font-size: 17px; }
.gp-service-top span { padding: 6px 9px; border-radius: 20px; background: #e4f8ed; color: var(--gp-green-dark); font-size: 9px; font-weight: 900; }
.gp-blueprint-flow { position: relative; display: grid; grid-template-columns: 1fr 32px 1fr; gap: 6px; align-items: center; }
.gp-blueprint-node { padding: 15px; border: 1px solid #d9d2ec; border-radius: 9px; background: #fff; }
.gp-blueprint-node .msym { color: var(--gp-brand); font-size: 22px; }
.gp-blueprint-node b { display: block; margin-top: 8px; font-size: 11px; }
.gp-blueprint-node small { display: block; margin-top: 3px; color: #86899b; font-size: 8px; line-height: 1.35; }
.gp-blueprint-arrow { color: #7a65c4; text-align: center; }
.gp-blueprint-delivery { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; margin-top: 20px; }
.gp-blueprint-delivery div { padding: 9px; border-radius: 7px; background: #29204c; color: #fff; font-size: 8px; font-weight: 800; text-align: center; }

.gp-tailor-board { overflow: hidden; background: #17142d; color: #fff; }
.gp-tailor-board::after {
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: #5432d4;
  filter: blur(65px);
  content: "";
}
.gp-tailor-board .gp-service-top strong { color: #fff; }
.gp-code {
  position: relative;
  z-index: 2;
  padding: 19px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 10px;
  background: #211c3b;
  color: #dcd8ec;
  font: 600 11px/1.8 ui-monospace, SFMono-Regular, Menlo, monospace;
}
.gp-code i { color: #6fe8ae; font-style: normal; }
.gp-code b { color: #a990ff; font-weight: 700; }
.gp-code span { color: #79c8ff; }
.gp-integration-line { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; margin-top: 17px; }
.gp-integration-line div { display: grid; place-items: center; min-height: 60px; border: 1px solid rgba(255,255,255,.12); border-radius: 8px; background: rgba(255,255,255,.06); color: #eeeaf9; font-size: 8px; font-weight: 900; text-align: center; }
.gp-integration-line .msym { display: block; margin-bottom: 5px; color: #6fe8ae; font-size: 20px; }

.gp-mentoring-map { min-height: 440px; }
.gp-map-center {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: 130px;
  height: 130px;
  display: grid;
  place-items: center;
  padding: 15px;
  border: 8px solid #eeeafd;
  border-radius: 50%;
  background: var(--gp-brand);
  box-shadow: 0 15px 34px rgba(47, 28, 103, .25);
  color: #fff;
  font-family: Poppins, sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  transform: translate(-50%, -50%);
}
.gp-map-node {
  position: absolute;
  z-index: 2;
  min-width: 104px;
  padding: 10px 12px;
  border: 1px solid #dcd6ed;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(30, 23, 58, .09);
  color: #49445d;
  font-size: 9px;
  font-weight: 900;
  text-align: center;
  animation: gp-float 4.6s ease-in-out infinite;
}
.gp-map-node:nth-of-type(2) { top: 74px; left: 30px; }
.gp-map-node:nth-of-type(3) { top: 74px; right: 30px; animation-delay: -.9s; }
.gp-map-node:nth-of-type(4) { top: 185px; left: 18px; animation-delay: -1.8s; }
.gp-map-node:nth-of-type(5) { top: 185px; right: 18px; animation-delay: -2.7s; }
.gp-map-node:nth-of-type(6) { bottom: 66px; left: 40px; animation-delay: -3.4s; }
.gp-map-node:nth-of-type(7) { right: 40px; bottom: 66px; animation-delay: -4s; }
.gp-map-footer {
  position: absolute;
  right: 24px;
  bottom: 16px;
  left: 24px;
  display: flex;
  justify-content: center;
  gap: 7px;
}
.gp-map-footer span { padding: 6px 8px; border-radius: 20px; background: #eeeafd; color: var(--gp-brand); font-size: 7.5px; font-weight: 900; }

@keyframes gp-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes gp-pulse { 0% { box-shadow: 0 0 0 0 rgba(54, 220, 141, .6); } 75%, 100% { box-shadow: 0 0 0 8px rgba(54, 220, 141, 0); } }
@keyframes gp-bars { from { transform: scaleY(.55); transform-origin: bottom; } to { transform: scaleY(1); transform-origin: bottom; } }
@keyframes gp-goal { from { background: conic-gradient(var(--gp-green) 0 5%, #ebe8f2 5% 100%); } }
@keyframes gp-email-focus { 0%, 100% { box-shadow: 0 0 0 0 rgba(92, 56, 223, 0); } 50% { box-shadow: 0 0 0 5px rgba(92, 56, 223, .13); } }

@media (max-width: 1050px) {
  .gp-hero-grid { grid-template-columns: minmax(0, 1fr) minmax(400px, .9fr); gap: 32px; }
  .gp-phone-callout { display: none; }
  .gp-workstation { transform: none; }
  .gp-wa-console { transform: none; }
  .gp-email-console { transform: none; }
  .gp-ws-body { grid-template-columns: 118px minmax(0, 1fr); }
}
@media (max-width: 860px) {
  .gp-hero-grid { grid-template-columns: 1fr; padding-block: 52px 76px; }
  .gp-hero-copy { max-width: 680px; }
  .gp-visual { width: min(100%, 620px); margin-inline: auto; }
  .gp-proof-grid { grid-template-columns: 1fr 1fr; }
  .gp-proof-item:nth-child(2) { border-right: 0; }
  .gp-proof-item:nth-child(-n + 2) { border-bottom: 1px solid var(--gp-line); }
  .gp-card-grid { grid-template-columns: 1fr 1fr; }
  .gp-flow-grid, .gp-cta-box { grid-template-columns: 1fr; }
  .gp-flow-aside { max-width: 580px; }
  .gp-cta-copy { max-width: 620px; }
}
@media (max-width: 600px) {
  .gp-shell { width: min(100% - 32px, 1180px); }
  .gp-hero-grid { min-height: 0; padding-top: 36px; }
  .gp-breadcrumb { margin-bottom: 22px; }
  .gp-hero-copy h1 { font-size: 39px; }
  .gp-lead { font-size: 17px; }
  .gp-hero-actions .gp-button { width: 100%; }
  .gp-mobile-stage { min-height: 520px; transform: scale(.9); margin: -26px 0; }
  .gp-phone { width: 276px; height: 548px; transform: none; }
  .gp-workstation { min-height: 430px; margin-inline: -8px; padding: 8px; }
  .gp-ws-top { height: 42px; }
  .gp-ws-body { min-height: 360px; grid-template-columns: 1fr; }
  .gp-ws-side { display: none; }
  .gp-ws-main { padding: 12px; }
  .gp-ws-kpis { grid-template-columns: repeat(3, 1fr); }
  .gp-ws-grid { grid-template-columns: 1fr .72fr; }
  .gp-wa-console { min-height: 430px; margin-inline: -8px; }
  .gp-wa-body { min-height: 375px; grid-template-columns: 1fr; }
  .gp-wa-side { display: none; }
  .gp-wa-main { padding: 11px; }
  .gp-email-console { min-height: 430px; margin-inline: -8px; }
  .gp-email-body { min-height: 375px; grid-template-columns: 1fr; }
  .gp-email-side { display: none; }
  .gp-email-main { padding: 11px; }
  .gp-email-kpis { grid-template-columns: 1fr 1fr; }
  .gp-email-kpis > div:nth-child(n + 3) { display: none; }
  .gp-email-workspace { grid-template-columns: 1.08fr .92fr; }
  .gp-proof { margin-top: -18px; }
  .gp-proof-grid { grid-template-columns: 1fr; }
  .gp-proof-item, .gp-proof-item:nth-child(2) { min-height: 96px; border-right: 0; border-bottom: 1px solid var(--gp-line); }
  .gp-proof-item:last-child { border-bottom: 0; }
  .gp-section { padding-block: 78px; }
  .gp-card-grid, .gp-outcome-grid { grid-template-columns: 1fr; }
  .gp-card { min-height: 0; }
  .gp-flow-grid { gap: 34px; }
  .gp-flow-aside { padding: 25px; }
  .gp-cta { padding-bottom: 78px; }
  .gp-cta-box { gap: 32px; padding: 32px 20px; }
  .gp-form-card { padding: 21px 17px; }
  .gp-form-grid { grid-template-columns: 1fr; }
  .gp-field.is-wide { grid-column: auto; }
  .gp-service-visual { min-height: 450px; }
  .gp-blueprint, .gp-tailor-board, .gp-mentoring-map { padding: 19px; }
  .gp-blueprint-flow { grid-template-columns: 1fr; }
  .gp-blueprint-arrow { transform: rotate(90deg); }
  .gp-blueprint-delivery { grid-template-columns: 1fr; }
  .gp-mentoring-map { min-height: 420px; }
  .gp-map-node { min-width: 88px; padding: 8px; font-size: 8px; }
  .gp-map-node:nth-of-type(2) { left: 8px; }
  .gp-map-node:nth-of-type(3) { right: 8px; }
  .gp-map-node:nth-of-type(4) { left: 2px; }
  .gp-map-node:nth-of-type(5) { right: 2px; }
  .gp-map-node:nth-of-type(6) { left: 12px; }
  .gp-map-node:nth-of-type(7) { right: 12px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-gp-reveal] { opacity: 1; transform: none; }
}
