:root {
  --gv-black: #050A0D;
  --gv-black-soft: #091115;
  --gv-petrol-dark: #061F26;
  --gv-petrol: #063C47;
  --gv-petrol-light: #0C4F59;
  --gv-petrol-glow: #0E6B73;
  --gv-gold-dark: #A9782E;
  --gv-gold: #D9B767;
  --gv-gold-light: #F0D27D;
  --gv-white: #FFFFFF;
  --gv-off-white: #F4F7F7;
  --gv-gray: #AEBBC0;
  --gv-gray-dark: #66767C;
  --gv-border: rgba(240, 210, 125, 0.18);
  --gv-card: rgba(255, 255, 255, 0.06);
  --gv-card-strong: rgba(255, 255, 255, 0.10);
  --petrol: var(--gv-petrol);
  --petrol-light: var(--gv-petrol-glow);
  --black: var(--gv-black);
  --dark: #10191d;
  --gray: var(--gv-gray-dark);
  --line: rgba(6, 60, 71, 0.14);
  --soft: var(--gv-off-white);
  --white: var(--gv-white);
  --gold: var(--gv-gold);
  --gold-light: var(--gv-gold-light);
  --gold-muted: var(--gv-gold-dark);
  --glass: var(--gv-card);
  --shadow: 0 28px 85px rgba(5, 10, 13, 0.2);
  --shadow-deep: 0 38px 110px rgba(5, 10, 13, 0.34);
  --radius: 8px;
  --container: 1140px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--dark);
  background: var(--gv-off-white);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

.narrow {
  max-width: 850px;
}

.centered {
  text-align: center;
}

.section-dark {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 18%, rgba(14, 107, 115, 0.42), transparent 32%),
    radial-gradient(circle at 88% 8%, rgba(240, 210, 125, 0.17), transparent 30%),
    linear-gradient(135deg, #050A0D 0%, #061F26 38%, #063C47 100%);
}

.section-light {
  background: var(--white);
}

.section-soft {
  background:
    radial-gradient(circle at 12% 0%, rgba(6, 60, 71, 0.09), transparent 28%),
    linear-gradient(180deg, #f9fbfb 0%, #eef4f4 100%);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: calc(100% - clamp(24px, 5vw, 64px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 88px;
  margin: 12px clamp(12px, 2.5vw, 32px) 0;
  padding: 10px clamp(16px, 2.5vw, 26px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(5, 10, 13, 0.9), rgba(6, 31, 38, 0.82)),
    rgba(5, 10, 13, 0.72);
  border: 1px solid rgba(240, 210, 125, 0.14);
  border-bottom-color: rgba(240, 210, 125, 0.28);
  border-radius: 18px;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(24px) saturate(130%);
}

.site-header::before {
  position: absolute;
  inset: 1px;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(240, 210, 125, 0.18), transparent 34%, rgba(14, 107, 115, 0.2)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent);
  border-radius: inherit;
  pointer-events: none;
}

.brand,
.header-nav,
.footer-links,
.hero-actions {
  display: flex;
  align-items: center;
}

.brand {
  flex: 0 0 auto;
  min-width: 0;
  padding: 4px 0;
}

.brand-logo {
  display: block;
  width: auto;
  max-width: min(330px, 40vw);
  height: clamp(66px, 5.4vw, 82px);
  object-fit: contain;
  filter: drop-shadow(0 14px 26px rgba(0, 0, 0, 0.34));
}

.brand-fallback {
  display: none;
  align-items: center;
  color: var(--gv-white);
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 800;
  letter-spacing: 0;
}

