:root {
  /* Measured from GrainSmart Landing Page design @ 1440px */
  --gs-bg: #edf3e5;
  --gs-bg-soft: #f2f6ef;
  --gs-paper: #ffffff;
  --gs-ink: #101828;
  --gs-ink-green: #2b3e1b;
  --gs-muted: #475467;
  --gs-muted-green: #4a682d;
  --gs-green: #5a7d36;
  --gs-green-mid: #6b8e4e;
  --gs-green-dark: #3a5324;
  --gs-green-deep: #314528;
  --gs-gold: #f2b705;
  --gs-gold-soft: #e5b749;
  --gs-line: #d0d5dd;
  --gs-line-soft: #eaecf0;
  --gs-shadow: 0 16px 40px rgba(16, 24, 40, 0.12);
  --gs-radius: 8px;
  --gs-radius-md: 12px;
  --gs-radius-lg: 16px;
  --gs-shell: 1216px;
  --gs-font: "Plus Jakarta Sans", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--gs-ink);
  background: var(--gs-paper);
  font-family: var(--gs-font);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.gs-menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
p {
  margin: 0;
}

.gs-shell {
  width: min(100% - 3.5rem, var(--gs-shell));
  margin-inline: auto;
}

.gs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.625rem 1.125rem;
  border: 1px solid transparent;
  border-radius: var(--gs-radius);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.25;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.gs-btn:hover {
  transform: translateY(-1px);
}

.gs-btn--sm {
  min-height: 44px;
  padding: 0.5rem 1rem;
  font-size: 14px;
}

.gs-btn--block {
  width: 100%;
}

.gs-btn--primary {
  background: var(--gs-green);
  color: #fff;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
}

.gs-btn--primary:hover {
  background: #4e6e2f;
}

.gs-btn--dark {
  background: var(--gs-green);
  color: #fff;
  min-height: 48px;
  padding: 0.75rem 1.5rem;
  font-size: 16px;
}

.gs-btn--dark:hover {
  background: #4e6e2f;
}

.gs-btn--soft {
  background: var(--gs-green-mid);
  color: #fff;
}

.gs-btn--soft:hover {
  background: #5f8044;
}

.gs-btn--white {
  background: #fff;
  color: var(--gs-green-dark);
}

.gs-btn--ghost {
  background: #fff;
  border-color: var(--gs-line);
  color: var(--gs-ink);
}

.gs-link {
  color: var(--gs-ink-green);
  font-size: 16px;
  font-weight: 600;
}

.gs-eyebrow {
  color: var(--gs-green);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

.gs-eyebrow--light {
  color: #d7e4c8;
}

.gs-section-head {
  max-width: 920px;
  margin: 0 auto 64px;
  text-align: center;
}

.gs-section-head h2 {
  margin-top: 12px;
  color: var(--gs-ink);
  font-size: clamp(30px, 3.2vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.gs-section-head__lead {
  margin-top: 16px;
  color: var(--gs-muted);
  font-size: 18px;
  line-height: 1.55;
}

.gs-section-head--light h2 {
  color: var(--gs-gold);
  font-size: clamp(32px, 3.6vw, 40px);
}

.gs-section-head--light .gs-section-head__lead {
  color: #d7e0cc;
  font-size: 18px;
}

/* Header — logo | centered nav | actions */
.gs-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(237, 243, 229, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(90, 125, 54, 0.06);
}

.gs-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.06);
}

.gs-header__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 16px;
  min-height: 80px;
}

.gs-logo {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.gs-logo img {
  width: 148px;
  height: auto;
}

.gs-nav {
  display: flex;
  justify-content: center;
  min-width: 0;
  overflow: visible;
}

.gs-nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 6px 18px;
}

.gs-nav__list > li {
  position: relative;
}

.gs-nav__list a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--gs-ink-green);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  white-space: nowrap;
  text-decoration: none;
  padding: 6px 0;
}

.gs-nav__list a:hover,
.gs-nav__list a[aria-current="page"] {
  color: var(--gs-green);
}

.gs-nav__list a[aria-current="page"] {
  box-shadow: inset 0 -2px 0 var(--gs-green);
}

.gs-nav__submenu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 180px;
  padding: 8px;
  margin: 0;
  list-style: none;
  background: #fff;
  border: 1px solid var(--gs-line-soft);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(16, 24, 40, 0.12);
  z-index: 60;
}

.gs-nav__dropdown:hover .gs-nav__submenu,
.gs-nav__dropdown:focus-within .gs-nav__submenu {
  display: grid;
  gap: 2px;
}

.gs-nav__submenu a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  white-space: nowrap;
  box-shadow: none !important;
}

.gs-nav__submenu a:hover {
  background: #f4f7f0;
}

.gs-nav__list a:hover {
  color: var(--gs-green);
}

.gs-nav__actions--mobile {
  display: none;
}

.gs-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  white-space: nowrap;
}

.gs-nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  justify-self: end;
}

