:root {
  --color-navy: #17324d;
  --color-green: #2f9b78;
  --color-blue: #e8f6fb;
  --color-coral: #ff7f72;
  --color-coral-dark: #e86055;
  --color-ink: #263644;
  --color-muted: #657383;
  --color-border: #dce8ed;
  --color-bg: #ffffff;
  --color-soft: #f4fbfb;
  --shadow-card: 0 18px 48px rgba(23, 50, 77, 0.12);
  --radius: 8px;
  --radius-small: 8px;
  --container: 1120px;
  --font-base: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-ink);
  background: var(--color-bg);
  font-family: var(--font-base);
  line-height: 1.75;
}

.page-progress {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 90;
  height: 4px;
  background: linear-gradient(90deg, var(--color-green), var(--color-coral));
  box-shadow: 0 -8px 24px rgba(47, 155, 120, 0.16);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

.intro-loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--color-navy);
  background: linear-gradient(180deg, #ffffff 0%, #f2fbfa 100%);
  transition: opacity 720ms cubic-bezier(0.2, 0.8, 0.2, 1), visibility 720ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.intro-loader.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.intro-pattern {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(23, 50, 77, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(23, 50, 77, 0.035) 1px, transparent 1px),
    repeating-linear-gradient(115deg, transparent 0 72px, rgba(47, 155, 120, 0.14) 73px 76px, transparent 77px 140px);
  background-size: 36px 36px, 36px 36px, auto;
  opacity: 0.68;
  animation: introPattern 1500ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.intro-symbol {
  position: absolute;
  width: clamp(170px, 34vw, 420px);
  opacity: 0.035;
  transform: translateY(10px) scale(0.94);
  animation: introSymbol 1100ms cubic-bezier(0.2, 0.8, 0.2, 1) 100ms both;
}

.intro-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  justify-items: center;
  width: min(420px, calc(100% - 48px));
  text-align: center;
}

.intro-content span,
.intro-content p {
  margin: 0;
  color: var(--color-green);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(14px);
  animation: introText 720ms cubic-bezier(0.2, 0.8, 0.2, 1) 180ms both;
}

.intro-content img {
  width: min(280px, 74vw);
  height: auto;
  opacity: 0;
  transform: translateY(18px) scale(0.96);
  animation: introLogo 860ms cubic-bezier(0.2, 0.8, 0.2, 1) 280ms both;
}

.intro-content p {
  color: var(--color-muted);
  font-size: 0.86rem;
  letter-spacing: 0;
  text-transform: none;
  animation-delay: 440ms;
}

.intro-line {
  position: absolute;
  right: clamp(24px, 8vw, 140px);
  bottom: clamp(42px, 10vh, 92px);
  left: clamp(24px, 8vw, 140px);
  height: 4px;
  overflow: hidden;
  background: rgba(23, 50, 77, 0.08);
  border-radius: 999px;
}

.intro-line::after {
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(90deg, var(--color-green), var(--color-coral));
  border-radius: inherit;
  transform: translateX(-100%);
  animation: introLine 1200ms cubic-bezier(0.2, 0.8, 0.2, 1) 260ms both;
}

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

.sp-only {
  display: none;
}

.pc-only {
  display: inline;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(220, 232, 237, 0.8);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--color-navy);
  font-weight: 800;
}

.brand-logo {
  display: block;
  width: min(156px, 38vw);
  height: auto;
}

.brand-logo-footer {
  filter: brightness(0) invert(1);
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--color-navy), var(--color-green));
  border-radius: 8px;
}

.header-nav {
  display: none;
  color: var(--color-muted);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(23, 50, 77, 0.06);
  font-size: 0.88rem;
  font-weight: 700;
}

.header-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 7px 16px;
  line-height: 1.2;
  transition: color 180ms ease, background 180ms ease;
}

.header-nav a + a {
  border-left: 1px solid var(--color-border);
}

.header-nav a:hover,
.header-nav a:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--color-green);
}

.header-nav a:hover,
.header-nav a:focus-visible {
  background: #edf9f5;
  outline: none;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 14px;
  color: #fff;
  background: var(--color-coral);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
}

.section,
.section-band {
  position: relative;
  padding: 72px 0;
}

.section {
  border-top: 1px solid rgba(195, 216, 224, 0.58);
}

.section-white {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 253, 253, 0.98) 100%);
}

