:root {
  --gcontact-red: #e02b20;
  --gcontact-red-dark: #b91f18;
  --gcontact-blue: #154a99;
  --gcontact-blue-dark: #0d326b;
  --gcontact-ink: #172231;
  --gcontact-copy: #4e5b69;
  --gcontact-line: #dce2e9;
  --gcontact-soft: #f3f6f9;
  --gcontact-white: #fff;
  --gcontact-shadow: 0 24px 70px rgba(14, 45, 82, 0.12);
}

.et_pb_section:has(.gcontact-breakout),
.et_pb_row:has(.gcontact-breakout),
.et_pb_column:has(.gcontact-breakout),
.et_pb_module:has(.gcontact-breakout),
.et_pb_text_inner:has(.gcontact-breakout),
.et_pb_text_inner pre:has(.gcontact-breakout),
.et_pb_text_inner code:has(.gcontact-breakout) {
  border: 0 !important;
  margin: 0 !important;
  max-width: none !important;
  padding: 0 !important;
  width: 100% !important;
}

.et_pb_text_inner pre:has(.gcontact-breakout),
.et_pb_text_inner code:has(.gcontact-breakout) {
  background: transparent !important;
  display: block !important;
  font: inherit !important;
  line-height: inherit !important;
  overflow: visible !important;
  white-space: normal !important;
}

.gcontact-breakout,
.gcontact-breakout * {
  box-sizing: border-box;
}

.gcontact-breakout {
  margin: 0;
  overflow: hidden;
  overflow: clip;
  position: relative;
  white-space: normal !important;
  width: 100%;
}

.gcontact-root {
  background: var(--gcontact-white);
  color: var(--gcontact-ink);
  font-family: "Open Sans", Arial, sans-serif;
  line-height: 1.5;
  white-space: normal !important;
  width: 100%;
}

.gcontact-root * {
  white-space: normal;
}

.gcontact-root a {
  text-decoration: none;
}

.gcontact-root a:focus-visible,
.gcontact-root input:focus-visible,
.gcontact-root select:focus-visible,
.gcontact-root textarea:focus-visible,
.gcontact-root button:focus-visible {
  outline: 3px solid rgba(21, 74, 153, 0.3);
  outline-offset: 3px;
}

.gcontact-root h1,
.gcontact-root h2,
.gcontact-root h3,
.gcontact-root p {
  margin-top: 0;
}