.gs-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--gs-ink-green);
  border-radius: 2px;
}

/* Hero */
.gs-hero {
  position: relative;
  overflow: visible;
  background: #edf3e5;
  padding: 72px 0 64px;
}

.gs-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: #edf3e5 url("../images/hero-bg.png") no-repeat center bottom;
  background-size: 100% auto;
}

.gs-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.gs-hero h1 {
  max-width: 1040px;
  color: var(--gs-ink-green);
  font-size: clamp(40px, 4.2vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.gs-hero__lead {
  max-width: 820px;
  margin-top: 24px;
  color: var(--gs-muted-green);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
}

.gs-hero .gs-btn {
  margin-top: 32px;
}

.gs-hero__media {
  width: min(100%, 1100px);
  margin: 40px 0 0;
  border-radius: var(--gs-radius-lg);
  overflow: hidden;
  box-shadow: var(--gs-shadow);
  transform: translateY(64px);
}

.gs-hero__media img {
  width: 100%;
  height: auto;
  aspect-ratio: 1100 / 540;
  object-fit: cover;
  display: block;
}

/* Audience / Who we serve */
.gs-audience {
  position: relative;
  overflow: hidden;
  color: #fff;
  background-color: #3a5324;
  background-image: url("../images/metrics-bg.png");
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: cover;
  padding: 140px 0 96px;
}

.gs-audience__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}

.gs-audience__intro {
  position: relative;
  padding-right: 12px;
}

.gs-audience__intro h2 {
  max-width: 16ch;
  font-size: clamp(32px, 3.4vw, 40px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.gs-audience__intro p {
  margin-top: 16px;
  max-width: 36ch;
  color: #e8efdf;
  font-size: 18px;
  line-height: 1.55;
}

.gs-audience__list {
  display: grid;
  gap: 40px;
}

.gs-audience__list h3 {
  color: var(--gs-gold);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.25;
}

.gs-audience__list p {
  margin-top: 12px;
  color: #d7e0cc;
  font-size: 16px;
  line-height: 1.55;
}

.gs-audience__cta {
  display: flex;
  justify-content: flex-start;
  margin-top: 8px;
}

/* Features */
.gs-features {
  background: #edf3e5;
  padding: 96px 0;
}

.gs-section-head--features {
  max-width: 960px;
  margin: 0 auto 96px;
  text-align: center;
}

.gs-section-head--features h2 {
  margin-top: 12px;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.22;
}

.gs-section-head--features .gs-section-head__lead {
  margin-top: 20px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  font-size: 20px;
  line-height: 1.5;
}

.gs-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 96px;
  align-items: center;
  margin-bottom: 96px;
}

.gs-feature:last-of-type {
  margin-bottom: 64px;
}

.gs-feature--flip .gs-feature__copy {
  order: 2;
}

.gs-feature--flip .gs-feature__media {
  order: 1;
}

.gs-feature__copy {
  max-width: 560px;
}

.gs-feature__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
}

.gs-feature__copy h3 {
  max-width: none;
  color: var(--gs-ink);
  font-size: clamp(24px, 2.2vw, 30px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.gs-feature__copy p {
  margin-top: 16px;
  max-width: none;
  color: var(--gs-muted);
  font-size: 18px;
  line-height: 1.55;
}

.gs-feature__media {
  margin: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.gs-feature__stage {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin-inline: auto;
}

.gs-feature__screen {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 12px;
  border: 4px solid #181d27;
  background: #fff;
  box-shadow: 0 24px 48px rgba(16, 24, 40, 0.16);
}

.gs-feature--with-phone .gs-feature__stage {
  max-width: 560px;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-left: 48px;
}

.gs-feature__phone {
  position: absolute;
  left: 0;
  bottom: -24px;
  width: min(48%, 269px);
  height: auto;
  z-index: 2;
  filter: drop-shadow(0 18px 30px rgba(16, 24, 40, 0.22));
  pointer-events: none;
}

.gs-features__more {
  display: flex;
  justify-content: center;
}

/* CTA banner */
.gs-cta-banner {
  background: var(--gs-green-dark);
  padding: 80px 0;
  text-align: center;
}

.gs-cta-banner h2 {
  max-width: 960px;
  margin: 0 auto;
  color: var(--gs-gold);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.gs-cta-banner__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

/* Contact */
.gs-contact {
  padding: 96px 0;
  background: var(--gs-paper);
}

.gs-contact__intro {
  max-width: 540px;
  margin-bottom: 48px;
}

.gs-contact__intro h2 {
  margin-top: 8px;
  color: var(--gs-ink);
  font-size: clamp(30px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.gs-contact__intro p {
  margin-top: 12px;
  color: var(--gs-muted);
  font-size: 18px;
  line-height: 1.55;
}

.gs-contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: start;
}

.gs-contact__channels {
  display: grid;
  gap: 32px;
}

.gs-contact__icon {
  display: inline-flex;
  color: var(--gs-green);
  margin-bottom: 12px;
}

.gs-contact__channels h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--gs-ink);
}

.gs-contact__channels p {
  margin: 4px 0 8px;
  color: var(--gs-muted);
  font-size: 14px;
  line-height: 1.5;
}

.gs-contact__channels a {
  color: var(--gs-green);
  font-size: 16px;
  font-weight: 600;
}

.gs-form {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 20px 20px 24px;
  border-radius: 12px;
  background: #f9fafb;
  border: 1px solid #eaecf0;
}

/* CF7 wraps fields in <p>/<br> — neutralize that markup */
.gs-form > p {
  margin: 0;
  display: contents;
}

.gs-form br {
  display: none;
}

.gs-form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.gs-form label {
  display: grid;
  gap: 6px;
  margin: 0;
}

.gs-form label > span:not(.wpcf7-form-control-wrap):not(.wpcf7-list-item-label) {
  font-size: 14px;
  font-weight: 500;
  color: #344054;
  line-height: 1.4;
}

.gs-form input[type="text"],
.gs-form input[type="email"],
.gs-form input[type="tel"],
.gs-form input[type="url"],
.gs-form input[type="number"],
.gs-form textarea,
.gs-form .wpcf7-text,
.gs-form .wpcf7-email,
.gs-form .wpcf7-tel,
.gs-form .wpcf7-textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  background: #fff;
  color: #101828;
  font-size: 16px;
  font-family: inherit;
  line-height: 1.4;
  box-sizing: border-box;
  box-shadow: none;
}

.gs-form textarea,
.gs-form .wpcf7-textarea {
  min-height: 100px;
  resize: vertical;
}

.gs-form input::placeholder,
.gs-form textarea::placeholder {
  color: #98a2b3;
}

.gs-form input:focus,
.gs-form textarea:focus,
.gs-form .wpcf7-form-control:focus {
  outline: none;
  border-color: var(--gs-green);
  box-shadow: 0 0 0 3px rgba(90, 125, 54, 0.15);
}

.gs-form .wpcf7-form-control-wrap:has(.wpcf7-acceptance) {
  margin-top: 4px;
}

.gs-form__check,
.gs-form .wpcf7-acceptance {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: #475467;
}

.gs-form .wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.gs-form .wpcf7-acceptance label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  grid-template-columns: none;
}

.gs-form__check input,
.gs-form .wpcf7-acceptance input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-height: 0;
  margin: 2px 0 0;
  padding: 0;
  flex: 0 0 auto;
  accent-color: var(--gs-green);
  border-radius: 4px;
}

.gs-form__check a,
.gs-form .wpcf7-acceptance a {
  text-decoration: underline;
  color: var(--gs-green);
  font-weight: 500;
}

.gs-form .wpcf7-list-item-label {
  color: #475467;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
}

.gs-form > .wpcf7-spinner {
  position: absolute;
  inset: auto auto 88px 50%;
  width: 24px;
  height: 24px;
  margin: 0;
  transform: translateX(-50%);
  pointer-events: none;
}

.gs-form .wpcf7-response-output {
  margin: 0;
  padding: 10px 12px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  border: 0;
}

.gs-form.sent .wpcf7-response-output {
  background: #ecfdf3;
  color: #027a48;
}

.gs-form.invalid .wpcf7-response-output,
.gs-form.failed .wpcf7-response-output,
.gs-form.aborted .wpcf7-response-output {
  background: #fef3f2;
  color: #b42318;
}

.gs-form .wpcf7-not-valid-tip {
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.3;
  color: #b42318;
}

.gs-form .wpcf7-submit,
.gs-form input.wpcf7-submit.gs-btn {
  width: 100%;
  min-height: 44px;
  margin: 4px 0 0;
  padding: 0.625rem 1.125rem;
  border: 1px solid transparent !important;
  border-radius: 8px;
  background: #5a7d36 !important;
  color: #fff !important;
  font-weight: 600;
  font-size: 16px;
  font-family: inherit;
  line-height: 1.25;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
  opacity: 1 !important;
}

.gs-form .wpcf7-submit:hover,
.gs-form input.wpcf7-submit.gs-btn:hover {
  background: #4e6e2f !important;
  color: #fff !important;
}

.gs-form .wpcf7-submit:disabled {
  background: #5a7d36 !important;
  color: #fff !important;
  opacity: 0.72 !important;
  cursor: not-allowed;
}

.gs-form__mailto {
  margin: 0;
  display: block;
}

.gs-form__mailto .gs-btn--ghost {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #d0d5dd;
  color: #344054;
  text-align: center;
}

.gs-form__mailto .gs-btn--ghost:hover {
  background: #f9fafb;
  border-color: #98a2b3;
  color: #101828;
}

.gs-form--no-mailto .gs-form__mailto {
  display: none;
}

.wpcf7 .screen-reader-response {
  position: absolute;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  width: 1px;
  word-wrap: normal;
}

.gs-alert {
  margin-bottom: 20px;
  padding: 12px 14px;
  border-radius: var(--gs-radius);
  font-weight: 500;
  font-size: 14px;
}

.gs-alert--success {
  background: #ecfdf3;
  color: #027a48;
}

.gs-alert--error {
  background: #fef3f2;
  color: #b42318;
}

/* Pricing */
.gs-pricing {
  background: var(--gs-green-dark);
  padding: 96px 0 88px;
}

.gs-pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.gs-plan {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--gs-shadow);
}