.header-nav {
  gap: 8px;
  padding: 6px;
  color: rgba(244, 247, 247, 0.78);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(240, 210, 125, 0.1);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.header-nav a {
  position: relative;
  padding: 9px 14px;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.header-nav a::after {
  position: absolute;
  right: 14px;
  bottom: 6px;
  left: 14px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  opacity: 0;
  transform: scaleX(0.6);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.header-nav a:hover {
  color: var(--white);
  background: rgba(240, 210, 125, 0.1);
}

.header-nav a:hover::after {
  opacity: 0.9;
  transform: scaleX(1);
}

.footer-links a:hover {
  color: var(--gold-light);
}

.header-cta {
  flex: 0 0 auto;
  padding: 12px 18px;
  color: var(--black);
  background: linear-gradient(135deg, #F0D27D 0%, #D9B767 48%, #A9782E 100%);
  border-radius: var(--radius);
  box-shadow: 0 16px 34px rgba(217, 183, 103, 0.26);
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 44px rgba(217, 183, 103, 0.34);
}

.hero {
  min-height: 100vh;
  padding: 172px 0 108px;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
  opacity: 0.76;
}

.hero::after {
  position: absolute;
  right: -16%;
  top: 16%;
  width: 58vw;
  height: 58vw;
  max-width: 720px;
  max-height: 720px;
  content: "";
  background: conic-gradient(from 120deg, transparent, rgba(240, 210, 125, 0.13), rgba(14, 107, 115, 0.22), transparent);
  border-radius: 50%;
  filter: blur(4px);
  opacity: 0.75;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(340px, 0.74fr);
  gap: clamp(44px, 6vw, 86px);
  align-items: center;
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(20px);
  opacity: 0.7;
  animation: softFloat 9s ease-in-out infinite alternate;
}

.hero-glow-one {
  right: 10%;
  bottom: 18%;
  width: 220px;
  height: 220px;
  background: rgba(12, 79, 89, 0.35);
}

.hero-glow-two {
  left: 6%;
  top: 24%;
  width: 150px;
  height: 150px;
  background: rgba(217, 183, 103, 0.12);
  animation-delay: 1.2s;
}

@keyframes softFloat {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(16px, -14px, 0) scale(1.05);
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  content: "";
  background: currentColor;
}

.eyebrow.dark {
  color: var(--petrol);
}

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

h1,
h2 {
  font-family: "Montserrat", "Inter", sans-serif;
  letter-spacing: 0;
  line-height: 1.05;
  text-wrap: balance;
}

h1 {
  max-width: 800px;
  margin-bottom: 26px;
  font-size: clamp(38px, 5.5vw, 66px);
  line-height: 1.08;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(30px, 4vw, 52px);
}

h3 {
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 1.2;
}

.hero-subtitle {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(244, 247, 247, 0.88);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.62;
}

.hero-note {
  max-width: 620px;
  color: rgba(174, 187, 192, 0.92);
  font-size: 17px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 720px;
  margin-top: 26px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 13px;
  color: rgba(244, 247, 247, 0.86);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--gv-border);
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  font-size: 13px;
  font-weight: 700;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 22px;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
  transition: transform 0.22s ease;
}

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

.btn:hover svg {
  transform: translateX(3px);
}

.btn-primary {
  color: #071014;
  background: linear-gradient(135deg, #F0D27D 0%, #D9B767 48%, #A9782E 100%);
  box-shadow: 0 16px 36px rgba(217, 183, 103, 0.3);
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(240, 210, 125, 0.16);
}

.hero-card {
  position: relative;
  overflow: hidden;
  padding: 32px;
  background:
    radial-gradient(circle at 18% 0%, rgba(240, 210, 125, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055)),
    linear-gradient(135deg, rgba(217, 183, 103, 0.08), transparent 48%);
  border: 1px solid var(--gv-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-deep);
  backdrop-filter: blur(22px);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.hero-card:hover {
  transform: translateY(-6px);
  border-color: rgba(240, 210, 125, 0.28);
  box-shadow: 0 46px 120px rgba(5, 10, 13, 0.42);
}

.hero-card::before {
  position: absolute;
  right: -72px;
  top: -72px;
  width: 180px;
  height: 180px;
  content: "";
  background: radial-gradient(circle, rgba(240, 210, 125, 0.2), transparent 66%);
  border-radius: 50%;
}

.hero-card-accent {
  position: absolute;
  top: 0;
  left: 28px;
  width: 92px;
  height: 3px;
  background: linear-gradient(90deg, var(--gv-gold-light), transparent);
}

.card-topline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.status-dot {
  width: 9px;
  height: 9px;
  background: #48e6b0;
  border-radius: 999px;
  box-shadow: 0 0 0 8px rgba(72, 230, 176, 0.12);
}

.hero-card h2 {
  position: relative;
  font-size: clamp(30px, 4vw, 44px);
}

.hero-card-lead {
  position: relative;
  margin-bottom: 24px;
  color: rgba(174, 187, 192, 0.9);
  font-size: 15px;
  line-height: 1.65;
}

.hero-card-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 26px 0;
}

.hero-card-list div,
.metric-row,
.feature-card,
.timeline-item,
.form-note,
.lead-form {
  border-radius: var(--radius);
}

.hero-card-list div {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: linear-gradient(135deg, var(--gv-card-strong), var(--gv-card));
  border: 1px solid rgba(240, 210, 125, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.hero-card-list div:hover {
  transform: translateY(-2px);
  border-color: rgba(240, 210, 125, 0.24);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.13), var(--gv-card));
}

.hero-card-list p,
.metric-row span,
.site-footer p,
.privacy-text {
  margin: 0;
}

.mini-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--gv-gold-light);
  background: rgba(217, 183, 103, 0.14);
  border: 1px solid rgba(240, 210, 125, 0.2);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
}

.metric-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.metric-row div {
  padding: 18px;
  background: rgba(5, 10, 13, 0.26);
  border: 1px solid rgba(240, 210, 125, 0.1);
}

.metric-row strong {
  display: block;
  color: var(--gold-light);
  font-size: 26px;
}

.metric-row span {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

section:not(.hero) {
  padding: 104px 0;
}

.expansion-section {
  position: relative;
  overflow: hidden;
  padding: 118px 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(217, 183, 103, 0.13), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f4f7f7 100%);
}

.expansion-section::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(840px, 82vw);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(217, 183, 103, 0.58), transparent);
  transform: translateX(-50%);
}

