@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.8/dist/web/static/pretendard.css");


/* Tokens */
:root {
  --color-carrot: #ff5000;
  --color-black: #000000;
  --color-white: #ffffff;
  --color-gray-30: #f7f7f7;
  --color-gray-50: #f4f4f5;
  --color-gray-100: #dedede;
  --color-gray-120: #e8eaee;
  --color-gray-150: #e1e1e1;
  --color-gray-300: #c4c4c4;
  --color-gray-500: #808080;
  --color-gray-700: #666666;
  --color-footer: #35393c;
  --radius-full: 999px;
  --radius-24: 24px;
  --radius-20: 20px;
  --radius-12: 12px;
  --radius-11: 11px;
  --radius-38: 38px;
  --radius-99: 99px;
  --font-brand: "Pretendard", "Noto Sans KR", Arial, sans-serif;
}

/* Base */
* {
  box-sizing: border-box;
}

html {
  background: var(--color-white);
  color: var(--color-black);
  font-family: var(--font-brand);
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  word-break: keep-all;
}

body {
  margin: 0;
  min-width: 280px;
  -webkit-font-smoothing: antialiased;
}

body.is-menu-open,
body.is-layer-open {
  overflow: hidden;
}

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

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

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

button,
input,
select,
textarea {
  border-radius: 0;
  color: inherit;
  font: inherit;
  -webkit-appearance: none;
  appearance: none;
}

button {
  padding: 0;
  border: 0;
  background: none;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(255, 80, 0, 0.4);
  outline-offset: 3px;
}

p,
h1,
h2,
h3,
ul {
  margin: 0;
}

ul {
  padding: 0;
}

/* Layout */
.page {
  width: 100%;
  overflow-x: hidden;
}

/* Header */
.site-header {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
  background: var(--color-white);
  border-bottom: 2px solid var(--color-carrot);
  z-index: 10;
}

.site-header .site-header-inner {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 390px;
  padding: 12px 20px;
}

.site-header .site-logo {
  width: 138px;
  height: 18px;
  overflow: hidden;
}

.site-header .site-logo img {
  width: 100%;
  height: 100%;
}

.site-header .menu-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.site-header .menu-button img {
  width: 24px;
  height: 24px;
}

.site-header .site-menu[hidden] {
  display: none;
}

.site-header .site-menu {
  width: 100%;
  background: var(--color-white);
}

.site-header .site-menu-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  padding: 36px 24px;
}

.site-header .site-menu-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 0;
  color: var(--color-black);
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  text-align: center;
  cursor: pointer;
}

.site-header.is-menu-open {
  position: fixed;
  inset: 0;
  align-items: center;
  justify-content: flex-start;
  height: 100vh;
  border-bottom: 0;
}

.site-header.is-menu-open .site-header-inner {
  height: 48px;
  max-width: none;
  border-bottom: 2px solid var(--color-carrot);
}

.site-header.is-menu-open .site-menu {
  flex: 1 1 auto;
  overflow: hidden;
}

.site-header.is-menu-open .menu-button img {
  display: none;
}

.site-header.is-menu-open .menu-button::before,
.site-header.is-menu-open .menu-button::after {
  position: absolute;
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: var(--color-black);
  content: "";
}

.site-header.is-menu-open .menu-button::before {
  transform: rotate(45deg);
}

.site-header.is-menu-open .menu-button::after {
  transform: rotate(-45deg);
}

/* Layer popup */
.layer-popup[hidden] {
  display: none;
}

.layer-popup {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.layer-popup .layer-popup-dim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.contract-info-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 320px;
  height: 460px;
  padding: 20px 0 40px;
  background: var(--color-white);
  border-radius: var(--radius-20);
  box-shadow: 0 16px 12px rgba(0, 0, 0, 0.24);
}

.contract-info-card.plug-info-card,
.contract-info-card.coverage-info-card {
  height: auto;
}

.contract-info-card .contract-info-close-row {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  padding-right: 20px;
}

