/*
Theme Name: ValueGuide Child
Template: hello-elementor
Text Domain: valueguide-child
Version: 1.0.0
Description: Premium business redesign for the ValueGuide website.
*/

:root {
  --vg-ink: #1f2527;
  --vg-ink-soft: #475054;
  --vg-line: rgba(31, 37, 39, 0.12);
  --vg-paper: #ffffff;
  --vg-paper-soft: #f5f4f1;
  --vg-mist: #dce8e5;
  --vg-sea: #2d6a60;
  --vg-sea-deep: #214e47;
  --vg-menu-underline: #1090e3;
  --vg-button: #01b902;
  --vg-button-hover: #018f02;
  --vg-clay: #c85c3e;
  --vg-rose: #f1dfd8;
  --vg-shadow: 0 20px 45px rgba(31, 37, 39, 0.10);
  --vg-shell: 1180px;
  --vg-radius: 6px;
  --vg-surface-radius: 8px;
  --vg-speed: 0.2s ease;
  --vg-reveal-duration: 1260ms;
  --vg-reveal-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --vg-reveal-distance-y: 24px;
  --vg-reveal-distance-x: 32px;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: no-preference) {
  body.vg-site--managed .vg-reveal-pending {
    opacity: 0;
    transform: translate3d(0, var(--vg-reveal-distance-y), 0);
    transition:
      opacity var(--vg-reveal-duration) var(--vg-reveal-ease),
      transform var(--vg-reveal-duration) var(--vg-reveal-ease);
    transition-delay: var(--vg-reveal-delay, 0ms);
    will-change: opacity, transform;
  }

  body.vg-site--managed .vg-reveal-pending.vg-reveal--left {
    transform: translate3d(calc(var(--vg-reveal-distance-x) * -1), 0, 0);
  }

  body.vg-site--managed .vg-reveal-pending.vg-reveal--right {
    transform: translate3d(var(--vg-reveal-distance-x), 0, 0);
  }

  body.vg-site--managed .vg-reveal-pending.is-visible {
    opacity: 1;
    transform: none;
  }
}

body.vg-site {
  background: var(--vg-paper);
  color: var(--vg-ink);
  font-family: Arial, Helvetica, sans-serif;
}

.vg-site a {
  color: inherit;
  text-decoration: none;
}

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

.vg-site .site-main,
.vg-site .page-content {
  margin: 0;
  padding: 0;
}

.vg-shell {
  width: min(calc(100% - 40px), var(--vg-shell));
  margin: 0 auto;
  display: block;
}

.vg-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.vg-eyebrow .elementor-heading-title {
  margin: 0;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  text-transform: inherit;
}

.vg-eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  opacity: 0.75;
}

.vg-band .vg-eyebrow {
  color: var(--vg-sea);
}

.vg-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 44px;
  line-height: 1.08;
  overflow-wrap: break-word;
}

.vg-title .elementor-heading-title {
  margin: 0;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

.vg-lead {
  margin: 0;
  font-size: 19px;
  line-height: 1.75;
  color: var(--vg-ink-soft);
}

.vg-lead .elementor-widget-container > :first-child,
.vg-intro .elementor-widget-container > :first-child,
.vg-text .elementor-widget-container > :first-child,
.vg-card__text .elementor-widget-container > :first-child,
.vg-proof-item__text .elementor-widget-container > :first-child,
.vg-step__text .elementor-widget-container > :first-child {
  margin-top: 0;
}

.vg-lead .elementor-widget-container > :last-child,
.vg-intro .elementor-widget-container > :last-child,
.vg-text .elementor-widget-container > :last-child,
.vg-card__text .elementor-widget-container > :last-child,
.vg-proof-item__text .elementor-widget-container > :last-child,
.vg-step__text .elementor-widget-container > :last-child {
  margin-bottom: 0;
}

.vg-lead .elementor-widget-container p {
  margin: 0;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

.vg-copy p,
.vg-intro,
.vg-text {
  margin: 0;
  font-size: 17px;
  line-height: 1.8;
  color: var(--vg-ink-soft);
}

.vg-intro .elementor-widget-container p,
.vg-text .elementor-widget-container p,
.vg-card__text .elementor-widget-container p,
.vg-proof-item__text .elementor-widget-container p,
.vg-step__text .elementor-widget-container p {
  margin: 0;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

.vg-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.vg-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: var(--vg-radius);
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 700;
  transition: transform var(--vg-speed), background var(--vg-speed), border-color var(--vg-speed), color var(--vg-speed);
}

.vg-button:hover,
.vg-button:focus-visible {
  transform: translateY(-1px);
}

.vg-button--primary {
  background: var(--vg-button);
  border-color: var(--vg-button);
  color: var(--vg-paper);
}

.vg-button--primary:hover,
.vg-button--primary:focus-visible {
  background: var(--vg-button-hover);
  border-color: var(--vg-button-hover);
}

.vg-button--secondary {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--vg-paper);
}

.vg-band .vg-button--secondary,
.vg-footer .vg-button--secondary {
  background: transparent;
  border-color: rgba(31, 37, 39, 0.18);
  color: var(--vg-ink);
}

.vg-band .vg-button--secondary:hover,
.vg-band .vg-button--secondary:focus-visible,
.vg-footer .vg-button--secondary:hover,
.vg-footer .vg-button--secondary:focus-visible {
  border-color: var(--vg-sea);
  color: var(--vg-sea);
}

.vg-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(31, 37, 39, 0.08);
  backdrop-filter: blur(14px);
}