.gs-plan--featured {
  box-shadow: 0 12px 32px rgba(16, 24, 40, 0.14);
  outline: 2px solid var(--gs-green);
}

.gs-plan header {
  display: grid;
  gap: 12px;
  padding: 28px 28px 24px;
}

.gs-plan h3 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.gs-badge--popular {
  justify-self: start;
  background: #eef4e6;
  color: var(--gs-green);
}

.gs-plan__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0;
  min-height: 0 !important;
  color: var(--gs-ink) !important;
}

.gs-plan__price strong {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}

.gs-plan__price span {
  color: var(--gs-muted);
  font-size: 16px;
}

.gs-plan header > p {
  color: var(--gs-muted);
  min-height: 2.8em;
  font-size: 16px;
  line-height: 1.5;
}

.gs-plan header .gs-btn {
  width: 100%;
}

.gs-plan__features {
  flex: 1;
  padding: 24px 28px 28px;
  border-top: 1px solid var(--gs-line-soft);
}

.gs-plan__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #667085;
}

.gs-plan__feature-summary {
  margin: 8px 0 16px;
  color: var(--gs-muted);
  font-size: 14px;
}

.gs-plan__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  color: #344054;
  font-size: 15px;
  line-height: 1.45;
}

.gs-plan__features svg {
  flex: 0 0 auto;
  margin-top: 1px;
}

