:root {
  --gp-red: oklch(0.43 0.17 28);
  --gp-blue: oklch(0.34 0.13 258);
  --gp-gold: oklch(0.68 0.14 82);
  --gp-green: oklch(0.36 0.09 158);
  --gp-ink: oklch(0.22 0.045 255);
  --gp-muted: oklch(0.39 0.034 250);
  --gp-line: oklch(0.84 0.018 230);
  --gp-bg: oklch(0.985 0.006 230);
  --gp-soft: oklch(0.955 0.014 185);
  --gp-card: oklch(0.995 0.004 230);
  --gp-cream: oklch(0.984 0.012 88);
  --gp-dark: oklch(0.22 0.045 255);
  --gp-radius: 18px;
  --gp-shadow: 0 24px 70px oklch(0.22 0.045 255 / 12%);
  --gp-font: "Avenir Next", Aptos, "Segoe UI", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --gp-font-display: "Iowan Old Style", Charter, Georgia, serif;
  --gp-weight-medium: 500;
  --gp-weight-semibold: 600;
  --gp-weight-bold: 700;
  --gp-weight-extrabold: 800;
  --gp-weight-black: 900;
  --gp-text-xs: 12px;
  --gp-text-sm: 13px;
  --gp-text-body: 14px;
  --gp-text-base: 15px;
  --gp-text-md: 16px;
  --gp-text-lg: 18px;
  --gp-text-xl: 20px;
  --gp-text-2xl: 24px;
  --gp-text-3xl: 28px;
  --gp-text-4xl: 32px;
  --gp-text-5xl: 38px;
  --gp-text-6xl: 44px;
  --gp-text-display: 64px;
  --gp-text-mega: 86px;
  --gp-radius-sm: 12px;
  --gp-space-1: 4px;
  --gp-space-2: 8px;
  --gp-space-3: 12px;
  --gp-space-4: 16px;
  --gp-space-5: 24px;
  --gp-space-6: 32px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 92px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--gp-bg);
  color: var(--gp-ink);
  font-family: var(--gp-font);
  font-size: var(--gp-text-md);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.gp-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.gp-skip-link {
  position: absolute;
  z-index: 100;
  top: -64px;
  left: 16px;
  padding: 10px 18px;
  border-radius: 10px;
  background: var(--gp-gold);
  color: oklch(0.18 0.02 260);
  font: inherit;
  font-weight: 600;
  text-decoration: none;
  transition: top 120ms ease;
}

.gp-skip-link:focus-visible {
  top: 12px;
  outline: 3px solid oklch(0.68 0.14 82);
  outline-offset: 2px;
}

.gp-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  background: oklch(0.985 0.006 230 / 80%);
  backdrop-filter: blur(16px);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.gp-header.is-scrolled {
  border-bottom: 1px solid oklch(0.84 0.018 230 / 90%);
  background: oklch(0.99 0.004 230 / 92%);
  box-shadow: 0 10px 30px oklch(0.22 0.045 255 / 6%);
}

.gp-header__inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.gp-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: var(--gp-weight-extrabold);
  text-decoration: none;
}

.gp-brand__flag {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--gp-red) 0 33%, var(--gp-cream) 33% 66%, var(--gp-blue) 66% 100%);
  color: transparent;
  box-shadow: inset 0 0 0 1px oklch(0.22 0.045 255 / 10%);
}

.gp-brand__text {
  color: var(--gp-ink);
  font-size: var(--gp-text-xl);
  letter-spacing: 0;
}

.gp-nav,
.gp-header__actions,
.gp-language-switcher {
  display: flex;
  align-items: center;
}

.gp-nav {
  gap: 26px;
}

.gp-nav a {
  color: var(--gp-muted);
  font-size: var(--gp-text-body);
  font-weight: var(--gp-weight-semibold);
  text-decoration: none;
}

.gp-nav a:hover {
  color: var(--gp-red);
}

.gp-header__actions {
  gap: 14px;
}

.gp-language-switcher {
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: oklch(0.94 0.01 230);
}

.gp-language-switcher a {
  min-width: 38px;
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--gp-muted);
  font-size: var(--gp-text-xs);
  font-weight: var(--gp-weight-extrabold);
  text-align: center;
  text-decoration: none;
}

.gp-language-switcher a.is-active {
  background: var(--gp-red);
  color: var(--gp-cream);
}

.gp-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--gp-line);
  border-radius: var(--gp-radius-sm);
  background: var(--gp-card);
}

.gp-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--gp-ink);
}

.gp-main {
  min-height: 70vh;
}

.gp-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border: 1px solid var(--gp-red);
  border-radius: var(--gp-radius-sm);
  background: var(--gp-red);
  color: var(--gp-cream);
  font-size: var(--gp-text-base);
  font-weight: var(--gp-weight-extrabold);
  line-height: 1;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.gp-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px oklch(0.43 0.17 28 / 22%);
}

.gp-button--outline {
  background: var(--gp-card);
  color: var(--gp-ink);
  border-color: var(--gp-line);
}

.gp-button--small {
  min-height: 38px;
  padding: 10px 15px;
  font-size: var(--gp-text-sm);
}

.gp-button--wide {
  width: 100%;
}

.gp-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.gp-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 20%, oklch(0.68 0.14 82 / 18%), transparent 24%),
    radial-gradient(circle at 82% 18%, oklch(0.34 0.13 258 / 12%), transparent 26%),
    linear-gradient(135deg, var(--gp-cream) 0%, oklch(0.975 0.012 175) 48%, oklch(0.955 0.018 240) 100%);
}

.gp-hero__image,
.gp-hero__shade {
  position: absolute;
  inset: 0;
}

.gp-hero__image {
  background-image: var(--gp-hero-image);
  background-position: center;
  background-size: cover;
  transform: scale(1.015);
}

.gp-hero__shade {
  background:
    linear-gradient(90deg, oklch(0.985 0.006 230 / 98%) 0%, oklch(0.985 0.006 230 / 94%) 34%, oklch(0.985 0.006 230 / 72%) 54%, oklch(0.985 0.006 230 / 24%) 100%),
    linear-gradient(180deg, oklch(0.985 0.006 230 / 28%) 0%, oklch(0.985 0.006 230 / 64%) 100%);
}

.gp-hero__decor {
  position: absolute;
  inset: auto -160px -180px auto;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle, oklch(0.43 0.17 28 / 16%), transparent 66%);
}

.gp-hero__inner {
  position: relative;
  z-index: 1;
  padding: clamp(136px, 15vw, 170px) 0 clamp(74px, 9vw, 102px);
  text-align: left;
}

.gp-section-label,
.gp-section-heading span {
  color: var(--gp-red);
  font-size: var(--gp-text-sm);
  font-weight: var(--gp-weight-extrabold);
  text-transform: uppercase;
}

.gp-hero__signal {
  max-width: 48ch;
  margin: 0;
  color: var(--gp-red);
  font-size: 0.86rem;
  font-weight: var(--gp-weight-extrabold);
  letter-spacing: 0.03em;
  line-height: 1.35;
}

.gp-hero h1 {
  max-width: 800px;
  margin: 16px 0 24px;
  color: var(--gp-ink);
  font-family: var(--gp-font-display);
  font-size: var(--gp-text-mega);
  font-weight: var(--gp-weight-bold);
  line-height: 0.98;
}

.gp-hero__subtitle {
  max-width: 640px;
  margin: 0 0 36px;
  color: var(--gp-muted);
  font-size: clamp(18px, 2.2vw, 23px);
  line-height: 1.5;
}

.gp-hero .gp-actions {
  justify-content: flex-start;
}

.gp-hero__proof {
  display: flex;
  flex-wrap: wrap;
  max-width: 720px;
  gap: 10px;
  margin-top: 22px;
  color: var(--gp-muted);
  font-size: var(--gp-text-body);
  font-weight: var(--gp-weight-bold);
}

.gp-hero__proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.gp-hero__proof span::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gp-green);
  content: "";
}

.gp-trust-bar {
  border-top: 1px solid var(--gp-line);
  border-bottom: 1px solid var(--gp-line);
  background: var(--gp-card);
}

.gp-trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.gp-trust-bar__grid div {
  padding: 22px 26px;
  border-right: 1px solid var(--gp-line);
}

.gp-trust-bar__grid div:first-child {
  padding-left: 0;
}

.gp-trust-bar__grid div:last-child {
  border-right: 0;
}

.gp-trust-bar strong {
  display: block;
  margin-bottom: 4px;
  color: var(--gp-ink);
  font-size: var(--gp-text-lg);
}

.gp-trust-bar span {
  display: block;
  color: var(--gp-muted);
  font-size: var(--gp-text-body);
  line-height: 1.45;
}

.gp-section {
  padding: clamp(72px, 8vw, 108px) 0;
}

.gp-section--compact {
  padding: clamp(52px, 6vw, 74px) 0;
}

.gp-section--tint {
  background: var(--gp-soft);
}

.gp-section--dark {
  background: var(--gp-dark);
  color: var(--gp-cream);
}

.gp-section-heading {
  max-width: 760px;
  margin: 0 auto clamp(42px, 5vw, 58px);
  text-align: center;
}

.gp-section-heading h2,
.gp-about h2,
.gp-page-hero h1 {
  margin: 8px 0 14px;
  font-family: var(--gp-font-display);
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: var(--gp-weight-bold);
  line-height: 1.08;
}

.gp-section-heading p,
.gp-page-hero p,
.gp-about p,
.gp-contact p {
  color: var(--gp-muted);
  font-size: var(--gp-text-lg);
}

.gp-section--dark .gp-section-heading p,
.gp-section--dark blockquote p {
  color: oklch(0.88 0.018 88 / 82%);
}

.gp-route-selector {
  background: var(--gp-card);
}

