@charset "UTF-8";
html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body:has(.formgo-page) {
  margin: 0;
}

.formgo-page,
.formgo-page * {
  box-sizing: border-box;
}

.formgo-page {
  min-width: 0;
  margin: 0;
  overflow-x: clip;
  background: #f6f8fe;
  color: #0a1220;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.75;
  word-break: keep-all;
}
.formgo-page a {
  color: inherit;
  text-decoration: none;
}
.formgo-page button,
.formgo-page input,
.formgo-page textarea,
.formgo-page select {
  font: inherit;
}

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

.formgo-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.formgo-reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Header */
.formgo-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(227, 232, 243, 0.9);
  background: rgba(246, 248, 254, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.formgo-header__inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.formgo-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.formgo-brand__logo {
  width: 52px;
  height: 52px;
  display: block;
  object-fit: contain;
}

.formgo-brand__name {
  font-size: 24px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.035em;
}
.formgo-brand__name b {
  color: #155dfc;
}

.formgo-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}
.formgo-nav a {
  padding: 11px 14px;
  border-radius: 9px;
  color: #4b5768;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.formgo-nav a:hover, .formgo-nav a:focus-visible {
  color: #155dfc;
  background: rgba(21, 93, 252, 0.07);
}
.formgo-nav a:focus-visible {
  outline: 2px solid rgba(21, 93, 252, 0.35);
  outline-offset: 2px;
}

.formgo-install {
  margin-left: auto;
  min-height: 42px;
  padding: 0 16px;
  flex: 0 0 auto;
  border: 1px solid rgba(21, 93, 252, 0.24);
  border-radius: 10px;
  color: #0b3fd6;
  background: #e9efff;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}
.formgo-install[hidden] {
  display: none;
}
.formgo-install:hover {
  border-color: #155dfc;
  background: #ffffff;
}

/* Buttons */
.formgo-button {
  min-height: 48px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.formgo-button:hover {
  transform: translateY(-2px);
}
.formgo-button:focus-visible {
  outline: 3px solid rgba(21, 93, 252, 0.24);
  outline-offset: 3px;
}

.formgo-button--large {
  min-height: 58px;
  padding-inline: 30px;
  font-size: 17px;
}

.formgo-button--primary {
  color: #ffffff !important;
  background: linear-gradient(135deg, #155dfc, #0b3fd6);
  box-shadow: 0 10px 26px rgba(21, 93, 252, 0.32);
}

.formgo-button--ghost {
  border-color: #cbd5f0;
  background: #ffffff;
}
.formgo-button--ghost:hover {
  border-color: #155dfc;
  color: #155dfc;
}

.formgo-button--white {
  color: #0b3fd6 !important;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(6, 11, 20, 0.28);
}

/* Hero */
.formgo-hero {
  position: relative;
  min-height: calc(100svh - 155px);
  padding: 76px 0 90px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #f8faff 0%, #edf3ff 48%, #f4fbff 100%);
}
.formgo-hero::before {
  content: "";
  position: absolute;
  width: 720px;
  height: 720px;
  top: -390px;
  right: -100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21, 93, 252, 0.2) 0%, rgba(21, 93, 252, 0.06) 42%, transparent 70%);
}
.formgo-hero::after {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  left: -330px;
  bottom: -390px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.16), transparent 68%);
}

.formgo-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  gap: 72px;
  align-items: center;
}

.formgo-hero__content {
  min-width: 0;
}

.formgo-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  color: #0b3fd6;
  background: #e9efff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.formgo-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  animation: formgo-pulse 1.8s infinite;
}

.formgo-hero h1 {
  margin: 22px 0 20px;
  font-size: clamp(38px, 4.4vw, 60px);
  line-height: 1.24;
  letter-spacing: -0.04em;
  font-weight: 800;
}
.formgo-hero h1 em {
  color: #155dfc;
  font-style: normal;
}