/* FAQ */
.gs-faq {
  background: var(--gs-bg);
  padding: 96px 0;
}

.gs-faq__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 64px;
}

.gs-faq__intro h2 {
  margin-top: 8px;
  font-size: clamp(32px, 3.2vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.gs-faq__intro p {
  margin-top: 16px;
  color: var(--gs-muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 36ch;
}

.gs-faq__intro a {
  color: var(--gs-ink);
  text-decoration: underline;
  font-weight: 600;
}

.gs-faq__item {
  border-bottom: 1px solid #d6decc;
  padding: 20px 0;
}

.gs-faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  list-style: none;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--gs-ink);
}

.gs-faq__item summary::-webkit-details-marker {
  display: none;
}

.gs-faq__toggle {
  position: relative;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border: 1px solid #c8d2b8;
  border-radius: 999px;
  background: #fff;
}

.gs-faq__toggle::before,
.gs-faq__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1.5px;
  background: var(--gs-green-dark);
  transform: translate(-50%, -50%);
}

.gs-faq__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.gs-faq__item[open] .gs-faq__toggle::after {
  opacity: 0;
}

.gs-faq__answer {
  margin-top: 12px;
  padding-right: 40px;
  color: var(--gs-muted);
  font-size: 15px;
  line-height: 1.6;
}

.gs-faq__answer ul {
  margin-top: 10px;
  padding-left: 18px;
  list-style: disc;
}

.gs-faq__answer li {
  margin-bottom: 6px;
}

/* Blog */
.gs-blog {
  padding: 96px 0;
  background: var(--gs-paper);
}

.gs-blog__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}

.gs-blog__head h2 {
  margin-top: 8px;
  font-size: clamp(30px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.gs-blog__head p {
  margin-top: 12px;
  color: var(--gs-muted);
  font-size: 18px;
  line-height: 1.5;
  max-width: 36ch;
}

.gs-blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.gs-post figure {
  margin: 0 0 20px;
  overflow: hidden;
  border-radius: var(--gs-radius-lg);
}

.gs-post img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.gs-post__cat {
  color: var(--gs-green);
  font-size: 14px;
  font-weight: 600;
}

.gs-post h3 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-top: 6px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.gs-post h3 svg {
  margin-top: 4px;
  flex: 0 0 auto;
}

.gs-post > p {
  margin-top: 10px;
  color: var(--gs-muted);
  font-size: 15px;
  line-height: 1.55;
}

.gs-post__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.gs-post__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #e4edd8;
  color: var(--gs-green-dark);
  font-size: 14px;
  font-weight: 700;
}

.gs-post__meta strong,
.gs-post__meta span {
  display: block;
  font-size: 14px;
  line-height: 1.35;
}

.gs-post__meta span {
  color: var(--gs-muted);
}

/* Footer */
.gs-footer {
  background: var(--gs-green-deep);
  color: #fff;
  padding: 64px 0 32px;
}

.gs-footer__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.gs-footer__heading {
  margin-bottom: 16px;
  color: #b8c9a5;
  font-size: 14px;
  font-weight: 600;
}

.gs-footer ul {
  display: grid;
  gap: 12px;
}

.gs-footer a {
  color: #fff;
  font-size: 15px;
}

.gs-footer a:hover {
  color: var(--gs-gold-soft);
}

.gs-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 28px;
}