.gp-route-selector__intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.55fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: end;
  margin-bottom: 30px;
}

.gp-route-selector__intro h2 {
  max-width: 760px;
  margin: 8px 0 0;
  font-family: var(--gp-font-display);
  font-size: clamp(32px, 4.5vw, 54px);
  line-height: 1.08;
}

.gp-route-selector__intro p {
  margin: 0;
  color: var(--gp-muted);
  font-size: var(--gp-text-lg);
  line-height: 1.6;
}

.gp-route-selector__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--gp-line);
  border-radius: var(--gp-radius);
  background: var(--gp-card);
  box-shadow: 0 16px 42px oklch(0.22 0.045 255 / 6%);
}

.gp-route-selector__grid article {
  display: flex;
  min-width: 0;
  min-height: 288px;
  flex-direction: column;
  padding: clamp(22px, 3vw, 30px);
  border-right: 1px solid var(--gp-line);
}

.gp-route-selector__grid article:last-child {
  border-right: 0;
}

.gp-route-selector__grid article > span {
  color: var(--gp-red);
  font-size: var(--gp-text-sm);
  font-weight: var(--gp-weight-black);
}

.gp-route-selector__grid h3 {
  margin: 18px 0 12px;
  font-size: var(--gp-text-2xl);
  line-height: 1.2;
}

.gp-route-selector__grid p {
  margin: 0 0 20px;
  color: var(--gp-muted);
  font-size: var(--gp-text-md);
  line-height: 1.6;
}

.gp-route-selector__grid a {
  margin-top: auto;
  color: var(--gp-red);
  font-weight: var(--gp-weight-extrabold);
  line-height: 1.35;
  text-decoration: none;
}

.gp-route-selector__grid a:hover {
  text-decoration: underline;
}

.gp-readiness {
  background:
    linear-gradient(135deg, oklch(0.985 0.006 230), oklch(0.955 0.014 185));
}

.gp-readiness__grid,
.gp-scope__grid,
.gp-checklist-offer__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
}

.gp-readiness h2,
.gp-scope h2,
.gp-checklist-offer h2,
.gp-contact h2 {
  margin: 8px 0 18px;
  font-family: var(--gp-font-display);
  font-size: clamp(32px, 4.4vw, 54px);
  line-height: 1.08;
}

.gp-readiness p,
.gp-scope p,
.gp-checklist-offer p {
  max-width: 62ch;
  color: var(--gp-muted);
  font-size: var(--gp-text-lg);
}

.gp-readiness__form {
  display: grid;
  gap: 20px;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--gp-line);
  border-radius: var(--gp-radius);
  background: var(--gp-card);
  box-shadow: var(--gp-shadow);
}

.gp-readiness__form fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.gp-readiness__form legend {
  margin-bottom: 10px;
  color: var(--gp-ink);
  font-weight: var(--gp-weight-extrabold);
}

.gp-choice-list {
  display: grid;
  gap: 8px;
}

.gp-choice-list label {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  padding: 12px;
  border: 1px solid var(--gp-line);
  border-radius: var(--gp-radius-sm);
  color: var(--gp-muted);
  cursor: pointer;
}

.gp-choice-list label:has(input:checked),
.gp-choice-list label.is-selected {
  border-color: oklch(0.43 0.17 28 / 45%);
  background: oklch(0.43 0.17 28 / 8%);
  color: var(--gp-ink);
}

.gp-choice-list input {
  margin-top: 4px;
  accent-color: var(--gp-red);
}

.gp-readiness__result {
  padding: 18px;
  border: 1px solid oklch(0.36 0.09 158 / 28%);
  border-radius: 14px;
  background: oklch(0.36 0.09 158 / 8%);
}

.gp-readiness__result strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gp-ink);
}

.gp-readiness__result p {
  margin: 0;
  color: var(--gp-muted);
  font-size: var(--gp-text-md);
}

.gp-readiness__result .gp-button {
  margin-top: 14px;
}

.gp-guide-unlock,
.gp-readiness__profile {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid oklch(0.36 0.09 158 / 18%);
}

.gp-guide-unlock h3,
.gp-readiness__profile h3 {
  margin: 0;
  color: var(--gp-ink);
  font-size: var(--gp-text-lg);
  line-height: 1.25;
}

.gp-readiness__fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.gp-readiness__field {
  display: grid;
  gap: 7px;
  min-width: 0;
  color: var(--gp-ink);
  font-size: var(--gp-text-body);
  font-weight: var(--gp-weight-extrabold);
}

.gp-readiness__field--wide {
  grid-column: 1 / -1;
}

.gp-readiness__field input,
.gp-readiness__field textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--gp-line);
  border-radius: var(--gp-radius-sm);
  padding: 11px 13px;
  color: var(--gp-ink);
  font: inherit;
  font-weight: var(--gp-weight-medium);
  background: var(--gp-card);
}

.gp-readiness__field textarea {
  resize: vertical;
}

.gp-readiness__consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--gp-muted);
  font-size: var(--gp-text-body);
  line-height: 1.45;
}

.gp-readiness__consent input {
  margin-top: 3px;
  accent-color: var(--gp-red);
}

.gp-readiness__consent a {
  color: var(--gp-red);
  font-weight: var(--gp-weight-extrabold);
}

.gp-readiness__result.is-error {
  border-color: oklch(0.43 0.17 28 / 34%);
  background: oklch(0.43 0.17 28 / 8%);
}

.gp-readiness__form.is-guide-success {
  align-content: start;
}

.gp-readiness__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.gp-readiness__actions .gp-button {
  margin-top: 0;
}

.gp-cta-band {
  padding: 32px 0;
  background: var(--gp-card);
  border-top: 1px solid var(--gp-line);
  border-bottom: 1px solid var(--gp-line);
}

.gp-cta-band__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.gp-cta-band h2 {
  max-width: 760px;
  margin: 0 0 6px;
  font-family: var(--gp-font-display);
  font-size: var(--gp-text-4xl);
  line-height: 1.12;
}

.gp-cta-band p {
  max-width: 760px;
  margin: 0;
  color: var(--gp-muted);
}

.gp-cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.gp-process {
  background: var(--gp-card);
}

.gp-process__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--gp-line);
  border-bottom: 1px solid var(--gp-line);
}

.gp-process__steps li {
  min-width: 0;
  padding: 26px 22px 28px;
  border-right: 1px solid var(--gp-line);
}

.gp-process__steps li:last-child {
  border-right: 0;
}

.gp-process__steps span {
  display: block;
  margin-bottom: 18px;
  color: var(--gp-red);
  font-size: var(--gp-text-sm);
  font-weight: var(--gp-weight-black);
}

.gp-process__steps h3 {
  margin: 0 0 10px;
  font-size: var(--gp-text-xl);
  line-height: 1.2;
}

.gp-process__steps p {
  margin: 0;
  color: var(--gp-muted);
  font-size: var(--gp-text-base);
  line-height: 1.55;
}

.gp-paths__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.gp-paths article,
.gp-case-studies article,
.gp-scope__lists article,
.gp-checklist-offer__panel,
.gp-contact__promise {
  border: 1px solid var(--gp-line);
  border-radius: var(--gp-radius);
  background: var(--gp-card);
  box-shadow: 0 12px 40px oklch(0.22 0.045 255 / 6%);
}

.gp-paths article {
  padding: 24px;
}

.gp-paths h3 {
  margin: 0 0 10px;
}

.gp-paths p {
  min-height: 96px;
  margin: 0 0 18px;
  color: var(--gp-muted);
}

.gp-paths a {
  color: var(--gp-red);
  font-weight: var(--gp-weight-extrabold);
  text-decoration: none;
}

.gp-benefits__heading {
  max-width: 720px;
  margin: 0 0 28px;
  font-family: var(--gp-font-display);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
}

.gp-benefits,
.gp-card-grid,
.gp-pricing,
.gp-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.4vw, 30px);
}

.gp-benefits article,
.gp-card,
.gp-pricing article,
.gp-form,
.gp-sidebar__box,
.gp-contact__links a {
  border: 1px solid var(--gp-line);
  border-radius: var(--gp-radius);
  background: var(--gp-card);
  box-shadow: 0 12px 40px oklch(0.22 0.045 255 / 6%);
}

.gp-benefits article,
.gp-card,
.gp-pricing article,
.gp-sidebar__box {
  padding: clamp(24px, 3vw, 32px);
}

.gp-benefits h3,
.gp-card h3,
.gp-pricing h3,
.gp-sidebar h3 {
  margin: 0 0 8px;
  font-size: var(--gp-text-xl);
  line-height: 1.34;
}

.gp-benefits p,
.gp-card p {
  margin: 0;
  color: var(--gp-muted);
}

.gp-card__icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 14px;
  background: oklch(0.43 0.17 28 / 10%);
  color: var(--gp-red);
  font-weight: var(--gp-weight-black);
}

.gp-service-card {
  overflow: hidden;
  padding: 0;
}

.gp-service-card__link {
  display: grid;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.gp-service-card__media {
  height: 210px;
  margin: 0;
  overflow: hidden;
  background: oklch(0.92 0.012 230);
}

.gp-service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.gp-service-card h3,
.gp-service-card p,
.gp-service-card__cta {
  padding-right: 26px;
  padding-left: 26px;
}

.gp-service-card h3 {
  margin-top: 24px;
}

.gp-service-card p {
  padding-bottom: 16px;
}

.gp-service-card:hover .gp-service-card__media img {
  transform: scale(1.035);
}

.gp-service-card__cta {
  align-self: end;
  padding-bottom: 26px;
  color: var(--gp-red);
  font-size: var(--gp-text-body);
  font-weight: var(--gp-weight-extrabold);
}

.gp-service-card__link:hover .gp-service-card__cta {
  text-decoration: underline;
}

.gp-case-studies__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr 0.95fr;
  gap: clamp(18px, 2.4vw, 30px);
}