.formgo-hero__desc {
  max-width: 600px;
  margin: 0;
  color: #4b5768;
  font-size: 19px;
  line-height: 1.85;
}

.formgo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.formgo-stats {
  max-width: 620px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 38px 0 0;
  padding: 0;
  border: 0;
}
.formgo-stats div {
  min-height: 112px;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(21, 93, 252, 0.13);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 30px rgba(11, 21, 38, 0.055);
  backdrop-filter: blur(8px);
}
.formgo-stats dt {
  color: #0b3fd6;
  font-size: 30px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.formgo-stats dd {
  margin: 9px 0 0;
  color: #4b5768;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
}

/* Demo window */
.formgo-window {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #e3e8f3;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 30px 70px rgba(11, 21, 38, 0.14);
}

.formgo-window__bar {
  padding: 13px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #e3e8f3;
}
.formgo-window__bar i {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #e2e8f0;
}
.formgo-window__bar span {
  min-width: 0;
  flex: 1;
  margin-left: 10px;
  padding: 6px 12px;
  overflow: hidden;
  border-radius: 7px;
  background: #f1f4fb;
  color: #8a93a6;
  font-size: 11px;
  line-height: 1.3;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.formgo-window__tabs {
  display: flex;
  gap: 4px;
  padding: 12px 16px 0;
  border-bottom: 1px solid #e3e8f3;
}
.formgo-window__tabs > * {
  padding: 9px 14px;
  color: #8a93a6;
  font-size: 12.5px;
}
.formgo-window__tabs b {
  color: #0b3fd6;
  border-bottom: 2px solid #155dfc;
}

.formgo-window__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.formgo-demo-form {
  min-width: 0;
  padding: 24px 22px;
  border-right: 1px solid #e3e8f3;
}
.formgo-demo-form label {
  display: block;
  margin-bottom: 16px;
  color: #8a93a6;
  font-size: 11px;
  font-weight: 600;
}
.formgo-demo-form span {
  height: 38px;
  margin-top: 7px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid #cbd5f0;
  border-radius: 8px;
  background: #fbfcff;
  color: #4b5768;
  font-size: 13px;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.formgo-demo-form .is-focused {
  border-color: #155dfc;
  box-shadow: 0 0 0 3px rgba(21, 93, 252, 0.14);
  color: #0a1220;
}
.formgo-demo-form .is-muted {
  color: #8a93a6;
}

.formgo-demo-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(90px, 0.55fr);
  gap: 12px;
}

.formgo-preview {
  position: relative;
  min-width: 0;
  padding: 24px 22px;
  background: #f1f5ff;
}

.formgo-sync {
  position: absolute;
  top: -14px;
  right: 22px;
  padding: 7px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  background: #0b1526;
  color: #dce7ff;
  font-size: 10.5px;
  line-height: 1;
}
.formgo-sync i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22d3ee;
  animation: formgo-pulse 1.6s infinite;
}

.formgo-document {
  padding: 18px;
  border: 1px solid #e3e8f3;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(11, 21, 38, 0.08);
}
.formgo-document header {
  padding-bottom: 12px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 2px solid #155dfc;
}
.formgo-document header b {
  color: #0b3fd6;
}
.formgo-document header small {
  color: #8a93a6;
}
.formgo-document > div {
  padding: 9px 0;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) 0.5fr 0.9fr;
  gap: 6px;
  border-bottom: 1px solid #e3e8f3;
  font-size: 11px;
}
.formgo-document > div span {
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.formgo-document > div span:not(:first-child) {
  text-align: right;
}
.formgo-document .is-head {
  color: #8a93a6;
  font-size: 9.5px;
  font-weight: 700;
}
.formgo-document footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 2px solid #0a1220;
  font-size: 11px;
}
.formgo-document footer strong {
  color: #0b3fd6;
  font-size: 1rem;
  white-space: nowrap;
}