.gs-footer__bottom p {
  color: #b8c9a5;
  font-size: 14px;
}

.gs-fallback {
  padding: 64px 0;
}

/* Motion */
@keyframes gs-rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gs-hero__content > *:not(.gs-hero__media) {
  animation: gs-rise 700ms ease both;
}

.gs-hero__lead {
  animation-delay: 70ms;
}

.gs-hero .gs-btn {
  animation-delay: 120ms;
}

@keyframes gs-rise-media {
  from {
    opacity: 0;
    transform: translateY(80px);
  }
  to {
    opacity: 1;
    transform: translateY(64px);
  }
}

.gs-hero__media {
  animation: gs-rise-media 900ms ease both;
  animation-delay: 160ms;
}

.gs-plan:hover,
.gs-post:hover {
  transform: translateY(-3px);
  transition: transform 220ms ease;
}

/* Responsive */
@media (max-width: 1100px) {
  .gs-nav__list {
    gap: 8px 18px;
  }

  .gs-nav__list a {
    font-size: 14px;
  }
}

@media (max-width: 1180px) {
  .gs-shell {
    width: min(100% - 2rem, var(--gs-shell));
  }

  .gs-header__inner {
    grid-template-columns: 1fr auto;
    min-height: 72px;
  }

  .gs-nav-toggle {
    display: inline-block;
    grid-column: 2;
    grid-row: 1;
  }

  .gs-header__actions {
    display: none;
  }

  .gs-nav {
    position: fixed;
    inset: 72px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 20px 20px 24px;
    background: #f7faf3;
    border-bottom: 1px solid rgba(90, 125, 54, 0.12);
    box-shadow: 0 16px 30px rgba(16, 24, 40, 0.08);
  }

  body.gs-menu-open .gs-nav {
    display: flex;
  }

  .gs-nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .gs-nav__actions--mobile {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid rgba(90, 125, 54, 0.12);
  }

  .gs-audience__grid,
  .gs-feature,
  .gs-contact__grid,
  .gs-faq__grid,
  .gs-pricing__grid,
  .gs-blog__grid,
  .gs-footer__grid {
    grid-template-columns: 1fr;
  }

  .gs-feature--flip .gs-feature__copy,
  .gs-feature--flip .gs-feature__media {
    order: initial;
  }

  .gs-feature {
    gap: 28px;
    margin-bottom: 56px;
  }

  .gs-section-head--features {
    margin-bottom: 48px;
  }

  .gs-feature--with-phone .gs-feature__stage {
    min-height: 0;
    padding-left: 36px;
    padding-bottom: 40px;
  }

  .gs-feature__phone {
    width: min(42%, 180px);
    bottom: 0;
  }

  .gs-blog__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .gs-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .gs-hero {
    padding-top: 48px;
  }

  .gs-hero__media {
    transform: translateY(28px);
    margin-top: 36px;
    animation: none;
  }

  .gs-audience {
    padding: 88px 0 64px;
    background-size: cover;
  }
}

@media (max-width: 640px) {
  .gs-shell {
    width: min(100% - 1.5rem, var(--gs-shell));
  }

  .gs-hero h1 {
    max-width: none;
  }

  .gs-cta-banner__actions {
    flex-direction: column;
  }

  .gs-cta-banner__actions .gs-btn {
    width: 100%;
  }

  .gs-features,
  .gs-contact,
  .gs-faq,
  .gs-blog {
    padding: 64px 0;
  }

  .gs-pricing {
    padding: 64px 0;
  }
}

/* ------------------------------------------------------------------ */
/* Capabilities page                                                   */
/* ------------------------------------------------------------------ */

.gs-btn--outline {
  background: #fff;
  border-color: #d0d5dd;
  color: var(--gs-ink-green);
}

.gs-btn--outline:hover {
  background: #f8faf5;
  border-color: var(--gs-green);
}

.gs-hero--capabilities {
  padding-top: 64px;
}

.gs-hero--capabilities .gs-hero__media img {
  aspect-ratio: 1024 / 468;
  object-fit: contain;
  background: #fff;
}

.gs-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.gs-hero--capabilities .gs-btn {
  margin-top: 0;
}

.gs-hero--capabilities h1 {
  max-width: 1040px;
}

.gs-cap-features {
  background: #fff;
  padding: 96px 0;
}

.gs-cap-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
  margin-bottom: 96px;
}

.gs-cap-feature:last-child {
  margin-bottom: 0;
}

.gs-cap-feature--flip .gs-cap-feature__copy {
  order: 2;
}

.gs-cap-feature--flip .gs-cap-feature__media {
  order: 1;
}

.gs-cap-feature__icon {
  display: block;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
}