.layer-popup .layer-close-button {
  position: relative;
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.layer-popup .layer-close-button::before,
.layer-popup .layer-close-button::after {
  position: absolute;
  top: 11px;
  left: 4px;
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: var(--color-black);
  content: "";
}

.layer-popup .layer-close-button::before {
  transform: rotate(45deg);
}

.layer-popup .layer-close-button::after {
  transform: rotate(-45deg);
}

.contract-info-card .contract-info-content {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 0;
  padding: 0 32px;
}

.contract-info-card.plug-info-card .contract-info-content,
.contract-info-card.coverage-info-card .contract-info-content {
  flex: 0 0 auto;
  justify-content: flex-start;
}

.contract-info-card.plug-info-card .contract-info-content {
  gap: 8px;
}

.contract-info-card.coverage-info-card .contract-info-content {
  gap: 32px;
}

.contract-info-card .contract-info-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.contract-info-card .contract-info-copy h2 {
  color: var(--color-black);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 32px;
}

.contract-info-card .contract-info-copy p {
  color: var(--color-gray-500);
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
}

.coverage-info-card .coverage-info-copy {
  gap: 16px;
}

.coverage-info-card .coverage-group p {
  font-weight: 500;
}

.coverage-info-card .coverage-group ul {
  padding-left: 24px;
  color: var(--color-gray-500);
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  list-style: disc;
}

.contract-info-card .contract-info-image {
  width: 200px;
  height: 200px;
  object-fit: contain;
}

.payment-info-popup .payment-info-image {
  transform: translateY(-14px);
}

.plug-info-card .plug-info-image {
  width: 192px;
  height: 168px;
  margin: 16px 0;
  object-fit: contain;
}

.contract-info-card .contract-info-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
  padding: 12px 40px;
  border-radius: var(--radius-full);
  background: var(--color-carrot);
  color: var(--color-white);
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  white-space: nowrap;
}

.entry-gift-card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 320px;
  max-width: 100%;
  height: 518px;
  max-height: calc(100dvh - 40px);
  padding: 25px 16px 10px;
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-gray-100);
  border-radius: var(--radius-20);
}

.entry-gift-popup:focus {
  outline: 0;
}

.entry-gift-card .entry-gift-close {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 28px;
  height: 28px;
}

.entry-gift-card .entry-gift-close::before,
.entry-gift-card .entry-gift-close::after {
  top: 13px;
  left: 5px;
  width: 18px;
  background: var(--color-gray-700);
}

.entry-gift-card .entry-gift-logo {
  width: 165px;
  height: auto;
  margin-bottom: 20px;
}

.entry-gift-card .entry-gift-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  text-align: center;
  white-space: nowrap;
}

.entry-gift-copy .entry-gift-eyebrow {
  color: var(--color-black);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.2;
}

.entry-gift-eyebrow .entry-gift-eyebrow-pc {
  display: none;
}

.entry-gift-copy .entry-gift-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--color-black);
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.12;
}

.entry-gift-title .entry-gift-title-prefix {
  font-size: 40px;
}

.entry-gift-copy .entry-gift-title em {
  color: #ff4600;
  font-style: normal;
}

.entry-gift-card .entry-gift-image {
  width: 216px;
  height: 216px;
  object-fit: contain;
}

.entry-gift-card .entry-gift-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 288px;
  max-width: 100%;
  height: 55px;
  margin-top: 7px;
  background: #ff4600;
  border-radius: 8px;
  color: var(--color-white);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.entry-gift-card .entry-gift-approval {
  margin-top: 10px;
  color: var(--color-gray-500);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: -0.1px;
  line-height: 1.15;
  text-align: center;
  white-space: nowrap;
}

/* Hero */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
  padding: 40px 20px;
  background: var(--color-gray-30);
}

.hero .hero-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
  max-width: 350px;
}

.hero .hero-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 560 / 290;
  overflow: hidden;
}

.hero-visual .hero-car {
  position: absolute;
  top: -2.76%;
  left: 50%;
  width: 63%;
  max-width: 352px;
  height: auto;
  transform: translateX(-50%);
}

.hero-card .hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 100%;
  text-align: center;
}

.hero-copy .hero-eyebrow {
  align-self: flex-end;
  color: var(--color-gray-500);
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
}

.hero-copy .hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  color: var(--color-black);
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.18;
}

.hero-copy .hero-title span {
  display: block;
  width: 100%;
  max-width: 100%;
}

.hero-card .hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

/* Shared components */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 50px;
  border-radius: var(--radius-full);
  font-size: 20px;
  font-weight: 700;
  line-height: 29px;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-carrot);
  color: var(--color-white);
}

.btn-outline {
  background: var(--color-white);
  border: 2px solid var(--color-carrot);
  color: var(--color-carrot);
}

.btn-dark {
  background: var(--color-black);
  color: var(--color-white);
}

.gift-banner {
  display: block;
  width: 100%;
  max-width: 350px;
  height: 117px;
  overflow: hidden;
}

.gift-banner picture,
.gift-banner .gift-banner-image {
  display: block;
  width: 100%;
  height: 100%;
}

.gift-banner .gift-banner-image {
  object-fit: fill;
}