.vg-header .vg-shell {
  width: min(calc(100% - 40px), 1520px);
}

.vg-header__inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  min-height: 88px;
}

.vg-brand {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.vg-brand__mark {
  display: block;
  flex: 0 0 auto;
  width: 128px;
}

.vg-brand__mark img {
  display: block;
  width: 100%;
  height: auto;
}

.vg-brand__copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.vg-brand__title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  line-height: 1;
  color: var(--vg-ink);
}

.vg-brand__tag {
  font-size: 13px;
  color: var(--vg-ink-soft);
}

.vg-header__meta {
  margin-left: 32px;
  margin-right: auto;
  font-size: 13px;
  color: var(--vg-ink-soft);
  white-space: nowrap;
}

.vg-header .site-navigation {
  flex: 0 0 100%;
  order: 4;
  margin-left: 0;
}

.vg-header .site-navigation-dropdown {
  margin-left: auto;
}

.vg-header .menu {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.vg-header .menu-item {
  position: relative;
  margin: 0;
}

.vg-header .menu-item a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  font-size: 15px;
  font-weight: 600;
  color: var(--vg-ink);
  white-space: nowrap;
}

.vg-header .menu-item.current-menu-item > a,
.vg-header .menu-item.current_page_parent > a,
.vg-header .menu-item a:hover,
.vg-header .menu-item a:focus-visible {
  color: var(--vg-sea);
}

.vg-header .sub-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 280px;
  padding: 12px;
  margin: 0;
  list-style: none;
  background: var(--vg-paper);
  border: 1px solid var(--vg-line);
  border-radius: var(--vg-radius);
  box-shadow: var(--vg-shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity var(--vg-speed), transform var(--vg-speed);
}

.vg-header .menu-item-has-children:hover > .sub-menu,
.vg-header .menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.vg-header .sub-menu a {
  min-height: 0;
  padding: 10px 6px;
  width: 100%;
}

.vg-header .site-navigation .menu {
  display: flex;
  width: 100%;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: clamp(14px, 1.3vw, 24px);
  padding: 6px 0 14px;
}

.vg-header .site-navigation .menu-item > a {
  position: relative;
  min-height: 52px;
  font-size: clamp(15px, 1.1vw, 19px);
  font-weight: 700;
  color: var(--vg-ink);
  line-height: 1.1;
}

.vg-header .site-navigation .menu-item > a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 4px;
  background: var(--vg-menu-underline);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--vg-speed);
}

.vg-header .site-navigation .menu-item.current-menu-item > a,
.vg-header .site-navigation .menu-item.current_page_parent > a,
.vg-header .site-navigation .menu-item.current-menu-ancestor > a,
.vg-header .site-navigation .menu-item.current_page_ancestor > a,
.vg-header .site-navigation .menu-item > a:hover,
.vg-header .site-navigation .menu-item > a:focus-visible {
  color: var(--vg-ink);
}

.vg-header .site-navigation .menu-item.current-menu-item > a::after,
.vg-header .site-navigation .menu-item.current_page_parent > a::after,
.vg-header .site-navigation .menu-item.current-menu-ancestor > a::after,
.vg-header .site-navigation .menu-item.current_page_ancestor > a::after,
.vg-header .site-navigation .menu-item:hover > a::after,
.vg-header .site-navigation .menu-item:focus-within > a::after {
  transform: scaleX(1);
}

.vg-header__cta {
  flex-shrink: 0;
}