/* Tags */
.formgo-tags {
  background: #0b1526;
}
.formgo-tags .formgo-container {
  padding-block: 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.formgo-tags span {
  padding: 9px 16px;
  border: 1px solid rgba(185, 198, 232, 0.16);
  border-radius: 999px;
  color: #b9c6e8;
  font-size: 14px;
}
.formgo-tags span::before {
  content: "# ";
  color: #22d3ee;
}

/* Common section */
.formgo-section {
  padding: 118px 0;
}

.formgo-section--white {
  border-block: 1px solid #e3e8f3;
  background: #ffffff;
}

.formgo-heading {
  max-width: 760px;
  margin-bottom: 64px;
}
.formgo-heading > span {
  padding: 8px 14px;
  display: inline-flex;
  border-radius: 999px;
  color: #0b3fd6;
  background: #e9efff;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
}
.formgo-heading h2 {
  margin: 20px 0 16px;
  font-size: clamp(34px, 3.4vw, 48px);
  line-height: 1.32;
  letter-spacing: -0.03em;
}
.formgo-heading p {
  margin: 0;
  color: #4b5768;
  font-size: 18px;
  line-height: 1.9;
}
.formgo-heading.is-center {
  margin-inline: auto;
  text-align: center;
}

/* Features */
.formgo-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.formgo-card {
  position: relative;
  min-height: 290px;
  padding: 36px;
  overflow: hidden;
  border: 1px solid #e3e8f3;
  border-radius: 18px;
  background: linear-gradient(145deg, #ffffff 55%, #f7f9ff 100%);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.formgo-card::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -70px;
  bottom: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21, 93, 252, 0.11), rgba(21, 93, 252, 0) 70%);
  transition: transform 0.3s ease;
}
.formgo-card:hover {
  transform: translateY(-7px);
  border-color: rgba(21, 93, 252, 0.3);
  box-shadow: 0 24px 50px rgba(11, 21, 38, 0.11);
}
.formgo-card:hover::after {
  transform: scale(1.35);
}
.formgo-card small {
  padding: 6px 11px;
  border: 1px solid rgba(21, 93, 252, 0.1);
  border-radius: 7px;
  color: #155dfc;
  background: #e9efff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.formgo-card i {
  width: 54px;
  height: 54px;
  margin: 24px 0;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: #ffffff;
  background: linear-gradient(135deg, #155dfc, #4f86ff);
  box-shadow: 0 12px 24px rgba(21, 93, 252, 0.22);
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
}
.formgo-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.4;
}
.formgo-card p {
  position: relative;
  z-index: 1;
  max-width: 360px;
  margin: 0;
  color: #4b5768;
  font-size: 16px;
  line-height: 1.8;
}
.formgo-card:nth-child(2), .formgo-card:nth-child(5) {
  background: linear-gradient(145deg, #ffffff 55%, #f2fbff 100%);
}
.formgo-card:nth-child(2) i, .formgo-card:nth-child(5) i {
  background: linear-gradient(135deg, #0b3fd6, #22d3ee);
}
.formgo-card:nth-child(3), .formgo-card:nth-child(6) {
  background: linear-gradient(145deg, #ffffff 55%, #f4f2ff 100%);
}
.formgo-card:nth-child(3) i, .formgo-card:nth-child(6) i {
  background: linear-gradient(135deg, #4338ca, #7c7cff);
}

/* Process */
.formgo-process {
  min-height: 820px;
  padding-block: 156px;
}
.formgo-process .formgo-heading {
  max-width: 820px;
  margin-bottom: 88px;
}
.formgo-process .formgo-heading h2 {
  margin-top: 22px;
  font-size: clamp(38px, 3.5vw, 52px);
}
.formgo-process .formgo-heading p {
  margin-top: 18px;
  font-size: 18px;
}

.formgo-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}
.formgo-flow::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 5%;
  right: 5%;
  border-top: 2px dashed #cbd5f0;
}
.formgo-flow li {
  position: relative;
  min-height: 230px;
  padding: 0 30px;
}
.formgo-flow b {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  margin-bottom: 28px;
  display: grid;
  place-items: center;
  border: 2px solid #155dfc;
  border-radius: 18px;
  background: #ffffff;
  color: #0b3fd6;
  font-size: 18px;
  box-shadow: 0 12px 28px rgba(21, 93, 252, 0.1);
}
.formgo-flow small {
  color: #155dfc;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.formgo-flow h3 {
  margin: 12px 0 14px;
  font-size: 22px;
  line-height: 1.4;
}
.formgo-flow p {
  max-width: 260px;
  margin: 0;
  color: #4b5768;
  font-size: 16px;
  line-height: 1.8;
}

/* Security */
.formgo-security {
  min-height: 900px;
  padding-block: 150px;
  color: #dce3f5;
  background: radial-gradient(circle at 84% 10%, rgba(34, 211, 238, 0.12), transparent 45%), #060b14;
}

.formgo-security__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: 120px;
  align-items: center;
}

.formgo-security__content {
  min-width: 0;
}

.formgo-security .formgo-heading {
  margin-bottom: 0;
}
.formgo-security .formgo-heading > span {
  color: #22d3ee;
  background: rgba(34, 211, 238, 0.14);
}
.formgo-security .formgo-heading h2 {
  margin-top: 24px;
  font-size: clamp(40px, 3.7vw, 56px);
  line-height: 1.25;
}
.formgo-security .formgo-heading p {
  max-width: 620px;
  margin-top: 26px;
  color: #94a2c2;
  font-size: 17px;
  line-height: 2;
}

.formgo-checks {
  margin: 64px 0 0;
  padding: 0;
  display: grid;
  gap: 30px;
  list-style: none;
}
.formgo-checks li {
  display: flex;
  gap: 20px;
}
.formgo-checks li > b {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 10px;
  color: #22d3ee;
  background: rgba(34, 211, 238, 0.14);
  font-size: 16px;
}
.formgo-checks strong {
  color: #eaf0ff;
  font-size: 17px;
}
.formgo-checks p {
  margin: 7px 0 0;
  color: #94a2c2;
  font-size: 15px;
  line-height: 1.7;
}

.formgo-diagram {
  min-width: 0;
  padding: 52px 46px;
  border: 1px solid rgba(220, 227, 245, 0.18);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(220, 227, 245, 0.07), rgba(220, 227, 245, 0.025));
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.22);
}
.formgo-diagram > div {
  min-height: 126px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  border: 1px solid rgba(220, 227, 245, 0.14);
  border-radius: 18px;
  background: rgba(220, 227, 245, 0.06);
}
.formgo-diagram > div > b {
  position: relative;
  width: 104px;
  height: 72px;
  padding: 12px 10px 8px;
  display: flex;
  align-items: flex-start;
  gap: 5px;
  flex: 0 0 auto;
  border: 2px solid rgba(34, 211, 238, 0.55);
  border-radius: 12px;
  color: #22d3ee;
  background: linear-gradient(145deg, rgba(34, 211, 238, 0.14), rgba(21, 93, 252, 0.16));
  font-size: 12px;
  box-shadow: inset 0 0 24px rgba(34, 211, 238, 0.08);
}
.formgo-diagram > div > b > i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.7;
}
.formgo-diagram > div > b > span {
  position: absolute;
  inset: 29px 8px auto;
  padding-top: 5px;
  border-top: 1px solid rgba(34, 211, 238, 0.25);
  color: inherit;
  font-size: 12px;
  text-align: center;
}
.formgo-diagram > div p {
  min-width: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.formgo-diagram > div strong {
  color: #eef4ff;
  font-size: 19px;
}
.formgo-diagram > div p span {
  margin-top: 5px;
  color: #94a2c2;
  font-size: 14px;
}
.formgo-diagram .is-server > b {
  height: 82px;
  padding-top: 14px;
  border-color: rgba(148, 162, 194, 0.45);
  border-radius: 8px;
  color: #94a2c2;
  background: repeating-linear-gradient(180deg, rgba(148, 162, 194, 0.13) 0 18px, rgba(148, 162, 194, 0.04) 18px 25px);
}
.formgo-diagram .is-server > b > span {
  inset: auto 8px 7px;
  padding-top: 4px;
  border-top-color: rgba(148, 162, 194, 0.25);
}
.formgo-diagram > small {
  display: block;
  margin-top: 30px;
  padding: 20px 22px;
  border-radius: 12px;
  color: #aab6d2;
  background: rgba(6, 11, 20, 0.32);
  font-size: 13px;
  line-height: 1.9;
}

.formgo-no-send {
  margin-block: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #ff7b89;
  font-size: 13px;
  font-weight: 700;
}
.formgo-no-send i {
  flex: 1;
  border-top: 1px dashed rgba(255, 123, 137, 0.55);
}
.formgo-no-send b {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 123, 137, 0.5);
  border-radius: 50%;
  background: rgba(255, 123, 137, 0.1);
  font-size: 17px;
}

