:root {
  --ink: #111827;
  --navy: #10284a;
  --blue: #2458c8;
  --cyan: #008c99;
  --orange: #e85d24;
  --mint: #007c89;
  --paper: #f7f9fc;
  --panel: #ffffff;
  --line: #e5e7eb;
  --muted: #6b7280;
  --soft-blue: #eaf2ff;
  --soft-cyan: #ddf6fa;
  --soft-orange: #fff1e8;
  --shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Gmarket Sans", "Pretendard", "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
  word-break: normal;
  overflow-wrap: break-word;
  line-break: auto;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
  overflow-x: hidden;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px clamp(22px, 5vw, 72px);
  background: rgba(247, 249, 252, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--cyan));
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(16, 40, 74, 0.14);
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
  background: #fff;
}

.brand strong {
  display: block;
  font-size: 18px;
  line-height: 1;
  word-break: keep-all;
}

.brand span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 34px);
  flex-wrap: wrap;
}

.nav-links a {
  padding: 10px 13px;
  color: #374151;
  font-size: 14px;
  font-weight: 700;
  border-radius: 999px;
}

.nav-links a:hover {
  background: var(--soft-cyan);
  color: var(--mint);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
  word-break: keep-all;
}

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

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--cyan));
  box-shadow: 0 14px 28px rgba(16, 40, 74, 0.18);
}

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

.button.ghost {
  color: var(--navy);
  background: #fff;
  border-color: var(--line);
}

.button.ghost:hover {
  border-color: #c6d7e2;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.button.text {
  min-height: auto;
  padding: 0;
  border-radius: 0;
  color: var(--blue);
  background: transparent;
}

main {
  display: block;
}

.section {
  position: relative;
  padding: clamp(80px, 8vw, 118px) clamp(24px, 5vw, 72px);
}

.section.tight {
  padding-top: clamp(48px, 6vw, 84px);
  padding-bottom: clamp(48px, 6vw, 84px);
}

.wrap {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 76% 30%, rgba(33, 196, 214, .24), transparent 34%),
    radial-gradient(circle at 20% 18%, rgba(43, 98, 232, .18), transparent 32%),
    linear-gradient(180deg, #fbfdff 0%, #eef4f9 100%);
}

.hero-future-mark {
  position: absolute;
  right: clamp(-6px, 1.3vw, 24px);
  bottom: clamp(18px, 2.8vw, 48px);
  width: clamp(118px, 12vw, 190px);
  opacity: .92;
  pointer-events: none;
  filter: drop-shadow(0 18px 26px rgba(16, 40, 74, .12));
  z-index: 0;
}

@media (max-width: 1420px) {
  .hero-future-mark {
    display: none;
  }
}

.hero-future-mark img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(36px, 5vw, 68px);
  align-items: start;
}

.hero-copy {
  position: relative;
  padding-top: clamp(12px, 2.2vw, 34px);
  padding-bottom: clamp(86px, 8vw, 150px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--mint);
  background: var(--soft-cyan);
  font-size: 13px;
  font-weight: 800;
  text-transform: none;
}

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

h1,
h2,
h3,
.lead,
.flow-step,
.price-row,
.notice {
  word-break: keep-all;
  overflow-wrap: break-word;
  line-break: strict;
}

p,
.card p,
.section-head p,
.field-help,
.notice,
.price-row span,
.price-row b,
.form-panel,
.contract-grid p {
  word-break: normal;
  overflow-wrap: break-word;
  line-break: auto;
}

h1 {
  margin-bottom: 24px;
  color: var(--ink);
  font-size: clamp(38px, 5.2vw, 72px);
  line-height: 1.14;
  font-weight: 800;
}

h1 .accent {
  display: block;
  color: var(--cyan);
}

.lead {
  max-width: 760px;
  color: #374151;
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.68;
  font-weight: 650;
}

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

.hero-board {
  position: relative;
  min-height: 520px;
  border-radius: 32px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.board-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 24px;
  background: var(--navy);
  color: #fff;
  text-align: center;
}

.board-header strong {
  max-width: 78%;
  line-height: 1.35;
  font-weight: 800;
}

.board-label {
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  padding: 7px 12px;
  border-radius: 999px;
  color: #c9f7fb;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .16);
  font-size: 12px;
  font-weight: 800;
}

.signal {
  display: none;
  gap: 8px;
}

.signal span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--cyan);
}

.board-body {
  padding: 28px;
}

.floating-card {
  position: relative;
  padding: 24px 22px;
  border-radius: 24px;
  background: #f6f9fd;
  border: 1px solid var(--line);
  margin-bottom: 18px;
}