.gp-case-studies article {
  padding: clamp(24px, 3vw, 32px);
}

.gp-case-studies article > span {
  color: var(--gp-red);
  font-size: var(--gp-text-sm);
  font-weight: var(--gp-weight-extrabold);
}

.gp-case-studies h3 {
  margin: 12px 0 22px;
  font-family: var(--gp-font-display);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.12;
}

.gp-case-studies dl {
  display: grid;
  gap: 18px;
  margin: 0;
}

.gp-case-studies dt {
  margin-bottom: 4px;
  color: var(--gp-ink);
  font-weight: var(--gp-weight-extrabold);
}

.gp-case-studies dd {
  margin: 0;
  color: var(--gp-muted);
}

.gp-scope {
  background: var(--gp-soft);
}

.gp-scope__lists {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.gp-scope__lists article {
  padding: 26px;
}

.gp-scope__lists h3 {
  margin: 0 0 14px;
}

.gp-check-list--muted li::before {
  background: var(--gp-blue);
  content: "–";
}

.gp-card--link {
  position: relative;
  min-height: 260px;
  padding: 26px;
}

.gp-card--link img {
  width: calc(100% + 52px);
  max-width: none;
  height: 180px;
  margin: -26px -26px 22px;
  object-fit: cover;
  border-radius: var(--gp-radius) var(--gp-radius) 0 0;
}

.gp-card--link a {
  line-height: 1.34;
  text-decoration: none;
}

.gp-read-more {
  display: inline-block;
  margin-top: 18px;
  color: var(--gp-red);
  font-weight: var(--gp-weight-extrabold);
}

.gp-media-gallery {
  overflow: hidden;
}

.gp-gallery__intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.65fr);
  gap: clamp(28px, 5vw, 54px);
  align-items: end;
  margin-bottom: 28px;
}

.gp-gallery__intro h2 {
  max-width: 760px;
  margin: 8px 0 14px;
  font-family: var(--gp-font-display);
  font-size: clamp(32px, 4.5vw, 54px);
  line-height: 1.08;
}

.gp-gallery__intro p {
  max-width: 760px;
  margin: 0;
  color: var(--gp-muted);
  font-size: var(--gp-text-lg);
}

.gp-gallery__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--gp-line);
  border-radius: var(--gp-radius);
  background: oklch(0.995 0.004 230 / 86%);
  box-shadow: 0 16px 42px oklch(0.22 0.045 255 / 8%);
}

.gp-gallery__stats div {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  column-gap: 12px;
  align-items: start;
  min-width: 0;
}

.gp-gallery__stat-icon {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: var(--gp-radius-sm);
}

.gp-gallery__stat-icon--photo {
  background: oklch(0.43 0.17 28 / 10%);
}

.gp-gallery__stat-icon--photo::before {
  width: 19px;
  height: 15px;
  border: 2px solid var(--gp-red);
  border-radius: 4px;
  content: "";
}

.gp-gallery__stat-icon--photo::after {
  position: absolute;
  right: 11px;
  bottom: 12px;
  width: 13px;
  height: 8px;
  background: var(--gp-red);
  clip-path: polygon(0 100%, 45% 28%, 66% 54%, 100% 12%, 100% 100%);
  content: "";
}

.gp-gallery__stat-icon--video {
  background: oklch(0.34 0.13 258 / 10%);
}

.gp-gallery__stat-icon--video::before {
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid var(--gp-blue);
  content: "";
}

.gp-gallery__stats strong,
.gp-gallery__stats small {
  display: block;
  min-width: 0;
}

.gp-gallery__stats strong {
  color: var(--gp-ink);
  font-size: var(--gp-text-base);
  line-height: 1.25;
}

.gp-gallery__stats small {
  margin-top: 3px;
  color: var(--gp-muted);
  font-size: var(--gp-text-xs);
  line-height: 1.35;
}

.gp-gallery__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.gp-gallery__filter {
  min-height: 42px;
  padding: 10px 15px;
  border: 1px solid var(--gp-line);
  border-radius: var(--gp-radius-sm);
  background: var(--gp-card);
  color: var(--gp-muted);
  font: inherit;
  font-size: var(--gp-text-body);
  font-weight: var(--gp-weight-extrabold);
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.gp-gallery__filter:hover,
.gp-gallery__filter.is-active {
  border-color: var(--gp-red);
  background: var(--gp-red);
  color: var(--gp-cream);
}

.gp-gallery__filter:hover {
  transform: translateY(-1px);
}

.gp-gallery__empty {
  margin: 0;
  padding: 30px 0;
  color: var(--gp-muted);
  font-size: var(--gp-text-lg);
}

.gp-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 230px;
  gap: 16px;
}

.gp-gallery__item {
  position: relative;
  display: block;
  min-width: 0;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: var(--gp-radius);
  background: var(--gp-line);
  color: var(--gp-cream);
  cursor: pointer;
  isolation: isolate;
  text-align: left;
  box-shadow: 0 14px 38px oklch(0.22 0.045 255 / 10%);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.gp-gallery__item[hidden] {
  display: none;
}

.gp-media-gallery[data-gallery-active-filter="all"] .gp-gallery__item.is-featured {
  grid-column: span 2;
  grid-row: span 2;
}

.gp-gallery__item img,
.gp-gallery__shade {
  position: absolute;
  inset: 0;
}

.gp-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.001);
  transition: transform 700ms ease;
}

.gp-gallery__shade {
  z-index: 1;
  background: linear-gradient(180deg, oklch(0.22 0.045 255 / 4%) 0%, oklch(0.22 0.045 255 / 22%) 42%, oklch(0.18 0.04 255 / 84%) 100%);
}

.gp-gallery__item:hover,
.gp-gallery__item:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px oklch(0.22 0.045 255 / 14%);
}

.gp-gallery__item:hover img,
.gp-gallery__item:focus-visible img {
  transform: scale(1.055);
}

.gp-gallery__item:focus-visible {
  outline: 3px solid oklch(0.68 0.14 82);
  outline-offset: 3px;
}

.gp-gallery__play {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: oklch(0.995 0.004 230 / 94%);
  color: var(--gp-red);
  box-shadow: 0 12px 28px oklch(0.22 0.045 255 / 18%);
}

.gp-gallery__play::before {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid currentColor;
  content: "";
}

.gp-gallery__caption {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  gap: 7px;
  min-width: 0;
  padding: 20px;
  pointer-events: none;
}

.gp-gallery__badge {
  justify-self: start;
  max-width: 100%;
  padding: 5px 8px;
  border-radius: 8px;
  background: oklch(0.995 0.004 230 / 90%);
  color: var(--gp-ink);
  font-size: var(--gp-text-xs);
  font-weight: var(--gp-weight-extrabold);
  line-height: 1;
}

.gp-gallery__title,
.gp-gallery__description {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

.gp-gallery__title {
  -webkit-line-clamp: 2;
  font-size: var(--gp-text-xl);
  font-weight: var(--gp-weight-extrabold);
  line-height: 1.2;
}

.gp-gallery__description {
  -webkit-line-clamp: 2;
  color: oklch(0.94 0.014 88 / 82%);
  font-size: var(--gp-text-body);
  line-height: 1.45;
}

.gp-gallery-modal[hidden] {
  display: none;
}

.gp-gallery-modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: oklch(0.16 0.035 255 / 92%);
  backdrop-filter: blur(9px);
}

.gp-gallery-modal__panel {
  position: relative;
  width: min(1040px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  border-radius: var(--gp-radius);
  background: var(--gp-card);
  box-shadow: 0 30px 90px oklch(0.1 0.03 255 / 38%);
}

.gp-gallery-modal__close {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 10px;
  background: oklch(0.18 0.04 255 / 88%);
  color: var(--gp-cream);
  cursor: pointer;
  font-size: var(--gp-text-3xl);
  line-height: 1;
}

.gp-gallery-modal__close:hover,
.gp-gallery-modal__close:focus-visible {
  background: var(--gp-red);
}

.gp-gallery-modal__photo {
  margin: 0;
  background: oklch(0.16 0.035 255);
}

.gp-gallery-modal__photo img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
}

.gp-gallery-modal__photo figcaption,
.gp-gallery-modal__body {
  padding: clamp(22px, 3.5vw, 34px);
}

.gp-gallery-modal__photo figcaption {
  background: var(--gp-card);
}

.gp-gallery-modal__eyebrow {
  margin: 0 0 8px;
  color: var(--gp-red);
  font-size: var(--gp-text-xs);
  font-weight: var(--gp-weight-black);
  text-transform: uppercase;
}

.gp-gallery-modal__photo h3,
.gp-gallery-modal__body h3 {
  margin: 0;
  color: var(--gp-ink);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.18;
}

.gp-gallery-modal__frame {
  aspect-ratio: 16 / 9;
  background: oklch(0.14 0.035 255);
}

.gp-gallery-modal__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.gp-gallery-modal__description {
  margin: 10px 0 0;
  color: var(--gp-muted);
  font-size: var(--gp-text-lg);
}

.gp-gallery-modal__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  align-items: center;
  margin-top: 22px;
  color: var(--gp-muted);
  font-size: var(--gp-text-body);
}

.gp-gallery-modal__meta a {
  color: var(--gp-red);
  font-weight: var(--gp-weight-extrabold);
  text-decoration: none;
}

.gp-gallery-modal__meta a:hover {
  text-decoration: underline;
}

.gp-info-feature-section {
  padding-top: clamp(42px, 5vw, 68px);
  padding-bottom: clamp(42px, 5vw, 68px);
}