/* Payment */
.payment-section {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 40px 20px;
  background: var(--color-white);
}

.payment-section .payment {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 350px;
}

.payment .payment-tabs {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 4px;
  background: var(--color-gray-50);
  border-radius: var(--radius-full);
}

.payment-tabs .payment-tab {
  display: flex;
  flex: 1 1 0;
  align-items: center;
  justify-content: center;
  min-width: 0;
  height: 50px;
  border-radius: var(--radius-full);
  color: var(--color-gray-500);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 14px;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
}

.payment-tabs .payment-tab.is-active {
  position: relative;
  z-index: 1;
  background: var(--color-white);
  color: var(--color-carrot);
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.20);
}

.payment .payment-card {
  overflow: hidden;
  border-radius: var(--radius-12);
}

.payment-card .plan-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px;
  background: var(--color-carrot);
  color: var(--color-white);
}

.plan-row .plan-item {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.plan-row .plan-item span,
.plan-row .plan-period {
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}

.plan-row .plan-item strong {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1;
}

.payment-card .example-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  padding: 20px 16px;
  background: var(--color-gray-50);
}

.payment-card.is-yearly .example-box {
  background: #f5f5f5;
}

.example-box .example-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.1;
}

.example-box .example-list {
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-gray-120);
  border-radius: var(--radius-12);
}

.example-list .example-row {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
  min-height: 60px;
  padding: 14px 12px;
}

.example-list .example-row+.example-row {
  border-top: 1px solid var(--color-gray-120);
}

.example-row .example-info {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.example-row .example-info strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 15px;
}

.example-row .example-info p {
  margin-top: 3px;
  color: var(--color-gray-500);
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
  white-space: nowrap;
}

.payment .number-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: var(--radius-38);
  background: var(--color-black);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.payment .example-price {
  flex: 0 0 auto;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-align: right;
  white-space: nowrap;
}

.example-row .example-cost {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  min-width: 0;
  gap: 3px;
}

.example-cost .example-cost-label {
  color: var(--color-gray-500);
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
  text-align: right;
  white-space: nowrap;
}

.payment-card .total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
  padding: 6px 14px;
  background: var(--color-white);
  border: 2px solid var(--color-carrot);
  border-radius: var(--radius-12);
}

.payment-card .total-row>strong {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.total-row .total-calculation {
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.total-calculation .operator {
  color: var(--color-black);
  font-size: 18px;
  font-weight: 700;
}

.total-row .total-calculation strong {
  color: var(--color-carrot);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.payment-card .payment-notes {
  padding-left: 18px;
  color: var(--color-gray-500);
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
}

/* Benefits */
.benefits {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 40px 20px;
  background: var(--color-white);
}

.benefits .section-title {
  width: 100%;
  max-width: 350px;
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
  text-align: center;
}

.benefits .benefit-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  width: 100%;
  max-width: 350px;
}

.benefit-list .benefit-card {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 122px;
  padding: 32px 16px;
  background: var(--color-gray-50);
  border-radius: var(--radius-24);
}

.benefit-card .benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  overflow: hidden;
  background: var(--color-white);
  border-radius: var(--radius-99);
}

.benefit-card .benefit-icon img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.benefit-card .benefit-copy {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.benefit-card .benefit-copy h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 29px;
}

.benefit-card .benefit-copy p {
  color: var(--color-gray-500);
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
}

/* Bottom CTA */
.bottom-cta {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 40px 20px;
  background: var(--color-carrot);
}

.bottom-cta .bottom-cta-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 350px;
}

/* Footer */
.site-footer {
  width: 100%;
}

.site-footer .footer-notice {
  display: flex;
  justify-content: center;
  padding: 40px 20px;
  background: var(--color-footer);
  color: var(--color-gray-300);
}

.footer-notice .footer-notice-inner {
  width: 100%;
  max-width: 350px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.12px;
  line-height: 1.5;
}

.site-footer .footer-notice h2 {
  margin-bottom: 4px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}

.site-footer .footer-notice ul {
  padding-left: 18px;
}

.site-footer .footer-notice li+li {
  margin-top: 4px;
}

.footer-notice .approval-code {
  width: 284px;
  max-width: 100%;
  margin-top: 4px;
  padding-left: 21px;
}

.site-footer .footer-company {
  display: flex;
  justify-content: center;
  padding: 20px;
  background: var(--color-gray-150);
  color: var(--color-black);
}

.footer-company .footer-company-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 350px;
  font-size: 11px;
  font-weight: 400;
  line-height: normal;
}