.floating-card.dark {
  color: #fff;
  background: linear-gradient(135deg, #10254a, #18376e);
}

.floating-card strong {
  display: block;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 800;
  text-align: center;
}

.floating-card p {
  width: 100%;
  max-width: none;
  margin: 14px 0 0;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.66;
  font-weight: 650;
  text-align: left;
}

.floating-card.dark p {
  color: #d4e4f8;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.metric {
  padding: 18px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
  text-align: center;
}

.metric b {
  display: block;
  color: var(--cyan);
  font-size: 25px;
}

.metric span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.section-head {
  margin-bottom: 34px;
  text-align: center;
}

.section-head.center {
  text-align: center;
}

.section-head h2 {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: clamp(30px, 3.5vw, 48px);
  line-height: 1.24;
  font-weight: 800;
}

.section-head p {
  max-width: 820px;
  color: #4b5563;
  font-size: 18px;
  line-height: 1.72;
  font-weight: 650;
  margin-left: auto;
  margin-right: auto;
}

.section-head.center p {
  margin-left: auto;
  margin-right: auto;
}

.grid {
  display: grid;
  gap: 24px;
}

.grid.three {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

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

/* terms 섹션 내부의 모든 카드에 동일한 배경색과 테두리 적용 */
#terms .card {
  background-color: #f7feff; /* 아까와 동일한 연한 하늘색 배경 */
  border: 1px solid #c9ebec; /* 연한 하늘색 테두리 */
}

.card {
  position: relative;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.card::after,
.philosophy-card::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 0;
  height: 4px;
  border-radius: 999px 999px 0 0;
  opacity: 0;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  box-shadow: 0 -12px 34px rgba(33, 196, 214, .42);
  transition: opacity .25s ease, transform .25s ease;
  transform: translateY(4px);
}

.card:hover {
  transform: translateY(-4px);
  border-color: #cbd8e6;
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.1);
}

.card:hover::after,
.philosophy-card:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.card h3 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.25;
  font-weight: 800;
  text-align: center;
}

.service-card h3 {
  display: grid;
  gap: 6px;
  align-content: center;
  min-height: 110px;
  margin: 0;
}

.service-card h3 span {
  color: #748095;
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.28;
  font-weight: 650;
}

.service-card h3 strong {
  display: block;
  color: var(--ink);
  font-size: clamp(27px, 2.4vw, 36px);
  line-height: 1.16;
  font-weight: 900;
}

.card p {
  color: #4b5563;
  font-size: 17px;
  line-height: 1.72;
  font-weight: 650;
  text-align: left;
}

.card .icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 18px;
  color: var(--mint);
  background: var(--soft-cyan);
  margin-left: auto;
  margin-right: auto;
}

.service-card {
  min-height: 650px;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 22px;
  text-align: center;
}

.service-card > div {
  display: grid;
  grid-template-rows: 54px 110px 138px 210px;
  gap: 18px;
  align-items: start;
}

.service-card p {
  margin: 0;
  text-align: left;
}

.service-card > .button {
  width: min(270px, 100%);
  min-height: 54px;
  margin: 0 auto;
  padding: 13px 22px;
  border-radius: 999px;
}

.service-card > .button.text {
  color: var(--blue);
  background: #fff;
  border: 1px solid rgba(36, 88, 200, .18);
}

.service-card > .button.text:hover {
  background: var(--soft-blue);
  box-shadow: 0 10px 24px rgba(36, 88, 200, .1);
}

.service-visual {
  display: block;
  width: 100%;
  margin: 0;
  align-self: end;
  overflow: hidden;
  border-radius: 20px;
  background: #eef6fb;
  border: 1px solid rgba(203, 216, 230, .82);
  box-shadow: 0 12px 28px rgba(15, 23, 42, .08);
}

.service-visual img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
  background: #eef6fb;
}

.service-card.featured .service-visual {
  border-color: rgba(203, 216, 230, .82);
  background: #eef6fb;
  box-shadow: 0 12px 28px rgba(15, 23, 42, .08);
}

.service-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(220px, 100%);
  min-height: 54px;
  margin: 0 auto;
  padding: 12px 20px;
  border-radius: 999px;
  color: var(--mint);
  background: var(--soft-cyan);
  font-weight: 800;
  letter-spacing: 0;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}

.service-card:hover .service-pill {
  transform: translateY(-2px);
  color: #fff;
  background: var(--cyan);
}

.service-card.featured {
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(221, 246, 250, .5), rgba(255, 255, 255, 0) 34%),
    var(--panel);
  border-color: rgba(0, 140, 153, .28);
}

.service-card.featured h3,
.service-card.featured p {
  color: inherit;
}

.service-card.featured .icon {
  color: #0b2447;
  background: #dffbff;
}

.service-card.featured .service-pill {
  color: var(--mint);
  background: var(--soft-cyan);
}

.service-card.featured:hover .service-pill {
  color: #fff;
  background: var(--cyan);
}

.tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 32px;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--soft-orange);
  color: #b84a17;
  font-size: 13px;
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(26px, 5vw, 64px);
  align-items: center;
}

.flow {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.flow-step {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 16px;
  padding: 12px 18px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--line);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  min-height: 80px;
}

.flow-step:hover {
  transform: translateY(-3px);
  border-color: #cbd8e6;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
}

.flow-step b {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  color: #fff;
  background: var(--cyan);
  font-size: 20px;
  align-self: center;
  flex-shrink: 0;
}

.flow-step div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}

.flow-step strong {
  display: block;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 800;
}

.flow-step span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.5;
}

.dark-band {
  color: #fff;
  background: var(--navy);
}

.dark-band .section-head h2,
.dark-band .section-head p {
  color: #fff;
}

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

.feature-list li {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  font-weight: 800;
}

.philosophy-section {
  background:
    radial-gradient(circle at 14% 18%, rgba(0, 140, 153, .28), transparent 28%),
    radial-gradient(circle at 86% 30%, rgba(255, 255, 255, .12), transparent 28%),
    var(--navy);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.philosophy-card {
  position: relative;
  min-height: 520px;
  padding: 30px;
  border-radius: 26px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .12);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: transform .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.philosophy-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, .12);
  border-color: rgba(221, 246, 250, .42);
  box-shadow: 0 24px 54px rgba(0, 0, 0, .18);
}

.philosophy-card.is-main {
  grid-row: auto;
  background: linear-gradient(145deg, rgba(255, 255, 255, .15), rgba(0, 140, 153, .16));
}

.philosophy-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 34px;
  margin: 0 auto 18px;
  padding: 7px 13px;
  border-radius: 999px;
  color: #d7fbff;
  background: rgba(221, 246, 250, .12);
  border: 1px solid rgba(221, 246, 250, .22);
  font-size: 13px;
  font-weight: 800;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.philosophy-card:hover .philosophy-kicker {
  transform: translateY(-2px);
  color: var(--navy);
  background: #dffbff;
  border-color: transparent;
  box-shadow: 0 12px 28px rgba(33, 196, 214, .22);
}

.philosophy-card h3 {
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(23px, 2.2vw, 34px);
  line-height: 1.28;
  text-align: center;
}

.philosophy-card p {
  margin: 0;
  color: #d9e7f6;
  font-size: 17px;
  line-height: 1.75;
  font-weight: 650;
  text-align: left;
}

.philosophy-visual {
  display: block;
  width: 100%;
  margin-top: 24px;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(221, 246, 250, .22);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .18);
}

.philosophy-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.philosophy-statement {
  display: grid;
  gap: 10px;
  width: min(980px, 100%);
  margin: 34px auto 0;
  padding: 8px 0 0;
  border-radius: 0;
  text-align: center;
  background: transparent;
  color: #fff;
  box-shadow: none;
}

.philosophy-statement strong {
  font-size: clamp(24px, 2.4vw, 36px);
  font-weight: 500;
  line-height: 1.24;
  letter-spacing: .035em;
}

.philosophy-statement span {
  color: #d9e7f6;
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: .015em;
}

.patedge-logo {
  display: block;
  width: min(300px, 72%);
  margin: 0 auto 18px;
  border-radius: 22px;
  object-fit: cover;
}

.patedge-board-body {
  display: grid;
  gap: 18px;
}

.brand-subcopy {
  width: min(520px, 100%);
  margin: 0 auto;
  color: #374151;
  font-size: 17px;
  line-height: 1.62;
  font-weight: 750;
  text-align: center;
}

.engine-visual {
  margin: 0;
  padding: 14px;
  border-radius: 24px;
  background: #f7fbfd;
  border: 1px solid var(--line);
}

.engine-visual img {
  display: block;
  width: 100%;
  max-height: 310px;
  object-fit: contain;
  border-radius: 18px;
  background: #fff;
}

.engine-visual figcaption {
  margin-top: 10px;
  color: #6b7280;
  font-size: 13px;
  line-height: 1.55;
  font-weight: 700;
  text-align: center;
}