.expansion-section h2 {
  max-width: 920px;
  margin-right: auto;
  margin-left: auto;
  color: var(--gv-black);
  font-size: clamp(34px, 5.2vw, 68px);
  line-height: 1.08;
}

.expansion-section h2::selection,
.expansion-section p::selection {
  background: rgba(217, 183, 103, 0.28);
}

.expansion-section p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--gv-gray-dark);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.7;
}

.positioning p,
.section-heading p,
.authority-copy p,
.callout p,
.final-cta p,
.form-copy p {
  color: var(--gray);
  font-size: 18px;
}

.section-dark .section-heading p,
.section-dark .callout p,
.section-dark .final-cta p,
.profile p {
  color: rgba(255, 255, 255, 0.72);
}

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

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
}

.card-grid {
  display: grid;
  gap: 22px;
}

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

.feature-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(244, 247, 247, 0.94)),
    radial-gradient(circle at 18% 0%, rgba(217, 183, 103, 0.16), transparent 34%);
  border: 1px solid rgba(6, 60, 71, 0.12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.feature-card::after {
  position: absolute;
  top: 0;
  left: 28px;
  width: 54px;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--gv-gold), transparent);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 34px 90px rgba(5, 8, 10, 0.22);
  border-color: rgba(217, 183, 103, 0.34);
}

.feature-card p,
.timeline-item p,
.form-note span {
  color: var(--gray);
}

.icon-badge {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  place-items: center;
  color: var(--petrol);
  background: linear-gradient(135deg, rgba(14, 107, 115, 0.12), rgba(217, 183, 103, 0.24));
  border: 1px solid rgba(217, 183, 103, 0.2);
  border-radius: 8px;
  font-weight: 900;
}

.icon-badge svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.profile-grid,
.authority-grid,
.form-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 58px;
  align-items: center;
}

.check-panel {
  padding: 30px;
  background: linear-gradient(180deg, var(--gv-card-strong), var(--gv-card));
  border: 1px solid var(--gv-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-deep);
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 15px 16px 15px 48px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
}