.gcontact-root h1,
.gcontact-root h2,
.gcontact-root h3 {
  color: var(--gcontact-ink);
  font-family: Roboto, Helvetica, Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.gcontact-container {
  margin: 0 auto;
  max-width: 1440px;
  padding-left: clamp(20px, 4vw, 64px);
  padding-right: clamp(20px, 4vw, 64px);
  width: 100%;
}

.gcontact-eyebrow {
  color: var(--gcontact-blue);
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.gcontact-hero {
  background: linear-gradient(115deg, #fff 0%, #f6f8fb 58%, #eaf0f6 100%);
  border-bottom: 1px solid var(--gcontact-line);
  overflow: hidden;
  position: relative;
}

.gcontact-hero::before {
  background: var(--gcontact-red);
  content: "";
  height: 8px;
  left: 0;
  position: absolute;
  top: 0;
  width: min(34vw, 520px);
}

.gcontact-hero::after {
  background-image: linear-gradient(rgba(21, 74, 153, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(21, 74, 153, 0.045) 1px, transparent 1px);
  background-size: 36px 36px;
  content: "";
  inset: 0 0 0 54%;
  mask-image: linear-gradient(90deg, transparent, #000 25%);
  pointer-events: none;
  position: absolute;
}

.gcontact-hero-grid {
  align-items: center;
  display: grid;
  gap: clamp(38px, 6vw, 86px);
  grid-template-columns: minmax(0, 1.12fr) minmax(350px, 0.88fr);
  min-height: 470px;
  padding-bottom: clamp(50px, 5vw, 68px);
  padding-top: clamp(58px, 6vw, 76px);
  position: relative;
  z-index: 1;
}

.gcontact-hero h1 {
  font-size: clamp(44px, 4.4vw, 64px);
  line-height: 1.02;
  margin-bottom: 24px;
  max-width: 860px;
}

.gcontact-hero-grid > div:first-child > p {
  color: var(--gcontact-copy);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.7;
  margin-bottom: 0;
  max-width: 760px;
}

.gcontact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.gcontact-button {
  align-items: center;
  border: 2px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-size: 15px;
  font-weight: 800;
  gap: 9px;
  justify-content: center;
  min-height: 54px;
  padding: 13px 25px;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.gcontact-button:hover {
  transform: translateY(-2px);
}

.gcontact-button-primary {
  background: var(--gcontact-red);
  box-shadow: 0 12px 28px rgba(224, 43, 32, 0.22);
  color: var(--gcontact-white);
}

.gcontact-button-primary:hover {
  background: var(--gcontact-red-dark);
  color: var(--gcontact-white);
}

.gcontact-button-secondary {
  background: transparent;
  border-color: var(--gcontact-blue);
  color: var(--gcontact-blue);
}

.gcontact-button-secondary:hover {
  background: var(--gcontact-blue);
  color: var(--gcontact-white);
}

.gcontact-hero-panel {
  background: var(--gcontact-blue-dark);
  border-radius: 24px;
  box-shadow: var(--gcontact-shadow);
  color: var(--gcontact-white);
  overflow: hidden;
  padding: clamp(30px, 3.4vw, 44px);
  position: relative;
}

.gcontact-hero-panel::after {
  border: 54px solid rgba(255, 255, 255, 0.055);
  border-radius: 50%;
  content: "";
  height: 280px;
  position: absolute;
  right: -110px;
  top: -130px;
  width: 280px;
}

.gcontact-hero-panel > span {
  color: #9dc2fa;
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.gcontact-hero-panel strong {
  color: var(--gcontact-white);
  display: block;
  font-family: Roboto, Helvetica, Arial, sans-serif;
  font-size: clamp(28px, 2.6vw, 36px);
  line-height: 1.08;
  position: relative;
  z-index: 1;
}

.gcontact-hero-panel ul {
  display: grid;
  gap: 11px;
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  position: relative;
  z-index: 1;
}

.gcontact-hero-panel li {
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.72);
  display: flex;
  font-size: 14px;
  gap: 10px;
  line-height: 1.5;
}

.gcontact-hero-panel li::before {
  color: #9dc2fa;
  content: "✓";
  flex: 0 0 auto;
  font-weight: 900;
}

.gcontact-quick {
  background: var(--gcontact-blue-dark);
  color: var(--gcontact-white);
}

.gcontact-quick-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gcontact-quick-grid > a {
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--gcontact-white);
  display: block;
  padding: 20px clamp(20px, 3vw, 38px);
}

.gcontact-quick-grid > a:first-child {
  padding-left: 0;
}

.gcontact-quick-grid > a:last-child {
  border-right: 0;
  padding-right: 0;
}

.gcontact-quick-grid span,
.gcontact-quick-grid strong,
.gcontact-quick-grid small {
  display: block;
}

.gcontact-quick-grid span {
  color: #9dc2fa;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.gcontact-quick-grid strong {
  color: var(--gcontact-white);
  font-size: 17px;
  line-height: 1.35;
}

.gcontact-quick-grid small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.5;
  margin-top: 5px;
}

.gcontact-section {
  padding-bottom: clamp(58px, 6vw, 82px);
  padding-top: clamp(58px, 6vw, 82px);
}

.gcontact-heading {
  align-items: end;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  margin-bottom: clamp(36px, 4vw, 52px);
}

.gcontact-heading h2,
.gcontact-form-copy h2,
.gcontact-location-copy h2 {
  font-size: clamp(38px, 4vw, 60px);
  line-height: 1.08;
  margin-bottom: 0;
}

.gcontact-heading > p,
.gcontact-form-copy > p,
.gcontact-location-copy > p {
  color: var(--gcontact-copy);
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 0;
}

.gcontact-team-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gcontact-team-grid article {
  align-items: center;
  border: 1px solid var(--gcontact-line);
  border-radius: 22px;
  display: grid;
  gap: 18px;
  grid-template-columns: auto minmax(0, 1fr);
  min-height: 0;
  padding: clamp(22px, 2.4vw, 30px);
}

.gcontact-person-mark {
  align-items: center;
  background: var(--gcontact-soft);
  border-radius: 16px;
  color: var(--gcontact-blue);
  display: inline-flex;
  height: 48px;
  justify-content: center;
  margin-bottom: 0;
  width: 48px;
}

.gcontact-person-mark svg {
  fill: none;
  height: 23px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 23px;
}

.gcontact-team-grid h3 {
  font-size: 22px;
  margin-bottom: 7px;
}

.gcontact-team-grid a {
  color: var(--gcontact-copy);
  display: block;
  font-size: 14px;
  line-height: 1.6;
  margin-top: 4px;
  overflow-wrap: anywhere;
}

.gcontact-team-grid a:hover {
  color: var(--gcontact-red);
}

.gcontact-team-grid a span {
  color: var(--gcontact-blue);
  font-weight: 800;
}

.gcontact-team {
  padding-bottom: clamp(48px, 5vw, 66px);
  padding-top: clamp(48px, 5vw, 66px);
}

.gcontact-team-heading {
  display: block;
  margin-bottom: 28px;
  max-width: 880px;
}

.gcontact-team-heading h2 {
  font-size: clamp(34px, 3.4vw, 48px);
}

.gcontact-form-section {
  background: var(--gcontact-soft);
}

.gcontact-form-grid {
  align-items: start;
  display: grid;
  gap: clamp(42px, 6vw, 78px);
  grid-template-columns: minmax(0, 0.76fr) minmax(520px, 1.24fr);
}

.gcontact-form-copy {
  position: sticky;
  top: 40px;
}

.gcontact-form-copy h2 {
  margin-bottom: 20px;
}

.gcontact-form-note {
  background: var(--gcontact-white);
  border-left: 4px solid var(--gcontact-blue);
  border-radius: 12px;
  display: grid;
  gap: 6px;
  margin-top: 26px;
  padding: 17px 19px;
}

.gcontact-form-note strong {
  color: var(--gcontact-ink);
}

.gcontact-form-note span {
  color: var(--gcontact-copy);
  font-size: 14px;
  line-height: 1.6;
}

.gcontact-form-note a {
  color: var(--gcontact-blue);
  font-weight: 800;
}

.gcontact-form-card {
  background: var(--gcontact-white);
  border: 1px solid var(--gcontact-line);
  border-radius: 22px;
  box-shadow: var(--gcontact-shadow);
  padding: clamp(24px, 3vw, 36px);
}

.gcontact-field-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 24px;
}

.gcontact-field-grid label {
  display: block;
}

.gcontact-field-grid label > span {
  color: var(--gcontact-ink);
  display: block;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 7px;
}

.gcontact-field-grid label > span b {
  color: var(--gcontact-red);
}

.gcontact-field-grid input,
.gcontact-field-grid select,
.gcontact-field-grid textarea {
  background: #fff;
  border: 1px solid #cfd7e1;
  border-radius: 10px;
  color: var(--gcontact-ink);
  font: inherit;
  min-height: 46px;
  padding: 10px 13px;
  width: 100%;
}

.gcontact-field-grid textarea {
  min-height: 126px;
  resize: vertical;
}

.gcontact-field-wide {
  grid-column: 1 / -1;
}

.gcontact-honeypot {
  height: 1px;
  left: -10000px;
  overflow: hidden;
  position: absolute;
  top: auto;
  width: 1px;
}

.gcontact-status {
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 22px;
  padding: 14px 16px;
}

.gcontact-status-success {
  background: #e9f7ef;
  color: #176638;
}

.gcontact-status-error {
  background: #fff0ef;
  color: #9b221b;
}

.gcontact-location {
  background: var(--gcontact-white);
}

.gcontact-location-grid {
  align-items: stretch;
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(310px, 0.34fr) minmax(0, 0.66fr);
}

.gcontact-location-copy {
  background: var(--gcontact-blue-dark);
  border-radius: 26px;
  color: var(--gcontact-white);
  padding: clamp(30px, 3.4vw, 44px);
}

.gcontact-location-copy .gcontact-eyebrow {
  color: #9dc2fa;
}

.gcontact-location-copy h2,
.gcontact-location-copy > strong {
  color: var(--gcontact-white);
}

.gcontact-location-copy h2 {
  margin-bottom: 26px;
}

.gcontact-location-copy > strong {
  display: block;
  font-size: 18px;
  margin-bottom: 10px;
}

.gcontact-location-copy > p {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 28px;
}

.gcontact-location-copy .gcontact-button-secondary {
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--gcontact-white);
}

.gcontact-location-copy .gcontact-button-secondary:hover {
  background: var(--gcontact-white);
  color: var(--gcontact-blue-dark);
}

.gcontact-map {
  border: 1px solid var(--gcontact-line);
  border-radius: 26px;
  min-height: 420px;
  overflow: hidden;
}

.gcontact-map iframe {
  border: 0;
  display: block;
  height: 100%;
  min-height: 420px;
  width: 100%;
}

@media (max-width: 980px) {
  .gcontact-hero-grid,
  .gcontact-form-grid,
  .gcontact-location-grid {
    grid-template-columns: 1fr;
  }

  .gcontact-hero-grid {
    min-height: 0;
  }

  .gcontact-hero-panel {
    max-width: 720px;
  }

  .gcontact-heading {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .gcontact-form-copy {
    position: static;
  }

  .gcontact-map,
  .gcontact-map iframe {
    min-height: 460px;
  }
}

@media (max-width: 760px) {
  .gcontact-quick-grid,
  .gcontact-team-grid {
    grid-template-columns: 1fr;
  }

  .gcontact-quick-grid > a,
  .gcontact-quick-grid > a:first-child,
  .gcontact-quick-grid > a:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    border-right: 0;
    padding: 22px 0;
  }

  .gcontact-quick-grid > a:last-child {
    border-bottom: 0;
  }

  .gcontact-team-grid article {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .gcontact-container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .gcontact-hero h1 {
    font-size: clamp(42px, 12vw, 56px);
  }

  .gcontact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .gcontact-button {
    width: 100%;
  }

  .gcontact-heading h2,
  .gcontact-form-copy h2,
  .gcontact-location-copy h2 {
    font-size: clamp(34px, 10vw, 45px);
  }

  .gcontact-field-grid {
    grid-template-columns: 1fr;
  }

  .gcontact-field-wide {
    grid-column: auto;
  }

  .gcontact-form-card {
    border-radius: 18px;
    padding: 22px 18px;
  }

  .gcontact-map,
  .gcontact-map iframe {
    min-height: 360px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gcontact-root *,
  .gcontact-root *::before,
  .gcontact-root *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