.section-soft {
  background: linear-gradient(180deg, #f2fbfa 0%, #e9f7f3 100%);
}

.section-green {
  background:
    radial-gradient(circle at 12% 8%, rgba(45, 163, 122, 0.09), transparent 34%),
    linear-gradient(180deg, #f1fbf8 0%, #e6f5f0 100%);
}

.section-muted {
  background:
    linear-gradient(180deg, #f7fafb 0%, #eef5f7 100%);
}

.section-line-pattern {
  overflow: hidden;
}

.section-line-pattern::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background-image:
    linear-gradient(90deg, rgba(45, 163, 122, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(34, 70, 95, 0.045) 1px, transparent 1px);
  background-size: 72px 72px, 72px 72px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 16%, #000 84%, transparent 100%);
  pointer-events: none;
}

.section-line-pattern > .container {
  position: relative;
  z-index: 1;
}

.section::after {
  position: absolute;
  top: -1px;
  left: 50%;
  width: min(1040px, calc(100% - 32px));
  height: 1px;
  content: "";
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent 0%, rgba(45, 163, 122, 0.34) 18%, rgba(255, 127, 114, 0.3) 50%, rgba(45, 163, 122, 0.34) 82%, transparent 100%);
  pointer-events: none;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - 65px);
  padding-block: clamp(48px, 8vw, 92px);
  display: flex;
  align-items: center;
  background: linear-gradient(145deg, #ffffff 0%, #ecf8fb 48%, #f4fbf5 100%);
}

.hero-bg-illustration {
  position: absolute;
  left: clamp(230px, 40vw, 560px);
  bottom: clamp(18px, 7vw, 84px);
  width: min(760px, 78vw);
  max-width: none;
  opacity: 0.16;
  filter: saturate(0.9);
  mix-blend-mode: multiply;
  pointer-events: none;
  user-select: none;
}

.hero-bg-symbol {
  position: absolute;
  z-index: 0;
  left: clamp(14px, 5vw, 78px);
  top: clamp(64px, 10vw, 118px);
  width: clamp(190px, 22vw, 360px);
  opacity: 0.045;
  pointer-events: none;
  user-select: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 28px;
  align-items: center;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--color-green);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

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

h1 {
  margin-bottom: 18px;
  color: var(--color-navy);
  font-size: clamp(3.2rem, 16vw, 6.4rem);
  line-height: 0.96;
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: keep-all;
}

h2 {
  margin-bottom: 16px;
  color: var(--color-navy);
  font-size: clamp(1.72rem, 5.2vw, 2.85rem);
  line-height: 1.28;
  letter-spacing: 0;
}

h3 {
  color: var(--color-navy);
  font-size: 1.25rem;
}

.hero-lead,
.section-heading p,
.contact-copy p {
  color: var(--color-muted);
  font-size: 1.02rem;
}

.hero-catch {
  max-width: 620px;
  margin-bottom: 16px;
  color: var(--color-navy);
  font-size: clamp(1.45rem, 3.4vw, 2.35rem);
  font-weight: 900;
  line-height: 1.34;
}

.hero-lead {
  max-width: 560px;
  margin-bottom: 0;
  font-size: clamp(1.04rem, 3vw, 1.25rem);
  font-weight: 800;
  line-height: 1.78;
}

.hero-trust {
  margin-top: 24px;
}

.price-pill {
  display: grid;
  gap: 4px;
  max-width: 420px;
  margin: 24px 0;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-small);
  box-shadow: var(--shadow-card);
}

.price-pill span,
.price-card span {
  color: var(--color-muted);
  font-weight: 800;
}

.price-pill strong {
  color: var(--color-coral-dark);
  font-size: clamp(2.1rem, 10vw, 3.5rem);
  line-height: 1;
}

.price-pill small {
  color: var(--color-navy);
  font-weight: 800;
}

.cta-row,
.cta-center {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.cta-center {
  justify-content: center;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 20px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: 3px solid rgba(47, 155, 120, 0.22);
}

.button-primary {
  color: #fff;
  background: var(--color-coral);
  box-shadow: 0 12px 28px rgba(255, 127, 114, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--color-coral-dark);
}

.button-line {
  color: #fff;
  background: var(--color-green);
  box-shadow: 0 12px 28px rgba(47, 155, 120, 0.22);
}

.button-secondary {
  color: var(--color-navy);
  background: #fff;
  border: 1px solid var(--color-border);
  box-shadow: none;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.trust-list li {
  padding: 7px 11px;
  color: var(--color-navy);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
}

.trust-list.vertical {
  display: grid;
}

.hero-inquiry {
  align-self: center;
  width: min(100%, 440px);
  justify-self: center;
  padding: 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(220, 232, 237, 0.95);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(12px);
}

.hero-form-head {
  padding: 2px 2px 12px;
}

.hero-form-head h2 {
  margin-bottom: 5px;
  font-size: clamp(1.2rem, 4.4vw, 1.55rem);
  line-height: 1.32;
}

.hero-form-head p {
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.55;
}

.hero-form {
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.hero-form textarea {
  min-height: 76px;
}

.form-line {
  width: 100%;
}

.hero-form .form-submit,
.hero-form .form-line,
.hero-form .form-error,
.hero-form .form-success,
.hero-field-wide {
  grid-column: 1 / -1;
}

.hero-visual {
  position: relative;
  min-height: 410px;
}

.device-frame {
  width: min(100%, 430px);
  margin: 38px auto 0;
  overflow: hidden;
  background: #fff;
  border: 10px solid #fff;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(23, 50, 77, 0.2);
}

.browser-bar {
  display: flex;
  gap: 7px;
  padding: 12px;
  background: #edf6f8;
}

.browser-bar span {
  width: 10px;
  height: 10px;
  background: var(--color-coral);
  border-radius: 50%;
}

.browser-bar span:nth-child(2) {
  background: #ffcc66;
}

.browser-bar span:nth-child(3) {
  background: var(--color-green);
}

.site-preview {
  padding: 24px;
}

.preview-title {
  width: 56%;
  height: 28px;
  margin-bottom: 18px;
  background: var(--color-navy);
  border-radius: 999px;
}

.preview-line {
  width: 64%;
  height: 12px;
  margin: 12px 0;
  background: var(--color-border);
  border-radius: 999px;
}

.preview-line.wide {
  width: 88%;
}

.preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.preview-grid span {
  min-height: 76px;
  background: linear-gradient(135deg, var(--color-blue), #f7fff9);
  border-radius: 8px;
}

.visual-card {
  position: absolute;
  z-index: 2;
  width: 190px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  box-shadow: var(--shadow-card);
}

.visual-card p {
  margin-bottom: 6px;
  font-weight: 800;
}

.visual-card strong,
.visual-card small {
  color: var(--color-green);
  font-weight: 900;
}

.visual-chat {
  top: 0;
  left: 0;
}

.visual-mail {
  right: 0;
  bottom: 12px;
}

.icon-bubble,
.icon-mail {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 3px 9px;
  color: #fff;
  background: var(--color-green);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 900;
}

.icon-mail {
  background: var(--color-navy);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.card-grid,
.feature-grid,
.proposal-grid,
.price-grid {
  display: grid;
  gap: 16px;
}

.mini-card,
.feature-card,
.price-card,
.compare-card,
.flow-item,
.contact-form,
.pre-contact-inner {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(23, 50, 77, 0.06);
}

.mini-card {
  display: flex;
  gap: 12px;
  align-items: center;
  min-height: 92px;
  padding: 18px;
  color: var(--color-navy);
  font-weight: 900;
}

.card-icon {
  display: grid;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #fff;
  background: var(--color-green);
  border-radius: 8px;
  font-size: 0.9rem;
}

.center-copy {
  margin: 32px auto 0;
  color: var(--color-navy);
  font-size: 1.2rem;
  font-weight: 900;
  text-align: center;
}

.feature-card {
  padding: 18px 20px;
  color: var(--color-navy);
  font-weight: 900;
}

.feature-card::before,
.check-list span::before,
.included-list span::before {
  content: "✓";
  display: inline-grid;
  width: 24px;
  height: 24px;
  margin-right: 8px;
  place-items: center;
  color: #fff;
  background: var(--color-green);
  border-radius: 50%;
  font-size: 0.82rem;
}

.message-strip {
  display: grid;
  gap: 4px;
  margin-top: 28px;
  padding: 22px;
  color: var(--color-navy);
  background: #fff;
  border-left: 6px solid var(--color-coral);
  border-radius: var(--radius-small);
  box-shadow: var(--shadow-card);
}

.message-strip strong {
  font-size: 1.15rem;
}

.compare-wrap {
  display: grid;
  gap: 18px;
}

.compare-card {
  padding: 24px;
}

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

.compare-card li {
  padding: 12px 14px;
  background: #f6fafb;
  border-radius: 8px;
  font-weight: 800;
}

.compare-card.highlight {
  border: 2px solid rgba(47, 155, 120, 0.32);
  box-shadow: var(--shadow-card);
}

.compare-card.highlight h3 {
  color: var(--color-green);
}

.compare-card.highlight li {
  color: var(--color-navy);
  background: #edf9f5;
}

.comparison-table {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.comparison-table > div {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  align-items: center;
  min-width: 0;
  border-bottom: 1px solid var(--color-border);
}

.comparison-table > div:last-child {
  border-bottom: 0;
}

.comparison-table span,
.comparison-table strong {
  padding: 13px 12px;
  text-align: center;
}

.comparison-table span:first-child {
  color: var(--color-navy);
  font-weight: 900;
  text-align: left;
}

.comparison-table strong {
  color: var(--color-green);
  background: #edf9f5;
}

.comparison-table .table-head {
  color: #fff;
  background: var(--color-navy);
  font-weight: 900;
}

.comparison-table .table-head span {
  color: #fff;
}

.comparison-table .status {
  display: inline-flex;
  justify-self: center;
  justify-content: center;
  min-width: 92px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.2;
}

.comparison-table .status-good {
  color: #fff;
  background: var(--color-green);
}

.comparison-table .status-neutral {
  color: var(--color-navy);
  background: #eef5f7;
}

.comparison-table .status-limited {
  color: #755c19;
  background: #fff3c4;
}

.comparison-table .status-none {
  color: #7c3840;
  background: #ffe2e2;
}

.story-panel {
  display: grid;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.story-panel p {
  margin-bottom: 0;
  color: var(--color-navy);
  font-size: 1.08rem;
  font-weight: 800;
}

.story-list {
  display: grid;
  gap: 10px;
}

.story-list span {
  padding: 14px 16px;
  color: var(--color-navy);
  background: #f7fcfb;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-weight: 900;
}

.story-list span::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 9px;
  background: var(--color-coral);
  border-radius: 50%;
  vertical-align: 0.08em;
}

.support-grid {
  display: grid;
  gap: 16px;
}

.support-card {
  position: relative;
  overflow: hidden;
  padding: 26px 24px 24px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-top: 3px solid rgba(45, 163, 122, 0.45);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(23, 50, 77, 0.06);
}

.support-card span {
  display: block;
  margin: 0 0 18px;
  padding: 0;
  color: rgba(45, 163, 122, 0.28);
  background: transparent;
  border-radius: 0;
  font-size: clamp(3.2rem, 8vw, 4.8rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.82;
}

.support-card span::before {
  display: block;
  margin-bottom: 8px;
  color: var(--color-green);
  content: "SUPPORT";
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
}

.support-card h3 {
  margin-bottom: 8px;
  font-size: 1.45rem;
}

.support-card p {
  margin-bottom: 0;
  color: var(--color-muted);
  font-weight: 700;
}

.section-price {
  background: linear-gradient(180deg, #ffffff 0%, #f8fcff 100%);
}

.price-heading-prefix,
.price-heading-unit {
  display: inline-block;
  font-size: 0.72em;
  line-height: 1;
  vertical-align: 0.08em;
}

.price-card {
  padding: 26px;
  text-align: center;
}

.price-card strong {
  display: block;
  margin: 6px 0;
  color: var(--color-navy);
  font-size: clamp(2.15rem, 9vw, 3.8rem);
  line-height: 1;
}

.price-card .price-number {
  display: inline-block;
}

.price-card .price-unit {
  display: inline-block;
  margin-left: 0.06em;
  font-size: 0.44em;
  line-height: 1;
  vertical-align: 0.2em;
}

.price-card small {
  display: block;
  max-width: 280px;
  margin: 12px auto 0;
  color: var(--color-muted);
  font-weight: 800;
  line-height: 1.6;
}

.price-card em {
  display: inline-flex;
  margin-top: 10px;
  padding: 3px 10px;
  color: var(--color-muted);
  background: #f6fafb;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 900;
}

.featured-price {
  border-color: rgba(255, 127, 114, 0.45);
  box-shadow: var(--shadow-card);
}

.featured-price strong {
  color: var(--color-coral-dark);
}

.price-card strong {
  transform-origin: center bottom;
  transition: transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.price-card.is-visible strong {
  animation: price-pop 760ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.included-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.included-list span {
  padding: 10px 14px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-weight: 900;
}

.price-support {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.price-support > div {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(23, 50, 77, 0.06);
}

.price-support h3 {
  margin-bottom: 12px;
}

.included-list.compact {
  justify-content: flex-start;
  margin-top: 0;
}

.included-list.compact span {
  background: #f7fcfb;
}

.extra-note {
  border-left: 5px solid var(--color-green) !important;
}

.extra-note p {
  margin-bottom: 0;
  color: var(--color-muted);
  font-weight: 700;
}

.monthly-extra {
  margin-top: 16px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(23, 50, 77, 0.06);
}

.monthly-extra h3 {
  margin-bottom: 8px;
}

.note {
  margin: 18px 0 0;
  color: var(--color-muted);
  text-align: center;
}

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

.check-list span {
  padding: 16px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-small);
  font-weight: 800;
}

.flow-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.flow-item {
  padding: 22px 18px;
  background: transparent;
  border: 0;
  border-top: 2px solid rgba(45, 163, 122, 0.35);
  border-radius: 0;
  box-shadow: none;
}

.flow-item span {
  display: block;
  margin: 0 0 14px;
  padding: 0;
  color: rgba(45, 163, 122, 0.32);
  background: transparent;
  border-radius: 0;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.88;
}

.flow-item span::before {
  display: block;
  margin-bottom: 6px;
  color: var(--color-green);
  content: "FLOW";
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
}

.flow-item strong {
  display: block;
  color: var(--color-navy);
  font-size: 1.18rem;
}

.flow-item p {
  margin: 8px 0 0;
  color: var(--color-muted);
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-small);
  box-shadow: 0 8px 26px rgba(23, 50, 77, 0.05);
}

summary {
  cursor: pointer;
  color: var(--color-navy);
  font-weight: 900;
}

details p {
  margin: 12px 0 0;
  color: var(--color-muted);
}

.pre-contact {
  padding: 28px 0;
  background: var(--color-navy);
}

.pre-contact-inner {
  display: grid;
  gap: 16px;
  align-items: center;
  padding: 22px;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.pre-contact p {
  margin: 0;
  color: #fff;
  font-size: 1.24rem;
  font-weight: 900;
}

.pre-contact span {
  display: block;
  margin-top: 4px;
  color: #dbe8ef;
  font-size: 0.94rem;
  font-weight: 700;
}

.section-contact {
  background: linear-gradient(145deg, #f5fbfd 0%, #ffffff 100%);
}

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

.contact-copy {
  align-self: start;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 20px;
}

.contact-form label,
.contact-form fieldset {
  display: grid;
  gap: 7px;
  margin: 0;
  color: var(--color-navy);
  font-weight: 900;
}

.contact-form fieldset {
  padding: 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-small);
}

.contact-form fieldset label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-ink);
  font-weight: 700;
}

.contact-form strong {
  color: var(--color-coral-dark);
  font-size: 0.76rem;
  font-weight: 900;
}

.contact-form a {
  color: var(--color-green);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-form .button {
  color: #fff;
  text-decoration: none;
}

.contact-form label em {
  color: var(--color-muted);
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--color-ink);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  min-width: 0;
}

select {
  appearance: none;
  padding-right: 42px;
  background-image: linear-gradient(45deg, transparent 50%, var(--color-muted) 50%),
    linear-gradient(135deg, var(--color-muted) 50%, transparent 50%);
  background-position: calc(100% - 21px) 50%, calc(100% - 15px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

input::placeholder,
textarea::placeholder {
  color: #b5c0c9;
  opacity: 1;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--color-green);
  outline: 3px solid rgba(47, 155, 120, 0.18);
}

input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: var(--color-coral-dark);
}

.field-label {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  line-height: 1.45;
}

.consent {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 10px !important;
}

.consent input,
.contact-form fieldset input {
  width: auto;
  margin-top: 6px;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-error {
  margin: 0;
  color: var(--color-coral-dark);
  font-weight: 800;
}

.form-success {
  padding: 16px;
  color: var(--color-navy);
  background: #edf9f5;
  border: 1px solid rgba(47, 155, 120, 0.28);
  border-radius: var(--radius-small);
  font-weight: 900;
}

.form-submit {
  width: 100%;
}

.site-footer {
  padding: 36px 0;
  color: #dbe8ef;
  background: var(--color-navy);
}

.footer-inner,
.site-footer nav {
  display: grid;
  gap: 16px;
}

.site-footer .brand {
  color: #fff;
}

.site-footer nav {
  grid-template-columns: 1fr;
}

.site-footer small {
  color: #aab9c5;
}

.policy-page {
  background: linear-gradient(180deg, #f6fcfd 0%, #ffffff 360px);
}

.policy-container {
  max-width: 900px;
}

.policy-title {
  margin-bottom: 10px;
  font-size: clamp(1.42rem, 5vw, 2.8rem);
  line-height: 1.22;
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
}

.policy-date {
  margin-bottom: 32px;
  color: var(--color-muted);
  font-weight: 800;
}

.policy-body {
  padding: clamp(22px, 4vw, 42px);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow-wrap: anywhere;
}

.policy-body h2 {
  margin: 42px 0 12px;
  padding-top: 28px;
  border-top: 1px solid var(--color-border);
  font-size: clamp(1.32rem, 3vw, 1.8rem);
}

.policy-body h2:first-of-type {
  margin-top: 28px;
}

.policy-body h3 {
  margin: 24px 0 8px;
  font-size: 1.1rem;
}

.policy-body h4 {
  margin: 18px 0 6px;
  color: var(--color-navy);
  font-size: 1rem;
}

.policy-body p,
.policy-body li {
  color: var(--color-ink);
  min-width: 0;
}

.policy-body ul {
  display: grid;
  gap: 6px;
  margin: 8px 0 18px;
  padding-left: 1.25em;
}

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

.confirm-section,
.thanks-section {
  min-height: calc(100vh - 156px);
  display: grid;
  align-items: center;
}

.confirm-section > .container,
.thanks-section > .container,
.thanks-box {
  min-width: 0;
}

.confirm-box,
.thanks-box {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.confirm-box h1 {
  margin: 0;
  color: var(--color-navy);
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  line-height: 1.25;
}

.confirm-lead {
  margin: 16px 0 28px;
  color: var(--color-muted);
  font-weight: 800;
}

.confirm-form {
  text-align: left;
}

.confirm-list {
  display: grid;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.confirm-list div {
  display: grid;
  grid-template-columns: minmax(140px, 0.36fr) minmax(0, 1fr);
  gap: 18px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--color-border);
}

.confirm-list div:last-child {
  border-bottom: 0;
}

.confirm-list dt {
  color: var(--color-muted);
  font-size: 0.9rem;
  font-weight: 900;
}

.confirm-list dd {
  min-width: 0;
  margin: 0;
  color: var(--color-ink);
  font-weight: 800;
  line-height: 1.7;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}

.confirm-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.thanks-box h1 {
  margin: 0;
  color: var(--color-navy);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.thanks-box p:not(.section-kicker) {
  margin: 24px auto 0;
  color: var(--color-muted);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  font-weight: 700;
  line-height: 1.9;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 640ms ease,
    transform 640ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 260ms ease,
    border-color 260ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section-heading.reveal {
  transform: translateY(16px);
}

.price-card.reveal,
.feature-card.reveal,
.mini-card.reveal,
.support-card.reveal,
.flow-item.reveal {
  transform: translateY(20px) scale(0.985);
}

.price-card.reveal.is-visible,
.feature-card.reveal.is-visible,
.mini-card.reveal.is-visible,
.support-card.reveal.is-visible,
.flow-item.reveal.is-visible {
  transform: translateY(0) scale(1);
}

.message-strip.reveal,
.extra-note.reveal,
.pre-contact-inner.reveal {
  transform: translateY(18px);
}

.message-strip.reveal.is-visible,
.extra-note.reveal.is-visible,
.pre-contact-inner.reveal.is-visible {
  transform: translateY(0);
}

.faq-list.reveal details {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 520ms ease,
    transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.faq-list.reveal.is-visible details {
  opacity: 1;
  transform: translateY(0);
}

.faq-list.reveal.is-visible details:nth-child(2) {
  transition-delay: 70ms;
}

.faq-list.reveal.is-visible details:nth-child(3) {
  transition-delay: 140ms;
}

.faq-list.reveal.is-visible details:nth-child(4) {
  transition-delay: 210ms;
}

.faq-list.reveal.is-visible details:nth-child(5) {
  transition-delay: 280ms;
}

.faq-list.reveal.is-visible details:nth-child(6) {
  transition-delay: 350ms;
}

@keyframes price-pop {
  0% {
    transform: translateY(8px) scale(0.96);
  }
  55% {
    transform: translateY(0) scale(1.035);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

@keyframes introPattern {
  from {
    background-position: -16px -10px, -16px -10px, -24px 0;
    opacity: 0;
  }
  to {
    background-position: 0 0, 0 0, 0 0;
    opacity: 0.68;
  }
}

@keyframes introSymbol {
  from {
    transform: translateY(18px) scale(0.9);
    opacity: 0;
  }
  to {
    transform: translateY(10px) scale(0.94);
    opacity: 0.035;
  }
}

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

@keyframes introLogo {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes introLine {
  to {
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button,
  .reveal {
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .faq-list.reveal details {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .price-card.is-visible strong {
    animation: none;
  }

  .intro-loader {
    display: none;
  }

  .intro-pattern,
  .intro-symbol,
  .intro-content span,
  .intro-content img,
  .intro-content p,
  .intro-line::after {
    animation: none;
  }
}

@media (min-width: 680px) {
  .section,
  .section-band {
    padding: 92px 0;
  }

  .header-nav {
    display: flex;
  }

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

  .price-support {
    grid-template-columns: 1.25fr 0.75fr;
    align-items: stretch;
  }

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

  .pre-contact-inner {
    grid-template-columns: 1fr auto;
  }

  .site-footer nav {
    grid-template-columns: repeat(6, max-content);
  }
}

@media (min-width: 680px) and (max-width: 919px) {
  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    max-width: 680px;
  }

  .hero-copy,
  .hero-inquiry {
    justify-self: center;
    width: 100%;
  }

  .hero-inquiry {
    max-width: 560px;
  }

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

  .hero-bg-illustration {
    left: auto;
    right: -120px;
    bottom: 38px;
    width: 620px;
    opacity: 0.11;
  }

  .hero-bg-symbol {
    left: 28px;
    top: 94px;
    width: 260px;
    opacity: 0.04;
  }
}

@media (min-width: 920px) {
  .site-header {
    padding: 14px max(24px, calc((100vw - var(--container)) / 2));
  }

  .hero-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.72fr);
  }

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

  .hero-inquiry {
    justify-self: end;
    padding: 16px;
  }

  .hero-form input,
  .hero-form textarea {
    padding: 9px 10px;
    font-size: 0.92rem;
  }

  .hero-form label {
    font-size: 0.92rem;
  }

  .hero-form .button {
    min-height: 44px;
    font-size: 0.92rem;
  }

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

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

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

  .story-panel {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

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

  .compare-wrap {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: stretch;
  }

  .flow-list {
    grid-template-columns: repeat(5, 1fr);
  }

  .flow-list-six {
    grid-template-columns: repeat(6, 1fr);
  }

  .flow-item {
    position: relative;
  }

  .contact-form {
    padding: 28px;
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .footer-inner small {
    grid-column: 1 / -1;
  }
}

@media (max-width: 919px) {
  .support-grid,
  .flow-list,
  .flow-list-six {
    display: grid;
    gap: 0;
    padding-left: 16px;
    border-left: 1px solid rgba(45, 163, 122, 0.22);
  }

  .support-card,
  .flow-item {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    column-gap: 12px;
    min-height: 0;
    padding: 17px 0 17px 16px;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(195, 216, 224, 0.72);
    border-radius: 0;
    box-shadow: none;
  }

  .support-card:last-child,
  .flow-item:last-child {
    border-bottom: 0;
  }

  .support-card span,
  .flow-item span {
    grid-row: 1 / span 2;
    align-self: start;
    margin: 3px 0 0;
    padding: 0;
    color: var(--color-green);
    background: transparent;
    border-radius: 0;
    font-size: 1.32rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    line-height: 1.05;
  }

  .support-card span::before,
  .flow-item span::before {
    margin-bottom: 4px;
    font-size: 0.58rem;
    letter-spacing: 0.1em;
  }

  .support-card h3,
  .flow-item strong {
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.4;
  }

  .support-card p,
  .flow-item p {
    margin: 5px 0 0;
    font-size: 0.92rem;
    line-height: 1.65;
  }
}

@media (min-width: 1440px) {
  :root {
    --container: 1180px;
  }

  .hero-bg-illustration {
    left: clamp(520px, 48vw, 980px);
    width: min(820px, 42vw);
  }

  .brand-logo {
    width: 168px;
  }
}

@media (min-width: 1920px) {
  :root {
    --container: 1240px;
  }

  .section,
  .section-band {
    padding-block: 104px;
  }
}

@media (max-width: 430px) {
  .sp-only {
    display: initial;
  }

  .pc-only {
    display: none;
  }

  .site-header {
    gap: 8px;
    padding-inline: 10px;
  }

  .brand {
    font-size: 0.92rem;
  }

  .brand-logo {
    width: min(132px, 42vw);
  }

  .header-cta {
    min-height: 38px;
    padding: 8px 12px;
  }

  .button {
    width: 100%;
    min-height: 50px;
    padding-inline: 14px;
  }

  .confirm-list div {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 16px;
  }

  .confirm-actions {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(2.35rem, 12vw, 3rem);
  }

  h2 {
    font-size: clamp(1.68rem, 9vw, 2.25rem);
    line-height: 1.26;
  }

  .policy-title {
    font-size: clamp(0.95rem, 3.4vw, 1.14rem);
  }

  .hero-catch {
    font-size: clamp(1.24rem, 5.5vw, 1.58rem);
    line-height: 1.36;
  }

  .hero-lead,
  .section-heading p,
  .contact-copy p {
    font-size: 0.98rem;
    line-height: 1.82;
  }

  .section-heading {
    margin-bottom: 26px;
  }

  .story-panel p,
  .message-strip strong {
    font-size: 1.02rem;
  }

  .support-card h3 {
    font-size: 1.28rem;
  }

  .support-grid,
  .flow-list,
  .flow-list-six {
    display: grid;
    gap: 0;
    padding-left: 14px;
    border-left: 1px solid rgba(45, 163, 122, 0.22);
  }

  .support-card,
  .flow-item {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    column-gap: 10px;
    min-height: 0;
    padding: 15px 0 15px 14px;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(195, 216, 224, 0.72);
    border-radius: 0;
    box-shadow: none;
  }

  .support-card:last-child,
  .flow-item:last-child {
    border-bottom: 0;
  }

  .support-card span,
  .flow-item span {
    grid-row: 1 / span 2;
    align-self: start;
    margin: 4px 0 0;
    padding: 0;
    color: var(--color-green);
    background: transparent;
    border-radius: 0;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    line-height: 1.2;
  }

  .support-card h3,
  .flow-item strong {
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.4;
  }

  .support-card p,
  .flow-item p {
    margin: 5px 0 0;
    font-size: 0.9rem;
    line-height: 1.65;
  }

  .hero {
    min-height: auto;
    padding-block: 42px 56px;
  }

  .hero-grid {
    gap: 22px;
  }

  .hero-inquiry {
    width: 100%;
    padding: 14px;
  }

  .hero-form {
    gap: 8px;
  }

  .hero-form input,
  .hero-form select,
  .hero-form textarea,
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    min-height: 36px;
    padding: 6px 10px;
    font-size: 0.9rem;
  }

  .hero-form textarea {
    min-height: 72px;
  }

  .hero-form-head {
    padding-bottom: 8px;
  }

  .hero-form-head h2 {
    margin-bottom: 4px;
    font-size: clamp(1.08rem, 5.2vw, 1.34rem);
  }

  .hero-form-head p {
    font-size: 0.78rem;
    line-height: 1.42;
  }

  .contact-form {
    gap: 10px;
    padding: 16px;
  }

  .contact-form label,
  .contact-form fieldset {
    gap: 5px;
    font-size: 0.92rem;
  }

  .field-label {
    align-items: baseline;
    line-height: 1.25;
  }

  .contact-form fieldset {
    padding: 10px;
  }

  .contact-form textarea {
    min-height: 88px;
  }

  .contact-form .button {
    min-height: 48px;
  }

  .price-grid,
  .proposal-grid {
    gap: 12px;
  }

  .feature-grid,
  .proposal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .feature-grid .feature-card,
  .proposal-grid .feature-card {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 10px;
    border-radius: 8px;
    box-shadow: none;
    font-size: 0.88rem;
    line-height: 1.25;
    text-align: left;
  }

  .feature-grid .feature-card::before {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    margin-right: 6px;
    font-size: 0.78rem;
  }

  .proposal-grid {
    counter-reset: proposal-step;
  }

  .proposal-grid .feature-card {
    gap: 7px;
  }

  .proposal-grid .feature-card::before {
    content: counter(proposal-step, decimal-leading-zero);
    counter-increment: proposal-step;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 22px;
    flex: 0 0 28px;
    margin-right: 0;
    border-radius: 999px;
    color: #fff;
    background: var(--color-green);
    font-size: 0.72rem;
    font-weight: 900;
  }

  .problem-grid {
    gap: 0;
    border-top: 1px solid var(--color-border);
  }

  .problem-grid .mini-card {
    min-height: 0;
    padding: 12px 2px;
    border: 0;
    border-bottom: 1px solid var(--color-border);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    font-size: 0.95rem;
    line-height: 1.45;
  }

  .problem-grid .card-icon {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    border: 1px solid rgba(47, 155, 120, 0.2);
    color: var(--color-green);
    background: #fff;
    font-size: 0.75rem;
  }

  .price-card {
    padding: 22px 16px;
  }

  .visual-card {
    position: relative;
    width: 100%;
    margin-bottom: 10px;
  }

  .visual-mail {
    bottom: auto;
  }

  .device-frame {
    margin-top: 10px;
  }

  .hero-bg-illustration {
    left: auto;
    right: -170px;
    bottom: 20px;
    width: 520px;
    opacity: 0.08;
  }

  .hero-bg-symbol {
    left: 8px;
    top: 78px;
    width: 210px;
    opacity: 0.04;
  }
}

@media (max-width: 360px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .brand {
    font-size: 0.84rem;
  }

  .brand-logo {
    width: 118px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .header-cta {
    padding-inline: 10px;
    font-size: 0.82rem;
  }

  h1 {
    font-size: clamp(2.25rem, 11vw, 2.55rem);
  }

  .hero-catch {
    font-size: 1.18rem;
  }

  .trust-list li {
    font-size: 0.82rem;
  }
}