.gs-cap-feature__copy h3 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  max-width: none;
  color: var(--gs-ink);
  font-size: clamp(24px, 2.2vw, 30px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.gs-cap-feature__copy > p {
  margin-top: 16px;
  max-width: 52ch;
  color: var(--gs-muted);
  font-size: 16px;
  line-height: 1.6;
}

.gs-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: #eef4e6;
  color: var(--gs-green);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.gs-check-list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.gs-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #344054;
  font-size: 16px;
  line-height: 1.5;
}

.gs-check-list svg {
  flex: 0 0 auto;
  margin-top: 2px;
}

.gs-cap-feature__media {
  position: relative;
  margin: 0;
  padding: 0;
  aspect-ratio: 560 / 480;
  border-radius: 24px;
  background: #f5f5f5;
  box-shadow: none;
  overflow: hidden;
}

.gs-cap-feature__media img {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 118%;
  max-width: none;
  height: auto;
  border-radius: 0;
  object-fit: cover;
  object-position: left bottom;
  display: block;
  background: transparent;
}

.gs-cta-banner--capabilities {
  border-radius: 0;
}

.gs-cta-banner--capabilities .gs-cta-banner__actions {
  margin-top: 28px;
}

@media (max-width: 1180px) {
  .gs-cap-feature,
  .gs-cap-feature--flip {
    grid-template-columns: 1fr;
  }

  .gs-cap-feature--flip .gs-cap-feature__copy,
  .gs-cap-feature--flip .gs-cap-feature__media {
    order: initial;
  }

  .gs-cap-feature {
    gap: 28px;
    margin-bottom: 56px;
  }

  .gs-cap-features {
    padding: 64px 0;
  }

  .gs-hero--capabilities h1 {
    max-width: none;
  }
}


/* Layout alignment overrides */
.gs-hero .gs-eyebrow {
  margin-bottom: 16px;
  color: var(--gs-green-dark);
}

.gs-hero__actions .gs-btn {
  margin-top: 0;
}

.gs-eyebrow--on-dark {
  color: #d7e0cc;
}

.gs-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Legal / policy (dynamic content) */
.gs-legal-hero {
  background: var(--gs-green-dark);
  color: #fff;
  padding: 72px 0 64px;
  text-align: center;
}

.gs-legal-hero__inner {
  max-width: 760px;
  margin: 0 auto;
}

.gs-legal-hero h1 {
  margin-top: 12px;
  color: #fff;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.gs-legal-hero__lead {
  margin-top: 16px;
  color: #d7e0cc;
  font-size: 18px;
  line-height: 1.6;
}

.gs-legal {
  background: #fff;
  padding: 64px 0 96px;
}

.gs-legal__content {
  max-width: 720px;
  margin: 0 auto;
  color: #344054;
  font-size: 17px;
  line-height: 1.75;
}

.gs-legal__content > *:first-child {
  margin-top: 0;
}