.vg-header .site-navigation-toggle-holder {
  display: none;
  margin-left: auto;
}

.vg-page {
  padding-bottom: 64px;
}

.vg-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 540px;
  overflow: hidden;
  color: var(--vg-paper);
  background: var(--vg-ink);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.vg-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(31, 37, 39, 0.88) 0%, rgba(31, 37, 39, 0.52) 46%, rgba(31, 37, 39, 0.24) 100%);
  z-index: 1;
}

.vg-hero--plain {
  background: linear-gradient(135deg, #1f2527 0%, #214e47 100%);
}

.vg-hero--plain::before {
  background-image: linear-gradient(90deg, rgba(31, 37, 39, 0.86) 0%, rgba(31, 37, 39, 0.72) 52%, rgba(31, 37, 39, 0.58) 100%);
}

.vg-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 40px;
  align-items: end;
  padding: 104px 0 84px;
}

.vg-hero--panel .vg-hero__inner {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  align-items: center;
}

.vg-hero__copy {
  max-width: 760px;
  min-width: 0;
}

.vg-hero--panel .vg-hero__copy {
  max-width: 700px;
}

.vg-hero__copy .vg-title {
  color: var(--vg-paper);
}

.vg-hero__copy .vg-lead {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.84);
}

.vg-hero__list {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.vg-hero__list li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.86);
}

.vg-hero__list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--vg-clay);
}

.vg-hero__aside {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 14px;
  min-width: 0;
}

.vg-hero__aside-item {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding-top: 14px;
}

.vg-hero__aside-label {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.vg-hero__aside strong {
  display: block;
  font-size: 17px;
  line-height: 1.5;
}

.vg-hero__panel {
  display: grid;
  gap: 18px;
  min-width: 0;
  align-self: center;
}

.vg-hero__panel-media {
  overflow: hidden;
  border-radius: var(--vg-surface-radius);
  aspect-ratio: 434 / 500;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--vg-shadow);
}

.vg-hero__panel-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vg-hero__panel-copy {
  display: grid;
  gap: 8px;
}

.vg-hero__panel-eyebrow {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.74);
}

.vg-hero__panel-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1.1;
  color: var(--vg-paper);
}

.vg-hero__panel-text {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.84);
}

.vg-band {
  display: block;
  padding: 84px 0;
}

.vg-band--soft {
  background: var(--vg-paper-soft);
}

.home .elementor-element-04f2c85.vg-band--soft {
  background: var(--vg-paper);
}

.vg-band--mist {
  background: linear-gradient(180deg, rgba(245, 244, 241, 1) 0%, rgba(255, 255, 255, 1) 100%);
}

body.vg-site .elementor-element.elementor-element-bb8c061.vg-band--mist,
body.vg-site .elementor-element.elementor-element-870377e.vg-band--mist,
body.vg-site .elementor-element.elementor-element-d0675fa.vg-band--mist {
  background: #f5f4f1 !important;
}

.vg-band--accent {
  background: linear-gradient(180deg, rgba(245, 244, 241, 1) 0%, rgba(255, 255, 255, 1) 100%);
}

.vg-section-head {
  display: block;
  max-width: 760px;
  margin-bottom: 34px;
}

.vg-section-head .vg-title {
  font-size: 36px;
  color: var(--vg-ink);
}

.vg-section-head .vg-intro {
  margin-top: 14px;
}

.vg-card-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.vg-card-grid--4 .vg-card,
.vg-card-grid--2 .vg-card {
  grid-column: span 6;
}

.vg-card-grid--1 .vg-card {
  grid-column: 1 / -1;
}

.vg-card {
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 100%;
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--vg-line);
  border-radius: var(--vg-surface-radius);
  background: var(--vg-paper);
  box-shadow: var(--vg-shadow);
}

.vg-card--compact {
  padding: 24px;
}

.vg-card__eyebrow {
  color: var(--vg-sea);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.vg-card__eyebrow .elementor-heading-title,
.vg-proof-item__title .elementor-heading-title,
.vg-step__title .elementor-heading-title,
.vg-faq-group__title .elementor-heading-title,
.vg-hero__panel-title .elementor-heading-title {
  margin: 0;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  text-transform: inherit;
}

.vg-card__title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1.18;
}