/* FAQ */
.formgo-faq-section {
  background: #f8faff;
}

.formgo-faq details {
  border-bottom: 1px solid #e3e8f3;
}
.formgo-faq details:first-child {
  border-top: 1px solid #e3e8f3;
}
.formgo-faq details[open] summary::after {
  content: "−";
}
.formgo-faq summary {
  min-height: 96px;
  padding: 30px 6px;
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  font-size: 22px;
  line-height: 1.5;
  font-weight: 700;
  list-style: none;
}
.formgo-faq summary::-webkit-details-marker {
  display: none;
}
.formgo-faq summary::after {
  content: "+";
  margin-left: auto;
  color: #155dfc;
  font-size: 30px;
  line-height: 1;
}
.formgo-faq summary b {
  color: #155dfc;
  font-size: 16px;
  flex: 0 0 auto;
}
.formgo-faq p {
  margin: 0;
  padding: 4px 56px 34px 58px;
  color: #4b5768;
  font-size: 18px;
  line-height: 1.9;
}

/* Final CTA */
.formgo-final {
  position: relative;
  min-height: 560px;
  padding: 130px 0;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(120deg, #071a4a 0%, #082c9e 38%, #155dfc 72%, #53a7ff 120%);
}
.formgo-final::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  top: -330px;
  right: 4%;
  border: 100px solid rgba(255, 255, 255, 0.055);
  border-radius: 50%;
}
.formgo-final::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  left: 48%;
  bottom: -330px;
  border-radius: 50%;
  background: rgba(34, 211, 238, 0.13);
  filter: blur(8px);
}
.formgo-final .formgo-container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}
.formgo-final small,
.formgo-final code {
  color: #cbdcff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.formgo-final h2 {
  margin: 22px 0 16px;
  font-size: clamp(42px, 4vw, 62px);
  line-height: 1.25;
  letter-spacing: -0.035em;
}
.formgo-final p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}
.formgo-final code {
  display: block;
  margin-top: 26px;
}
.formgo-final code::before {
  content: "$ ";
  color: #22d3ee;
}
.formgo-final .formgo-button {
  min-height: 68px;
  padding-inline: 38px;
  flex: 0 0 auto;
  border-radius: 16px;
  font-size: 17px;
}

