:root {
  --gh-orange: #f36b21;
  --gh-orange-dark: #cf4810;
  --gh-orange-soft: #fff1e8;
  --gh-red: #bd3c13;
  --gh-ink: #1c1b1a;
  --gh-text: #5f5a56;
  --gh-line: #e9e4df;
  --gh-soft: #f8f7f5;
  --gh-dark: #17130f;
  --gh-white: #fff;
  --gh-shadow: 0 18px 55px rgba(55, 33, 18, 0.1);
  --gh-radius: 18px;
  --gh-container: 1240px;
}

body.gh-home,
body.gh-has-home-nav {
  color: var(--gh-ink);
  background: #fff;
  font-family: Inter, Arial, Helvetica, sans-serif;
  padding-top: calc(var(--gh-topbar-height, 38px) + var(--gh-header-height, 86px));
}

.gh-home *,
.gh-home *::before,
.gh-home *::after,
.gh-has-home-nav *,
.gh-has-home-nav *::before,
.gh-has-home-nav *::after {
  box-sizing: border-box;
}

.gh-home img,
.gh-has-home-nav img {
  display: block;
  max-width: 100%;
}

.gh-home a,
.gh-has-home-nav a {
  text-decoration: none;
}

.gh-container {
  width: min(calc(100% - 40px), var(--gh-container));
  margin-inline: auto;
}

.gh-topbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 110;
  color: #fff;
  background: linear-gradient(90deg, #a92f0c, var(--gh-red), #d65320);
  font-size: 12px;
}

.gh-topbar-inner {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.gh-topbar-message {
  letter-spacing: 0.02em;
}

.gh-topbar-benefits {
  display: flex;
  align-items: center;
  gap: 22px;
}

.gh-topbar-benefits > span {
  opacity: 0.95;
}

.gh-language {
  position: relative;
}

.gh-language-toggle {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  border: 0;
  color: #fff;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
}

.gh-language-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  display: grid;
  width: 135px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 14px 35px rgba(35, 19, 10, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-5px);
  transition: 0.2s ease;
  backdrop-filter: blur(16px);
}

.gh-language.is-open .gh-language-menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.gh-language-menu a {
  padding: 7px 9px;
  border-radius: 6px;
  color: var(--gh-ink);
}

.gh-language-menu a:hover {
  color: var(--gh-orange-dark);
  background: var(--gh-orange-soft);
}

.gh-header {
  position: fixed;
  top: var(--gh-topbar-height, 38px);
  right: 0;
  left: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.94);
  transition: box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  backdrop-filter: blur(16px) saturate(145%);
}

.gh-header.is-scrolled {
  border-color: rgba(208, 94, 28, 0.12);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 35px rgba(52, 29, 14, 0.08);
}