.vg-card__title .elementor-heading-title {
  margin: 0;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.vg-card__text {
  margin: 0;
  color: var(--vg-ink-soft);
  font-size: 16px;
  line-height: 1.75;
}

.vg-card__meta {
  margin-top: auto;
  color: var(--vg-sea);
  font-size: 15px;
  font-weight: 700;
}

.vg-card__meta .elementor-widget-container {
  margin: 0;
}

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

.vg-proof-item {
  display: block;
  min-width: 0;
  padding: 22px 24px;
  border: 1px solid var(--vg-line);
  border-radius: var(--vg-surface-radius);
  background: var(--vg-paper);
  box-shadow: var(--vg-shadow);
}

.vg-proof-item__title {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.2;
  color: var(--vg-ink);
}

.vg-proof-item__title .elementor-heading-title {
  margin: 0;
}

.vg-proof-item__text {
  margin: 0;
  color: var(--vg-ink-soft);
  font-size: 15px;
  line-height: 1.75;
}

.vg-notice {
  display: block;
  padding: 28px;
  border: 1px solid var(--vg-line);
  border-radius: var(--vg-surface-radius);
  background: var(--vg-paper);
  box-shadow: var(--vg-shadow);
}

.vg-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.vg-step {
  display: block;
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--vg-line);
  border-radius: var(--vg-surface-radius);
  background: var(--vg-paper);
}

.vg-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--vg-mist);
  color: var(--vg-sea-deep);
  font-size: 16px;
  font-weight: 700;
}

.vg-step__title {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.2;
}

.vg-step__title .elementor-heading-title {
  margin: 0;
}

.vg-step__text {
  margin: 0;
  color: var(--vg-ink-soft);
  font-size: 16px;
  line-height: 1.75;
}

.vg-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  gap: 36px;
  align-items: center;
}

.vg-split--reverse {
  grid-template-columns: minmax(320px, 480px) minmax(0, 1fr);
}

.vg-split--reverse .vg-split__image {
  order: -1;
}

.vg-copy {
  display: grid;
  gap: 18px;
}

.vg-copy ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.vg-copy li {
  position: relative;
  padding-left: 22px;
  color: var(--vg-ink-soft);
  font-size: 16px;
  line-height: 1.75;
}

.vg-copy li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--vg-clay);
}

.vg-split__image {
  min-height: 440px;
  border-radius: var(--vg-surface-radius);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.vg-faq-groups {
  display: grid;
  gap: 28px;
}

.vg-faq-group {
  border-top: 1px solid var(--vg-line);
  padding-top: 20px;
  min-width: 0;
}

.vg-faq-group__title {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
}

.vg-faq-group__title .elementor-heading-title {
  margin: 0;
}

.vg-faq-group__action {
  margin-top: 16px;
}

.vg-accordion {
  display: grid;
  gap: 12px;
}

.vg-accordion details {
  border: 1px solid var(--vg-line);
  border-radius: var(--vg-surface-radius);
  background: var(--vg-paper);
  box-shadow: var(--vg-shadow);
  overflow: hidden;
}

.vg-accordion summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-size: 18px;
  font-weight: 700;
}

.vg-accordion summary::-webkit-details-marker {
  display: none;
}

.vg-accordion summary::after {
  content: "+";
  float: right;
  color: var(--vg-sea);
}

.vg-accordion details[open] summary::after {
  content: "-";
}

.vg-accordion__body {
  padding: 0 24px 22px;
  color: var(--vg-ink-soft);
  font-size: 16px;
  line-height: 1.75;
}

.vg-intake {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
  gap: 30px;
  align-items: start;
}

.vg-intake__copy {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.vg-form-wrap {
  min-width: 0;
}

.vg-form-shell {
  padding: 28px;
  border: 1px solid var(--vg-line);
  border-radius: var(--vg-surface-radius);
  background: var(--vg-paper);
  box-shadow: var(--vg-shadow);
}

.vg-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.vg-form-field {
  display: grid;
  gap: 8px;
}

.vg-form-field--full {
  grid-column: 1 / -1;
}

.vg-form-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--vg-ink);
}

.vg-form-input,
.vg-form-textarea,
.vg-form-select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(31, 37, 39, 0.18);
  border-radius: var(--vg-surface-radius);
  background: #fff;
  color: var(--vg-ink);
  font-size: 15px;
}

.vg-form-textarea {
  min-height: 132px;
  resize: vertical;
}

.vg-form-input:focus,
.vg-form-textarea:focus,
.vg-form-select:focus {
  outline: none;
  border-color: var(--vg-sea);
  box-shadow: 0 0 0 3px rgba(45, 106, 96, 0.12);
}