.gs-legal__content h2,
.gs-legal__content h3 {
  margin: 40px 0 14px;
  color: var(--gs-ink);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.gs-legal__content h3 {
  font-size: 20px;
  margin-top: 32px;
}

.gs-legal__content p {
  margin: 0 0 18px;
}

.gs-legal__content .gs-lead,
.gs-single-post .gs-lead {
  color: var(--gs-ink);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}

.gs-legal__content ul,
.gs-legal__content ol {
  margin: 0 0 24px;
  padding-left: 1.35rem;
}

.gs-legal__content li {
  margin-top: 10px;
  padding-left: 4px;
}

.gs-legal__content li + li {
  margin-top: 10px;
}

.gs-legal__content strong {
  color: var(--gs-ink);
  font-weight: 650;
}

.gs-legal__content blockquote {
  margin: 28px 0;
  padding: 4px 0 4px 20px;
  border-left: 3px solid var(--gs-primary, #4f7a28);
  color: var(--gs-ink);
  font-size: 18px;
  font-style: italic;
  line-height: 1.55;
}

.gs-legal__content blockquote p {
  margin: 0;
}

.gs-legal__content code {
  font-size: 0.9em;
  padding: 0.12em 0.4em;
  border-radius: 4px;
  background: #f2f4f7;
  color: #1d2939;
}

.gs-single-post__thumb {
  margin: 0 0 40px;
  border-radius: var(--gs-radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #eef2e8;
}

.gs-single-post__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gs-post-hero__meta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  text-align: left;
}

.gs-post-hero__meta .gs-post__avatar {
  width: 40px;
  height: 40px;
  font-size: 14px;
}

.gs-post-hero__meta strong,
.gs-post-hero__meta span {
  display: block;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  line-height: 1.35;
}

.gs-post-hero__meta span {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

.gs-single-post__back {
  margin: 0 0 24px;
}

.gs-single-post__back a {
  color: var(--gs-muted);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.gs-single-post__back a:hover {
  color: var(--gs-ink);
}

.gs-blog--related {
  padding-top: 24px;
}

.gs-blog__empty {
  margin: 0;
  padding: 48px 0;
  text-align: center;
  color: var(--gs-muted);
  font-size: 16px;
}

.gs-post figure a {
  display: block;
}

.gs-post figure a:focus-visible {
  outline: 2px solid var(--gs-primary);
  outline-offset: 2px;
}

/* Shared inner page hero */
.gs-page-hero {
  background: #fff;
  padding: 64px 0 48px;
  text-align: center;
}

.gs-page-hero h1 {
  max-width: 18ch;
  margin: 0 auto;
  color: var(--gs-ink);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.gs-page-hero__lead {
  max-width: 640px;
  margin: 20px auto 0;
  color: var(--gs-muted);
  font-size: 18px;
  line-height: 1.6;
}

.gs-page-hero .gs-btn {
  margin-top: 28px;
}

.gs-page-hero__media {
  width: min(100%, 1100px);
  margin: 40px auto 0;
  border-radius: var(--gs-radius-lg);
  overflow: hidden;
}

.gs-page-hero__media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 1100 / 460;
}

/* Who we serve */
.gs-stakeholders {
  background: #f4f7f0;
  padding: 96px 0;
  overflow: hidden;
}

.gs-stakeholders__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 48px;
  align-items: start;
}

.gs-stakeholders__copy h2 {
  color: var(--gs-ink);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.gs-stakeholders__copy > p {
  margin-top: 12px;
  max-width: 48ch;
  color: var(--gs-muted);
  font-size: 16px;
  line-height: 1.6;
}

.gs-stakeholders__list {
  margin-top: 36px;
  display: grid;
  gap: 8px;
}

.gs-stakeholder {
  border-bottom: 1px solid #d6decb;
  padding: 18px 0;
}

.gs-stakeholder summary {
  list-style: none;
  cursor: pointer;
}

.gs-stakeholder summary::-webkit-details-marker {
  display: none;
}

.gs-stakeholder__title {
  display: block;
  color: var(--gs-ink);
  font-size: 20px;
  font-weight: 700;
}

.gs-stakeholder__teaser {
  display: block;
  margin-top: 6px;
  color: var(--gs-muted);
  font-size: 15px;
  line-height: 1.5;
}

.gs-stakeholder__more {
  display: inline-flex;
  margin-top: 10px;
  color: var(--gs-green);
  font-size: 14px;
  font-weight: 600;
}

.gs-stakeholder__body {
  margin-top: 14px;
}

.gs-stakeholder__body > p {
  color: var(--gs-muted);
  font-size: 15px;
  line-height: 1.6;
}

.gs-stakeholders__media {
  margin: 0;
  position: sticky;
  top: 100px;
}

.gs-stakeholders__media img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: var(--gs-shadow);
  display: block;
}

/* About */
.gs-about-hero {
  padding: 64px 0 72px;
  background: #fff;
}

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

.gs-about-hero__copy h1 {
  margin-top: 12px;
  color: var(--gs-ink-green);
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.gs-about-hero__copy p {
  margin-top: 16px;
  max-width: 52ch;
  color: var(--gs-muted);
  font-size: 16px;
  line-height: 1.65;
}

.gs-about-hero__media {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
}

.gs-about-hero__media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

.gs-about-story {
  background: #f4f7f0;
  padding: 88px 0;
  text-align: center;
}

.gs-about-story__inner {
  max-width: 820px;
  margin: 0 auto;
}

.gs-about-story h2 {
  margin-top: 12px;
  color: var(--gs-ink);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
}

.gs-about-story p {
  margin-top: 18px;
  color: var(--gs-muted);
  font-size: 18px;
  line-height: 1.65;
}

.gs-about-pillar {
  padding: 56px 0;
  overflow: hidden;
}

.gs-about-pillar__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 0;
  align-items: center;
  width: min(100%, 1280px);
  margin-left: auto;
  margin-right: 0;
}

.gs-about-pillar--flip .gs-about-pillar__inner {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  margin-left: 0;
  margin-right: auto;
}

.gs-about-pillar__copy {
  padding: 32px clamp(24px, 6vw, 80px);
}

.gs-about-pillar__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: #e8f0dc;
  color: var(--gs-green-dark);
}

.gs-about-pillar__copy h3 {
  color: var(--gs-ink);
  font-size: 28px;
  font-weight: 700;
}

.gs-about-pillar__copy p {
  margin-top: 12px;
  max-width: 40ch;
  color: var(--gs-muted);
  font-size: 16px;
  line-height: 1.6;
}

.gs-about-pillar__media {
  margin: 0;
  height: 100%;
  min-height: 320px;
}

.gs-about-pillar__media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.gs-about-pillar--flip .gs-about-pillar__copy {
  order: 2;
}

.gs-about-pillar--flip .gs-about-pillar__media {
  order: 1;
}

.gs-about-join {
  padding: 48px 0 96px;
}

.gs-about-join__card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  border-radius: 24px;
  overflow: hidden;
  background: var(--gs-green-dark);
  color: #fff;
}

.gs-about-join__copy {
  padding: 48px 40px;
}

.gs-about-join__copy h2 {
  color: #fff;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 700;
}

.gs-about-join__copy p {
  margin-top: 14px;
  color: #d7e0cc;
  font-size: 16px;
  line-height: 1.6;
}

.gs-about-join__email {
  margin: 18px 0 24px !important;
}

.gs-about-join__email a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
}