.gh-header-inner {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.gh-brand {
  display: flex;
  min-width: 278px;
  align-items: center;
  gap: 12px;
  color: var(--gh-ink);
}

.gh-brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(145deg, #ff8c43, #e65312);
  box-shadow: 0 10px 25px rgba(224, 77, 13, 0.24);
  font-weight: 900;
}

.gh-company-logo {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  object-fit: contain;
}

.gh-custom-logo {
  width: auto;
  max-width: 180px;
  max-height: 54px;
}

.gh-brand-copy {
  display: grid;
  line-height: 1.1;
}

.gh-brand-copy strong {
  font-size: 14px;
  letter-spacing: 0.015em;
}

.gh-brand-copy small {
  margin-top: 5px;
  color: #7a726c;
  font-size: 9px;
  letter-spacing: 0.09em;
}

.gh-nav-panel {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  margin-left: 246px;
}

.gh-nav > ul {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.gh-nav li {
  position: relative;
}

.gh-nav li > a {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 12px 14px;
  border-radius: 9px;
  color: #302b27;
  font-size: 15px;
  font-weight: 750;
  white-space: nowrap;
  transition: color 0.22s ease, background 0.22s ease, transform 0.16s ease, box-shadow 0.22s ease;
}

.gh-nav li > a::after {
  position: absolute;
  right: 13px;
  bottom: 6px;
  left: 13px;
  height: 3px;
  border-radius: 4px;
  background: linear-gradient(90deg, #ff9b5d, var(--gh-orange-dark));
  content: "";
  opacity: 0;
  transform: scaleX(0);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.gh-nav li:hover > a,
.gh-nav li > a:focus,
.gh-nav li > a.is-active {
  color: var(--gh-orange-dark);
  background: #fff2e9;
  box-shadow: inset 0 0 0 1px rgba(243, 107, 33, 0.09);
}

.gh-nav li:hover > a::after,
.gh-nav li > a:focus::after,
.gh-nav li > a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.gh-nav li > a:active {
  transform: scale(0.94);
}

.gh-nav li > a.is-clicked {
  animation: gh-nav-click 0.38s ease;
}

@keyframes gh-nav-click {
  0% { box-shadow: 0 0 0 0 rgba(243, 107, 33, 0.34); }
  60% { box-shadow: 0 0 0 9px rgba(243, 107, 33, 0); }
  100% { box-shadow: 0 0 0 0 rgba(243, 107, 33, 0); }
}

.gh-dropdown-toggle {
  display: none;
}

.gh-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  display: grid;
  width: 315px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 25px 60px rgba(47, 27, 14, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  transition: 0.22s ease;
  backdrop-filter: blur(20px);
}

.gh-has-dropdown:hover .gh-dropdown,
.gh-has-dropdown:focus-within .gh-dropdown,
.gh-has-dropdown.is-open .gh-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.gh-dropdown a {
  display: grid;
  gap: 3px;
  padding: 11px 12px;
  border-radius: 9px;
  color: var(--gh-ink);
}

.gh-dropdown a:hover {
  background: var(--gh-orange-soft);
}

.gh-dropdown strong {
  font-size: 13px;
}

.gh-dropdown span {
  color: var(--gh-text);
  font-size: 11px;
}

.gh-header-quote {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #ff812f, #e45312);
  box-shadow: 0 10px 25px rgba(225, 82, 16, 0.2);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  margin-left: auto;
}

.gh-header-quote:hover {
  color: #fff;
  box-shadow: 0 14px 30px rgba(225, 82, 16, 0.28);
  transform: translateY(-2px);
}

.gh-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 0;
  border-radius: 9px;
  background: var(--gh-orange);
  cursor: pointer;
}

.gh-menu-toggle span {
  display: block;
  height: 2px;
  margin: 4px 0;
  border-radius: 2px;
  background: #fff;
  transition: 0.2s ease;
}

.gh-hero {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  color: #fff;
  background-color: #281006;
  background-image:
    linear-gradient(180deg, rgba(124, 40, 4, 0.03), rgba(18, 6, 2, 0.06));
}

.gh-hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.gh-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.gh-hero-photo::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(21, 7, 2, 0.72) 0%, rgba(39, 13, 3, 0.52) 28%, rgba(52, 17, 4, 0.22) 55%, rgba(34, 10, 2, 0.08) 100%),
    linear-gradient(180deg, rgba(124, 40, 4, 0.04), rgba(18, 6, 2, 0.12));
  content: "";
}

.gh-hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(rgba(255, 166, 107, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 166, 107, 0.055) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  opacity: 0.35;
  mask-image: linear-gradient(to right, #000, transparent 60%);
}

.gh-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  height: 160px;
  background: linear-gradient(180deg, transparent, rgba(21, 6, 1, 0.36));
  content: "";
  pointer-events: none;
}

.gh-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

.gh-hero-orb-one {
  top: -160px;
  right: 25%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255, 144, 75, 0.2), rgba(255, 144, 75, 0));
}

.gh-hero-orb-two {
  right: -220px;
  bottom: -250px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(238, 88, 19, 0.18), rgba(238, 88, 19, 0));
}

.gh-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 720px;
  grid-template-columns: minmax(0, 760px) 1fr;
  align-items: center;
  gap: 55px;
  padding-block: 82px 94px;
}

.gh-kicker,
.gh-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--gh-orange-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gh-kicker::before,
.gh-eyebrow::before {
  width: 30px;
  height: 3px;
  border-radius: 3px;
  background: var(--gh-orange);
  content: "";
}

.gh-hero h1 {
  max-width: 760px;
  margin: 20px 0 22px;
  color: #fff;
  font-size: clamp(45px, 5.25vw, 72px);
  line-height: 1.08;
  letter-spacing: -0.052em;
  text-shadow: 0 4px 30px rgba(15, 4, 0, 0.36);
}

.gh-hero-content > p {
  max-width: 650px;
  margin: 0;
  color: #fff;
  font-size: 17px;
  line-height: 1.75;
}

.gh-hero-content > p strong {
  color: #fff;
}

.gh-hero .gh-kicker {
  color: #ffb27d;
}

.gh-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 31px;
}

.gh-button {
  position: relative;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  overflow: hidden;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.22s ease, box-shadow 0.22s ease, color 0.22s ease, background 0.22s ease;
}

.gh-button::before {
  position: absolute;
  top: -80%;
  left: -35%;
  width: 30%;
  height: 250%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  content: "";
  transform: rotate(20deg) translateX(-240%);
  transition: transform 0.7s ease;
}