.vg-form-note {
  margin-top: 14px;
  color: var(--vg-ink-soft);
  font-size: 13px;
  line-height: 1.7;
}

.vg-form-status {
  margin-bottom: 14px;
  padding: 14px 16px;
  border-radius: var(--vg-surface-radius);
  font-size: 14px;
  line-height: 1.7;
}

.vg-form-status--success {
  background: rgba(45, 106, 96, 0.12);
  color: var(--vg-sea-deep);
}

.vg-form-status--error {
  background: rgba(200, 92, 62, 0.12);
  color: #8c3821;
}

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

.vg-footer {
  background: var(--vg-ink);
  color: rgba(255, 255, 255, 0.84);
  padding: 72px 0 32px;
}

.vg-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(180px, 1fr));
  gap: 30px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.vg-footer__brand .vg-brand__title {
  color: var(--vg-paper);
}

.vg-footer__text {
  margin-top: 16px;
  max-width: 420px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.8;
}

.vg-footer__title {
  margin: 0 0 14px;
  color: var(--vg-paper);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.vg-footer__links,
.vg-footer__meta {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.vg-footer__links a:hover,
.vg-footer__links a:focus-visible {
  color: var(--vg-paper);
}

.vg-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 22px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.vg-site .page-content {
  width: min(calc(100% - 40px), 880px);
  margin: 0 auto;
  padding: 72px 0;
}

.vg-site--managed .page-content {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.vg-mobile-cta {
  display: none;
}

@media (max-width: 1100px) {
  .vg-header__meta {
    display: none;
  }

  .vg-hero__inner,
  .vg-intake,
  .vg-split,
  .vg-split--reverse,
  .vg-footer__top {
    grid-template-columns: 1fr;
  }

  .vg-hero__panel {
    max-width: 360px;
  }

  .vg-split--reverse .vg-split__image {
    order: 0;
  }

  .vg-card,
  .vg-step {
    grid-column: span 6;
  }

  .vg-proof-grid {
    grid-template-columns: 1fr;
  }

  .vg-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vg-contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .vg-header__inner {
    min-height: 78px;
  }

  .vg-brand__mark {
    width: 104px;
  }

  .vg-header .site-navigation {
    display: none;
  }

  .vg-header .site-navigation-toggle-holder {
    display: block;
  }

  .vg-header .site-navigation-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 18px 20px 22px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(31, 37, 39, 0.08);
    box-shadow: var(--vg-shadow);
  }

  .vg-header .site-navigation-dropdown .menu {
    display: grid;
    gap: 8px;
  }

  .vg-header .site-navigation-dropdown .sub-menu {
    position: static;
    min-width: 0;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    margin-top: 8px;
    box-shadow: none;
  }

  .vg-header__cta {
    display: none;
  }

  .vg-hero {
    min-height: 500px;
  }

  .vg-hero__inner {
    padding: 88px 0 64px;
  }

  .vg-hero__panel {
    max-width: 320px;
  }

  .vg-title {
    font-size: 36px;
  }

  .vg-section-head .vg-title {
    font-size: 30px;
  }

  .vg-page {
    padding-bottom: 108px;
  }

  .vg-mobile-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1001;
    display: block;
    padding: 12px 0 calc(12px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid rgba(31, 37, 39, 0.12);
    backdrop-filter: blur(14px);
  }

  .vg-mobile-cta .vg-button {
    width: 100%;
    min-height: 52px;
  }
}

@media (max-width: 720px) {
  .vg-shell {
    width: min(calc(100% - 28px), var(--vg-shell));
  }

  .vg-band {
    padding: 62px 0;
  }

  .vg-card-grid,
  .vg-steps,
  .vg-form-grid {
    grid-template-columns: 1fr;
  }

  .vg-card,
  .vg-step {
    grid-column: span 1;
  }

  .vg-title {
    font-size: 28px;
    max-width: 100%;
  }

  .vg-hero__copy .vg-lead,
  .vg-lead {
    font-size: 17px;
  }

  .vg-header__inner {
    gap: 16px;
  }

  .vg-brand {
    gap: 12px;
  }

  .vg-brand__mark {
    width: 84px;
  }

  .vg-brand__title {
    font-size: 24px;
  }

  .vg-brand__tag {
    font-size: 12px;
  }

  .vg-split__image {
    min-height: 280px;
  }

  .vg-hero__panel {
    max-width: 100%;
  }

  .vg-hero__panel-title {
    font-size: 26px;
  }

  .vg-form-shell {
    padding: 22px;
  }

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