:root {
  --fg-ink: #10233f;
  --fg-ink-soft: #1c3555;
  --fg-green: #0a8f6a;
  --fg-green-dark: #087254;
  --fg-green-soft: #edf8f4;
  --fg-blue: #246bce;
  --fg-blue-soft: #eef5ff;
  --fg-amber: #b96e08;
  --fg-amber-soft: #fff7e8;
  --fg-paper: #ffffff;
  --fg-mist: #f3f6f8;
  --fg-line: #d7e0e7;
  --fg-line-strong: #b9c8d3;
  --fg-muted: #607080;
  --fg-danger: #b94040;
  --fg-shadow: 0 18px 42px rgba(16, 35, 63, 0.09);
  --fg-radius: 6px;
  --fg-container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--fg-ink);
  background: var(--fg-paper);
  font-family: "Pretendard", "Noto Sans KR", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  word-break: keep-all;
}

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

svg {
  display: block;
}

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

h1,
h2,
h3 {
  line-height: 1.25;
  letter-spacing: 0;
}

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

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

.fg-utility {
  min-height: 36px;
  color: #dce7ef;
  background: var(--fg-ink);
  font-size: 12px;
}

.fg-utility .fg-container {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.fg-utility-link {
  color: #78daba;
  font-weight: 700;
}

.fg-header {
  position: relative;
  z-index: 20;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--fg-line);
}

.fg-header-inner {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.fg-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  font-size: 22px;
  font-weight: 800;
}

.fg-logo-mark {
  width: 28px;
  height: 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 3px;
  padding: 4px;
  border: 2px solid var(--fg-ink);
  border-radius: 5px;
}

.fg-logo-mark span {
  background: var(--fg-green);
  border-radius: 1px;
}

.fg-logo-mark span:nth-child(2),
.fg-logo-mark span:nth-child(3) {
  background: var(--fg-amber);
}

.fg-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 600;
}

.fg-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: #3e5368;
  border-bottom: 2px solid transparent;
}

.fg-nav a:hover,
.fg-nav a[aria-current="page"] {
  color: var(--fg-green-dark);
  border-bottom-color: var(--fg-green);
}

.fg-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.fg-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--fg-line);
  border-radius: 5px;
  color: var(--fg-ink);
  background: var(--fg-paper);
}

.fg-menu-button svg {
  width: 20px;
  height: 20px;
}

.fg-mobile-nav {
  display: none;
  padding: 8px 20px 18px;
  background: var(--fg-paper);
  border-top: 1px solid var(--fg-line);
}

.fg-mobile-nav[data-open="true"] {
  display: grid;
}

.fg-mobile-nav a {
  min-height: 48px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--fg-line);
  font-weight: 700;
}

.fg-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid transparent;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}

.fg-button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.fg-button-primary {
  color: #fff;
  background: var(--fg-green);
}

.fg-button-primary:hover {
  background: var(--fg-green-dark);
}

.fg-button-ink {
  color: #fff;
  background: var(--fg-ink);
}

.fg-button-outline {
  color: var(--fg-ink);
  background: #fff;
  border-color: var(--fg-line-strong);
}

.fg-button-ghost {
  color: var(--fg-green-dark);
  background: transparent;
  border-color: var(--fg-green);
}

.fg-button-block {
  width: 100%;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(36, 107, 206, 0.32);
  outline-offset: 2px;
}

.fg-home-hero {
  background: var(--fg-mist);
  border-bottom: 1px solid var(--fg-line);
}

.fg-home-hero-inner {
  min-height: 560px;
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 52px;
  align-items: center;
  padding-block: 58px;
}

.fg-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--fg-green-dark);
  font-size: 13px;
  font-weight: 800;
}

.fg-eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--fg-green);
}

.fg-home-hero h1 {
  max-width: 590px;
  margin-bottom: 18px;
  font-size: 48px;
  font-weight: 800;
}

.fg-home-hero-copy > p {
  max-width: 600px;
  margin-bottom: 26px;
  color: var(--fg-muted);
  font-size: 17px;
}

.fg-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.fg-workbench {
  overflow: hidden;
  background: var(--fg-paper);
  border: 1px solid #cbd7df;
  border-radius: 7px;
  box-shadow: var(--fg-shadow);
}