.gh-button:hover::before {
  transform: rotate(20deg) translateX(650%);
}

.gh-button:hover {
  transform: translateY(-3px);
}

.gh-button-primary {
  color: #fff;
  background: linear-gradient(135deg, #ff812f, #df4e0e);
  box-shadow: 0 14px 32px rgba(222, 75, 9, 0.22);
}

.gh-button-primary:hover {
  color: #fff;
  box-shadow: 0 18px 40px rgba(222, 75, 9, 0.3);
}

.gh-button-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 10px 28px rgba(21, 6, 1, 0.15);
  backdrop-filter: blur(12px);
}

.gh-button-light:hover {
  color: #4c1b07;
  border-color: #fff;
  background: #fff;
}

.gh-hero-points {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 38px;
}

.gh-hero-point {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

.gh-mini-icon {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 22px rgba(20, 5, 0, 0.15);
  backdrop-filter: blur(12px);
}

.gh-mini-icon svg {
  width: 16px;
  height: 16px;
}

.gh-hero-visual {
  position: relative;
}

.gh-banner-badges {
  display: grid;
  align-self: end;
  justify-self: end;
  gap: 12px;
  padding-bottom: 12px;
}

.gh-banner-badge {
  display: flex;
  min-width: 210px;
  align-items: center;
  gap: 11px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 14px;
  color: #fff;
  background: rgba(52, 17, 4, 0.5);
  box-shadow: 0 18px 42px rgba(17, 4, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px) saturate(140%);
}

.gh-banner-badge > strong {
  color: #ff9959;
  font-size: 28px;
}

.gh-banner-badge strong,
.gh-banner-badge span {
  display: block;
}

.gh-banner-badge div strong {
  font-size: 15px;
}

.gh-banner-badge span {
  color: #fff;
  font-size: 10px;
}

.gh-hero-image-shell {
  position: relative;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: 0 35px 90px rgba(98, 47, 18, 0.18);
  transform: rotate(1.5deg);
  backdrop-filter: blur(20px);
}

.gh-hero-image-shell::before {
  position: absolute;
  z-index: -1;
  inset: 20px -18px -18px 28px;
  border-radius: 30px;
  background: linear-gradient(145deg, #ffb17c, #f2671e);
  content: "";
  opacity: 0.52;
}

.gh-hero-image-shell > img {
  width: 100%;
  min-height: 490px;
  border-radius: 21px;
  object-fit: cover;
}

.gh-floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 15px 17px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 14px;
  color: var(--gh-ink);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 45px rgba(48, 27, 13, 0.15);
  backdrop-filter: blur(18px) saturate(145%);
}

.gh-floating-card strong,
.gh-floating-card span {
  display: block;
}

.gh-floating-card strong {
  font-size: 18px;
}

.gh-floating-card span {
  color: #75685e;
  font-size: 10px;
}

.gh-floating-card-top {
  top: 32px;
  left: -46px;
}

.gh-floating-card-top strong {
  color: var(--gh-orange);
  font-size: 30px;
}

.gh-floating-card-bottom {
  right: -28px;
  bottom: 38px;
}

.gh-status-dot {
  width: 11px;
  height: 11px;
  border: 3px solid #b7edc3;
  border-radius: 50%;
  background: #20b44a;
  box-shadow: 0 0 0 5px rgba(32, 180, 74, 0.11);
}

.gh-section {
  padding: 96px 0;
}

.gh-section-soft {
  background:
    radial-gradient(circle at 8% 15%, rgba(243, 107, 33, 0.055), transparent 26rem),
    var(--gh-soft);
}

.gh-section-heading {
  max-width: 760px;
  margin-bottom: 43px;
}

.gh-section-heading h2,
.gh-process-panel > h2,
.gh-advantage-panel > h2 {
  margin: 12px 0 13px;
  color: var(--gh-ink);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.14;
  letter-spacing: -0.035em;
}

.gh-section-heading p,
.gh-process-panel > p,
.gh-advantage-panel > p {
  margin: 0;
  color: var(--gh-text);
  font-size: 15px;
  line-height: 1.75;
}

.gh-heading-row {
  display: flex;
  max-width: none;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.gh-heading-row > div {
  max-width: 760px;
}

.gh-text-link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid #f1a779;
  color: var(--gh-orange-dark);
  font-size: 13px;
  font-weight: 800;
}

.gh-text-link span {
  transition: transform 0.2s ease;
}

.gh-text-link:hover span {
  transform: translateX(4px);
}

.gh-needs {
  padding-top: 86px;
}

.gh-needs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gh-info-card {
  padding: 30px 27px;
  border: 1px solid var(--gh-line);
  border-radius: var(--gh-radius);
  background: #fff;
  box-shadow: 0 8px 28px rgba(49, 31, 18, 0.045);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.gh-info-card:hover {
  border-color: #f3b58e;
  box-shadow: var(--gh-shadow);
  transform: translateY(-6px);
}

.gh-card-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 13px;
  color: var(--gh-orange-dark);
  background: linear-gradient(145deg, #fff4ed, #ffe0ce);
  box-shadow: inset 0 1px 0 #fff;
}

.gh-card-icon svg {
  width: 25px;
  height: 25px;
}

.gh-info-card h3,
.gh-why-card h3 {
  margin: 20px 0 8px;
  font-size: 18px;
}

.gh-info-card p,
.gh-why-card p {
  margin: 0;
  color: var(--gh-text);
  font-size: 13px;
  line-height: 1.7;
}

.gh-product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.gh-product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gh-line);
  border-radius: 15px;
  color: var(--gh-ink);
  background: #fff;
  box-shadow: 0 8px 28px rgba(46, 29, 17, 0.05);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.gh-product-card:hover {
  color: var(--gh-orange-dark);
  box-shadow: 0 20px 50px rgba(90, 45, 19, 0.13);
  transform: translateY(-7px);
}

.gh-product-image {
  position: relative;
  aspect-ratio: 1.1 / 1;
  overflow: hidden;
  background: #eee8e2;
}

.gh-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.gh-product-card:hover .gh-product-image img {
  transform: scale(1.075);
}

.gh-product-index {
  position: absolute;
  top: 12px;
  left: 12px;
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  color: #fff;
  background: rgba(34, 23, 16, 0.62);
  font-size: 10px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.gh-product-card h3 {
  min-height: 58px;
  padding: 18px 18px 8px;
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
}

.gh-product-price {
  display: block;
  min-height: 32px;
  padding: 0 18px 17px;
  color: var(--gh-orange-dark);
  font-size: 12px;
  font-weight: 900;
  text-align: right;
}

.gh-solution-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.gh-solution-card {
  overflow: hidden;
  border: 1px solid var(--gh-line);
  border-radius: var(--gh-radius);
  background: #fff;
  box-shadow: 0 10px 35px rgba(45, 28, 16, 0.055);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.gh-solution-card:hover {
  box-shadow: var(--gh-shadow);
  transform: translateY(-7px);
}

.gh-solution-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #eee;
}

.gh-solution-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gh-solution-card:hover img {
  transform: scale(1.06);
}

.gh-solution-content {
  position: relative;
  padding: 31px 22px 24px;
}

.gh-solution-icon {
  position: absolute;
  top: -27px;
  left: 21px;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 5px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, #ff8b3f, #dd4e0f);
  box-shadow: 0 10px 24px rgba(207, 72, 12, 0.22);
}

.gh-solution-icon svg {
  width: 21px;
  height: 21px;
}

.gh-solution-content h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

.gh-solution-content p {
  margin: 0;
  color: var(--gh-text);
  font-size: 12px;
  line-height: 1.7;
}

.gh-why {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 85% 10%, rgba(243, 107, 33, 0.24), transparent 32rem),
    linear-gradient(135deg, #18130f, #2a1b13);
}

.gh-why::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  content: "";
  mask-image: linear-gradient(to right, transparent, #000);
}

.gh-why .gh-container {
  position: relative;
  z-index: 2;
}

.gh-section-heading-light h2 {
  color: #fff;
}

.gh-section-heading-light p {
  color: #bfb5ae;
}

.gh-section-heading-light .gh-eyebrow {
  color: #ffb17c;
}

.gh-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gh-why-card {
  padding: 28px 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  backdrop-filter: blur(12px);
}

.gh-why-card:hover {
  border-color: rgba(255, 148, 84, 0.35);
  background: rgba(255, 115, 37, 0.11);
  transform: translateY(-5px);
}

.gh-why-card .gh-card-icon {
  color: #ffb27d;
  background: rgba(255, 132, 61, 0.12);
}

.gh-why-card h3 {
  color: #fff;
}

.gh-why-card p {
  color: #bfb5ae;
}

.gh-stat-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 45px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(12px);
}

.gh-stat {
  padding: 26px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.gh-stat:last-child {
  border-right: 0;
}

.gh-stat strong,
.gh-stat span {
  display: block;
}

.gh-stat strong {
  color: #ff914f;
  font-size: 27px;
  line-height: 1.2;
}

.gh-stat span {
  margin-top: 5px;
  color: #c8beb7;
  font-size: 11px;
}

.gh-strength-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.gh-strength-stat {
  padding: 24px 15px;
  border: 1px solid var(--gh-line);
  border-radius: 13px;
  background: #fff;
  text-align: center;
  box-shadow: 0 8px 25px rgba(52, 31, 17, 0.04);
}

.gh-strength-stat strong,
.gh-strength-stat span {
  display: block;
}

.gh-strength-stat strong {
  color: var(--gh-orange-dark);
  font-size: 25px;
}

.gh-strength-stat span {
  margin-top: 5px;
  color: var(--gh-text);
  font-size: 11px;
}

.gh-strength-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gh-strength-card {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border-radius: var(--gh-radius);
  background: #ddd;
  box-shadow: 0 13px 35px rgba(49, 29, 16, 0.1);
}

.gh-strength-card img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.gh-strength-card:hover img {
  transform: scale(1.06);
}

.gh-strength-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(22, 13, 8, 0.88));
  content: "";
}