.gp-info-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  overflow: hidden;
  border: 1px solid var(--gp-line);
  border-radius: var(--gp-radius);
  background: var(--gp-card);
  box-shadow: var(--gp-shadow);
}

.gp-info-feature__media {
  min-width: 0;
  background: oklch(0.14 0.035 255);
}

.gp-info-feature__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 52px);
}

.gp-info-feature__content h2 {
  margin: 10px 0 16px;
  font-family: var(--gp-font-display);
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1.08;
}

.gp-info-feature__content > p {
  margin: 0;
  color: var(--gp-muted);
  font-size: var(--gp-text-lg);
  line-height: 1.62;
}

.gp-info-feature__source {
  margin-top: 16px !important;
  font-size: var(--gp-text-body) !important;
}

.gp-info-feature__content .gp-actions {
  margin-top: 26px;
}

.gp-youtube-player {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: oklch(0.14 0.035 255);
}

.gp-youtube-player > button {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
  color: white;
  cursor: pointer;
  text-align: left;
}

.gp-youtube-player img,
.gp-youtube-player iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.gp-youtube-player img {
  object-fit: cover;
  transition: transform 220ms ease;
}

.gp-youtube-player__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, oklch(0.12 0.035 255 / 78%));
}

.gp-youtube-player__play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border-radius: 50%;
  background: var(--gp-red);
  box-shadow: 0 14px 32px oklch(0.1 0.03 255 / 32%);
  transform: translate(-50%, -50%);
}

.gp-youtube-player__play::before {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid white;
  content: "";
}

.gp-youtube-player__label {
  position: absolute;
  right: 22px;
  bottom: 18px;
  left: 22px;
  font-size: var(--gp-text-lg);
  font-weight: var(--gp-weight-extrabold);
}

.gp-youtube-player > button:hover img,
.gp-youtube-player > button:focus-visible img {
  transform: scale(1.025);
}

.gp-youtube-player > button:focus-visible {
  outline: 3px solid var(--gp-gold);
  outline-offset: -5px;
}

.gp-documentary {
  margin-bottom: 38px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--gp-line);
  border-radius: var(--gp-radius);
  background: var(--gp-soft);
}

.gp-documentary h2 {
  margin: 10px 0 12px;
  font-size: var(--gp-text-3xl);
}

.gp-documentary > p {
  margin: 0 0 22px;
}

.gp-documentary .gp-youtube-player {
  border-radius: 12px;
}

.gp-documentary__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 18px;
  margin-top: 14px;
  color: var(--gp-muted);
  font-size: var(--gp-text-sm);
}

.gp-documentary__meta a {
  color: var(--gp-red);
  font-weight: var(--gp-weight-extrabold);
}

.gp-documentary-briefing {
  margin-top: 44px;
  padding-top: 10px;
  border-top: 1px solid var(--gp-line);
}

.gp-about {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 56px;
  align-items: center;
}

.gp-about--story {
  grid-template-columns: minmax(0, 860px);
  justify-content: center;
  text-align: center;
}

.gp-about--story .gp-check-list {
  display: inline-grid;
  max-width: 620px;
  margin-right: auto;
  margin-left: auto;
  text-align: left;
}

.gp-about h2 span {
  color: var(--gp-blue);
}

.gp-check-list,
.gp-steps {
  padding-left: 0;
  list-style: none;
}

.gp-check-list li,
.gp-steps li {
  position: relative;
  margin: 12px 0;
  padding-left: 32px;
}

.gp-check-list li::before,
.gp-steps li::before {
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gp-green);
  color: var(--gp-cream);
  content: "✓";
  font-size: var(--gp-text-sm);
  font-weight: var(--gp-weight-black);
  line-height: 22px;
  text-align: center;
}

.gp-team {
  display: grid;
  gap: clamp(16px, 2.4vw, 22px);
  align-content: start;
}

.gp-team__member {
  position: relative;
  display: grid;
  grid-template-columns: minmax(104px, 124px) minmax(0, 1fr);
  gap: clamp(18px, 2.4vw, 26px);
  align-items: center;
  overflow: hidden;
  padding: clamp(18px, 2.8vw, 28px);
  border: 1px solid oklch(0.84 0.018 230 / 82%);
  border-radius: var(--gp-radius);
  background:
    radial-gradient(circle at 92% 8%, oklch(0.68 0.14 82 / 16%), transparent 34%),
    linear-gradient(135deg, var(--gp-card), oklch(0.965 0.018 185));
  box-shadow: 0 18px 45px oklch(0.22 0.045 255 / 8%);
}

.gp-team__member:nth-child(2) {
  margin-left: clamp(0px, 3vw, 28px);
  background:
    radial-gradient(circle at 92% 8%, oklch(0.34 0.13 258 / 11%), transparent 34%),
    linear-gradient(135deg, var(--gp-card), oklch(0.965 0.016 240));
}

.gp-team img {
  position: relative;
  width: clamp(96px, 10vw, 124px);
  height: clamp(112px, 12vw, 142px);
  border-radius: 16px;
  object-fit: cover;
  object-position: center 42%;
  box-shadow: 0 14px 30px oklch(0.22 0.045 255 / 12%);
}

.gp-team__member--cinthia-fischer img {
  object-position: center 6%;
}

.gp-team__member--rogney-canellas img {
  object-position: center 0%;
}

.gp-team__avatar {
  display: grid;
  place-items: center;
  width: clamp(96px, 10vw, 124px);
  height: clamp(112px, 12vw, 142px);
  border: 1px solid oklch(0.84 0.018 230 / 82%);
  border-radius: 16px;
  background:
    linear-gradient(135deg, oklch(0.96 0.02 185), oklch(0.91 0.035 82));
  color: var(--gp-ink);
  font-size: var(--gp-text-4xl);
  font-weight: var(--gp-weight-black);
  box-shadow: 0 14px 30px oklch(0.22 0.045 255 / 10%);
}

.gp-team__content {
  position: relative;
  min-width: 0;
}

.gp-team h3 {
  margin: 0;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.14;
}

.gp-team__role,
.gp-team__bio {
  margin: 0;
}

.gp-team__role {
  margin-top: 6px;
  color: var(--gp-red);
  font-size: var(--gp-text-md);
  font-weight: var(--gp-weight-extrabold);
  line-height: 1.35;
}

.gp-team__bio {
  max-width: 44ch;
  margin-top: 10px;
  color: var(--gp-muted);
  font-size: var(--gp-text-md);
  line-height: 1.55;
}

.gp-team-proof {
  overflow: hidden;
  background:
    linear-gradient(180deg, oklch(0.985 0.006 230) 0%, oklch(0.955 0.014 185) 100%);
}

.gp-team-proof__intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.62fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  margin-bottom: 36px;
}

.gp-team-proof__intro h2 {
  max-width: 860px;
  margin: 8px 0 18px;
  font-family: var(--gp-font-display);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.06;
}

.gp-team-proof__intro p {
  max-width: 780px;
  margin: 0;
  color: var(--gp-muted);
  font-size: var(--gp-text-xl);
}

.gp-team-proof__proof {
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--gp-line);
  border-radius: var(--gp-radius);
  background: oklch(0.995 0.004 230 / 88%);
  box-shadow: 0 18px 50px oklch(0.22 0.045 255 / 8%);
}

.gp-team-proof__proof strong,
.gp-team-proof__subheading,
.gp-proof-cases__heading h3 {
  color: var(--gp-ink);
}

.gp-team-proof__proof strong {
  display: block;
  margin-bottom: 14px;
  font-size: var(--gp-text-lg);
}

.gp-team-proof__proof ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gp-team-proof__proof li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--gp-muted);
  font-weight: var(--gp-weight-bold);
  line-height: 1.45;
}

.gp-team-proof__proof li::before {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: 10px;
  border-radius: 50%;
  background: var(--gp-red);
  content: "";
}

.gp-team-proof__subheading {
  margin: 0 0 18px;
  font-size: clamp(24px, 3vw, 34px);
}

.gp-proof-people {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 28px);
}

.gp-proof-person {
  display: grid;
  grid-template-columns: minmax(150px, 0.45fr) minmax(0, 1fr);
  min-height: 330px;
  overflow: hidden;
  border: 1px solid oklch(0.84 0.018 230 / 88%);
  border-radius: var(--gp-radius);
  background: var(--gp-card);
  box-shadow: 0 22px 58px oklch(0.22 0.045 255 / 10%);
}

.gp-proof-person figure {
  min-height: 100%;
  margin: 0;
  background: oklch(0.92 0.012 230);
}

.gp-proof-person__avatar {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, oklch(0.96 0.02 185), oklch(0.9 0.042 82));
}

.gp-proof-person__avatar span {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--gp-card);
  color: var(--gp-ink);
  font-size: var(--gp-text-5xl);
  font-weight: var(--gp-weight-black);
  box-shadow: 0 16px 36px oklch(0.22 0.045 255 / 12%);
}

.gp-proof-person img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 26%;
}

.gp-proof-person--cinthia-fischer img {
  object-position: center 6%;
}

.gp-proof-person--rogney-canellas img {
  object-position: center 0%;
}

.gp-proof-person > div {
  display: grid;
  align-content: center;
  padding: clamp(24px, 3vw, 34px);
}

.gp-proof-person h4 {
  margin: 0;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.08;
}

.gp-proof-person p {
  margin: 0;
  color: var(--gp-muted);
  font-size: var(--gp-text-md);
}

.gp-proof-person__role {
  margin: 7px 0 14px !important;
  color: var(--gp-red) !important;
  font-weight: var(--gp-weight-extrabold);
}

