:root {
  --green: #03c75a;
  --green-700: #009b4f;
  --green-50: #eaf8f1;
  --blue: #2458d3;
  --amber: #f2b705;
  --ink: #17212b;
  --body: #3d4856;
  --muted: #6d7785;
  --line: #e4e9ef;
  --surface: #f6f8fb;
  --white: #ffffff;
  --error: #d92d42;
  --success: #047a3e;
  --radius: 8px;
  --shadow-sm: 0 1px 2px rgba(23, 33, 43, .06);
  --shadow-md: 0 10px 28px rgba(23, 33, 43, .12);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--body);
  background: var(--white);
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body,
button,
input,
textarea {
  letter-spacing: 0;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

[x-cloak] {
  display: none !important;
}

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

.section {
  padding: 92px 0;
}

.section--tight {
  padding: 56px 0;
}

.section--muted {
  background: var(--surface);
}

.section-head {
  max-width: 820px;
  margin-bottom: 42px;
}

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

.section-head h2,
.hero h1,
.apply__aside h2,
.final-cta h2 {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.2;
}

.section-head h2 {
  font-size: 40px;
}

.section-head p,
.section-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.section-note {
  max-width: 840px;
  margin: 28px auto 0;
  padding: 16px 18px;
  border: 1px solid #d8eee2;
  border-radius: var(--radius);
  background: var(--green-50);
  font-size: 15px;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 16px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--green-50);
  color: var(--green-700);
  font-size: 13px;
  font-weight: 800;
}

.eyebrow--light {
  background: rgba(255, 255, 255, .18);
  color: var(--white);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 20px;
  color: var(--ink);
  background: var(--white);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: transform .15s ease, border-color .15s ease, background .15s ease, box-shadow .15s ease;
}

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

.btn:active {
  transform: translateY(0);
}

.btn[disabled] {
  cursor: not-allowed;
  opacity: .72;
  transform: none;
}

.btn--primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(3, 199, 90, .24);
}

.btn--primary:hover {
  background: var(--green-700);
}

.btn--ghost {
  border-color: var(--line);
  background: var(--white);
}

.btn--ghost:hover {
  border-color: #c9d2dc;
  background: #fbfcfd;
}

.btn--light {
  background: var(--white);
  color: var(--green-700);
}

.btn--lg {
  min-height: 52px;
  padding: 14px 24px;
  font-size: 16px;
}

.btn--block {
  width: 100%;
}

.icon-button {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
}

.icon-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.icon-button--inverse {
  border-color: rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .1);
  color: var(--white);
}

.top-banner {
  position: relative;
  z-index: 80;
  background: var(--ink);
  color: var(--white);
}

.top-banner__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  gap: 14px;
  padding: 8px 64px;
  font-size: 14px;
}