.gh-strength-overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 24px 21px;
  color: #fff;
}

.gh-strength-overlay h3 {
  margin: 0 0 7px;
  font-size: 17px;
}

.gh-strength-overlay p {
  margin: 0;
  color: #d6cec8;
  font-size: 11px;
  line-height: 1.6;
}

.gh-process {
  background: #fff;
}

.gh-process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.gh-process-panel,
.gh-advantage-panel {
  padding: 44px;
  border: 1px solid var(--gh-line);
  border-radius: 22px;
}

.gh-process-panel {
  background: var(--gh-soft);
}

.gh-advantage-panel {
  color: #fff;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 133, 62, 0.28), transparent 22rem),
    linear-gradient(145deg, #2a1a11, #17120f);
}

.gh-advantage-panel .gh-eyebrow {
  color: #ffab75;
}

.gh-advantage-panel > h2 {
  color: #fff;
}

.gh-advantage-panel > p {
  color: #c7bcb5;
}

.gh-timeline {
  position: relative;
  display: grid;
  gap: 0;
  margin-top: 30px;
}

.gh-timeline::before {
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: 21px;
  width: 1px;
  background: #edc5ac;
  content: "";
}

.gh-timeline-item {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 17px;
  padding: 0 0 24px;
}

.gh-timeline-item:last-child {
  padding-bottom: 0;
}

.gh-timeline-item > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 5px solid var(--gh-soft);
  border-radius: 50%;
  color: #fff;
  background: var(--gh-orange);
  box-shadow: 0 7px 18px rgba(216, 73, 8, 0.2);
  font-size: 10px;
  font-weight: 800;
}