.gp-proof-person ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.gp-proof-person li {
  padding: 7px 10px;
  border: 1px solid oklch(0.84 0.018 230 / 80%);
  border-radius: 999px;
  background: oklch(0.955 0.014 185 / 64%);
  color: var(--gp-ink);
  font-size: var(--gp-text-xs);
  font-weight: var(--gp-weight-extrabold);
  line-height: 1.1;
}

.gp-proof-cases {
  margin-top: clamp(26px, 4vw, 42px);
  padding-top: clamp(22px, 4vw, 34px);
  border-top: 1px solid var(--gp-line);
}

.gp-proof-cases__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.gp-proof-cases__heading h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
}

.gp-proof-cases__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.gp-proof-cases article {
  padding: 22px;
  border: 1px solid var(--gp-line);
  border-radius: var(--gp-radius);
  background: oklch(0.995 0.004 230 / 84%);
}

.gp-proof-cases h4 {
  margin: 0 0 12px;
  font-size: var(--gp-text-xl);
}

.gp-proof-cases p {
  margin: 0;
  color: var(--gp-muted);
  font-size: var(--gp-text-base);
}

.gp-proof-cases p + p {
  margin-top: 12px;
}

.gp-team-proof__actions {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.gp-home-proof {
  background:
    linear-gradient(180deg, oklch(0.985 0.006 230), oklch(0.955 0.014 185));
}

.gp-home-proof__grid {
  display: grid;
  gap: clamp(30px, 5vw, 54px);
  align-items: start;
}

.gp-home-proof__copy h2 {
  max-width: 940px;
  margin: 8px 0 18px;
  font-family: var(--gp-font-display);
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.06;
}

.gp-home-proof__copy p {
  max-width: 860px;
  margin: 0;
  color: var(--gp-muted);
  font-size: var(--gp-text-xl);
  line-height: 1.6;
}

.gp-home-proof__copy .gp-check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 980px;
  margin: 24px 0;
  column-gap: clamp(18px, 4vw, 42px);
}

.gp-home-proof__copy .gp-button {
  margin-top: 4px;
}

.gp-home-proof__team {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.gp-home-proof__carousel-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.gp-home-proof__carousel-button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--gp-line);
  border-radius: 10px;
  background: oklch(0.995 0.004 230 / 92%);
  color: var(--gp-ink);
  cursor: pointer;
  font: inherit;
  font-size: var(--gp-text-4xl);
  font-weight: var(--gp-weight-extrabold);
  line-height: 1;
  box-shadow: 0 12px 28px oklch(0.22 0.045 255 / 8%);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease, opacity 180ms ease;
}

.gp-home-proof__carousel-button:hover,
.gp-home-proof__carousel-button:focus-visible {
  border-color: oklch(0.43 0.17 28 / 44%);
  background: var(--gp-red);
  color: var(--gp-cream);
  transform: translateY(-1px);
}

.gp-home-proof__carousel-button:focus-visible {
  outline: 3px solid var(--gp-gold);
  outline-offset: 3px;
}

.gp-home-proof__carousel-button:disabled {
  opacity: 0.42;
  cursor: not-allowed;
  transform: none;
}

.gp-home-proof__carousel-button:disabled:hover {
  border-color: var(--gp-line);
  background: oklch(0.995 0.004 230 / 92%);
  color: var(--gp-ink);
}

.gp-home-proof__people {
  --gp-team-carousel-gap: clamp(16px, 2.2vw, 24px);
  display: flex;
  gap: var(--gp-team-carousel-gap);
  min-width: 0;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 2px 2px 14px;
  scroll-padding-inline: 2px;
  scroll-snap-type: x mandatory;
  scrollbar-color: oklch(0.43 0.17 28 / 70%) oklch(0.84 0.018 230 / 55%);
  scrollbar-width: thin;
}

.gp-home-proof__people article {
  flex: 0 0 calc((100% - (var(--gp-team-carousel-gap) * 3)) / 4);
  min-width: 0;
  scroll-snap-align: start;
  border: 1px solid var(--gp-line);
  border-radius: var(--gp-radius);
  background: oklch(0.995 0.004 230 / 88%);
  box-shadow: 0 18px 50px oklch(0.22 0.045 255 / 8%);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.gp-home-proof__people img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  object-position: center 16%;
  background: oklch(0.92 0.012 230);
}

.gp-home-proof__avatar {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 16 / 11;
  background:
    linear-gradient(135deg, oklch(0.96 0.02 185), oklch(0.9 0.042 82));
  color: var(--gp-ink);
  font-size: clamp(34px, 6vw, 54px);
  font-weight: var(--gp-weight-black);
}

.gp-home-proof__person--florian img {
  object-position: center 12%;
}

.gp-home-proof__person--cinthia-fischer img {
  object-position: center 6%;
}

.gp-home-proof__person--rogney-canellas img {
  object-position: center 0%;
}

.gp-home-proof__people div {
  padding: clamp(18px, 2vw, 24px);
}

.gp-home-proof__people h3 {
  margin: 0;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.16;
}

.gp-home-proof__people p {
  margin: 7px 0 0;
  color: var(--gp-red);
  font-size: var(--gp-text-body);
  font-weight: var(--gp-weight-extrabold);
  line-height: 1.35;
}

.gp-testimonials blockquote {
  margin: 0;
  padding: 26px;
  border: 1px solid oklch(0.88 0.018 88 / 18%);
  border-radius: var(--gp-radius);
  background: oklch(0.96 0.012 88 / 6%);
}

.gp-testimonials footer {
  margin-top: 18px;
  color: var(--gp-cream);
  font-weight: var(--gp-weight-extrabold);
}

.gp-pricing article {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.gp-pricing {
  max-width: 1180px;
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 22px);
}

.gp-pricing article.is-popular {
  border-color: var(--gp-red);
  box-shadow: var(--gp-shadow);
}

.gp-pricing article > span {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 5px 9px;
  border-radius: 999px;
  background: oklch(0.43 0.17 28 / 10%);
  color: var(--gp-red);
  font-size: var(--gp-text-xs);
  font-weight: var(--gp-weight-black);
  text-transform: uppercase;
}

.gp-pricing strong {
  display: block;
  margin: 18px 0 0;
  font-size: clamp(36px, 3.5vw, 44px);
  line-height: 1;
}

.gp-pricing strong small {
  display: inline-block;
  margin-right: 4px;
  color: var(--gp-muted);
  font-size: var(--gp-text-body);
  font-weight: var(--gp-weight-black);
  letter-spacing: 0;
  vertical-align: 0.48em;
}

.gp-pricing small {
  color: var(--gp-muted);
}

.gp-pricing__options {
  margin: 16px 0 0;
}

.gp-pricing__option-label {
  display: block;
  margin: 0 0 7px;
  color: var(--gp-muted);
  font-size: var(--gp-text-xs);
  font-weight: var(--gp-weight-extrabold);
  letter-spacing: 0;
  text-transform: uppercase;
}

.gp-pricing__switch {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--gp-line);
  border-radius: 999px;
  background: oklch(0.955 0.014 185 / 55%);
}

.gp-pricing__switch button {
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--gp-muted);
  cursor: pointer;
  font: inherit;
  font-size: var(--gp-text-xs);
  font-weight: var(--gp-weight-extrabold);
  line-height: 1.15;
}

.gp-pricing__switch button.is-active {
  background: var(--gp-card);
  color: var(--gp-ink);
  box-shadow: 0 8px 24px oklch(0.22 0.045 255 / 10%);
}

.gp-pricing__switch button:focus-visible {
  outline: 2px solid var(--gp-gold);
  outline-offset: 2px;
}

.gp-pricing__options p {
  min-height: 38px;
  margin: 9px 0 0;
  color: var(--gp-muted);
  font-size: var(--gp-text-sm);
  line-height: 1.45;
}

.gp-pricing__best-for {
  margin: 18px 0 0;
  color: var(--gp-ink);
  font-weight: var(--gp-weight-bold);
  line-height: 1.5;
}

.gp-pricing ul {
  flex: 1;
  min-height: 0;
  padding-left: 18px;
  color: var(--gp-muted);
}

.gp-pricing__fine-print {
  max-width: 780px;
  margin: 22px auto 0;
  color: var(--gp-muted);
  font-size: var(--gp-text-body);
  line-height: 1.55;
  text-align: center;
}

/* ponytail: focus + validation + consent + newsletter-strip — conversion-surface polish (ui-review) */
.gp-button:focus-visible,
.gp-form input:focus-visible,
.gp-form textarea:focus-visible,
.gp-choice-list input:focus-visible,
.gp-contact__links a:focus-visible,
.gp-readiness__form input:focus-visible,
.gp-readiness__form textarea:focus-visible,
.gp-newsletter input:focus-visible,
.gp-newsletter-strip input:focus-visible,
.gp-language-switcher a:focus-visible,
.gp-nav a:focus-visible,
.gp-menu-toggle:focus-visible {
  outline: 2px solid var(--gp-gold);
  outline-offset: 2px;
}

.gp-form input:user-invalid,
.gp-form textarea:user-invalid,
.gp-newsletter input:user-invalid,
.gp-newsletter-strip input:user-invalid,
.gp-readiness__field input:user-invalid,
.gp-readiness__field textarea:user-invalid {
  border-color: var(--gp-red);
  box-shadow: 0 0 0 3px oklch(0.43 0.17 28 / 16%);
}

.gp-form .gp-form__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 2px 0 0;
  color: var(--gp-muted);
  font-size: var(--gp-text-sm);
  font-weight: var(--gp-weight-semibold);
  line-height: 1.5;
}

.gp-form .gp-form__consent input {
  flex: 0 0 auto;
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--gp-red);
}

.gp-form .gp-form__consent span {
  flex: 1 1 auto;
}

.gp-form .gp-form__consent a {
  color: var(--gp-ink);
  text-decoration: underline;
}