.fg-workbench-head {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--fg-line);
}

.fg-workbench-head strong {
  font-size: 15px;
}

.fg-status-inline {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--fg-green-dark);
  font-size: 12px;
  font-weight: 700;
}

.fg-status-inline::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--fg-green);
}

.fg-workbench-body {
  padding: 14px;
}

.fg-segments {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin-bottom: 12px;
}

.fg-segment {
  min-height: 42px;
  padding: 8px 10px;
  color: #536779;
  background: #fff;
  border: 1px solid var(--fg-line);
  border-radius: 4px;
  cursor: pointer;
  font-weight: 700;
}

.fg-segment[aria-pressed="true"],
.fg-segment.is-active {
  color: var(--fg-green-dark);
  background: var(--fg-green-soft);
  border-color: var(--fg-green);
}

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

.fg-field-wrap {
  display: grid;
  gap: 6px;
}

.fg-field-wrap label,
.fg-label {
  color: #44596c;
  font-size: 13px;
  font-weight: 700;
}

.fg-field,
.fg-select,
.fg-textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  color: var(--fg-ink);
  background: #fff;
  border: 1px solid var(--fg-line-strong);
  border-radius: 4px;
}

.fg-textarea {
  min-height: 112px;
  resize: vertical;
}

.fg-field::placeholder,
.fg-textarea::placeholder {
  color: #8796a3;
}

.fg-calc-result {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 12px;
  padding: 18px;
  color: #fff;
  background: var(--fg-ink);
  border-radius: 5px;
}

.fg-calc-result small {
  display: block;
  margin-bottom: 4px;
  color: #b8c8d4;
  font-size: 12px;
}

.fg-calc-amount {
  display: block;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  font-variant-numeric: tabular-nums;
}

.fg-calc-meta {
  margin: 10px 0 0;
  color: var(--fg-muted);
  font-size: 12px;
}

.fg-rate-value {
  font-variant-numeric: tabular-nums;
}

.fg-section {
  padding-block: 76px;
}

.fg-section-muted {
  background: var(--fg-mist);
  border-block: 1px solid var(--fg-line);
}

.fg-section-ink {
  color: #fff;
  background: var(--fg-ink);
}

.fg-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
}

.fg-section-head h2 {
  margin-bottom: 0;
  font-size: 32px;
}

.fg-section-head p {
  max-width: 530px;
  margin-bottom: 0;
  color: var(--fg-muted);
}

.fg-section-ink .fg-section-head p {
  color: #bac8d2;
}

.fg-rate-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(250px, 0.45fr);
  gap: 20px;
}

.fg-table-shell {
  overflow-x: auto;
  border-top: 2px solid var(--fg-ink);
}

.fg-rate-table {
  width: 100%;
  min-width: 650px;
  border-collapse: collapse;
  font-size: 14px;
}

.fg-rate-table th,
.fg-rate-table td {
  height: 62px;
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--fg-line);
}

.fg-rate-table th {
  height: 44px;
  color: #6d7e8b;
  background: var(--fg-mist);
  font-size: 12px;
  font-weight: 700;
}

.fg-rate-table td strong {
  font-size: 15px;
}

.fg-rate-table .fg-rate-number {
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.fg-rate-table .fg-state {
  color: var(--fg-green-dark);
  font-size: 12px;
  font-weight: 800;
}

.fg-tools {
  display: grid;
  gap: 10px;
  align-content: start;
}

.fg-tool-link {
  min-height: 78px;
  display: grid;
  grid-template-columns: 42px 1fr 18px;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--fg-line);
  border-radius: var(--fg-radius);
  background: #fff;
}

.fg-tool-link:hover {
  border-color: var(--fg-green);
}

.fg-tool-link > svg {
  width: 18px;
  height: 18px;
  color: #7b8a96;
}

.fg-tool-link strong {
  display: block;
  font-size: 14px;
}

.fg-tool-link small {
  display: block;
  margin-top: 2px;
  color: var(--fg-muted);
  font-size: 12px;
}

.fg-icon-box {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  line-height: 0;
  color: var(--fg-ink-soft);
  background: var(--fg-mist);
  border-radius: 5px;
}

