:root {
  color-scheme: light;
  --yellow: #fce533;
  --ink: #222222;
  --black: #111111;
  --dark: #222222;
  --blue: #2d7be7;
  --soft-blue: #cce1ff;
  --muted: #767676;
  --line: #eceff4;
  --paper: #ffffff;
  --paper-soft: #f9fafc;
  --purple: #b158f4;
  --faq: #c8cdd2;
  --radius: 8px;
  --shadow: 0 10px 48px rgb(0 0 0 / 15%);
  --frame: 393px;
  --nav-height: 58px;
  --fixed-contact-height: 134px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.35;
}

body.modal-open {
  overflow: hidden;
}

button {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: 0;
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

.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;
}

.page-shell {
  width: 100%;
  min-height: 100vh;
  margin: 0;
  padding-top: var(--nav-height);
  overflow: hidden;
  background: var(--paper);
}

.onepage-nav,
.hero,
.worry-section,
.review-section,
.product-section,
.contact-cta,
.cms-section,
.service-section,
.faq-section,
.site-footer {
  width: 100%;
}

.onepage-nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  height: var(--nav-height);
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-bottom: 1px solid rgb(255 255 255 / 12%);
  background: rgb(24 24 24 / 96%);
  backdrop-filter: blur(10px);
}

.onepage-nav__track {
  display: flex;
  width: min(100%, 720px);
  align-items: center;
  justify-content: center;
  gap: clamp(26px, 7vw, 64px);
  overflow: hidden;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.onepage-nav__track::-webkit-scrollbar {
  display: none;
}

.onepage-nav a {
  position: relative;
  display: inline-flex;
  min-width: max-content;
  height: var(--nav-height);
  align-items: center;
  justify-content: center;
  padding: 0 2px;
  border: 0;
  background: transparent;
  color: rgb(255 255 255 / 82%);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.5px;
  white-space: nowrap;
  touch-action: manipulation;
  transition: color 0.2s ease;
}

.onepage-nav a::after {
  position: absolute;
  right: 0;
  bottom: 13px;
  left: 0;
  height: 2px;
  background: var(--yellow);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transform-origin: center;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.onepage-nav a:hover,
.onepage-nav a:focus-visible,
.onepage-nav a.is-active {
  color: #fff;
}

.onepage-nav a:hover::after,
.onepage-nav a:focus-visible::after,
.onepage-nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.onepage-nav a:focus-visible {
  outline: 0;
}

.hero {
  display: grid;
  justify-items: center;
  gap: 46px;
  padding-top: 50px;
  background: var(--dark);
  color: var(--soft-blue);
  text-align: center;
}

.hero > * {
  width: min(100%, var(--frame));
}

.hero h1 {
  margin: 0;
  width: auto;
  font-size: 32px;
  font-weight: 900;
  line-height: 1.2;
}

.hero h1 span {
  display: block;
}

.hero__image {
  width: min(269px, 80vw);
  height: auto;
  margin-top: 1px;
}

.tag-list {
  display: flex;
  width: auto;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  padding: 5px 0;
}

.tag-list span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  padding: 5px 15px;
  border-radius: 999px;
  background: var(--black);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
}

.feature-marquee {
  display: block;
  width: min(100%, var(--frame));
  padding: 20px 0;
  overflow: hidden;
  border-top: 1px solid #282727;
  border-bottom: 1px solid #282727;
  color: #969696;
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
  scrollbar-width: none;
}

.feature-marquee__track {
  display: flex;
  width: max-content;
  animation: feature-marquee 26s linear infinite;
  will-change: transform;
}

.feature-marquee__group {
  display: flex;
  flex: 0 0 auto;
  gap: 20px;
  align-items: center;
  padding: 0 10px;
}

.feature-marquee::-webkit-scrollbar,
.service-track::-webkit-scrollbar {
  display: none;
}

@keyframes feature-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.worry-section {
  --worry-scale: 1;
  --worry-unscaled-width: 393px;
  position: relative;
  height: calc(664px * var(--worry-scale));
  min-height: calc(664px * var(--worry-scale));
  padding: 0;
  overflow: hidden;
  background: #fff;
  text-align: center;
}

.section-kicker {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
}

.worry-canvas {
  position: absolute;
  top: 0;
  left: 50%;
  width: 393px;
  height: 664px;
  transform: translateX(-50%) scale(var(--worry-scale));
  transform-origin: top center;
}

.worry-canvas > .section-kicker {
  position: absolute;
  top: 47px;
  left: 50%;
  width: 393px;
  transform: translateX(-50%);
  font-weight: 500;
  line-height: normal;
  letter-spacing: -1px;
}

.worry-canvas h2 {
  position: absolute;
  top: 112px;
  left: 50%;
  width: 393px;
  margin: 0;
  transform: translateX(-50%);
  color: var(--blue);
  font-size: 32px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -1px;
}

.worry-visual {
  position: absolute;
  top: 0;
  left: 0;
  width: 393px;
  height: 532px;
  pointer-events: none;
  z-index: 1;
}

.worry-labels {
  position: absolute;
  top: 0;
  left: 0;
  width: 393px;
  height: 532px;
  z-index: 2;
}

.worry-section__image {
  position: absolute;
  top: 228px;
  left: calc(50% + 4.5px);
  width: 272px;
  height: 272px;
  transform: translateX(-50%);
  object-fit: cover;
}

.worry-chip {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 999px;
  background: #a3acc3;
  color: #fffbfb;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -1px;
  white-space: nowrap;
  pointer-events: auto;
  user-select: text;
}

.worry-chip--quality {
  top: 209px;
  left: 105px;
}

.worry-chip--design {
  top: 244px;
  left: 288px;
}

.worry-chip--security {
  top: 288px;
  left: 45px;
}

.responsibility-band {
  position: absolute;
  top: 532px;
  left: calc((393px - var(--worry-unscaled-width)) / 2);
  display: grid;
  width: var(--worry-unscaled-width);
  height: 132px;
  min-height: 132px;
  place-items: center;
  padding: 10px;
  background: var(--blue);
  color: #fff;
}

.responsibility-band__inner {
  position: relative;
  display: grid;
  width: min(100%, var(--frame));
  justify-items: center;
  gap: 8px;
  letter-spacing: -1px;
  white-space: nowrap;
}

.responsibility-band p {
  margin: 0;
  color: #7bb2ff;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}

.responsibility-band strong {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  line-height: normal;
}

.responsibility-band span {
  color: #d8ff84;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
}

.review-section {
  min-height: 491px;
  padding-top: 72px;
  padding-bottom: 72px;
  overflow: hidden;
  background: var(--paper-soft);
  text-align: center;
}

.review-section .section-kicker {
  color: var(--muted);
  font-size: 16px;
  font-weight: 300;
}

.review-section h2 {
  margin: 8px 0 0;
  color: #000;
  font-size: 32px;
  font-weight: 800;
}

.review-stage {
  position: relative;
  width: min(100%, var(--frame));
  height: 300px;
  margin: 20px auto 0;
}

.review-stage__mascot {
  position: absolute;
  top: 40px;
  left: 50%;
  width: 128px;
  height: 128px;
  transform: translateX(-50%);
  z-index: 3;
}

.review-bubble {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 1px;
  justify-items: start;
  padding: 10px 15px;
  border-radius: 999px;
  background: #f9f8f8;
  box-shadow: var(--shadow);
  color: var(--muted);
  font-size: 13px;
  text-align: left;
}

.review-bubble img {
  width: 75px;
  height: 15px;
}

.review-bubble p {
  margin: 0;
  white-space: nowrap;
}

.review-bubble--top {
  top: 47px;
  right: 8px;
}

.review-bubble--left {
  top: 129px;
  left: 4px;
}

.review-bubble--bottom {
  right: 8px;
  bottom: 18px;
}

.product-section {
  display: grid;
  gap: 18px;
  justify-items: center;
  padding: 50px 14px;
  background: #fff;
}

.product-grid {
  display: grid;
  width: min(100%, calc(var(--frame) - 28px));
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}

.product-card {
  width: 100%;
  min-width: 0;
}

.product-card h3,
.sample-card h3 {
  display: flex;
  height: 28px;
  align-items: center;
  margin: 0;
  padding: 0 15px;
  border-radius: var(--radius) var(--radius) 0 0;
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  font-weight: 300;
  line-height: normal;
  letter-spacing: -1px;
  white-space: nowrap;
}

.product-card__body {
  display: grid;
  height: 82px;
  gap: 8px;
  align-content: start;
  padding: 14px 15px 15px;
  overflow: hidden;
  border-radius: 0 0 var(--radius) var(--radius);
  background: #fff;
  box-shadow: 0 8px 24px rgb(0 0 0 / 25%);
  font-weight: 300;
  letter-spacing: -1px;
}

.product-card strong {
  display: flex;
  align-items: center;
  min-width: 100%;
  color: #000;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.18;
  word-break: keep-all;
}

.product-card p {
  width: 140px;
  margin: 0;
  color: rgb(119 102 119 / 60%);
  font-size: 11px;
  font-weight: 300;
  line-height: 1.18;
  word-break: keep-all;
}

.sample-card {
  position: relative;
  display: grid;
  width: min(100%, calc(var(--frame) - 28px));
  height: 170px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 24px rgb(0 0 0 / 25%);
}

.sample-card h3 {
  background: #960dbc;
}

.sample-card > div {
  position: relative;
  z-index: 1;
}

.sample-card strong {
  display: block;
  max-width: 260px;
  margin: 17px 115px 0 25px;
  color: #222;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.45;
  letter-spacing: -1px;
}

.sample-card p {
  max-width: 230px;
  margin: 8px 115px 0 25px;
  color: #c9c9c9;
  font-size: 12px;
  line-height: 1.45;
  letter-spacing: -1px;
}

.sample-card__price {
  display: flex;
  gap: 18px;
  align-items: center;
  margin: 18px 0 0 54px;
  color: #6b6b6b;
  font-size: 12px;
  letter-spacing: -1px;
}

.sample-card__price span {
  text-decoration: line-through;
}

.sample-card__price strong {
  margin: 0;
  color: #3d3d3d;
  font-weight: 500;
}

.sample-card > img {
  position: absolute;
  right: 10px;
  top: 64px;
  width: 95px;
  height: 95px;
  object-fit: contain;
}

.contact-cta {
  min-height: 114px;
  position: relative;
  z-index: 30;
  background: rgb(255 255 255 / 10%);
}

.contact-cta__bar {
  position: relative;
  display: flex;
  align-items: flex-start;
  width: 100%;
  min-height: 114px;
  padding: 20px 23px 30px;
  overflow: hidden;
  background: rgb(255 255 255 / 10%);
}

.contact-cta__bar.is-fixed {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  background: rgb(255 255 255 / 10%);
  -webkit-backdrop-filter: blur(53px);
  backdrop-filter: blur(53px);
}

body.has-fixed-contact {
  padding-bottom: var(--fixed-contact-height);
}

.contact-button {
  display: flex;
  width: 100%;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  color: #fcfbf4;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -1px;
}

.contact-button--primary {
  background: #2d7be7;
}

.consult-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 24px 16px;
}

.consult-modal[hidden] {
  display: none;
}

.consult-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgb(17 17 17 / 58%);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.consult-modal__dialog {
  position: relative;
  box-sizing: border-box;
  width: clamp(320px, 80vw, 560px);
  max-width: calc(100vw - 32px);
  height: auto;
  max-height: min(820px, calc(100dvh - 40px));
  padding: 25px;
  overflow-y: auto;
  overscroll-behavior: contain;
  border: 1px solid #cfd4d9;
  border-radius: 18px;
  background: #fff;
  background-clip: padding-box;
  color: #1f2429;
  box-shadow: 0 22px 80px rgb(0 0 0 / 28%);
  scrollbar-gutter: stable;
}

.consult-modal__close {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgb(31 36 41 / 8%);
}

.consult-modal__close::before,
.consult-modal__close::after {
  position: absolute;
  top: 16px;
  left: 9px;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: #575e64;
  content: "";
}

.consult-modal__close::before {
  transform: rotate(45deg);
}

.consult-modal__close::after {
  transform: rotate(-45deg);
}

.consult-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.consult-field {
  display: flex;
  min-height: 68px;
  flex-direction: column;
  justify-content: center;
  padding: 1px 13px 1px 17px;
  border: 1px solid #cfd4d9;
  border-radius: 10px;
  background: #fff;
}

.consult-field.is-error {
  border-color: #e05252;
}

.consult-field span {
  color: #575e64;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
}

.consult-field input,
.consult-field select,
.consult-field textarea {
  width: 100%;
  min-width: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: #fff;
  color: #1f2429;
  font: inherit;
  font-size: 17px;
  line-height: normal;
}

.consult-field input,
.consult-field select {
  height: 28px;
}

.consult-field-error {
  min-height: 17px;
  margin: -5px 0 0 17px;
  color: #d83c3c;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.2px;
}

.consult-field-error:empty {
  display: none;
}

.consult-field input::placeholder,
.consult-field textarea::placeholder {
  color: #8c939a;
  opacity: 1;
}

.consult-field select {
  appearance: none;
  color: #8c939a;
}

.consult-field--select {
  position: relative;
  cursor: pointer;
  padding-right: 49px;
}

.consult-field--select select {
  cursor: pointer;
}

.consult-field--textarea {
  min-height: 118px;
  justify-content: flex-start;
  padding-top: 12px;
  padding-bottom: 12px;
}

.consult-field--textarea textarea {
  height: 70px;
  margin-top: 4px;
  resize: none;
  line-height: 1.35;
}

.consult-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.consult-field--select::after {
  position: absolute;
  top: 50%;
  right: 21px;
  width: 11px;
  height: 11px;
  border-right: 2px solid #575e64;
  border-bottom: 2px solid #575e64;
  content: "";
  pointer-events: none;
  transform: translateY(-72%) rotate(45deg);
}

.consult-type-group {
  display: grid;
  gap: 0;
}

.consult-type-group p {
  height: 24px;
  margin: 0;
  padding-top: 2px;
  overflow: hidden;
  color: #8c939a;
  font-size: 13px;
  line-height: 20px;
  white-space: nowrap;
}

.consult-agreements {
  display: flex;
  min-height: 215px;
  flex-direction: column;
  gap: 12px;
  margin-top: 22px;
  padding: 21px;
  border: 1px solid #cfd4d9;
  border-radius: 12px;
}

.consult-check-row {
  display: flex;
  min-height: 24px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.consult-check-row--all {
  min-height: 45px;
  padding-bottom: 21px;
  border-bottom: 1px solid #dee2e6;
}

.consult-agreements[data-expanded="false"] {
  min-height: auto;
}

.consult-agreements[data-expanded="false"] .consult-check-row--all {
  min-height: 24px;
  padding-bottom: 0;
  border-bottom: 0;
}

.consult-agreements[data-expanded="false"] [data-consult-agreement-detail] {
  display: none;
}

.consult-check-row label {
  display: flex;
  min-width: 0;
  gap: 8px;
  align-items: flex-start;
  color: #1f2429;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
}

.consult-check {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  margin: 2px 0 0;
  appearance: none;
  border: 1.5px solid #cfd4d9;
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
}

.consult-check:checked {
  border-color: var(--blue);
  background: var(--blue);
  box-shadow: inset 0 0 0 4px #fff;
}

.consult-term-button {
  position: relative;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  background: transparent;
}

.consult-term-button::before {
  position: absolute;
  top: 7px;
  left: 8px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #8c939a;
  border-bottom: 2px solid #8c939a;
  content: "";
  transform: rotate(45deg);
}

.consult-agreements[data-expanded="false"] .consult-check-row--all .consult-term-button::before {
  top: 9px;
  transform: rotate(-135deg);
}

.consult-term-button--next::before {
  top: 8px;
  left: 7px;
  transform: rotate(-45deg);
}

.consult-submit-wrap {
  display: flex;
  min-height: 80px;
  flex-direction: column;
  align-items: center;
  padding-top: 24px;
}

.consult-submit {
  display: flex;
  width: 100%;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 18px 24px;
  border-radius: 12px;
  background: #a6c2f7;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  line-height: 20px;
  text-align: center;
}

.consult-submit:disabled {
  cursor: not-allowed;
}

.consult-submit:not(:disabled) {
  background: var(--blue);
}

.consult-submit:not(:disabled):active {
  transform: translateY(1px);
}

.consult-modal__status {
  min-height: 18px;
  margin: 6px 0 0;
  color: #575e64;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
}

.cms-section {
  background: var(--blue);
  color: #fff;
  text-align: center;
}

.cms-section__intro {
  display: grid;
  width: min(100%, var(--frame));
  gap: 14px;
  margin: 0 auto;
  min-height: 206px;
  align-content: center;
  padding: 30px 24px;
}

.cms-section__intro p,
.cms-section__copy {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.cms-section h2 {
  margin: 0;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
}

.cms-visual {
  position: relative;
  display: grid;
  width: min(100%, var(--frame));
  min-height: 213px;
  margin: 0 auto;
  place-items: center;
  overflow: hidden;
  background: #444;
}

.cms-visual::after {
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 55%);
  content: "";
}

.cms-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, 0, 0) scale(1);
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.cms-visual.scroll-motion.is-scroll-active img {
  transform: translate3d(0, 0, 0) scale(1.018);
}

.cms-visual div {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
}

.cms-visual strong {
  font-size: 24px;
  font-weight: 600;
}

.cms-visual span {
  color: var(--yellow);
  font-size: 17px;
  font-weight: 600;
}

.cms-section__copy {
  width: min(100%, var(--frame));
  margin: 0 auto;
  padding: 31px 28px;
  font-size: 24px;
  line-height: 1.4;
}

.service-section {
  padding: 50px 0;
  overflow: hidden;
  background: var(--yellow);
}

.service-track {
  width: min(100%, var(--frame));
  margin: 0 auto;
  overflow: visible;
  cursor: grab;
  user-select: none;
  -webkit-overflow-scrolling: touch;
}

.service-track:active {
  cursor: grabbing;
}

.service-track .swiper-wrapper {
  align-items: stretch;
}

.service-card {
  display: grid;
  width: min(249px, calc(100vw - 30px));
  height: 281px;
  flex: 0 0 min(249px, calc(100vw - 30px));
  align-content: start;
  overflow: hidden;
  padding: 30px;
  border-radius: 5px;
  background: #fff;
  color: var(--ink);
}

.service-card--purple {
  background: var(--purple);
  color: #fff;
}

.service-card--dark {
  background: var(--dark);
  color: #fff;
}

.service-card img {
  width: 75px;
  height: 66px;
  object-fit: contain;
  transform: translate3d(0, 0, 0);
  transition: transform 0.36s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card.scroll-motion.is-scroll-active img {
  transform: translate3d(1px, -1px, 0);
}

.service-card--purple img,
.service-card--dark img {
  mix-blend-mode: screen;
}

.service-card h3 {
  margin: 25px 0 0;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.2;
}

.service-card strong {
  margin-top: 3px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
}

.service-card p {
  margin: 25px 0 0;
  font-size: 16px;
  line-height: 1.125;
}

.faq-section {
  min-height: 336px;
  padding: 48px 24px 70px;
  overflow: visible;
  background: var(--faq);
  color: #000;
}

.faq-section h2 {
  margin: 0 0 38px;
  font-size: 26px;
  font-weight: 900;
  text-align: center;
}

.faq-list {
  display: grid;
  width: min(100%, var(--frame));
  gap: 28px;
  margin: 0 auto;
}

.faq-list details {
  border-bottom: 1px solid rgb(105 112 119 / 22%);
  color: #697077;
}

.faq-list summary {
  display: grid;
  grid-template-columns: 45px 1fr 16px;
  gap: 8px;
  align-items: center;
  padding-bottom: 22px;
  font-size: 18px;
  font-weight: 600;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list details[open] summary {
  color: var(--blue);
}

.faq-list summary::after {
  width: 16px;
  height: 12px;
  background: currentColor;
  clip-path: polygon(50% 72%, 10% 22%, 25% 10%, 50% 42%, 75% 10%, 90% 22%);
  content: "";
}

.faq-list details[open] summary::after {
  transform: rotate(180deg);
}

.faq-list summary span {
  font-size: 20px;
}

.faq-list p {
  margin: -8px 0 22px 53px;
  color: #555d65;
  font-size: 14px;
  line-height: 1.55;
}

.site-footer {
  padding: 38px 24px 44px;
  border-top: 1px solid rgb(255 255 255 / 10%);
  background: var(--blue);
  color: #fff;
}

.site-footer__inner {
  display: grid;
  width: min(100%, 720px);
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 18px;
  row-gap: 10px;
  align-items: center;
  margin: 0 auto;
}

.site-footer strong {
  display: block;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.site-footer p {
  margin: 7px 0 0;
  color: rgb(255 255 255 / 68%);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.3px;
}

.site-footer__actions {
  display: flex;
  grid-column: 2;
  grid-row: 1;
  align-items: center;
  gap: 10px;
}

.site-footer__demo {
  position: relative;
  display: inline-flex;
  min-width: 168px;
}

.site-footer__demo::after {
  position: absolute;
  top: 50%;
  right: 15px;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  color: #fff;
  content: "";
  pointer-events: none;
  transform: translateY(-70%) rotate(45deg);
}

.site-footer__demo select {
  width: 100%;
  min-height: 42px;
  appearance: none;
  border: 1px solid rgb(255 255 255 / 22%);
  border-radius: 0;
  background: transparent;
  color: #fff;
  padding: 0 38px 0 16px;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.4px;
  cursor: pointer;
}

.site-footer__demo select option {
  color: var(--ink);
}

.site-footer__link {
  display: inline-flex;
  width: fit-content;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgb(255 255 255 / 22%);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.4px;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.site-footer__link:hover,
.site-footer__link:focus-visible,
.site-footer__demo select:hover,
.site-footer__demo select:focus-visible {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--ink);
}

.site-footer__demo:has(select:hover)::after,
.site-footer__demo:has(select:focus-visible)::after {
  color: var(--ink);
}

.site-footer__link:focus-visible,
.site-footer__demo select:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

@media (min-width: 640px) {
  .site-footer__actions {
    align-self: center;
  }
}

@media (max-width: 639px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .site-footer__actions {
    grid-column: 1;
    grid-row: auto;
    width: 100%;
    flex-wrap: wrap;
  }

  .site-footer__demo {
    flex: 1 1 180px;
  }
}

@media (max-width: 370px) {
  :root {
    --fixed-contact-height: 208px;
  }

  .brand__name {
    font-size: 21px;
  }

  .monthly-limit {
    font-size: 13px;
  }

  .hero h1,
  .worry-section h2,
  .review-section h2,
  .cms-section h2 {
    font-size: 29px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  body.has-fixed-contact {
    padding-bottom: var(--fixed-contact-height);
  }

  .sample-card strong,
  .sample-card p {
    margin-right: 94px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .feature-marquee__track {
    animation: none;
  }

  .cms-visual img,
  .service-card img {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