.gp-form .gp-form__consent:has(input:user-invalid) {
  outline: 2px solid var(--gp-red);
  outline-offset: 4px;
  border-radius: 6px;
}

.gp-form__alt {
  margin: 4px 0 0;
  text-align: center;
  color: var(--gp-muted);
  font-size: var(--gp-text-body);
}

.gp-form__alt a {
  color: var(--gp-ink);
  font-weight: var(--gp-weight-bold);
  text-decoration: underline;
}

.gp-newsletter-strip {
  background: var(--gp-soft);
  padding: clamp(28px, 4vw, 44px) 0;
}

.gp-newsletter-strip__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px 32px;
}

.gp-newsletter-strip__inner > div {
  max-width: 48ch;
}

.gp-newsletter-strip h2 {
  margin: 0 0 6px;
  font-size: clamp(20px, 2.4vw, 26px);
}

.gp-newsletter-strip p {
  margin: 0;
  color: var(--gp-muted);
  font-size: var(--gp-text-body);
  line-height: 1.55;
}

.gp-newsletter-strip__form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex: 1 1 320px;
  min-width: 280px;
}

.gp-newsletter-strip__form input[type="email"] {
  flex: 1 1 220px;
  min-height: 48px;
  border: 1px solid var(--gp-line);
  border-radius: var(--gp-radius-sm);
  padding: 12px 14px;
  color: var(--gp-ink);
  font: inherit;
}

.gp-newsletter-strip__form .gp-button {
  flex: 0 0 auto;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 1180px) and (min-width: 981px) {
  .gp-pricing {
    max-width: 820px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.gp-checklist-offer {
  padding-top: 0;
}

.gp-checklist-offer__inner {
  align-items: center;
  padding: clamp(34px, 6vw, 62px);
  border-radius: 26px;
  background:
    linear-gradient(135deg, oklch(0.22 0.045 255), oklch(0.3 0.08 250));
  color: var(--gp-cream);
}

.gp-checklist-offer .gp-section-label,
.gp-checklist-offer h2,
.gp-checklist-offer p {
  color: var(--gp-cream);
}

.gp-checklist-offer p {
  color: oklch(0.92 0.018 88 / 84%);
}

.gp-checklist-offer__panel {
  padding: 26px;
  background: oklch(0.96 0.012 88 / 8%);
  border-color: oklch(0.92 0.018 88 / 18%);
  box-shadow: none;
}

.gp-checklist-offer__panel strong {
  display: block;
  margin-bottom: 12px;
}

.gp-checklist-offer__panel ul {
  margin: 0 0 22px;
  padding-left: 18px;
  color: oklch(0.92 0.018 88 / 86%);
}

.gp-newsletter {
  padding: clamp(58px, 7vw, 88px) 0;
  background: var(--gp-soft);
}

.gp-newsletter__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
  padding: clamp(30px, 4.5vw, 52px);
  border-radius: var(--gp-radius);
  background: linear-gradient(135deg, var(--gp-blue), var(--gp-red));
  color: var(--gp-cream);
}

.gp-newsletter h2,
.gp-newsletter p {
  margin: 0;
}

.gp-newsletter p {
  max-width: 58ch;
  margin-top: 8px;
  color: oklch(0.92 0.018 88 / 84%);
  line-height: 1.55;
}

.gp-newsletter form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: stretch;
  justify-content: flex-end;
}

.gp-newsletter input,
.gp-checklist-offer__panel input,
.gp-checklist-offer__panel textarea,
.gp-form input,
.gp-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--gp-line);
  border-radius: var(--gp-radius-sm);
  padding: 12px 14px;
  color: var(--gp-ink);
  font: inherit;
  font-weight: var(--gp-weight-medium);
}

.gp-newsletter input {
  flex: 1 1 260px;
  width: auto;
  min-width: 0;
}

.gp-checklist-offer__panel label {
  display: grid;
  gap: 7px;
  margin-top: 14px;
  color: oklch(0.94 0.014 88 / 90%);
  font-size: var(--gp-text-body);
  font-weight: var(--gp-weight-extrabold);
}

.gp-checklist-offer__panel textarea,
.gp-form textarea {
  resize: vertical;
}

.gp-newsletter .gp-form__status {
  flex-basis: 100%;
}

.gp-checklist-offer .gp-form__status,
.gp-newsletter .gp-form__status {
  border: 1px solid oklch(0.92 0.018 88 / 18%);
  color: var(--gp-cream);
}

.gp-checklist-offer .gp-form__status.is-success,
.gp-newsletter .gp-form__status.is-success {
  background: oklch(0.36 0.09 158 / 24%);
}

.gp-checklist-offer .gp-form__status.is-error,
.gp-newsletter .gp-form__status.is-error {
  background: oklch(0.43 0.17 28 / 28%);
}

.gp-newsletter .gp-button {
  flex: 0 0 auto;
  min-height: 48px;
  padding-inline: 22px;
  border-color: var(--gp-cream);
  background: var(--gp-cream);
  color: var(--gp-ink);
}

.gp-faq {
  max-width: min(720px, 100%);
  margin: 0 auto;
}

.gp-faq details {
  margin-bottom: 16px;
  border: 1px solid var(--gp-line);
  border-radius: 14px;
  background: var(--gp-card);
}

.gp-faq summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: var(--gp-weight-extrabold);
}

.gp-faq p {
  max-width: 65ch;
  margin: 0;
  padding: 0 22px 24px;
  color: var(--gp-muted);
  line-height: 1.65;
}

.gp-contact {
  background: var(--gp-soft);
}

.gp-team-profile-link {
  display: inline-flex;
  margin-top: var(--gp-space-3);
  color: var(--gp-red);
  font-size: var(--gp-text-body);
  font-weight: var(--gp-weight-extrabold);
  line-height: 1.4;
  overflow-wrap: anywhere;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.gp-team-profile-link:hover {
  color: var(--gp-blue);
  text-decoration-thickness: 2px;
}

.gp-team-profile-link:focus-visible {
  border-radius: 4px;
  outline: 3px solid var(--gp-gold);
  outline-offset: 4px;
}

.gp-team-profile__hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 400px);
  gap: clamp(36px, 7vw, 88px);
  align-items: start;
}

.gp-team-profile__hero > *,
.gp-team-profile__content,
.gp-team-profile__cv,
.gp-cv-timeline li {
  min-width: 0;
}

.gp-team-profile__content {
  max-width: 72ch;
  padding-top: clamp(8px, 2vw, 24px);
}

.gp-team-profile__content h1 {
  margin: 0;
  font-family: var(--gp-font-display);
  font-size: clamp(42px, 6vw, 72px);
  letter-spacing: -0.03em;
  line-height: 1.04;
  overflow-wrap: anywhere;
}

.gp-team-profile__role {
  max-width: 48ch;
  margin: var(--gp-space-4) 0 0;
  color: var(--gp-red);
  font-size: clamp(var(--gp-text-lg), 2vw, var(--gp-text-2xl));
  font-weight: var(--gp-weight-extrabold);
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.gp-team-profile__bio {
  max-width: 70ch;
  margin: var(--gp-space-5) 0 0;
  color: var(--gp-muted);
  font-size: var(--gp-text-lg);
  line-height: 1.75;
  overflow-wrap: anywhere;
}

.gp-team-profile__focus {
  margin-top: var(--gp-space-6);
  padding-top: var(--gp-space-5);
  border-top: 1px solid var(--gp-line);
}

.gp-team-profile__focus h2,
.gp-team-profile__cv h2 {
  margin: 0 0 var(--gp-space-5);
  font-size: clamp(var(--gp-text-3xl), 3vw, var(--gp-text-5xl));
  line-height: 1.15;
}

.gp-team-profile__focus ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--gp-space-3) var(--gp-space-6);
  margin: 0;
  padding-left: 20px;
}

.gp-team-profile__focus li {
  color: var(--gp-muted);
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.gp-team-profile__focus li::marker {
  color: var(--gp-red);
}

.gp-team-profile__portrait {
  width: min(100%, 400px);
  justify-self: end;
  overflow: hidden;
  border: 1px solid var(--gp-line);
  border-radius: var(--gp-radius);
  background: var(--gp-soft);
}

.gp-team-profile__portrait img,
.gp-team-profile__avatar {
  width: 100%;
  aspect-ratio: 4 / 5;
}

.gp-team-profile__portrait img {
  object-fit: cover;
  object-position: center top;
}

.gp-team-profile__portrait--full img {
  object-fit: contain;
  object-position: center;
}

.gp-team-profile__avatar {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, oklch(0.96 0.02 185), oklch(0.91 0.035 82));
  color: var(--gp-ink);
  font-size: clamp(var(--gp-text-5xl), 8vw, var(--gp-text-display));
  font-weight: var(--gp-weight-black);
}

.gp-team-profile__cv {
  max-width: 900px;
  margin: clamp(52px, 8vw, 88px) 0 var(--gp-space-6);
}

.gp-cv-timeline {
  margin: 0;
  padding: 0;
  list-style: none;
}

.gp-cv-timeline li {
  position: relative;
  display: grid;
  grid-template-columns: minmax(132px, 0.32fr) minmax(0, 1fr);
  column-gap: var(--gp-space-6);
  padding: 0 0 var(--gp-space-6) var(--gp-space-5);
  border-left: 1px solid var(--gp-line);
}

.gp-cv-timeline li:last-child {
  padding-bottom: 0;
  border-left-color: transparent;
}

.gp-cv-timeline li::before {
  position: absolute;
  top: 5px;
  left: -6px;
  width: 11px;
  height: 11px;
  border: 3px solid var(--gp-bg);
  border-radius: 50%;
  background: var(--gp-red);
  box-shadow: 0 0 0 1px var(--gp-red);
  content: "";
}

