:root {
  --bg: #f6f8fb;
  --surface: #ffffff;
  --surface-soft: #eef6ff;
  --text: #070b12;
  --text-body: #0f1720;
  --muted: #2a3344;
  --primary: #0f766e;
  --primary-dark: #0b5f59;
  --accent: #f97316;
  --border: #dce5ef;
  --shadow: 0 22px 70px rgba(17, 34, 64, 0.12);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text-body);
  font-family: "Hiragino Sans", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.85;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 168px;
  padding: 20px clamp(20px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 1.25rem;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: block;
  width: auto;
  height: 128px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--text-body);
  font-size: 1.0625rem;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--primary);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: min(78vh, 680px);
  padding: clamp(72px, 10vw, 128px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 8% 12%, rgba(20, 184, 166, 0.18), transparent 38%),
    radial-gradient(circle at 92% 88%, rgba(249, 115, 22, 0.14), transparent 36%),
    linear-gradient(135deg, #f0f9ff 0%, #ffffff 48%, #f6fbf7 100%);
}

.hero::before {
  position: absolute;
  top: 50%;
  right: -6%;
  width: min(62vw, 760px);
  aspect-ratio: 16 / 9;
  background: url("/assets/hero-sheet-illustration.png") center / contain no-repeat;
  opacity: 0.55;
  filter: saturate(0.85) contrast(1.05);
  transform: translateY(-50%) rotate(-3deg);
  pointer-events: none;
  content: "";
  -webkit-mask-image: radial-gradient(ellipse at 70% 50%, black 40%, transparent 78%);
  mask-image: radial-gradient(ellipse at 70% 50%, black 40%, transparent 78%);
}

.hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(95deg, rgba(255, 255, 255, 0.95) 18%, rgba(255, 255, 255, 0.7) 48%, rgba(255, 255, 255, 0.25) 78%, rgba(255, 255, 255, 0.1) 100%);
  pointer-events: none;
  content: "";
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 720px;
  margin: 0 auto 0 0;
  padding-right: clamp(0px, 4vw, 40px);
  text-align: left;
}

.hero-content h1 {
  max-width: none;
  margin: 0;
  color: #0a1220;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.4;
  letter-spacing: -0.02em;
  overflow: visible;
  text-wrap: balance;
}

.hero-content h1 br {
  display: block;
}

.hero-content .hero-actions {
  justify-content: flex-start;
}

.section,
.cta {
  max-width: 1120px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--text);
  line-height: 1.28;
}

h3 {
  font-size: 1.22rem;
  font-weight: 800;
}

h1 {
  max-width: 820px;
  font-size: clamp(2.35rem, 6vw, 4.9rem);
  font-weight: 900;
  letter-spacing: -0.05em;
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

p {
  margin: 16px 0 0;
  color: var(--text-body);
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.85;
}

.hero-lead {
  max-width: 760px;
  color: var(--text-body);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 700;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: #fff;
  background: var(--primary);
  box-shadow: 0 16px 34px rgba(15, 118, 110, 0.25);
}

.button.primary:hover {
  background: var(--primary-dark);
}

.button.secondary {
  color: var(--primary);
  background: #fff;
  border-color: var(--border);
}

.button.large {
  min-width: 260px;
}

.hero-points {
  display: grid;
  gap: 10px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li,
.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--text-body);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.8;
}

.hero-points li::before,
.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--primary);
  content: "✓";
  font-weight: 900;
}

.hero-card {
  padding: 34px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card-kicker {
  margin: 0 0 8px;
  color: var(--accent);
  font-weight: 800;
}

.hero-card dl {
  display: grid;
  gap: 16px;
  margin: 24px 0 0;
}

.hero-card dl div {
  padding: 16px;
  background: var(--surface-soft);
  border-radius: 18px;
}

.hero-card dt {
  color: var(--primary);
  font-weight: 800;
}

.hero-card dd {
  margin: 4px 0 0;
  color: var(--text-body);
  font-weight: 700;
}

.section {
  margin: 0 auto;
  padding: clamp(64px, 8vw, 96px) clamp(18px, 4vw, 40px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 30px;
}

.intro {
  font-size: 1.1rem;
}

.intro > p {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.9;
}

.feature-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.feature-card,
.price-card,
.note-card,
.warning-card,
.sample-box,
.faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 14px 44px rgba(17, 34, 64, 0.08);
}

.feature-card,
.price-card {
  padding: 26px;
}

.feature-card {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  grid-template-rows: auto auto;
  column-gap: 24px;
  row-gap: 10px;
  align-items: start;
  padding: 28px 32px;
}

.feature-card .number,
.feature-card--with-illustration .number {
  display: inline-flex;
  grid-row: 1 / -1;
  align-self: center;
  margin-bottom: 0;
  color: var(--accent);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 900;
}

.feature-card h3,
.feature-card-body h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
}