.check-list li::before {
  position: absolute;
  left: 16px;
  top: 15px;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: var(--black);
  content: "✓";
  background: var(--gold-light);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

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

.timeline::before {
  position: absolute;
  top: 45px;
  left: 9%;
  width: 82%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--gv-petrol-glow), var(--gv-gold), transparent);
  box-shadow: 0 0 24px rgba(217, 183, 103, 0.18);
}

.timeline-item {
  position: relative;
  z-index: 1;
  padding: 92px 24px 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 247, 247, 0.88)),
    radial-gradient(circle at 20% 0%, rgba(217, 183, 103, 0.12), transparent 32%);
  border: 1px solid rgba(6, 60, 71, 0.1);
  box-shadow: 0 24px 64px rgba(5, 10, 13, 0.13);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.timeline-item:hover {
  transform: translateY(-5px);
  border-color: rgba(217, 183, 103, 0.28);
  box-shadow: 0 34px 86px rgba(5, 10, 13, 0.18);
}

.timeline-item span {
  position: absolute;
  top: 18px;
  left: 24px;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: var(--black);
  background: linear-gradient(135deg, var(--gv-gold-light), var(--gv-gold));
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(217, 183, 103, 0.25);
  font-weight: 900;
}

.authority-blocks {
  display: grid;
  gap: 16px;
}

.authority-blocks div {
  padding: 24px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 60, 71, 0.98), rgba(5, 10, 13, 0.98)),
    radial-gradient(circle at 85% 0%, rgba(217, 183, 103, 0.2), transparent 30%);
  border-left: 4px solid var(--gv-gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-weight: 800;
}

.callout .btn,
.final-cta .btn {
  margin-top: 18px;
}

.form-grid {
  align-items: start;
}

.form-section {
  position: relative;
  overflow: hidden;
  color: var(--gv-white);
  background:
    radial-gradient(circle at 14% 10%, rgba(14, 107, 115, 0.32), transparent 30%),
    radial-gradient(circle at 92% 18%, rgba(217, 183, 103, 0.12), transparent 28%),
    linear-gradient(135deg, #050A0D 0%, #061F26 46%, #063C47 100%);
}

.form-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}

.form-section .container {
  position: relative;
  z-index: 1;
}

.form-section .eyebrow.dark {
  color: var(--gv-gold-light);
}

.form-section h2 {
  color: var(--gv-white);
}

.form-section .form-copy p {
  color: rgba(174, 187, 192, 0.9);
}

.form-note {
  display: grid;
  gap: 6px;
  max-width: 460px;
  margin-top: 28px;
  padding: 20px;
  color: rgba(244, 247, 247, 0.88);
  background: linear-gradient(135deg, var(--gv-card-strong), var(--gv-card));
  border: 1px solid var(--gv-border);
  border-left: 4px solid var(--gv-gold);
  backdrop-filter: blur(16px);
}

.lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.055)),
    radial-gradient(circle at 20% 0%, rgba(240, 210, 125, 0.08), transparent 32%);
  border: 1px solid var(--gv-border);
  box-shadow: var(--shadow-deep);
  backdrop-filter: blur(22px);
}

.field {
  display: grid;
  gap: 8px;
}

.field.full,
.form-button,
.privacy-text {
  grid-column: 1 / -1;
}

label {
  color: rgba(244, 247, 247, 0.88);
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 13px 14px;
  color: var(--gv-white);
  background: rgba(5, 10, 13, 0.46);
  border: 1px solid rgba(240, 210, 125, 0.13);
  border-radius: var(--radius);
  font: inherit;
  outline: none;
  transition: border 0.18s ease, box-shadow 0.18s ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(240, 210, 125, 0.48);
  box-shadow: 0 0 0 4px rgba(217, 183, 103, 0.12), 0 0 36px rgba(14, 107, 115, 0.18);
}

input::placeholder,
textarea::placeholder {
  color: rgba(174, 187, 192, 0.64);
}

select option {
  color: var(--gv-black);
}