.gp-cv-timeline__period {
  grid-row: 1 / span 2;
  margin: 0;
  color: var(--gp-red);
  font-size: var(--gp-text-body);
  font-weight: var(--gp-weight-extrabold);
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.gp-cv-timeline h3 {
  margin: 0;
  font-family: var(--gp-font);
  font-size: var(--gp-text-xl);
  letter-spacing: 0;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.gp-cv-timeline li > p:last-child {
  margin: var(--gp-space-2) 0 0;
  color: var(--gp-muted);
  line-height: 1.65;
  overflow-wrap: anywhere;
}

@media (max-width: 980px) {
  .gp-team-profile__hero {
    grid-template-columns: 1fr;
    gap: var(--gp-space-6);
  }

  .gp-team-profile__portrait {
    grid-row: 1;
    justify-self: start;
    width: min(100%, 360px);
  }

  .gp-team-profile__content {
    grid-row: 2;
    padding-top: 0;
  }
}

@media (max-width: 640px) {
  .gp-team-profile__content h1 {
    font-size: clamp(36px, 13vw, var(--gp-text-6xl));
  }

  .gp-team-profile__bio {
    font-size: var(--gp-text-md);
    line-height: 1.65;
  }

  .gp-team-profile__focus ul {
    grid-template-columns: 1fr;
    gap: var(--gp-space-2);
  }

  .gp-cv-timeline li {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--gp-space-2);
    padding-left: var(--gp-space-5);
  }

  .gp-cv-timeline__period {
    grid-row: auto;
  }
}

.gp-contact__grid,
.gp-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 48px;
}

.gp-contact__links {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.gp-contact__promise {
  margin-top: 26px;
  padding: 24px;
}

.gp-contact__promise strong {
  display: block;
  margin-bottom: 14px;
}

.gp-contact__promise ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
  color: var(--gp-muted);
}

.gp-contact__links a {
  display: block;
  padding: 18px;
  text-decoration: none;
}

.gp-contact__links span {
  display: block;
  color: var(--gp-muted);
}

.gp-form {
  display: grid;
  gap: 14px;
  padding: 28px;
}

.gp-form h3 {
  margin: 0 0 8px;
}

.gp-contact__aside {
  display: grid;
  gap: 32px;
}

.gp-calendly {
  padding: 28px;
}

.gp-calendly h3 {
  margin: 0 0 12px;
}

.gp-calendly__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 12px;
}

.gp-calendly__head h3 {
  margin: 0;
}

.gp-calendly__tag {
  flex: none;
  padding: 2px 10px;
  border: 1px solid var(--gp-line);
  border-radius: 999px;
  font-size: var(--gp-text-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gp-muted);
}

.gp-calendly__embed[hidden],
.gp-calendly.is-locked .gp-calendly__embed {
  display: none;
}

.gp-calendly.is-locked {
  opacity: 0.92;
}

.gp-calendly.is-unlocked .gp-calendly__tag {
  border-color: var(--gp-green);
  color: var(--gp-green);
}

.gp-calendly__placeholder {
  display: grid;
  gap: 14px;
  justify-items: center;
  text-align: center;
  padding: 32px 8px;
}

.gp-calendly__hint {
  margin: 0;
  max-width: 38ch;
  color: var(--gp-muted);
}

.gp-form__intro {
  margin: -6px 0 4px;
  color: var(--gp-muted);
  font-size: var(--gp-text-body);
  line-height: 1.55;
}

.gp-form__status {
  margin: 0;
  padding: 12px 14px;
  border-radius: var(--gp-radius-sm);
  font-weight: var(--gp-weight-extrabold);
}

.gp-form__status.is-success {
  background: oklch(0.36 0.09 158 / 12%);
  color: var(--gp-green);
}

.gp-form__status.is-error {
  background: oklch(0.43 0.17 28 / 10%);
  color: var(--gp-red);
}

.gp-form__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.gp-form label {
  display: grid;
  gap: 6px;
  color: var(--gp-muted);
  font-size: var(--gp-text-body);
  font-weight: var(--gp-weight-extrabold);
}

.gp-page-hero {
  padding: 142px 0 74px;
  background: linear-gradient(135deg, var(--gp-card), oklch(0.955 0.018 240));
  text-align: center;
}

.gp-page-hero h1 {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
}

.gp-page-hero p {
  max-width: 760px;
  margin: 0 auto;
}

.gp-prose {
  max-width: 780px;
}

.gp-prose h2 {
  margin-top: 34px;
  font-size: var(--gp-text-4xl);
  line-height: 1.24;
}

.gp-prose h3 {
  margin-top: 26px;
  font-size: var(--gp-text-2xl);
}

.gp-prose p,
.gp-prose li {
  color: var(--gp-muted);
  font-size: var(--gp-text-lg);
}

.gp-prose ul,
.gp-prose ol {
  padding-left: 22px;
}

.gp-legal-detail {
  align-items: start;
}

.gp-legal__updated {
  margin: 0 0 18px;
  color: var(--gp-red);
  font-size: var(--gp-text-body);
  font-weight: var(--gp-weight-extrabold);
}

.gp-legal-contact ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
}

.gp-legal-contact li {
  color: var(--gp-muted);
}

.gp-legal-contact a:not(.gp-button) {
  color: var(--gp-red);
  font-weight: var(--gp-weight-extrabold);
  text-decoration: none;
}

.gp-consent[hidden] {
  display: none;
}

.gp-consent {
  position: fixed;
  z-index: 90;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 16px;
  background: linear-gradient(180deg, transparent, oklch(0.12 0.025 255 / 48%));
}

.gp-consent__panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px 24px;
  width: min(980px, 100%);
  margin: 0 auto;
  padding: 18px;
  border: 1px solid oklch(0.84 0.018 230 / 80%);
  border-radius: 8px;
  background: var(--gp-card);
  box-shadow: 0 20px 60px oklch(0.12 0.025 255 / 22%);
}

.gp-consent__summary h2 {
  margin: 0 0 6px;
  font-family: var(--gp-font);
  font-size: var(--gp-text-2xl);
  letter-spacing: 0;
}

.gp-consent__summary p {
  margin: 0;
  color: var(--gp-muted);
}

.gp-consent__summary a {
  color: var(--gp-red);
  font-weight: var(--gp-weight-extrabold);
}

.gp-consent__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.gp-consent__toggle,
.gp-footer__cookie-settings {
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  font-weight: var(--gp-weight-extrabold);
  text-decoration: underline;
  cursor: pointer;
}

.gp-consent__toggle {
  color: var(--gp-blue);
}

.gp-consent__options {
  display: grid;
  grid-column: 1 / -1;
  gap: 10px;
  padding-top: 4px;
}

.gp-consent__options[hidden] {
  display: none;
}

.gp-consent__options label {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--gp-line);
  border-radius: 8px;
  background: oklch(0.985 0.006 230);
  color: var(--gp-muted);
}

.gp-consent__options input {
  margin-top: 4px;
  accent-color: var(--gp-red);
}

.gp-consent__options strong {
  display: block;
  color: var(--gp-ink);
}

.gp-detail__image {
  width: 100%;
  max-height: 420px;
  margin-bottom: 28px;
  border-radius: var(--gp-radius);
  object-fit: cover;
}

.gp-sidebar {
  align-self: start;
  position: sticky;
  top: 102px;
}

.gp-sidebar__box p {
  color: var(--gp-muted);
}

.gp-conversion-panel,
.gp-service-final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  margin-top: 38px;
  padding: 28px;
  border: 1px solid var(--gp-line);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gp-card), oklch(0.97 0.012 185));
}

.gp-conversion-panel h2,
.gp-service-final-cta h2 {
  margin: 0 0 8px;
  font-size: var(--gp-text-3xl);
  line-height: 1.25;
}

.gp-conversion-panel p,
.gp-service-final-cta p {
  margin: 0;
  color: var(--gp-muted);
}

.gp-conversion-panel__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.gp-segment-page__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 46px;
  align-items: start;
}

.gp-segment-page h2 {
  max-width: 720px;
  margin-top: 10px;
}

.gp-segment-steps {
  display: grid;
  gap: 14px;
  max-width: 720px;
  margin: 26px 0;
  padding: 0;
  list-style: none;
}

.gp-segment-steps li {
  padding: 16px 18px;
  border: 1px solid var(--gp-line);
  border-radius: 8px;
  background: var(--gp-card);
  color: var(--gp-muted);
  font-weight: var(--gp-weight-bold);
}

.gp-segment-proof {
  padding: 26px;
  border-left: 4px solid var(--gp-red);
  border-radius: 8px;
  background: var(--gp-card);
  box-shadow: var(--gp-shadow);
}

.gp-segment-proof strong {
  display: block;
  margin-bottom: 12px;
  color: var(--gp-ink);
  font-size: var(--gp-text-xl);
  line-height: 1.3;
}

.gp-segment-proof p,
.gp-segment-proof li {
  color: var(--gp-muted);
}

.gp-segment-proof ul {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding-left: 18px;
}

.gp-center {
  margin-top: 34px;
  text-align: center;
}

.gp-footer {
  padding: 60px 0 26px;
  background: oklch(0.18 0.04 255);
  color: oklch(0.9 0.014 88 / 76%);
}

.gp-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.78fr 0.78fr 1.15fr;
  gap: 34px;
}

.gp-brand--footer .gp-brand__text,
.gp-footer h3 {
  color: var(--gp-cream);
  background: none;
  -webkit-text-fill-color: var(--gp-cream);
}

.gp-footer a {
  color: oklch(0.94 0.014 88 / 86%);
  text-decoration: none;
}

.gp-footer__links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.gp-footer__links li {
  margin: 8px 0;
}

.gp-footer__contact-intro {
  margin: 0 0 14px;
}