.fg-icon-box > svg,
.fg-icon-box > i {
  display: block;
  width: 20px;
  height: 20px;
  margin: 0;
}

.fg-rule-band {
  display: grid;
  grid-template-columns: 0.9fr repeat(3, 1fr);
  gap: 0;
  border: 1px solid #324863;
}

.fg-rule-title,
.fg-rule-item {
  min-height: 150px;
  padding: 26px;
}

.fg-rule-title {
  background: #172f4e;
}

.fg-rule-title h2 {
  margin-bottom: 8px;
  font-size: 25px;
}

.fg-rule-title p,
.fg-rule-item p {
  margin-bottom: 0;
  color: #b9c7d1;
  font-size: 13px;
}

.fg-rule-item {
  border-left: 1px solid #324863;
}

.fg-rule-item span {
  color: #6ee0bd;
  font-size: 12px;
  font-weight: 800;
}

.fg-rule-item strong {
  display: block;
  margin: 12px 0 7px;
}

.fg-media-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  border: 1px solid var(--fg-line);
}

.fg-media {
  min-height: 420px;
  overflow: hidden;
}

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

.fg-media-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 52px;
}

.fg-media-copy h2 {
  margin-bottom: 16px;
  font-size: 32px;
}

.fg-media-copy > p {
  color: var(--fg-muted);
}

.fg-check-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 28px;
  padding: 0;
  list-style: none;
}

.fg-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.fg-check-list svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  margin-top: 4px;
  color: var(--fg-green);
}

.fg-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--fg-line);
}

.fg-process-item {
  min-height: 180px;
  padding: 26px;
  background: #fff;
  border-left: 1px solid var(--fg-line);
}

.fg-process-item:first-child {
  border-left: 0;
}

.fg-process-number {
  color: var(--fg-green-dark);
  font-size: 12px;
  font-weight: 800;
}

.fg-process-item strong {
  display: block;
  margin: 16px 0 7px;
}

.fg-process-item p {
  margin-bottom: 0;
  color: var(--fg-muted);
  font-size: 13px;
}

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

.fg-product-card {
  overflow: hidden;
  border: 1px solid var(--fg-line);
  border-radius: var(--fg-radius);
  background: #fff;
}

.fg-product-visual {
  min-height: 205px;
  display: grid;
  place-items: center;
  padding: 28px;
  background: var(--fg-mist);
}

.fg-voucher {
  width: min(100%, 250px);
  aspect-ratio: 1.65 / 1;
  display: grid;
  align-content: space-between;
  padding: 22px;
  color: #fff;
  background: var(--fg-ink);
  border-radius: 6px;
  box-shadow: 0 13px 28px rgba(16, 35, 63, 0.17);
}

.fg-voucher[data-brand="hyundai"] {
  color: var(--fg-ink);
  background: #e8b34c;
}

.fg-voucher[data-brand="lotte"] {
  background: #82313e;
}

.fg-voucher small {
  font-size: 11px;
  opacity: 0.78;
}

.fg-voucher strong {
  font-size: 21px;
}

.fg-product-body {
  padding: 20px;
}

.fg-product-body h3 {
  margin-bottom: 8px;
  font-size: 19px;
}

.fg-product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--fg-muted);
  font-size: 13px;
}

.fg-price {
  color: var(--fg-ink);
  font-size: 19px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.fg-badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 8px;
  color: var(--fg-green-dark);
  background: var(--fg-green-soft);
  border-radius: 3px;
  font-size: 11px;
  font-weight: 800;
}

.fg-badge-amber {
  color: #865207;
  background: var(--fg-amber-soft);
}

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

.fg-safety-item {
  padding: 26px;
  border-top: 3px solid var(--fg-green);
  background: #fff;
}

.fg-safety-item:nth-child(2) {
  border-top-color: var(--fg-blue);
}

.fg-safety-item:nth-child(3) {
  border-top-color: var(--fg-amber);
}

.fg-safety-item h3 {
  margin: 18px 0 10px;
  font-size: 18px;
}

.fg-safety-item p {
  margin-bottom: 0;
  color: var(--fg-muted);
  font-size: 14px;
}

.fg-faq {
  display: grid;
  border-top: 2px solid var(--fg-ink);
}

.fg-faq details {
  border-bottom: 1px solid var(--fg-line);
}