.footer-company address {
  font-style: normal;
  letter-spacing: -0.5px;
}

.footer-company .footer-company-meta {
  margin-top: 4px;
}

.footer-company .footer-company-contact {
  margin-top: 12px;
}

.footer-company p {
  letter-spacing: -0.055px;
}

.footer-company .privacy-link {
  display: inline-flex;
  align-items: center;
  min-height: 18px;
  padding: 2px 7px;
  background: var(--color-gray-700);
  color: var(--color-white);
  letter-spacing: 0;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .hero-copy .hero-title {
    font-size: 32px;
    line-height: 1.25;
  }
}

/* Small mobile */
@media (max-width: 359px) {
  .hero-copy .hero-title {
    font-size: 32px;
  }

  .payment-tabs .payment-tab,
  .example-row .example-info strong,
  .payment .example-price,
  .payment-card .total-row>strong,
  .total-row .total-calculation strong {
    font-size: 14px;
  }

  .benefit-card .benefit-copy h3 {
    font-size: 18px;
    line-height: 25px;
  }

  .benefit-card .benefit-copy p {
    font-size: 14px;
    line-height: 20px;
  }

  .entry-gift-card {
    height: 462px;
    padding-right: 12px;
    padding-left: 12px;
  }

  .entry-gift-card .entry-gift-logo {
    width: 148px;
    margin-bottom: 16px;
  }

  .entry-gift-copy .entry-gift-eyebrow {
    font-size: 20px;
  }

  .entry-gift-copy .entry-gift-title,
  .entry-gift-title .entry-gift-title-prefix {
    font-size: 34px;
  }

  .entry-gift-card .entry-gift-image {
    width: 180px;
    height: 180px;
    margin-top: 22px;
  }

  .entry-gift-card .entry-gift-cta {
    height: 48px;
    font-size: 20px;
  }

  .entry-gift-card .entry-gift-approval {
    font-size: 9px;
  }
}