.gh-timeline-item h3,
.gh-advantage-item h3 {
  margin: 2px 0 5px;
  font-size: 16px;
}

.gh-timeline-item p,
.gh-advantage-item p {
  margin: 0;
  color: var(--gh-text);
  font-size: 12px;
  line-height: 1.65;
}

.gh-advantage-list {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.gh-advantage-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.055);
}

.gh-advantage-item > span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  color: #ffab75;
  background: rgba(255, 123, 48, 0.12);
}

.gh-advantage-item svg {
  width: 21px;
  height: 21px;
}

.gh-advantage-item h3 {
  color: #fff;
}

.gh-advantage-item p {
  color: #bfb4ad;
}

.gh-faq {
  background: var(--gh-soft);
}

.gh-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 14px 18px;
}

.gh-faq-item {
  overflow: hidden;
  border: 1px solid var(--gh-line);
  border-radius: 12px;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.gh-faq-item.is-open {
  border-color: #f0aa7d;
  box-shadow: 0 12px 35px rgba(91, 45, 19, 0.08);
}

.gh-faq-question {
  display: flex;
  width: 100%;
  min-height: 67px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 19px;
  border: 0;
  color: var(--gh-ink);
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-size: 14px;
  font-weight: 800;
}

.gh-faq-question i {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border-radius: 50%;
  background: var(--gh-orange-soft);
}

.gh-faq-question i::before,
.gh-faq-question i::after {
  position: absolute;
  top: 10px;
  left: 6px;
  width: 10px;
  height: 2px;
  background: var(--gh-orange-dark);
  content: "";
  transition: transform 0.2s ease;
}

.gh-faq-question i::after {
  transform: rotate(90deg);
}

.gh-faq-item.is-open .gh-faq-question i::after {
  transform: rotate(0);
}

.gh-faq-answer {
  padding: 0 19px 19px;
}

.gh-faq-answer p {
  padding-top: 15px;
  margin: 0;
  border-top: 1px solid var(--gh-line);
  color: var(--gh-text);
  font-size: 13px;
  line-height: 1.7;
}

.gh-home-blog {
  background:
    radial-gradient(circle at 12% 16%, rgba(255, 145, 59, 0.1), transparent 22rem),
    linear-gradient(180deg, #fffdfb, #fff6ee);
}

.gh-section-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gh-orange-dark);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.gh-section-link::after {
  content: ">";
}

.gh-home-blog-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.gh-home-blog-card {
  overflow: hidden;
  border: 1px solid rgba(133, 69, 31, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 32px rgba(111, 45, 8, 0.08);
}

.gh-home-blog-image {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.gh-home-blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.gh-home-blog-card:hover .gh-home-blog-image img {
  transform: scale(1.04);
}

.gh-home-blog-body {
  display: grid;
  min-height: 225px;
  padding: 18px 16px 17px;
  align-content: start;
}

.gh-home-blog-meta {
  margin-bottom: 10px;
  color: var(--gh-orange-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gh-home-blog-body h3 {
  margin: 0 0 10px;
  color: var(--gh-ink);
  font-size: 18px;
  line-height: 1.28;
}

.gh-home-blog-body h3 a {
  text-decoration: none;
}

.gh-home-blog-body p {
  margin: 0 0 16px;
  color: var(--gh-text);
  font-size: 13px;
  line-height: 1.68;
}

.gh-home-blog-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--gh-orange-dark);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.gh-home-blog-link::after {
  content: ">";
}

.gh-cta {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(112deg, #c3440c, #f36b21 58%, #ff8c45);
}

.gh-cta::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(120deg, rgba(255, 255, 255, 0.11), transparent 42%);
  content: "";
}

.gh-cta-orb {
  position: absolute;
  top: -190px;
  right: -100px;
  width: 430px;
  height: 430px;
  border: 70px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
}

.gh-cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 240px;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
  padding-block: 34px;
}

.gh-cta-inner > div:first-child {
  max-width: 750px;
}

.gh-cta-inner > div > span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gh-cta h2 {
  margin: 10px 0 10px;
  color: #fff;
  font-size: clamp(31px, 4vw, 47px);
  line-height: 1.14;
}

.gh-cta p {
  margin: 0;
  color: #ffe6d7;
}

.gh-cta .gh-button-row {
  flex: 0 0 auto;
  margin-top: 0;
}

.gh-button-white {
  color: var(--gh-orange-dark);
  background: #fff;
  box-shadow: 0 13px 30px rgba(86, 30, 5, 0.18);
}

.gh-button-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.08);
}

.gh-button-outline:hover {
  color: var(--gh-orange-dark);
  background: #fff;
}

.gh-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.gh-reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1180px) {
  .gh-brand {
    min-width: 235px;
  }

  .gh-brand-copy strong {
    font-size: 12px;
  }

  .gh-nav > ul {
    gap: 3px;
  }

  .gh-nav li > a {
    padding-inline: 10px;
    font-size: 14px;
  }

  .gh-header-quote {
    padding-inline: 14px;
  }

  .gh-hero-grid {
    gap: 42px;
  }

  .gh-product-grid {
    grid-template-columns: repeat(4, 1fr);
  }

}