.feature-card h3 {
  grid-column: 2;
  grid-row: 1;
}

.feature-card p,
.feature-card .feature-list li,
.feature-card-body p,
.feature-card-body .feature-list li {
  color: var(--text-body);
  font-size: clamp(1.15rem, 2vw, 1.3rem);
  font-weight: 700;
  line-height: 1.85;
}

.feature-card p {
  grid-column: 2;
  grid-row: 2;
  margin-top: 0;
}

.feature-card .feature-list {
  grid-column: 2;
  grid-row: 2;
  margin: 0;
  padding-left: 1.2em;
}

.feature-card .feature-list li {
  margin: 0 0 10px;
}

.feature-card .feature-note,
.feature-card-body .feature-note {
  font-size: clamp(1.05rem, 1.8vw, 1.15rem);
}

.feature-card .feature-note {
  grid-column: 2;
  grid-row: 3;
  margin-top: 6px;
}

.feature-card--with-illustration {
  grid-template-columns: 3.5rem 1fr;
  grid-template-rows: auto auto;
  align-items: start;
  row-gap: 20px;
}

.feature-card--with-illustration .number {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
}

.feature-card-body {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
}

.feature-card-body h3 {
  grid-column: unset;
  grid-row: unset;
}

.feature-card-body p {
  grid-column: unset;
  grid-row: unset;
  margin-top: 10px;
}

.feature-card-body .feature-list {
  grid-column: unset;
  grid-row: unset;
  margin: 10px 0 0;
  padding-left: 1.2em;
}

.feature-card-body .feature-note {
  grid-column: unset;
  grid-row: unset;
  margin-top: 10px;
}

.feature-card-illustration {
  grid-column: 1 / -1;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 8px 0 0;
}

.feature-card-illustration img {
  display: block;
  width: 100%;
  max-width: 720px;
  height: auto;
  object-fit: contain;
}

.feature-card--large-illustration {
  row-gap: 8px;
}

.feature-card--large-illustration .feature-card-illustration {
  padding-top: 0;
  margin-top: 0;
  gap: 0;
}

.feature-card--large-illustration .feature-illustration-frame {
  width: 100%;
  max-width: min(100%, 960px);
  aspect-ratio: 2.2 / 1;
  overflow: hidden;
  line-height: 0;
}

.feature-card--large-illustration .feature-illustration-frame img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
}

.feature-card--large-illustration .feature-card-body .feature-list li:last-child {
  margin-bottom: 0;
}

.feature-illustration-caption {
  max-width: 720px;
  margin: 0;
  color: var(--text-body);
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  font-weight: 700;
  line-height: 1.85;
  text-align: center;
}

.feature-illustration-caption-label {
  margin: 0 0 14px;
  color: var(--text);
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  font-weight: 800;
  line-height: 1.5;
}