/* Footer */
.formgo-footer {
  padding: 48px 0;
  background: #060b14;
  color: #7c88a8;
}
.formgo-footer .formgo-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
}
.formgo-footer strong {
  color: #eaf0ff;
  font-size: 18px;
}
.formgo-footer p {
  margin: 8px 0 0;
  font-size: 14px;
}

@keyframes formgo-pulse {
  50% {
    opacity: 0.4;
  }
}
/* Tablet */
@media (max-width: 1080px) {
  .formgo-nav {
    display: none;
  }
  .formgo-install {
    margin-left: auto;
  }
  .formgo-hero__inner,
  .formgo-security__inner {
    grid-template-columns: 1fr;
  }
  .formgo-security__inner {
    gap: 72px;
  }
  .formgo-window {
    width: 100%;
    max-width: 720px;
    margin-inline: auto;
  }
  .formgo-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .formgo-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 56px 0;
  }
  .formgo-flow::before {
    display: none;
  }
  .formgo-final .formgo-container {
    gap: 50px;
  }
}
/* Mobile */
@media (max-width: 768px) {
  html {
    scroll-padding-top: 76px;
  }
  .formgo-page {
    font-size: 17px;
  }
  .formgo-container {
    width: min(100% - 28px, 1440px);
  }
  .formgo-header__inner {
    min-height: 76px;
  }
  .formgo-header__cta {
    display: none;
  }
  .formgo-brand {
    gap: 9px;
  }
  .formgo-brand__logo {
    width: 46px;
    height: 46px;
  }
  .formgo-brand__name {
    font-size: 21px;
  }
  .formgo-section {
    padding: 92px 0;
  }
  .formgo-heading {
    margin-bottom: 54px;
  }
  .formgo-heading h2 {
    font-size: 34px;
  }
  .formgo-heading p {
    font-size: 17px;
  }
  .formgo-hero {
    min-height: 0;
    padding: 64px 0 76px;
  }
  .formgo-hero__inner {
    gap: 54px;
  }
  .formgo-hero h1 {
    font-size: 34px;
  }
  .formgo-hero__desc {
    font-size: 17px;
  }
  .formgo-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .formgo-actions .formgo-button {
    width: 100%;
  }
  .formgo-stats {
    gap: 7px;
    margin-top: 32px;
  }
  .formgo-stats div {
    min-height: 104px;
    padding: 15px 10px;
    border-radius: 13px;
  }
  .formgo-stats dt {
    font-size: 25px;
  }
  .formgo-stats dd {
    margin-top: 7px;
    font-size: 11.5px;
    line-height: 1.45;
  }
  .formgo-window {
    max-width: none;
    border-radius: 18px;
  }
  .formgo-window__body {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
  .formgo-window__bar {
    padding: 10px 12px;
  }
  .formgo-window__bar span {
    margin-left: 4px;
    padding: 5px 7px;
    font-size: 8px;
  }
  .formgo-window__tabs {
    padding: 8px 8px 0;
  }
  .formgo-window__tabs > * {
    padding: 8px 7px;
    font-size: 9px;
  }
  .formgo-demo-form {
    padding: 18px 12px;
  }
  .formgo-demo-form label {
    margin-bottom: 12px;
    font-size: 9px;
  }
  .formgo-demo-form span {
    height: 32px;
    padding-inline: 8px;
    font-size: 10px;
  }
  .formgo-demo-row {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr);
    gap: 6px;
  }
  .formgo-preview {
    padding: 18px 10px;
  }
  .formgo-sync {
    top: -11px;
    right: 8px;
    padding: 5px 8px;
    font-size: 8px;
  }
  .formgo-document {
    padding: 11px 9px;
  }
  .formgo-document header {
    padding-bottom: 8px;
  }
  .formgo-document header b {
    font-size: 10px;
  }
  .formgo-document header small {
    font-size: 7px;
  }
  .formgo-document > div {
    padding: 7px 0;
    gap: 3px;
    font-size: 7.5px;
  }
  .formgo-document .is-head {
    font-size: 7px;
  }
  .formgo-document footer {
    margin-top: 8px;
    padding-top: 7px;
    font-size: 8px;
  }
  .formgo-document footer strong {
    font-size: 10px;
  }
  .formgo-tags .formgo-container {
    justify-content: flex-start;
    gap: 8px;
  }
  .formgo-tags span {
    padding: 8px 12px;
    font-size: 12px;
  }
  .formgo-feature-grid {
    grid-template-columns: 1fr;
  }
  .formgo-card {
    min-height: 0;
    padding: 30px 26px;
  }
  .formgo-process {
    min-height: 0;
    padding-block: 104px;
    background: linear-gradient(180deg, #ffffff 0%, #f5f8ff 100%);
  }
  .formgo-process .formgo-heading {
    margin-bottom: 52px;
    text-align: left;
  }
  .formgo-process .formgo-heading h2 {
    max-width: 330px;
    font-size: 36px;
    line-height: 1.3;
  }
  .formgo-process .formgo-heading p {
    font-size: 17px;
    line-height: 1.85;
  }
  .formgo-flow {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .formgo-flow li {
    min-height: 0;
    padding: 26px 24px;
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    column-gap: 18px;
    border: 1px solid #e3e8f3;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 12px 32px rgba(11, 21, 38, 0.055);
  }
  .formgo-flow b {
    width: 54px;
    height: 54px;
    margin: 0;
    grid-row: 1/4;
    border-radius: 15px;
    font-size: 16px;
  }
  .formgo-flow small {
    align-self: end;
    font-size: 11px;
  }
  .formgo-flow h3 {
    margin: 4px 0 8px;
    font-size: 21px;
  }
  .formgo-flow p {
    max-width: none;
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
  }
  .formgo-security {
    min-height: 0;
    padding-block: 104px;
  }
  .formgo-security .formgo-heading h2 {
    font-size: 34px;
  }
  .formgo-security .formgo-heading p {
    font-size: 17px;
  }
  .formgo-security__inner {
    gap: 64px;
  }
  .formgo-checks {
    margin-top: 48px;
  }
  .formgo-diagram {
    padding: 30px 20px;
  }
  .formgo-diagram > div {
    min-height: 112px;
    padding: 18px 14px;
    gap: 14px;
  }
  .formgo-diagram > div > b {
    width: 82px;
    height: 62px;
  }
  .formgo-diagram > div strong {
    font-size: 16px;
  }
  .formgo-diagram > div p span {
    font-size: 12px;
  }
  .formgo-diagram > small {
    padding: 17px;
  }
  .formgo-no-send {
    gap: 7px;
    font-size: 10px;
  }
  .formgo-faq summary {
    min-height: 94px;
    padding-block: 26px;
    gap: 14px;
    font-size: 20px;
  }
  .formgo-faq summary b {
    font-size: 14px;
  }
  .formgo-faq p {
    padding: 2px 8px 30px 44px;
    font-size: 17px;
  }
  .formgo-final {
    min-height: 0;
    padding-block: 100px;
  }
  .formgo-final .formgo-container {
    align-items: flex-start;
    flex-direction: column;
    gap: 42px;
  }
  .formgo-final h2 {
    font-size: 38px;
  }
  .formgo-final p {
    font-size: 17px;
  }
  .formgo-final .formgo-button {
    width: 100%;
  }
  .formgo-footer .formgo-container {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  .formgo-page {
    word-break: normal;
  }
  .formgo-hero h1,
  .formgo-heading h2,
  .formgo-security .formgo-heading h2,
  .formgo-final h2 {
    word-break: keep-all;
  }
  .formgo-window__body {
    grid-template-columns: 1fr;
  }
  .formgo-demo-form {
    border-right: 0;
    border-bottom: 1px solid #e3e8f3;
  }
  .formgo-preview {
    padding: 26px 16px 18px;
  }
  .formgo-stats {
    grid-template-columns: 1fr;
  }
  .formgo-stats div {
    min-height: 88px;
  }
  .formgo-diagram > div {
    align-items: flex-start;
  }
  .formgo-no-send {
    text-align: center;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .formgo-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .formgo-button,
  .formgo-card {
    transition: none;
  }
}