/* Desktop */
@media (min-width: 768px) {
  .site-header {
    height: 72px;
  }

  .site-header .site-header-inner {
    max-width: 920px;
    height: 72px;
    padding: 24px 20px;
  }

  .site-header.is-menu-open {
    position: relative;
    inset: auto;
    justify-content: center;
    height: 72px;
    min-height: 0;
    border-bottom: 2px solid transparent;
  }

  .site-header.is-menu-open .site-header-inner {
    height: 72px;
    max-width: 920px;
    border-bottom: 0;
  }

  body.is-menu-open {
    overflow: auto;
  }

  body.is-layer-open {
    overflow: hidden;
  }

  .contract-info-card {
    max-width: 360px;
    height: 492px;
    border-radius: var(--radius-24);
  }

  .entry-gift-card {
    width: 420px;
    height: 680px;
    padding: 25px 21px 12px;
    border-radius: var(--radius-24);
  }

  .entry-gift-card .entry-gift-close {
    top: 11px;
    right: 13px;
    width: 36px;
    height: 36px;
  }

  .entry-gift-card .entry-gift-close::before,
  .entry-gift-card .entry-gift-close::after {
    top: 17px;
    left: 7px;
    width: 22px;
  }

  .entry-gift-card .entry-gift-logo {
    width: 217px;
    margin-bottom: 22px;
  }

  .entry-gift-copy .entry-gift-eyebrow {
    font-size: 32px;
    letter-spacing: -1.52px;
  }

  .entry-gift-eyebrow .entry-gift-eyebrow-pc {
    display: inline;
  }

  .entry-gift-eyebrow .entry-gift-eyebrow-mo {
    display: none;
  }

  .entry-gift-copy .entry-gift-title,
  .entry-gift-title .entry-gift-title-prefix {
    font-size: 52px;
  }

  .entry-gift-card .entry-gift-image {
    width: 283px;
    height: 283px;
    margin-top: 24px;
  }

  .entry-gift-card .entry-gift-cta {
    width: 378px;
    height: 70px;
    margin-top: 10px;
    font-size: 32px;
    letter-spacing: -1.52px;
  }

  .entry-gift-card .entry-gift-approval {
    margin-top: 9px;
    font-size: 14px;
    letter-spacing: -0.14px;
  }

  .site-header.is-menu-open .site-menu {
    flex: 0 0 auto;
  }

  .site-header .site-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 10;
    display: flex;
    justify-content: center;
    padding: 24px 20px 40px;
    border-bottom: 2px solid var(--color-carrot);
  }

  .site-header .site-menu-list {
    flex-direction: row;
    justify-content: space-between;
    max-width: 880px;
    padding: 0 4px;
  }

  .site-header .site-menu-item {
    width: auto;
    padding: 0;
    font-size: 20px;
  }

  .site-header .site-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 192px;
    height: 24px;
    padding: 0;
  }

  .site-header .site-logo img {
    width: 184px;
    height: 24px;
  }

  .hero {
    min-height: 882px;
    padding: 40px 20px 80px;
  }

  .hero .hero-card {
    gap: 40px;
    max-width: 560px;
  }

  .hero .hero-visual {
    height: 290px;
  }

  .hero-card .hero-copy {
    width: 436px;
  }

  .hero-copy .hero-eyebrow {
    font-size: 20px;
  }

  .hero-copy .hero-title {
    width: auto;
    font-size: 48px;
    line-height: normal;
  }

  .hero-copy .hero-title span {
    width: auto;
    max-width: none;
  }

  .hero-card .hero-actions {
    flex-direction: row;
    gap: 12px;
  }

  .btn {
    min-height: 72px;
    padding: 20px 40px;
    font-size: 24px;
  }

  .gift-banner {
    max-width: 560px;
    height: 134px;
  }

  .payment-section {
    padding: 80px 20px 0;
  }

  .payment-section .payment {
    gap: 24px;
    max-width: 880px;
  }

  .payment .payment-tabs {
    padding: 6px;
  }

  .payment-tabs .payment-tab {
    height: 72px;
    font-size: 24px;
    line-height: 29px;
  }

  .payment .payment-card {
    border-radius: var(--radius-24);
  }

  .payment-card .plan-row {
    padding: 24px 32px;
  }

  .plan-row .plan-item span {
    font-size: 16px;
    font-weight: 600;
    line-height: 16px;
  }

  .plan-row .plan-item strong {
    font-size: 24px;
    letter-spacing: 0;
    line-height: 32px;
  }

  .plan-row .plan-period {
    font-size: 20px;
    font-weight: 700;
    line-height: 32px;
  }

  .payment-card .example-box {
    gap: 20px;
    padding: 24px 32px;
  }

  .example-box .example-title {
    font-size: 24px;
    line-height: 32px;
  }

  .example-list .example-row {
    min-height: 98px;
    padding: 20px 24px;
  }

  .example-row .example-info strong {
    font-size: 20px;
    line-height: normal;
  }

  .example-row .example-info p {
    margin-top: 4px;
    font-size: 16px;
  }

  .payment .number-chip {
    width: 26px;
    height: 26px;
    font-size: 16px;
  }

  .payment .example-price {
    font-size: 24px;
    line-height: 32px;
  }

  .payment-card .total-row {
    min-height: 100px;
    padding: 24px;
  }

  .payment-card .total-row>strong {
    font-size: 24px;
    line-height: 32px;
  }

  .total-row .total-calculation {
    gap: 16px;
  }

  .total-calculation .operator {
    font-size: 24px;
  }

  .total-row .total-calculation strong {
    font-size: 32px;
    line-height: 49px;
  }

  .payment-card .payment-notes {
    padding-left: 24px;
    font-size: 16px;
    line-height: 22px;
  }

  .benefits {
    gap: 40px;
    padding: 80px 20px;
  }

  .benefits .section-title {
    max-width: 880px;
    font-size: 36px;
    line-height: 49px;
  }

  .benefits .benefit-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 880px;
  }

  .benefit-list .benefit-card {
    min-height: 138px;
    padding: 40px 32px;
  }

  .bottom-cta {
    padding: 80px 20px;
  }

  .bottom-cta .bottom-cta-inner {
    max-width: 560px;
  }

  .site-footer .footer-notice {
    padding: 40px 20px;
  }

  .footer-notice .footer-notice-inner {
    max-width: 760px;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: -0.28px;
    line-height: 20px;
  }

  .site-footer .footer-notice h2 {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 500;
    line-height: normal;
  }

  .site-footer .footer-notice ul {
    padding-left: 21px;
  }

  .site-footer .footer-notice li+li {
    margin-top: 10px;
  }

  .footer-notice .approval-code {
    width: 718px;
    margin-top: 10px;
  }

  .site-footer .footer-company {
    padding: 32px 20px;
  }

  .footer-company .footer-company-inner {
    max-width: 720px;
    font-size: 14px;
  }

  .footer-company .footer-company-contact {
    margin-top: 15px;
  }

  .footer-company address,
  .footer-company p {
    letter-spacing: -0.14px;
    white-space: nowrap;
  }

  .footer-company .footer-company-inner>div,
  .footer-company p {
    display: block;
  }
}