.radio-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.radio-row label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px;
  background: rgba(5, 10, 13, 0.44);
  border: 1px solid rgba(240, 210, 125, 0.13);
  border-radius: var(--radius);
  font-weight: 700;
}

.radio-row input {
  width: auto;
  min-height: auto;
  accent-color: var(--gv-gold);
}

.privacy-text {
  color: rgba(174, 187, 192, 0.78);
  font-size: 13px;
  text-align: center;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 82px 0 28px;
  color: rgba(244, 247, 247, 0.78);
  background:
    radial-gradient(circle at 18% 0%, rgba(14, 107, 115, 0.28), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(217, 183, 103, 0.12), transparent 26%),
    linear-gradient(135deg, #050A0D 0%, #061F26 48%, #050A0D 100%);
  border-top: 1px solid rgba(240, 210, 125, 0.18);
}

.site-footer::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(980px, 82vw);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--gv-gold-light), transparent);
  transform: translateX(-50%);
}

.footer-orbit {
  position: absolute;
  right: -140px;
  top: -140px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(240, 210, 125, 0.12);
  border-radius: 50%;
  box-shadow: inset 0 0 80px rgba(14, 107, 115, 0.18);
}

.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(140px, 0.65fr));
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
}

.footer-brand p {
  max-width: 380px;
  margin-top: 18px;
  color: rgba(174, 187, 192, 0.86);
  font-size: 15px;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
}

.footer-logo {
  display: block;
  width: auto;
  max-width: min(320px, 72vw);
  height: 74px;
  object-fit: contain;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.36));
}

.footer-fallback {
  font-size: 24px;
}

.footer-column {
  display: grid;
  gap: 10px;
}

.footer-column h3 {
  margin-bottom: 8px;
  color: var(--gv-gold-light);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column a {
  color: rgba(244, 247, 247, 0.74);
  font-size: 14px;
  font-weight: 700;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-column a:hover {
  color: var(--gv-gold-light);
  transform: translateX(3px);
}

.footer-disclaimer {
  position: relative;
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid rgba(240, 210, 125, 0.14);
}

.footer-disclaimer p {
  max-width: 980px;
  color: rgba(174, 187, 192, 0.78);
  font-size: 13px;
  line-height: 1.75;
}

.footer-bottom {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 22px;
  color: rgba(174, 187, 192, 0.72);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-header {
    min-height: 78px;
  }

  .header-nav {
    display: none;
  }

  .brand-logo {
    height: 62px;
    max-width: min(280px, 54vw);
  }

  .hero-grid,
  .profile-grid,
  .authority-grid,
  .form-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .hero {
    min-height: auto;
    padding-top: 148px;
  }

  .four-columns,
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline::before {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

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

  .site-header {
    width: calc(100% - 24px);
    min-height: 72px;
    margin-top: 12px;
    padding: 10px 12px;
    gap: 12px;
  }

  .brand-logo {
    height: 54px;
    max-width: min(230px, 70vw);
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding: 136px 0 66px;
  }

  h1 {
    font-size: 35px;
    line-height: 1.12;
  }

  .hero-subtitle {
    font-size: 17px;
  }

  .hero-proof {
    display: grid;
    gap: 8px;
    margin-top: 22px;
  }

  .hero-proof span {
    justify-content: center;
    min-height: 36px;
    text-align: center;
  }

  h2 {
    font-size: 31px;
  }

  section:not(.hero) {
    padding: 68px 0;
  }

  .expansion-section {
    padding: 76px 0;
  }

  .expansion-section h2 {
    font-size: 34px;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .hero-card,
  .lead-form,
  .check-panel {
    padding: 22px;
  }

  .hero-card-lead {
    font-size: 14px;
  }

  .metric-row,
  .hero-card-list,
  .four-columns,
  .timeline,
  .lead-form,
  .radio-row {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    padding-top: 78px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .site-footer {
    padding-top: 64px;
  }

  .footer-logo {
    height: 60px;
    max-width: min(270px, 82vw);
  }

  .footer-disclaimer {
    margin-top: 36px;
  }

  .footer-bottom {
    display: block;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