.price-box {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-stack,
.route-stack {
  display: grid;
  gap: 28px;
}

.contact-panel,
.route-panel {
  width: min(820px, 100%);
  margin: 0 auto;
}

.pricing-grid {
  align-items: stretch;
}

.pricing-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing-card .price-row {
  margin-top: 0;
}

.featured-price {
  border-color: rgba(0, 140, 153, .45);
  background: linear-gradient(180deg, #ffffff, #eefbfd);
}

.center-actions {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid #e8eef6;
  color: #43536a;
  font-weight: 700;
}

.price-row:last-child {
  border-bottom: 0;
}

.price-row b {
  color: var(--ink);
  text-align: right;
}

.vat-text {
  font-weight: 500; /* semi-bold 정도 */
}

.notice {
  padding: 20px;
  border-radius: 20px;
  background: #fff7ef;
  border: 1px solid #ffd8be;
  color: #6e3b1f;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 700;
}

.form-panel {
  padding: 30px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-form {
  width: min(920px, 100%);
  margin: 0 auto;
}

.contact-form[hidden] {
  display: none;
}

.contact-form.is-collapsed {
  display: none;
}

.contact-form.is-open {
  display: block;
  animation: fadeUp .35s ease both;
}

.privacy-consent {
  margin-top: 22px;
  padding: 20px;
  border-radius: 20px;
  background: #f8fbff;
  border: 1px solid var(--line);
}

.privacy-consent strong {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  text-align: center;
}

.privacy-consent ul {
  margin: 0 0 14px;
  padding-left: 20px;
  color: #4b5563;
  line-height: 1.65;
  font-weight: 650;
}

.privacy-consent label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #334155;
  font-weight: 800;
}

.privacy-consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--cyan);
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--mint);
  font-weight: 800;
  text-align: center;
}

.apply-stack {
  display: grid;
  gap: 28px;
}

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

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

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

.field label {
  color: #33445b;
  font-size: 14px;
  font-weight: 800;
}

.field-help {
  margin: 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 650;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #cfdbea;
  border-radius: 14px;
  color: #334155;
  background: #fbfdff;
}

.field textarea {
  min-height: 170px;
  resize: vertical;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.choice-grid label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #f8fbff;
  border: 1px solid var(--line);
  color: #43536a;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 750;
}

.choice-grid input {
  width: 18px;
  height: 18px;
  accent-color: var(--cyan);
}

.mt-10 {
  margin-top: 10px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 20px 0;
}

.check-list label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border-radius: 16px;
  background: #f5f8fc;
  border: 1px solid var(--line);
  color: #43536a;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 650;
}

.check-list input {
  width: 20px;
  height: 20px;
  margin-top: 1px;
  accent-color: var(--blue);
}

.form-actions {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.bank-panel {
  display: none;
  margin-top: 22px;
  padding: 22px;
  border-radius: 22px;
  background: #edf8ff;
  border: 1px solid #b9def8;
}

.bank-panel.is-open {
  display: block;
}

.bank-panel h3 {
  margin-bottom: 10px;
}

.bank-panel .fake-account {
  display: inline-flex;
  margin-top: 8px;
  padding: 10px 14px;
  border-radius: 14px;
  background: #fff;
  color: var(--blue);
  font-weight: 900;
}

.contract-box {
  padding: 22px;
  border-radius: 22px;
  background: #f8fbff;
  border: 1px solid var(--line);
}

.contract-full {
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.contract-box h3 {
  margin-bottom: 12px;
  text-align: center;
}

.contract-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.contract-grid article {
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
}

.contract-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.35;
  text-align: center;
}

.contract-grid p {
  margin: 0;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 650;
}

.contract-box ol {
  margin: 0;
  padding-left: 20px;
  color: #43536a;
  line-height: 1.7;
  font-weight: 650;
}

.footer {
  padding: 42px clamp(22px, 5vw, 72px);
  color: #d4e0ee;
  background: #0b1527;
}

.footer-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.footer small {
  display: block;
  color: #9caac0;
  line-height: 1.6;
}

.footer .copyright {
  margin-top: 12px;
  color: #d4e0ee;
  font-weight: 750;
}

.legal-links {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 700;
}

.legal-links a:hover {
  color: #fff;
}

.hero-board,
.card,
.flow-step,
.price-box,
.form-panel {
  animation: fadeUp .55s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-cta {
    width: 100%;
    justify-content: flex-start;
  }

  .hero-grid,
  .split,
  .grid.two,
  .grid.three,
  .philosophy-grid,
  .contract-grid,
  .choice-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .philosophy-card.is-main {
    grid-row: auto;
  }

  .hero {
    min-height: auto;
  }

  .hero-board {
    min-height: auto;
  }

  .hero-future-mark {
    position: relative;
    left: auto;
    bottom: auto;
    width: min(180px, 42vw);
    margin: 0 auto;
  }

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

  .legal-links {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .section {
    padding-top: 60px;
    padding-bottom: 60px;
    padding-left: 18px;
    padding-right: 18px;
  }

  h1 {
    font-size: clamp(34px, 10vw, 42px);
    line-height: 1.18;
  }

  .section-head h2 {
    font-size: clamp(28px, 8vw, 34px);
  }

  .lead {
    font-size: 17px;
  }

  .nav {
    padding: 16px 18px;
  }

  .nav-links {
    justify-content: flex-start;
  }

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

  .button {
    width: 100%;
  }
}