.gp-footer__contact-list {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.gp-footer__contact-list li {
  display: grid;
  gap: 1px;
}

.gp-footer__contact-list span {
  color: oklch(0.9 0.014 88 / 54%);
  font-size: var(--gp-text-xs);
  font-weight: var(--gp-weight-extrabold);
}

.gp-footer__contact-list strong {
  color: oklch(0.94 0.014 88 / 86%);
  font-weight: var(--gp-weight-semibold);
}

.gp-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid oklch(0.9 0.014 88 / 12%);
  color: oklch(0.9 0.014 88 / 58%);
}

.gp-footer__cookie-settings {
  color: oklch(0.94 0.014 88 / 86%);
  font-size: var(--gp-text-body);
}

.gp-whatsapp {
  position: fixed;
  z-index: 40;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: var(--gp-cream);
  text-decoration: none;
  box-shadow: 0 18px 34px oklch(0.74 0.18 145 / 36%);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.gp-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px oklch(0.74 0.18 145 / 42%);
}

.gp-whatsapp__icon {
  width: 31px;
  height: 31px;
  fill: currentColor;
}

@media (max-width: 980px) {
  .gp-hero h1 {
    font-size: var(--gp-text-display);
  }

  .gp-menu-toggle {
    display: block;
    order: 3;
  }

  .gp-nav {
    position: absolute;
    top: 72px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--gp-line);
    border-radius: var(--gp-radius);
    background: var(--gp-card);
    box-shadow: var(--gp-shadow);
  }

  .gp-nav.is-open {
    display: flex;
  }

  .gp-nav a {
    padding: 12px;
  }

  .gp-header__actions {
    display: flex;
    order: 2;
    margin-left: auto;
  }

  .gp-header__actions .gp-button {
    display: none;
  }

  .gp-language-switcher a {
    min-width: 34px;
    padding-inline: 8px;
  }

  .gp-benefits,
  .gp-card-grid,
  .gp-pricing,
  .gp-testimonials,
  .gp-about,
  .gp-route-selector__intro,
  .gp-route-selector__grid,
  .gp-trust-bar__grid,
  .gp-readiness__grid,
  .gp-cta-band__inner,
  .gp-process__steps,
  .gp-paths__grid,
  .gp-case-studies__grid,
  .gp-scope__grid,
  .gp-scope__lists,
  .gp-team-proof__intro,
  .gp-proof-people,
  .gp-proof-cases__grid,
  .gp-home-proof__grid,
  .gp-home-proof__people,
  .gp-info-feature,
  .gp-checklist-offer__inner,
  .gp-contact__grid,
  .gp-detail,
  .gp-segment-page__grid,
  .gp-newsletter__inner,
  .gp-footer__grid {
    grid-template-columns: 1fr;
  }

  .gp-trust-bar__grid div,
  .gp-trust-bar__grid div:first-child,
  .gp-process__steps li {
    padding-right: 0;
    padding-left: 0;
    border-right: 0;
  }

  .gp-trust-bar__grid div,
  .gp-process__steps li {
    border-bottom: 1px solid var(--gp-line);
  }

  .gp-route-selector__grid article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--gp-line);
  }

  .gp-trust-bar__grid div:last-child,
  .gp-process__steps li:last-child,
  .gp-route-selector__grid article:last-child {
    border-bottom: 0;
  }

  .gp-sidebar {
    position: static;
  }

  .gp-cta-band__actions {
    justify-content: flex-start;
  }

  .gp-conversion-panel,
  .gp-service-final-cta {
    grid-template-columns: 1fr;
  }

  .gp-conversion-panel__actions {
    justify-content: flex-start;
  }

  .gp-readiness__fields,
  .gp-readiness__actions {
    grid-template-columns: 1fr;
  }

  .gp-team-proof__proof {
    max-width: 620px;
  }

  .gp-home-proof__people {
    --gp-team-carousel-gap: 18px;
  }

  .gp-home-proof__people article {
    flex-basis: calc((100% - var(--gp-team-carousel-gap)) / 2);
  }

  .gp-gallery__intro {
    grid-template-columns: 1fr;
  }

  .gp-gallery__stats {
    max-width: 560px;
  }

  .gp-info-feature__content {
    padding: 28px;
  }

  .gp-gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 220px;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 84px;
  }

  .gp-container {
    width: min(100% - 26px, 1180px);
  }

  .gp-hero__inner {
    padding-top: 118px;
    text-align: center;
  }

  .gp-hero h1 {
    font-size: var(--gp-text-6xl);
    line-height: 1.02;
  }

  .gp-hero__subtitle {
    font-size: var(--gp-text-lg);
  }

  .gp-hero__shade {
    background:
      linear-gradient(180deg, oklch(0.985 0.006 230 / 94%) 0%, oklch(0.985 0.006 230 / 84%) 42%, oklch(0.985 0.006 230 / 96%) 100%);
  }

  .gp-hero h1,
  .gp-hero__subtitle {
    margin-right: auto;
    margin-left: auto;
  }

  .gp-hero .gp-actions {
    justify-content: center;
  }

  .gp-hero__proof {
    display: grid;
    justify-content: center;
    margin-right: auto;
    margin-left: auto;
  }

  .gp-hero__proof span {
    justify-content: center;
  }

  .gp-hero__proof span::before {
    display: none;
  }

  .gp-readiness__form,
  .gp-checklist-offer__inner {
    padding: 24px;
  }

  .gp-readiness__actions,
  .gp-cta-band__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .gp-cta-band {
    padding: 26px 0;
  }

  .gp-cta-band h2 {
    font-size: var(--gp-text-3xl);
  }

  .gp-route-selector__intro h2,
  .gp-home-proof__copy h2 {
    font-size: var(--gp-text-5xl);
  }

  .gp-team-proof__intro h2 {
    font-size: var(--gp-text-5xl);
  }

  .gp-team-proof__intro p {
    font-size: var(--gp-text-lg);
  }

  .gp-proof-person {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .gp-proof-person figure {
    height: 310px;
  }

  .gp-proof-person > div {
    padding: 24px;
  }

  .gp-proof-person h4 {
    font-size: var(--gp-text-3xl);
  }

  .gp-proof-cases__heading {
    display: grid;
  }

  .gp-proof-cases__heading .gp-button,
  .gp-team-proof__actions .gp-button {
    width: 100%;
  }

  .gp-proof-cases article {
    padding: 20px;
  }

  .gp-home-proof__people {
    --gp-team-carousel-gap: 14px;
    gap: 14px;
  }

  .gp-home-proof__people article {
    flex-basis: min(84vw, 340px);
  }

  .gp-home-proof__copy .gp-check-list {
    grid-template-columns: 1fr;
  }

  .gp-paths p {
    min-height: 0;
  }

  .gp-section {
    padding: 64px 0;
  }

  .gp-whatsapp {
    right: 16px;
    bottom: 72px;
    width: 48px;
    height: 48px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
  }

  .gp-whatsapp.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .gp-whatsapp__icon {
    width: 26px;
    height: 26px;
  }

  .gp-gallery__stats {
    grid-template-columns: 1fr;
  }

  .gp-info-feature__content {
    padding: 24px;
  }

  .gp-youtube-player__play {
    width: 58px;
    height: 58px;
  }

  .gp-youtube-player__label {
    right: 16px;
    bottom: 14px;
    left: 16px;
    font-size: var(--gp-text-body);
  }

  .gp-gallery__filter {
    flex: 1 1 calc(50% - 8px);
    padding-right: 10px;
    padding-left: 10px;
  }

  .gp-gallery__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .gp-gallery__item,
  .gp-media-gallery[data-gallery-active-filter="all"] .gp-gallery__item.is-featured {
    aspect-ratio: 3 / 2;
    grid-column: auto;
    grid-row: auto;
  }

  .gp-gallery__caption {
    padding: 16px;
  }

  .gp-gallery-modal {
    padding: 12px;
  }

  .gp-gallery-modal__panel {
    max-height: calc(100vh - 24px);
  }

  .gp-consent {
    padding: 10px;
  }

  .gp-consent__panel {
    grid-template-columns: 1fr;
    gap: 14px;
    max-height: calc(100vh - 20px);
    overflow: auto;
    padding: 16px;
  }

  .gp-consent__actions {
    justify-content: stretch;
  }

  .gp-consent__actions .gp-button,
  .gp-consent__toggle {
    width: 100%;
  }

  .gp-footer__bottom {
    display: grid;
  }

  .gp-team__member,
  .gp-team__member:nth-child(2) {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    margin-left: 0;
    padding: 18px;
  }

  .gp-team img,
  .gp-team__avatar {
    width: min(100%, 360px);
    height: auto;
    aspect-ratio: 16 / 10;
    justify-self: start;
    border-radius: 14px;
  }

  .gp-team img {
    object-position: center 24%;
  }

  .gp-team__member--dr-florian-beck img {
    object-position: center 18%;
  }

  .gp-team__member--cinthia-fischer img {
    object-position: center 6%;
  }

  .gp-team__member--rogney-canellas img {
    object-position: center 0%;
  }

  .gp-team__avatar {
    font-size: var(--gp-text-2xl);
  }

  .gp-team__content {
    width: 100%;
  }

  .gp-team h3 {
    font-size: var(--gp-text-2xl);
  }

  .gp-team__role {
    font-size: var(--gp-text-body);
  }

  .gp-team__bio {
    margin-top: 8px;
    font-size: var(--gp-text-body);
    line-height: 1.5;
  }

  .gp-newsletter__inner {
    padding: 26px;
  }

  .gp-newsletter form {
    flex-direction: column;
  }

  .gp-newsletter input,
  .gp-newsletter .gp-button {
    flex: 0 0 auto;
    width: 100%;
  }
}