.fg-faq summary {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 4px;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.fg-faq summary::-webkit-details-marker {
  display: none;
}

.fg-faq summary::after {
  content: "+";
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--fg-line-strong);
  border-radius: 4px;
}

.fg-faq details[open] summary::after {
  content: "−";
}

.fg-faq-answer {
  max-width: 900px;
  padding: 0 4px 22px;
  color: var(--fg-muted);
}

.fg-cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 42px;
  color: #fff;
  background: var(--fg-ink);
}

.fg-cta-band h2 {
  margin-bottom: 8px;
  font-size: 30px;
}

.fg-cta-band p {
  margin-bottom: 0;
  color: #b9c7d1;
}

.fg-cta-actions {
  display: flex;
  gap: 9px;
  flex: 0 0 auto;
}

.fg-page-hero {
  padding-block: 64px;
  background: var(--fg-mist);
  border-bottom: 1px solid var(--fg-line);
}

.fg-page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: center;
  gap: 56px;
}

.fg-page-hero h1 {
  margin-bottom: 16px;
  font-size: 44px;
}

.fg-page-hero p {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--fg-muted);
  font-size: 17px;
}

.fg-page-hero-media {
  height: 300px;
  overflow: hidden;
  border-radius: var(--fg-radius);
  border: 1px solid var(--fg-line);
}

.fg-page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fg-mode-switch {
  width: min(100%, 440px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 24px;
  padding: 5px;
  background: var(--fg-mist);
  border: 1px solid var(--fg-line);
  border-radius: 6px;
}

.fg-mode-switch button {
  min-height: 42px;
  border: 0;
  border-radius: 4px;
  color: var(--fg-muted);
  background: transparent;
  cursor: pointer;
  font-weight: 700;
}

.fg-mode-switch button[aria-pressed="true"] {
  color: var(--fg-ink);
  background: #fff;
  box-shadow: 0 2px 7px rgba(16, 35, 63, 0.08);
}

.fg-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  color: #6d4a0a;
  background: var(--fg-amber-soft);
  border-left: 3px solid var(--fg-amber);
}

.fg-note svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  margin-top: 3px;
}

.fg-note p {
  margin-bottom: 0;
  font-size: 13px;
}

.fg-two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 30px;
  align-items: start;
}

.fg-form-panel {
  padding: 28px;
  border: 1px solid var(--fg-line);
  background: #fff;
}

.fg-form-panel h2 {
  margin-bottom: 8px;
  font-size: 24px;
}

.fg-form-panel > p {
  color: var(--fg-muted);
  font-size: 14px;
}

.fg-form-stack {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.fg-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--fg-muted);
  font-size: 13px;
}

.fg-consent input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 3px;
}

.fg-demo-response {
  display: none;
  margin-top: 16px;
  padding: 16px;
  color: var(--fg-green-dark);
  background: var(--fg-green-soft);
  border-left: 3px solid var(--fg-green);
  font-weight: 700;
}

.fg-demo-response.is-visible {
  display: block;
}

.fg-filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 26px;
}

.fg-filter-button {
  min-height: 42px;
  padding: 8px 14px;
  color: var(--fg-muted);
  background: #fff;
  border: 1px solid var(--fg-line);
  border-radius: 4px;
  cursor: pointer;
  font-weight: 700;
}

.fg-filter-button[aria-pressed="true"] {
  color: #fff;
  background: var(--fg-ink);
  border-color: var(--fg-ink);
}

.fg-product-card[hidden] {
  display: none;
}

.fg-policy-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.fg-policy-nav {
  position: sticky;
  top: 18px;
  display: grid;
  border-top: 2px solid var(--fg-ink);
}

.fg-policy-nav a {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--fg-line);
  font-weight: 700;
}

.fg-policy-nav a::after {
  content: "→";
  color: var(--fg-green);
}

.fg-policy-sections {
  display: grid;
  gap: 46px;
}

.fg-policy-section {
  scroll-margin-top: 20px;
}

.fg-policy-section h2 {
  margin-bottom: 16px;
  font-size: 27px;
}

.fg-policy-section > p {
  color: var(--fg-muted);
}

.fg-control-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.fg-control-item {
  min-height: 120px;
  padding: 20px;
  border: 1px solid var(--fg-line);
}