@media (max-width: 1024px) {
  body.gh-home,
  body.gh-has-home-nav {
    padding-top: calc(var(--gh-topbar-height, 38px) + var(--gh-header-height, 74px));
  }

  .gh-menu-toggle {
    display: flex;
    flex: 0 0 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    padding: 0;
    margin-left: auto;
  }

  .gh-menu-toggle span {
    width: 21px;
    height: 2px;
    margin: 0;
  }

  .gh-nav-panel {
    position: fixed;
    top: var(--gh-mobile-top, 112px);
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    height: calc(100vh - var(--gh-mobile-top, 112px));
    overflow-y: auto;
    padding: 18px 20px 28px;
    border-top: 1px solid rgba(243, 107, 33, 0.14);
    margin-left: 0;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 22px 50px rgba(52, 29, 14, 0.16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: 0.22s ease;
    backdrop-filter: blur(20px);
  }

  .gh-menu-open .gh-nav-panel {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .gh-nav > ul {
    display: grid;
    gap: 8px;
  }

  .gh-nav li {
    border-bottom: 0;
  }

  .gh-nav li > a {
    padding: 14px 14px;
    border: 1px solid var(--gh-line);
    border-radius: 9px;
    font-size: 15px;
    background: #fff;
  }

  .gh-nav li > a::after {
    display: none;
  }

  .gh-dropdown-toggle {
    position: absolute;
    top: 6px;
    right: 7px;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 0;
    color: #fff;
    border-radius: 9px;
    background: var(--gh-orange);
    cursor: pointer;
  }

  .gh-dropdown {
    position: static;
    display: none;
    width: auto;
    padding: 8px 0 0 10px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .gh-has-dropdown.is-open .gh-dropdown {
    display: grid;
    transform: none;
  }

  .gh-dropdown a {
    background: #fff;
    border-left: 2px solid #f3b38c;
    border-radius: 0 8px 8px 0;
  }

  .gh-header-quote {
    width: 100%;
    margin-top: 18px;
  }

  .gh-hero-grid {
    grid-template-columns: 1fr;
    padding-top: 75px;
  }

  .gh-hero-content {
    max-width: 800px;
  }

  .gh-banner-badges {
    grid-template-columns: repeat(2, auto);
    align-self: auto;
    justify-self: start;
    padding-bottom: 0;
  }

  .gh-needs-grid,
  .gh-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gh-product-grid,
  .gh-solution-grid,
  .gh-strength-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .gh-strength-stats,
  .gh-stat-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .gh-stat {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .gh-process-grid {
    grid-template-columns: 1fr;
  }

  .gh-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .gh-home-blog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .gh-topbar-inner {
    min-height: auto;
    padding-block: 6px;
    justify-content: flex-end;
  }

  .gh-topbar-benefits {
    width: 100%;
    justify-content: flex-end;
    gap: 10px;
  }

  .gh-topbar .gh-container {
    width: 100%;
    padding-inline: 14px;
  }

  .gh-topbar .gh-language-toggle {
    min-height: 28px;
    max-width: min(210px, calc(100vw - 28px));
    padding: 0 10px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    white-space: nowrap;
  }

  .gh-topbar .gh-language-current-label {
    max-width: 135px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .gh-topbar-message,
  .gh-topbar-benefits > span:nth-child(1),
  .gh-topbar-benefits > span:nth-child(2),
  .gh-topbar-benefits > span:nth-child(3) {
    display: none;
  }

  .gh-header-inner {
    min-height: 74px;
    gap: 12px;
  }

  .gh-brand {
    min-width: 0;
  }

  .gh-brand-mark {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .gh-company-logo {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .gh-brand-copy strong {
    max-width: 180px;
    font-size: 11px;
  }

  .gh-brand-copy small {
    font-size: 7px;
  }

  .gh-hero h1 {
    font-size: clamp(39px, 11vw, 56px);
  }

  .gh-hero {
    background-image:
      linear-gradient(180deg, rgba(124, 40, 4, 0.03), rgba(18, 6, 2, 0.06));
  }

  .gh-hero-photo img {
    object-position: 64% center;
  }

  .gh-hero-points {
    grid-template-columns: repeat(2, 1fr);
  }

  .gh-floating-card-top {
    left: -10px;
  }

  .gh-floating-card-bottom {
    right: -5px;
  }

  .gh-section {
    padding: 75px 0;
  }

  .gh-heading-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .gh-faq-grid {
    grid-template-columns: 1fr;
  }

  .gh-home-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gh-cta .gh-button-row {
    width: 100%;
  }

}

/* Keep the fixed site bars aligned with the WordPress admin toolbar. */
body.admin-bar .gh-topbar {
  top: 32px;
}

body.admin-bar .gh-header {
  top: calc(32px + var(--gh-topbar-height, 38px));
}

@media (max-width: 782px) {
  body.admin-bar .gh-topbar {
    top: 46px;
  }

  body.admin-bar .gh-header {
    top: calc(46px + var(--gh-topbar-height, 38px));
  }
}

@media (max-width: 540px) {
  .gh-container {
    width: min(calc(100% - 28px), var(--gh-container));
  }

  .gh-brand-copy strong {
    max-width: 170px;
  }

  .gh-brand-copy small {
    display: none;
  }

  .gh-hero-grid {
    padding-block: 58px 70px;
  }

  .gh-hero-content > p {
    font-size: 15px;
  }

  .gh-banner-badges {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .gh-banner-badge {
    min-width: 0;
  }

  .gh-button-row {
    width: 100%;
    flex-direction: column;
  }

  .gh-button {
    width: 100%;
  }

  .gh-hero-image-shell {
    padding: 8px;
    border-radius: 20px;
  }

  .gh-hero-image-shell > img {
    min-height: 360px;
    border-radius: 14px;
  }

  .gh-floating-card {
    padding: 11px;
  }

  .gh-floating-card-top {
    top: 18px;
  }

  .gh-floating-card-top strong {
    font-size: 22px;
  }

  .gh-needs-grid,
  .gh-product-grid,
  .gh-solution-grid,
  .gh-why-grid,
  .gh-home-blog-grid,
  .gh-strength-stats,
  .gh-strength-gallery,
  .gh-stat-strip {
    grid-template-columns: 1fr;
  }

  .gh-stat {
    border-right: 0;
  }

  .gh-process-panel,
  .gh-advantage-panel {
    padding: 30px 22px;
  }

  .gh-strength-card,
  .gh-strength-card img {
    min-height: 300px;
  }

}

/* Prevent WordPress and page-builder global spacing from separating the header and first hero. */
.gh-topbar,
.gh-header,
.gh-header-inner,
#gh-main,
#gh-main > .gh-hero:first-child {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.gh-topbar {
  height: 38px;
  padding-block: 0 !important;
}

.gh-topbar-inner {
  height: 38px;
  min-height: 38px;
  padding-block: 0 !important;
}

.gh-header {
  height: 86px;
  padding-block: 0 !important;
}

.gh-header-inner {
  height: 86px;
  min-height: 86px;
  padding-block: 0 !important;
}

#gh-main {
  padding-top: 0 !important;
}

#gh-main > .gh-hero:first-child {
  display: block;
}

@media (max-width: 1024px) {
  .gh-header,
  .gh-header-inner {
    height: 74px;
    min-height: 74px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gh-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .gh-button,
  .gh-product-image img,
  .gh-solution-image img,
  .gh-strength-card img {
    transition: none;
  }
}
/* Shared Fluent Forms inquiry panels. */
.gh-form-panel {
  min-width: 0;
  padding: 44px;
  border: 1px solid var(--gh-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(58, 32, 17, 0.08);
}

.gh-form-panel > h2 {
  margin-bottom: 12px;
}

.gh-form-panel > p {
  margin: 0 0 26px;
  color: var(--gh-text);
  line-height: 1.7;
}

.gh-fluent-form,
.guoshun-fluent-form {
  min-width: 0;
}

.gh-fluent-form .ff-el-group,
.guoshun-fluent-form .ff-el-group {
  margin-bottom: 16px;
}

.gh-fluent-form .ff-el-input--label label,
.guoshun-fluent-form .ff-el-input--label label {
  color: #2d2019;
  font-size: 13px;
  font-weight: 800;
}

.gh-fluent-form .ff-el-form-control,
.guoshun-fluent-form .ff-el-form-control {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #d9cec7;
  border-radius: 6px;
  color: #2d2019;
  background: #fffdfb;
  box-shadow: none;
}

.gh-fluent-form textarea.ff-el-form-control,
.guoshun-fluent-form textarea.ff-el-form-control {
  min-height: 122px;
  resize: vertical;
}

.gh-fluent-form .ff-el-form-control:focus,
.guoshun-fluent-form .ff-el-form-control:focus {
  border-color: var(--gh-orange);
  box-shadow: 0 0 0 3px rgba(240, 88, 22, 0.12);
}

.gh-fluent-form .ff-btn-submit,
.guoshun-fluent-form .ff-btn-submit {
  min-height: 50px;
  padding: 0 24px;
  border: 0;
  border-radius: 6px;
  color: #fff;
  background: var(--gh-orange);
  font-weight: 800;
  cursor: pointer;
}

.gh-static-form-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.gh-static-form-preview label {
  display: grid;
  gap: 7px;
  color: #2d2019;
  font-size: 13px;
  font-weight: 800;
}

.gh-static-form-preview label:nth-of-type(4),
.gh-static-form-preview button {
  grid-column: 1 / -1;
}

.gh-static-form-preview input,
.gh-static-form-preview textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #d9cec7;
  border-radius: 6px;
  color: #2d2019;
  background: #fffdfb;
  font: inherit;
  font-weight: 400;
}

.gh-static-form-preview textarea {
  min-height: 122px;
  resize: vertical;
}

.gh-static-form-preview button {
  min-height: 50px;
  border: 0;
  border-radius: 6px;
  color: #fff;
  background: var(--gh-orange);
  font-weight: 800;
}

@media (max-width: 640px) {
  .gh-form-panel {
    padding: 28px 20px;
  }

  .gh-static-form-preview {
    grid-template-columns: 1fr;
  }

  .gh-static-form-preview label:nth-of-type(4),
  .gh-static-form-preview button {
    grid-column: auto;
  }
}

#products .gh-section-heading h2 {
  font-size: 58px;
  letter-spacing: 0;
}

@media (max-width: 900px) {
  #products .gh-section-heading h2 {
    font-size: 42px;
  }
}

@media (max-width: 640px) {
  #products .gh-section-heading h2 {
    font-size: 34px;
  }
}