.top-banner a {
  color: var(--green);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.top-banner .icon-button {
  position: absolute;
  top: 3px;
  right: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(12px);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.site-header__inner {
  display: flex;
  align-items: center;
  min-height: 72px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex: none;
  color: var(--ink);
  font-size: 21px;
  font-weight: 800;
  line-height: 1;
}

.brand b {
  color: var(--green-700);
}

.brand__mark {
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: var(--radius);
  background: var(--green);
  box-shadow: inset 0 -7px 0 rgba(0, 0, 0, .08);
}

.brand__mark::after {
  position: absolute;
  inset: 9px;
  border-radius: 50%;
  background: var(--white);
  content: "";
}

.nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}

.nav a,
.mobile-menu a:not(.btn) {
  border-radius: var(--radius);
  color: var(--body);
  font-size: 15px;
  font-weight: 700;
}

.nav a {
  padding: 10px 13px;
}

.nav a:hover,
.mobile-menu a:not(.btn):hover {
  background: var(--surface);
  color: var(--ink);
}

.header-cta {
  flex: none;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}

.site-header.is-open .menu-button span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.is-open .menu-button span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .menu-button span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  display: grid;
  gap: 4px;
  padding: 12px 24px 20px;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.mobile-menu a:not(.btn) {
  padding: 12px 10px;
}

.mobile-menu .btn {
  margin-top: 8px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 96px;
  background:
    linear-gradient(90deg, rgba(36, 88, 211, .04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(36, 88, 211, .04) 1px, transparent 1px),
    var(--white);
  background-size: 44px 44px;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(330px, .98fr);
  align-items: center;
  gap: 64px;
}

.hero h1 {
  max-width: 680px;
  font-size: 56px;
}

.hero h1 span {
  color: var(--green-700);
}

.hero__copy > p {
  max-width: 580px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 19px;
}

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

.hero__note {
  display: inline-flex;
  max-width: 560px;
  margin-top: 18px;
  padding-left: 13px;
  border-left: 3px solid var(--amber);
  color: var(--muted);
  font-size: 14px;
}

.phone-scene {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 620px;
}

.phone {
  position: relative;
  width: 312px;
  height: 624px;
  padding: 12px;
  border-radius: 42px;
  background: #111820;
  box-shadow: var(--shadow-md);
}

.phone__notch {
  position: absolute;
  top: 12px;
  left: 50%;
  z-index: 2;
  width: 116px;
  height: 24px;
  border-radius: 0 0 15px 15px;
  background: #111820;
  transform: translateX(-50%);
}

.phone__screen {
  height: 100%;
  overflow: hidden;
  border-radius: 31px;
  background: var(--white);
}

.shop-ui {
  position: relative;
  height: 100%;
  background: var(--white);
}

.shop-ui__top {
  display: flex;
  align-items: center;
  height: 58px;
  gap: 8px;
  padding: 18px 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 13px;
}

.shop-ui__logo {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: var(--blue);
}

.shop-ui__pill {
  width: 46px;
  height: 8px;
  margin-left: auto;
  border-radius: 999px;
  background: var(--surface);
}

.shop-ui__visual {
  display: flex;
  align-items: flex-end;
  height: 132px;
  padding: 14px;
  background:
    linear-gradient(135deg, #e7ecf4 25%, transparent 25%) -14px 0 / 28px 28px,
    linear-gradient(225deg, #eef2f7 25%, transparent 25%) -14px 0 / 28px 28px,
    #f8fafc;
}

.shop-ui__visual span {
  padding: 5px 8px;
  border-radius: 6px;
  background: var(--white);
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
}

.shop-ui__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 12px;
}

.shop-ui__grid span {
  display: block;
  height: 110px;
  border-radius: var(--radius);
  background:
    linear-gradient(#edf1f5 0 0) 12px 82px / 68% 8px no-repeat,
    linear-gradient(#dce3eb 0 0) 12px 98px / 44% 8px no-repeat,
    linear-gradient(135deg, #f3f6f9, #e5ebf2);
}

.om-card {
  position: absolute;
  right: 15px;
  bottom: 18px;
  left: 15px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 14px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 32px rgba(23, 33, 43, .18);
}

.om-card__close {
  position: absolute;
  top: -9px;
  right: -9px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--muted);
}

.om-card__close svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.om-card__icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 50%, var(--white) 0 5px, transparent 6px),
    var(--green);
}

.om-card strong,
.scene-chip b {
  display: block;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.3;
}

.om-card p,
.scene-chip span {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
}

.om-card__action {
  padding: 8px 10px;
  border-radius: var(--radius);
  background: var(--green);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
}

.scene-chip {
  position: absolute;
  width: 188px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.scene-chip--top {
  top: 70px;
  left: 4px;
  border-left: 4px solid var(--blue);
}

.scene-chip--bottom {
  right: 0;
  bottom: 118px;
  border-left: 4px solid var(--amber);
}

.trust-strip {
  border-block: 1px solid var(--line);
  background: #fbfcfe;
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-top: 26px;
  padding-bottom: 26px;
}

.trust-strip__grid div {
  display: grid;
  gap: 3px;
  min-height: 54px;
  align-content: center;
}

.trust-strip strong {
  color: var(--ink);
  font-size: 15px;
}

.trust-strip span {
  color: var(--muted);
  font-size: 13px;
}

.feature-grid,
.review-grid,
.pricing-grid {
  display: grid;
  gap: 20px;
}

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

.feature-card,
.review-card,
.price-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.feature-card {
  min-height: 250px;
  padding: 26px 22px;
}

.feature-card__icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: var(--green-50);
  color: var(--green-700);
}

.feature-card__icon::before,
.feature-card__icon::after {
  position: absolute;
  content: "";
}

.icon-code::before {
  width: 22px;
  height: 14px;
  border-inline: 2px solid currentColor;
  transform: skew(-18deg);
}

.icon-target::before {
  width: 24px;
  height: 24px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.icon-target::after {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.icon-sliders::before {
  width: 24px;
  height: 20px;
  background:
    linear-gradient(currentColor 0 0) 2px 2px / 2px 18px no-repeat,
    linear-gradient(currentColor 0 0) 11px 2px / 2px 18px no-repeat,
    linear-gradient(currentColor 0 0) 20px 2px / 2px 18px no-repeat;
}

.icon-sliders::after {
  width: 26px;
  height: 20px;
  background:
    radial-gradient(circle, currentColor 0 3px, transparent 4px) 0 4px / 9px 9px no-repeat,
    radial-gradient(circle, currentColor 0 3px, transparent 4px) 9px 10px / 9px 9px no-repeat,
    radial-gradient(circle, currentColor 0 3px, transparent 4px) 18px 1px / 9px 9px no-repeat;
}

.icon-chart::before {
  inset: 13px 12px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

.icon-chart::after {
  width: 23px;
  height: 18px;
  background:
    linear-gradient(currentColor 0 0) 4px 10px / 3px 8px no-repeat,
    linear-gradient(currentColor 0 0) 11px 6px / 3px 12px no-repeat,
    linear-gradient(currentColor 0 0) 18px 2px / 3px 16px no-repeat;
}

.feature-card h3,
.review-card strong,
.notice-item h3,
.price-card h3 {
  margin: 0;
  color: var(--ink);
}

.feature-card h3 {
  font-size: 19px;
}

.feature-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
}

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

.steps li {
  min-height: 220px;
  padding: 24px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.steps span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  font-weight: 800;
}

.steps h3 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
}

.steps p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.metrics-preview {
  display: none;
}

.mid-banner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 24px;
  border: 1px solid #cfe9dc;
  border-radius: var(--radius);
  background: var(--green-50);
}

.mid-banner > div {
  flex: 1;
  min-width: 0;
}

.mid-banner__label {
  display: block;
  margin-bottom: 4px;
  color: var(--green-700);
  font-size: 12px;
  font-weight: 800;
}

.mid-banner strong {
  color: var(--ink);
  font-size: 19px;
}

.mid-banner img {
  width: 160px;
  height: 64px;
  object-fit: cover;
  border-radius: var(--radius);
}

.review-grid {
  grid-template-columns: repeat(3, 1fr);
}

.review-card {
  min-height: 238px;
  padding: 24px;
}

.stars {
  display: flex;
  gap: 4px;
  height: 18px;
  margin-bottom: 15px;
}

.stars span {
  width: 16px;
  height: 16px;
  background: var(--amber);
  clip-path: polygon(50% 0, 61% 34%, 98% 34%, 68% 55%, 79% 91%, 50% 70%, 21% 91%, 32% 55%, 2% 34%, 39% 34%);
}

.review-card p {
  min-height: 86px;
  margin: 0 0 20px;
  color: var(--body);
  font-size: 15px;
}

.review-card footer {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-card footer span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green-50);
  color: var(--green-700);
  font-weight: 800;
}

.notice-list {
  display: grid;
  gap: 0;
  margin-top: 32px;
  border-top: 1px solid var(--line);
}

.notice-item {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.notice-item time {
  color: var(--green-700);
  font-size: 14px;
  font-weight: 800;
}

.notice-item h3 {
  font-size: 18px;
}

.notice-item p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.empty-state {
  margin-top: 28px;
  padding: 28px;
  border: 1px dashed #c9d2dc;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--muted);
  text-align: center;
}

.empty-state--left {
  text-align: left;
}

.empty-state p {
  margin: 0;
}

.skeleton-card,
.skeleton-line {
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(90deg, #ebeff4 25%, #f7f9fb 37%, #ebeff4 63%);
  background-size: 400% 100%;
  animation: shimmer 1.35s ease infinite;
}

.skeleton-card {
  height: 214px;
}

.skeleton-line {
  height: 72px;
  margin: 12px 0;
}

@keyframes shimmer {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}

.apply {
  background: var(--white);
}

.apply__grid {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.apply__aside {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 42px 38px;
  background: var(--ink);
  color: var(--white);
}

.apply__aside h2 {
  color: var(--white);
  font-size: 31px;
}

.apply__aside p,
.apply__aside li {
  color: rgba(255, 255, 255, .82);
}

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

.apply__aside li {
  display: flex;
  gap: 10px;
  font-size: 15px;
}

.apply__aside li::before {
  flex: none;
  width: 18px;
  height: 18px;
  margin-top: 4px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, transparent 45%, var(--white) 46% 54%, transparent 55%) 4px 8px / 8px 6px no-repeat,
    var(--green);
  content: "";
}

.apply-form {
  position: relative;
  display: grid;
  gap: 17px;
  padding: 38px;
  background: var(--white);
}

.apply-form__body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px 16px;
  grid-column: 1 / -1;
}

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

.field--full,
.consent,
.field-error--full,
.form-alert,
.apply-form .btn--block {
  grid-column: 1 / -1;
}

.field label {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.field label span {
  color: var(--green-700);
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid #d9e1ea;
  border-radius: var(--radius);
  background: #fbfcfe;
  color: var(--ink);
  padding: 12px 13px;
  outline: none;
}

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

.field input:focus,
.field textarea:focus {
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(3, 199, 90, .14);
}

.field p,
.field-error {
  min-height: 18px;
  margin: 0;
  color: var(--error);
  font-size: 13px;
}

.has-error input,
.has-error textarea {
  border-color: var(--error);
}

.captcha-retry {
  align-self: flex-start;
  margin: 2px 0 0;
  padding: 0;
  border: 0;
  background: none;
  color: var(--green, #03c75a);
  font-size: 13px;
  text-decoration: underline;
  cursor: pointer;
}

.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.consent input {
  flex: none;
  width: 18px;
  height: 18px;
  margin-top: 4px;
  accent-color: var(--green);
}

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

.consent strong {
  color: var(--ink);
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.form-alert {
  padding: 16px 18px;
  border-radius: var(--radius);
}

.form-alert strong {
  display: block;
  color: var(--ink);
  font-size: 16px;
}

.form-alert p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.form-alert .btn {
  margin-top: 14px;
}

.form-alert--success {
  border: 1px solid #bfe6d0;
  background: #effaf4;
}

.form-alert--error {
  border: 1px solid #fac7ce;
  background: #fff4f5;
}

.spinner {
  width: 17px;
  height: 17px;
  border: 2px solid rgba(255, 255, 255, .45);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin .75s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.faq-list {
  max-width: 840px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

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

.faq-list summary {
  display: flex;
  align-items: center;
  min-height: 76px;
  gap: 16px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary::before {
  display: grid;
  place-items: center;
  flex: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green-50);
  color: var(--green-700);
  font-size: 14px;
  content: "Q";
}

.faq-list summary::after {
  width: 16px;
  height: 16px;
  margin-left: auto;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg) translateY(-3px);
  transition: transform .2s ease;
  content: "";
}

.faq-list details[open] summary::after {
  transform: rotate(225deg) translateY(-3px);
}

.faq-list p {
  margin: 0;
  padding: 0 0 26px 44px;
  color: var(--muted);
  font-size: 16px;
}

.pricing-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 900px;
  margin: 0 auto;
}

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 30px;
}

.price-card--featured {
  border-color: var(--green);
  box-shadow: inset 0 0 0 1px var(--green), var(--shadow-sm);
}

.price-card > span {
  align-self: flex-start;
  margin-bottom: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--green-50);
  color: var(--green-700);
  font-size: 12px;
  font-weight: 800;
}

.price-card h3 {
  font-size: 24px;
}

.price-card p {
  margin: 10px 0 22px;
  color: var(--muted);
}

.price-card ul {
  display: grid;
  gap: 11px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.price-card li {
  display: flex;
  gap: 10px;
  color: var(--body);
  font-size: 15px;
}

.price-card li::before {
  flex: none;
  width: 18px;
  height: 18px;
  margin-top: 4px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, transparent 45%, var(--white) 46% 54%, transparent 55%) 4px 8px / 8px 6px no-repeat,
    var(--green);
  content: "";
}

.price-card .btn {
  margin-top: auto;
}

.final-cta {
  padding: 86px 0;
  background: var(--ink);
  color: var(--white);
  text-align: center;
}

.final-cta h2 {
  max-width: 820px;
  margin: 0 auto;
  color: var(--white);
  font-size: 42px;
}

.final-cta p {
  max-width: 660px;
  margin: 18px auto 30px;
  color: rgba(255, 255, 255, .78);
  font-size: 18px;
}

.footer {
  padding: 54px 0 34px;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto auto;
  gap: 56px;
}

.footer p {
  max-width: 390px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.footer nav {
  display: grid;
  gap: 9px;
  align-content: start;
}

.footer nav a {
  color: var(--body);
  font-size: 14px;
  font-weight: 700;
}

.footer nav a:hover {
  color: var(--green-700);
}

.footer nav .footer__link--disabled {
  color: var(--muted);
  cursor: default;
  font-size: 14px;
  font-weight: 700;
  opacity: .64;
  pointer-events: none;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.footer__bottom a {
  color: var(--body);
  font-weight: 700;
}

.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(23, 33, 43, .62);
}

.popup {
  position: relative;
  width: min(100%, 420px);
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.popup__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
}

.popup > img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: var(--surface);
}

.popup__body {
  padding: 28px;
}

.popup__body h2 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.25;
}

.popup__body p {
  margin: 0 0 22px;
  color: var(--muted);
}

.popup__today {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 28px 24px;
  color: var(--muted);
  font-size: 13px;
}

.popup__today input {
  width: 16px;
  height: 16px;
  accent-color: var(--green);
}

.toast-wrap {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 140;
  display: grid;
  gap: 10px;
  width: min(360px, calc(100vw - 40px));
}

.toast {
  padding: 14px 16px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow-md);
  font-size: 14px;
  font-weight: 800;
}

.toast--success {
  background: var(--success);
}

.toast--error {
  background: var(--error);
}

@media (max-width: 1080px) {
  .hero__grid,
  .apply__grid {
    grid-template-columns: 1fr;
  }

  .hero__copy {
    text-align: center;
  }

  .hero h1,
  .hero__copy > p {
    margin-right: auto;
    margin-left: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__note {
    display: flex;
    margin-right: auto;
    margin-left: auto;
    text-align: left;
  }

  .feature-grid,
  .steps,
  .trust-strip__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 840px) {
  html {
    scroll-padding-top: 72px;
  }

  .container {
    padding: 0 20px;
  }

  .section {
    padding: 66px 0;
  }

  .section-head h2,
  .final-cta h2 {
    font-size: 31px;
  }

  .section-head p,
  .final-cta p {
    font-size: 16px;
  }

  .nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .site-header__inner {
    min-height: 64px;
  }

  .hero {
    padding: 58px 0 70px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero__copy > p {
    font-size: 17px;
  }

  .phone-scene {
    min-height: 540px;
  }

  .phone {
    width: 274px;
    height: 548px;
  }

  .scene-chip {
    display: none;
  }

  .review-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .mid-banner {
    align-items: stretch;
    flex-direction: column;
  }

  .mid-banner img {
    width: 100%;
    height: 120px;
  }

  .notice-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .apply-form {
    grid-template-columns: 1fr;
    padding: 28px 22px;
  }

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

  .apply__aside {
    padding: 32px 24px;
  }

  .apply__aside h2 {
    font-size: 28px;
  }

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

@media (max-width: 560px) {
  .top-banner__inner {
    justify-content: flex-start;
    padding-right: 58px;
    padding-left: 18px;
  }

  .hero h1 {
    font-size: 33px;
  }

  .hero__actions {
    display: grid;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .feature-grid,
  .steps,
  .trust-strip__grid {
    grid-template-columns: 1fr;
  }

  .trust-strip__grid {
    gap: 14px;
  }

  .phone {
    width: 248px;
    height: 500px;
    border-radius: 36px;
  }

  .phone__screen {
    border-radius: 27px;
  }

  .shop-ui__grid span {
    height: 88px;
  }

  .om-card {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .om-card__action {
    grid-column: 1 / -1;
    text-align: center;
  }

  .footer__bottom {
    flex-direction: column;
  }
}