.fg-control-item strong {
  display: block;
  margin-bottom: 6px;
}

.fg-control-item p {
  margin-bottom: 0;
  color: var(--fg-muted);
  font-size: 13px;
}

.fg-track-box {
  max-width: 760px;
  margin-inline: auto;
}

.fg-track-result {
  display: none;
  margin-top: 30px;
}

.fg-track-result.is-visible {
  display: block;
}

.fg-track-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
  background: var(--fg-mist);
  border: 1px solid var(--fg-line);
}

.fg-track-summary strong {
  display: block;
}

.fg-track-summary span {
  color: var(--fg-muted);
  font-size: 13px;
}

.fg-track-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 18px;
}

.fg-track-step {
  position: relative;
  padding-top: 32px;
  color: #8695a1;
  text-align: center;
  font-size: 12px;
}

.fg-track-step::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  z-index: 2;
  width: 15px;
  height: 15px;
  transform: translateX(-50%);
  border: 3px solid #fff;
  border-radius: 50%;
  background: #aab6bf;
  box-shadow: 0 0 0 1px #aab6bf;
}

.fg-track-step::after {
  content: "";
  position: absolute;
  top: 15px;
  right: 50%;
  width: 100%;
  height: 2px;
  background: #c7d1d8;
}

.fg-track-step:first-child::after {
  display: none;
}

.fg-track-step.is-done,
.fg-track-step.is-current {
  color: var(--fg-ink);
  font-weight: 700;
}

.fg-track-step.is-done::before,
.fg-track-step.is-current::before {
  background: var(--fg-green);
  box-shadow: 0 0 0 1px var(--fg-green);
}

.fg-track-step.is-done::after,
.fg-track-step.is-current::after {
  background: var(--fg-green);
}

.fg-track-step.is-current::before {
  width: 19px;
  height: 19px;
  top: 6px;
}

.fg-dialog {
  width: min(92vw, 580px);
  padding: 0;
  border: 0;
  border-radius: var(--fg-radius);
  box-shadow: 0 24px 80px rgba(8, 25, 44, 0.28);
}

.fg-dialog::backdrop {
  background: rgba(8, 25, 44, 0.58);
}

.fg-dialog-head {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--fg-line);
}

.fg-dialog-close {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--fg-ink);
  background: #fff;
  border: 1px solid var(--fg-line);
  border-radius: 4px;
  cursor: pointer;
}

.fg-dialog-close svg {
  width: 19px;
  height: 19px;
}

.fg-dialog-body {
  padding: 24px;
}

.fg-dialog-body p {
  color: var(--fg-muted);
}

.fg-toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
  max-width: min(360px, calc(100vw - 40px));
  display: none;
  padding: 14px 16px;
  color: #fff;
  background: var(--fg-ink);
  border-radius: 5px;
  box-shadow: var(--fg-shadow);
  font-size: 13px;
}

.fg-toast.is-visible {
  display: block;
}

.fg-footer {
  color: #b9c7d2;
  background: #0b1d33;
}

.fg-footer-main {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  gap: 44px;
  padding-block: 54px;
}

.fg-footer .fg-logo {
  color: #fff;
  margin-bottom: 16px;
}

.fg-footer .fg-logo-mark {
  border-color: #fff;
}

.fg-footer p {
  max-width: 450px;
  margin-bottom: 0;
  font-size: 13px;
}

.fg-footer h2 {
  color: #fff;
  font-size: 14px;
}

.fg-footer-links {
  display: grid;
  gap: 8px;
  font-size: 13px;
}

.fg-footer-bottom {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #263a52;
  font-size: 12px;
}

.fg-demo-notice {
  margin: 0;
  padding: 14px 20px;
  color: #6f4b0d;
  background: #fff6e6;
  border-top: 1px solid #ead5ad;
  font-size: 12px;
  text-align: center;
}