.feature-supplier-tags {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 10px 14px;
  justify-content: center;
  justify-items: start;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-supplier-tags li {
  padding: 8px 14px;
  color: var(--text-body);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  font-weight: 700;
  white-space: nowrap;
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: 999px;
}

.price-card p,
.note-card p,
.warning-card p,
.sample-box p,
.faq details p,
.process-list p {
  color: var(--text-body);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.85;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}

.split.reverse {
  grid-template-columns: minmax(0, 1fr) 360px;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.note-card,
.warning-card {
  padding: 28px;
}

.warning-card {
  background: #fff7ed;
  border-color: #fed7aa;
}

.small {
  color: var(--text-body);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.75;
}

.process-list {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.process-list div {
  padding: 22px;
  background: var(--surface);
  border-left: 5px solid var(--primary);
  border-radius: 18px;
}

.video-section p {
  max-width: 760px;
}

.video-frame {
  position: relative;
  margin-top: 26px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
  background: #0f172a;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.pricing {
  max-width: 1180px;
  margin-bottom: clamp(32px, 5vw, 56px);
  padding: clamp(72px, 9vw, 104px) clamp(22px, 4vw, 48px);
  background:
    radial-gradient(circle at 8% 12%, rgba(20, 184, 166, 0.1), transparent 42%),
    radial-gradient(circle at 92% 88%, rgba(249, 115, 22, 0.08), transparent 40%),
    linear-gradient(180deg, #f8fcfb 0%, #ffffff 48%, #f6f9fc 100%);
  border: 1px solid rgba(15, 118, 110, 0.1);
  border-radius: 32px;
  box-shadow: 0 24px 60px rgba(17, 34, 64, 0.06);
}

.pricing .section-heading {
  max-width: 640px;
  margin-right: auto;
  margin-bottom: 40px;
  margin-left: auto;
  text-align: center;
}

.pricing .price-grid {
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pricing .price-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.pricing .price-card::before {
  display: block;
  height: 5px;
  background: linear-gradient(90deg, rgba(15, 118, 110, 0.45), rgba(56, 189, 248, 0.45));
  content: "";
}

.pricing .price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 52px rgba(17, 34, 64, 0.14);
}

.pricing .price-card h3 {
  margin: 0;
  padding: 22px 26px 14px;
  color: var(--primary);
  font-size: clamp(1.25rem, 2vw, 1.45rem);
  font-weight: 800;
  background: rgba(238, 246, 255, 0.55);
  border-bottom: 1px solid var(--border);
}

.pricing .price-card .price {
  margin: 0;
  padding: 20px 26px 8px;
  background: #ffffff;
}

.pricing .price-card > p:not(.price) {
  flex-grow: 1;
  margin: 0;
  padding: 8px 26px 26px;
  color: var(--text-body);
  font-size: clamp(1.1rem, 1.8vw, 1.22rem);
  font-weight: 700;
  line-height: 1.85;
  background: #ffffff;
}

.pricing .price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 8px;
  font-size: clamp(2rem, 3.5vw, 2.85rem);
}

.price-per-month {
  margin-left: 2px;
  color: var(--primary-dark);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.pricing .price .price-tax {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
}

.price-card.featured {
  border-color: rgba(15, 118, 110, 0.45);
  background: var(--surface);
  box-shadow: 0 22px 56px rgba(15, 118, 110, 0.14);
}

.price-card.featured::before {
  height: 6px;
  background: linear-gradient(90deg, var(--primary), #14b8a6, #38bdf8);
}

.price-card.featured h3 {
  color: #0b5f59;
  background: linear-gradient(180deg, #ecfdf5 0%, #f0fdfa 100%);
}

.price-card.featured .price {
  background: linear-gradient(180deg, #f0fdfa 0%, #ffffff 100%);
}

.price {
  color: var(--text) !important;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
  line-height: 1.2;
}

.price-tax {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 8px;
  color: var(--text-body);
  font-size: 0.92rem;
  font-weight: 700;
  vertical-align: middle;
  background: var(--surface-soft);
  border-radius: 6px;
}

.pricing .sample-box {
  margin-top: 36px;
  padding: 32px 36px;
  background:
    linear-gradient(135deg, rgba(255, 247, 237, 0.95) 0%, rgba(255, 251, 235, 0.98) 100%);
  border: 1px solid rgba(249, 115, 22, 0.28);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(249, 115, 22, 0.1);
}

.pricing .sample-box h3 {
  margin: 0 0 14px;
  padding-left: 18px;
  color: #c2410c;
  font-size: clamp(1.25rem, 2vw, 1.45rem);
  font-weight: 800;
  border-left: 4px solid var(--accent);
}

.pricing .sample-box p {
  margin: 0;
  font-size: clamp(1.1rem, 1.8vw, 1.22rem);
  font-weight: 700;
  line-height: 1.85;
}

.faq {
  max-width: 920px;
}

.faq details {
  padding: 20px 24px;
}

.faq details + details {
  margin-top: 14px;
}

.faq summary {
  cursor: pointer;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 800;
}

.cta p,
.cta .business-hours {
  color: var(--text-body);
  font-weight: 700;
  line-height: 1.85;
}

.pricing + .cta {
  margin-top: clamp(48px, 7vw, 96px);
}

.cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  margin: 0 auto 80px;
  padding: clamp(34px, 5vw, 56px);
  background:
    radial-gradient(circle at 92% 12%, rgba(6, 199, 85, 0.14), transparent 42%),
    linear-gradient(135deg, #e8fbf0 0%, #d4f7e3 52%, #c6f2d9 100%);
  color: var(--text-body);
  border: 1px solid rgba(6, 199, 85, 0.22);
  border-radius: 32px;
  box-shadow: 0 16px 40px rgba(6, 199, 85, 0.12);
}

.cta h2 {
  color: var(--text);
}

.cta .eyebrow {
  color: #06c755;
}

.cta .button.primary {
  color: #ffffff;
  background: #06c755;
  box-shadow: 0 12px 28px rgba(6, 199, 85, 0.22);
}

.cta .button.primary:hover {
  color: #ffffff;
  background: #05b34d;
}

.cta p {
  max-width: 780px;
}

.site-footer {
  padding: clamp(48px, 6vw, 64px) clamp(20px, 4vw, 56px) clamp(36px, 4vw, 48px);
  color: #e8eef5;
  font-weight: 700;
  background: linear-gradient(165deg, #0a3d3a 0%, #0d2f3d 48%, #0f2433 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__inner {
  max-width: 1080px;
  margin: 0 auto;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.site-footer a:hover {
  color: #ffffff;
}

.site-footer__main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px 48px;
  padding-bottom: clamp(32px, 4vw, 40px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__brand {
  flex: 1 1 280px;
  min-width: 0;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  text-decoration: none;
}

.footer-brand__mark {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 112px;
  height: 112px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.footer-brand__mark img {
  display: block;
  width: 96px;
  height: 96px;
  object-fit: contain;
}

.footer-brand__name {
  color: #ffffff;
  font-size: clamp(1.0625rem, 2vw, 1.2rem);
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.site-footer__col {
  flex: 0 0 auto;
  padding-top: 4px;
}

.site-footer__heading {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.3;
}

.site-footer__links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__links li + li {
  margin-top: 12px;
}

.site-footer__links a {
  color: #c5d0dc;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.5;
}

.site-footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-top: clamp(28px, 3.5vw, 36px);
  text-align: center;
}

.site-footer__copyright {
  margin: 0;
  color: #a8b6c6;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
}

.site-footer__legal a {
  color: #c5d0dc;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer__legal a:hover {
  color: #ffffff;
}

.legal-page h1 {
  max-width: 860px;
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.legal-table-wrap {
  overflow-x: auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.legal-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.legal-table th,
.legal-table td {
  padding: 22px 24px;
  border-bottom: 1px solid var(--border);
  color: var(--text-body);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.85;
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  width: 280px;
  color: var(--text);
  background: var(--surface-soft);
}

.legal-table tr:last-child th,
.legal-table tr:last-child td {
  border-bottom: 0;
}

@media (max-width: 980px) {
  .split,
  .split.reverse,
  .cta {
    grid-template-columns: 1fr;
  }

  .hero-content {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
  }

  .hero-content .hero-actions {
    justify-content: center;
  }

  .hero::before {
    top: auto;
    bottom: -4%;
    right: 50%;
    width: min(110vw, 820px);
    transform: translate(50%, 0) rotate(-2deg);
    opacity: 0.4;
    -webkit-mask-image: radial-gradient(ellipse at 50% 70%, black 36%, transparent 78%);
    mask-image: radial-gradient(ellipse at 50% 70%, black 36%, transparent 78%);
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.75) 45%, rgba(255, 255, 255, 0.45) 100%);
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__main {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }

  .site-footer__col {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: auto;
    padding: 64px 22px 80px;
  }

  .hero::before {
    bottom: -6%;
    width: 140vw;
    opacity: 0.32;
  }

  .site-header {
    min-height: auto;
    padding: 18px 20px;
  }

  .brand {
    font-size: 1.0625rem;
    gap: 12px;
  }

  .brand-mark {
    height: 104px;
  }

  .site-nav {
    gap: 12px;
    font-size: 0.98rem;
  }

  p,
  .feature-card p,
  .feature-card .feature-list li,
  .feature-card-body p,
  .feature-card-body .feature-list li,
  .price-card p,
  .note-card p,
  .warning-card p,
  .sample-box p,
  .faq details p,
  .process-list p {
    font-size: 1rem;
  }

  .feature-card h3,
  .feature-card-body h3 {
    font-size: 1.35rem;
  }

  .feature-card p,
  .feature-card .feature-list li,
  .feature-card-body p,
  .feature-card-body .feature-list li {
    font-size: 1.1rem;
  }

  .price-grid {
    grid-template-columns: 1fr;
  }

  .pricing {
    padding: 56px 20px;
    border-radius: 24px;
  }

  .pricing .price-card {
    padding: 0;
  }

  .pricing .price-card h3 {
    font-size: 1.25rem;
  }

  .pricing .price-card > p:not(.price),
  .pricing .sample-box p {
    font-size: 1.1rem;
  }

  .pricing .price {
    font-size: 2rem;
  }

  .pricing .sample-box h3 {
    font-size: 1.25rem;
  }

  .feature-card,
  .price-card,
  .note-card,
  .warning-card,
  .sample-box {
    padding: 22px;
  }

  .feature-card--with-illustration {
    grid-template-columns: 2.5rem 1fr;
    grid-template-rows: auto auto;
    row-gap: 12px;
  }

  .feature-card--large-illustration {
    row-gap: 6px;
  }

  .feature-card--with-illustration .number {
    grid-row: 1;
    align-self: start;
  }

  .feature-card--with-illustration .feature-card-body {
    grid-column: 2;
    grid-row: 1;
  }

  .feature-card--with-illustration .feature-card-illustration {
    grid-column: 1 / -1;
    grid-row: 2;
    padding-left: 0;
  }

  .feature-card-illustration img {
    max-width: min(100%, 560px);
    margin: 0 auto;
  }

  .feature-card--large-illustration .feature-card-illustration img,
  .feature-card--large-illustration .feature-illustration-frame img {
    max-width: 100%;
  }

  .feature-card--large-illustration .feature-illustration-frame {
    aspect-ratio: 2.1 / 1;
  }
}