.gs-about-join__media {
  margin: 0;
  min-height: 280px;
}

.gs-about-join__media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}

/* Resources / Support heroes */
.gs-resources-hero {
  background: var(--gs-green-dark);
  color: #fff;
  padding: 72px 0 64px;
  text-align: center;
}

.gs-resources-hero__inner {
  max-width: 720px;
  margin: 0 auto;
}

.gs-resources-hero h1 {
  margin-top: 12px;
  color: #fff;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.gs-resources-hero__lead {
  margin-top: 14px;
  color: #d7e0cc;
  font-size: 18px;
  line-height: 1.6;
}

.gs-subscribe {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
  flex-wrap: wrap;
}

.gs-subscribe input[type="email"] {
  flex: 1 1 260px;
  max-width: 360px;
  height: 48px;
  padding: 0 16px;
  border: 0;
  border-radius: 8px;
  font: inherit;
}

.gs-resources-hero__note {
  margin-top: 14px;
  color: #b8c9a5;
  font-size: 14px;
}

.gs-resources-hero__note a {
  color: #fff;
  text-decoration: underline;
}

.gs-resources {
  padding: 72px 0 96px;
  background: #fff;
}

.gs-resources__grid {
  margin-top: 0;
}

.gs-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}

.gs-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid var(--gs-line);
  border-radius: 8px;
  color: var(--gs-ink);
  text-decoration: none;
  font-weight: 600;
}

.gs-pagination .current {
  background: var(--gs-green);
  border-color: var(--gs-green);
  color: #fff;
}

.gs-support-search {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 480px;
  margin: 28px auto 0;
  padding: 0 16px;
  height: 52px;
  background: #fff;
  border-radius: 12px;
}

.gs-support-search input {
  flex: 1;
  border: 0;
  outline: 0;
  font: inherit;
  background: transparent;
}

.gs-support-faqs {
  padding: 72px 0 48px;
  background: #fff;
}

.gs-support-faqs__head {
  max-width: 640px;
  margin-bottom: 40px;
}

.gs-support-faqs__head h2 {
  color: var(--gs-ink);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
}

.gs-support-faqs__head p {
  margin-top: 12px;
  color: var(--gs-muted);
  font-size: 16px;
  line-height: 1.6;
}

.gs-support-faqs__head a {
  color: var(--gs-green);
  font-weight: 600;
}

.gs-support-faqs__list {
  display: grid;
  gap: 28px;
}

.gs-support-faq {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.gs-support-faq__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #f2f4f7;
  color: #475467;
}

.gs-support-faq h3 {
  color: var(--gs-ink);
  font-size: 18px;
  font-weight: 700;
}

.gs-support-faq p {
  margin-top: 8px;
  color: var(--gs-muted);
  font-size: 15px;
  line-height: 1.6;
}

.gs-support-contact {
  padding: 24px 0 96px;
  background: #fff;
}

.gs-support-contact__card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 40px;
  padding: 40px;
  border-radius: 24px;
  background: #f4f7f0;
}

.gs-support-contact__intro h2 {
  color: var(--gs-ink);
  font-size: 28px;
  font-weight: 700;
}

.gs-support-contact__intro p {
  margin-top: 12px;
  color: var(--gs-muted);
  font-size: 16px;
  line-height: 1.6;
}

.gs-pricing--page {
  padding-top: 72px;
}

.gs-pricing--page h1 {
  margin: 12px 0 0;
  color: #fff;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
}

@media (max-width: 1180px) {
  .gs-nav__submenu {
    position: static;
    transform: none;
    display: none;
    box-shadow: none;
    border: 0;
    padding: 0 0 0 12px;
    background: transparent;
  }

  body.gs-menu-open .gs-nav__dropdown .gs-nav__submenu {
    display: grid;
  }

  .gs-stakeholders__grid,
  .gs-about-hero__grid,
  .gs-about-pillar__inner,
  .gs-about-pillar--flip .gs-about-pillar__inner,
  .gs-about-join__card,
  .gs-support-contact__card {
    grid-template-columns: 1fr;
  }

  .gs-about-pillar--flip .gs-about-pillar__copy,
  .gs-about-pillar--flip .gs-about-pillar__media {
    order: initial;
  }

  .gs-about-pillar__inner,
  .gs-about-pillar--flip .gs-about-pillar__inner {
    width: 100%;
    margin: 0;
  }

  .gs-stakeholders__media {
    position: static;
  }

  .gs-subscribe {
    flex-direction: column;
    align-items: stretch;
  }

  .gs-subscribe input[type="email"] {
    max-width: none;
  }
}