@media (max-width: 980px) {
  .fg-nav {
    display: none;
  }

  .fg-menu-button {
    display: inline-flex;
  }

  .fg-home-hero-inner,
  .fg-page-hero-grid,
  .fg-media-split,
  .fg-two-column {
    grid-template-columns: 1fr;
  }

  .fg-home-hero-inner {
    padding-block: 48px;
  }

  .fg-home-hero-copy {
    max-width: 700px;
  }

  .fg-rate-layout,
  .fg-policy-layout {
    grid-template-columns: 1fr;
  }

  .fg-policy-nav {
    position: static;
    grid-template-columns: repeat(2, 1fr);
  }

  .fg-policy-nav a:nth-child(odd) {
    padding-right: 14px;
  }

  .fg-rule-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .fg-rule-item:nth-child(3) {
    border-left: 0;
  }

  .fg-rule-item:nth-child(n + 3) {
    border-top: 1px solid #324863;
  }

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

  .fg-process-item:nth-child(3) {
    border-left: 0;
  }

  .fg-process-item:nth-child(n + 3) {
    border-top: 1px solid var(--fg-line);
  }

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

  .fg-track-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px 0;
  }

  .fg-track-step:nth-child(4)::after {
    display: none;
  }
}

@media (max-width: 700px) {
  .fg-container {
    width: min(100% - 32px, var(--fg-container));
  }

  .fg-utility .fg-container {
    justify-content: center;
  }

  .fg-utility span:first-child {
    display: none;
  }

  .fg-header-actions > .fg-button {
    display: none;
  }

  .fg-home-hero-inner {
    min-height: 0;
    gap: 32px;
    padding-block: 40px;
  }

  .fg-home-hero h1,
  .fg-page-hero h1 {
    font-size: 34px;
  }

  .fg-home-hero-copy > p,
  .fg-page-hero p {
    font-size: 16px;
  }

  .fg-quick-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .fg-form-grid {
    grid-template-columns: 1fr;
  }

  .fg-calc-result {
    align-items: stretch;
    flex-direction: column;
  }

  .fg-section {
    padding-block: 54px;
  }

  .fg-section-head {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 24px;
  }

  .fg-section-head h2,
  .fg-media-copy h2 {
    font-size: 27px;
  }

  .fg-rule-band,
  .fg-process,
  .fg-product-grid,
  .fg-safety-grid,
  .fg-control-grid {
    grid-template-columns: 1fr;
  }

  .fg-rule-item,
  .fg-rule-item:nth-child(3) {
    border-left: 0;
    border-top: 1px solid #324863;
  }

  .fg-process-item,
  .fg-process-item:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--fg-line);
  }

  .fg-process-item:first-child {
    border-top: 0;
  }

  .fg-media {
    min-height: 280px;
  }

  .fg-media-copy {
    padding: 30px 22px;
  }

  .fg-cta-band {
    align-items: stretch;
    flex-direction: column;
    padding: 30px 22px;
  }

  .fg-cta-band h2 {
    font-size: 26px;
  }

  .fg-cta-actions {
    display: grid;
  }

  .fg-page-hero {
    padding-block: 46px;
  }

  .fg-page-hero-grid {
    gap: 28px;
  }

  .fg-page-hero-media {
    height: 230px;
  }

  .fg-form-panel {
    padding: 22px 18px;
  }

  .fg-policy-nav {
    grid-template-columns: 1fr;
  }

  .fg-track-summary {
    align-items: flex-start;
    flex-direction: column;
  }

  .fg-track-steps {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .fg-track-step {
    min-height: 52px;
    padding: 14px 0 14px 42px;
    text-align: left;
  }

  .fg-track-step::before {
    top: 17px;
    left: 10px;
    transform: none;
  }

  .fg-track-step.is-current::before {
    top: 15px;
    left: 8px;
  }

  .fg-track-step::after {
    top: auto;
    right: auto;
    bottom: 50%;
    left: 17px;
    width: 2px;
    height: 100%;
  }

  .fg-track-step:first-child::after,
  .fg-track-step:nth-child(4)::after {
    display: block;
  }

  .fg-track-step:first-child::after {
    height: 50%;
  }

  .fg-footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-block: 42px;
  }

  .fg-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 18px;
  }
}

@media (max-width: 390px) {
  .fg-logo {
    font-size: 19px;
  }

  .fg-quick-links {
    grid-template-columns: 1fr;
  }

  .fg-segment,
  .fg-button {
    padding-inline: 11px;
  }

  .fg-calc-amount {
    font-size: 24px;
  }
}
