:root {
  --acid: #b7ff00;
  --acid-2: #d8ff36;
  --black: #030303;
  --panel: rgba(12, 13, 12, 0.92);
  --panel-2: rgba(19, 20, 18, 0.82);
  --paper: #f2f2ea;
  --muted: #b6b8ad;
  --dim: #75786f;
  --line: rgba(242, 242, 234, 0.2);
  --line-soft: rgba(242, 242, 234, 0.11);
  --acid-line: rgba(183, 255, 0, 0.62);
  --max: 1360px;
  --x: clamp(18px, 4vw, 54px);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--black);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at 75% 8%, rgba(183, 255, 0, 0.08), transparent 19rem),
    radial-gradient(circle at 12% 16%, rgba(255, 255, 255, 0.05), transparent 22rem),
    linear-gradient(180deg, #030303, #080908 44%, #030303);
  font-family: "Hiragino Sans", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  line-height: 1.72;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.12) 0.7px, transparent 0.9px),
    linear-gradient(110deg, transparent 0 49%, rgba(255, 255, 255, 0.035) 50%, transparent 51% 100%);
  background-size: 9px 9px, 190px 190px;
  opacity: 0.42;
  mix-blend-mode: screen;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
}

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

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

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

button {
  color: inherit;
}

.section-inner {
  width: min(var(--max), calc(100% - var(--x) * 2));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(16px, 3vw, 38px);
  align-items: center;
  min-height: 68px;
  padding: 9px var(--x);
  background: rgba(0, 0, 0, 0.91);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.45);
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  min-width: 0;
  line-height: 1;
}

.brand-mark {
  position: relative;
  display: grid;
  min-width: 80px;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.35rem;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-mark::before {
  position: absolute;
  top: 7px;
  left: 0;
  width: 18px;
  height: 18px;
  content: "";
  background: var(--acid);
  clip-path: polygon(50% 0, 58% 28%, 82% 12%, 72% 40%, 100% 42%, 76% 56%, 90% 82%, 62% 68%, 50% 100%, 38% 68%, 10% 82%, 24% 56%, 0 42%, 28% 40%, 18% 12%, 42% 28%);
}

.brand-text {
  display: grid;
  gap: 2px;
  min-width: 126px;
}

.brand-text strong,
.brand-text small {
  display: block;
}

.brand-text strong {
  font-size: 0.72rem;
  font-weight: 1000;
  letter-spacing: 0;
}

.brand-text small {
  color: var(--paper);
  font-size: 0.68rem;
  font-weight: 900;
}

.site-nav {
  display: flex;
  gap: clamp(18px, 3.2vw, 54px);
  justify-content: center;
  color: var(--paper);
  font-size: 0.78rem;
  font-weight: 1000;
  letter-spacing: 0;
  white-space: nowrap;
}

.site-nav a {
  opacity: 0.93;
}

.site-nav a:hover {
  color: var(--acid);
}

.menu-toggle {
  display: none;
  min-height: 38px;
  padding: 0 12px;
  color: var(--paper);
  font-size: 0.72rem;
  font-weight: 1000;
  cursor: pointer;
  background: transparent;
  border: 1px solid var(--line);
}

.header-cta,
.button,
.text-action {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 28px;
  color: #070806;
  font-weight: 1000;
  line-height: 1.15;
  cursor: pointer;
  background: var(--acid);
  border: 1px solid var(--acid);
  border-radius: 0;
  box-shadow: 0 0 0 1px rgba(183, 255, 0, 0.12), 0 0 26px rgba(183, 255, 0, 0.2);
}

.header-cta {
  min-width: 156px;
  min-height: 48px;
}

.button::after,
.header-cta::after,
.text-action::after {
  margin-left: 14px;
  content: ">";
  font-weight: 1000;
}

.button.outline {
  color: var(--paper);
  background: rgba(0, 0, 0, 0.24);
  border-color: rgba(242, 242, 234, 0.76);
  box-shadow: none;
}

.button.compact {
  width: 100%;
  min-height: 42px;
  padding-inline: 12px;
  font-size: 0.9rem;
}

.button:hover,
.header-cta:hover,
.text-action:hover {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 735px;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
}

.hero::before {
  position: absolute;
  inset: 58px 0 0;
  content: "";
  background:
    linear-gradient(90deg, #050505 0 45%, transparent 61%),
    radial-gradient(circle at 60% 40%, rgba(183, 255, 0, 0.13), transparent 21rem);
  opacity: 0.9;
}

.hero::after,
.support::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(183, 255, 0, 0.7), transparent);
}

.top-notice {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 38px;
  margin: 0;
  place-items: center;
  color: var(--paper);
  font-size: 1rem;
  font-weight: 1000;
  text-align: center;
  border-bottom: 1px solid var(--line-soft);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(440px, 1.04fr);
  gap: clamp(26px, 4.8vw, 64px);
  align-items: start;
  padding-top: clamp(42px, 6.5vw, 82px);
}

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

.hero h1 {
  margin: 0;
  font-size: clamp(3.4rem, 5.25vw, 5.85rem);
  font-weight: 1000;
  line-height: 1.03;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
  white-space: nowrap;
}

.acid {
  color: var(--acid);
  text-shadow: 0 0 20px rgba(183, 255, 0, 0.28);
}

.hero p {
  max-width: 610px;
  margin: 24px 0 0;
  color: var(--paper);
  font-size: 1.02rem;
  font-weight: 900;
}

.hero p + p {
  margin-top: 5px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin: 56px 0 0;
}

.hero-facts div {
  min-width: 0;
  padding-top: 8px;
}

.hero-facts dt {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 8px;
  align-items: center;
  margin: 0 0 6px;
  color: var(--paper);
  font-size: 0.88rem;
  font-weight: 1000;
}

.hero-facts dt span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--acid);
  font-size: 0.72rem;
  border: 2px solid var(--acid);
  border-radius: 50%;
}

.hero-facts dd {
  margin: 0;
  padding-left: 44px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1.45;
}

.hero-visual {
  position: relative;
  width: min(100%, 720px);
  min-height: 560px;
  margin: 0;
  justify-self: end;
  overflow: hidden;
  background: #090909;
  clip-path: polygon(5% 0, 100% 0, 100% 92%, 82% 94%, 72% 100%, 20% 91%, 0 83%, 0 11%);
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.58));
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.16));
}

.hero-visual img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: center top;
}

.why-policy,
.support,
.proof-process,
.bottom-area {
  position: relative;
  padding: clamp(30px, 4.8vw, 62px) 0;
  border-bottom: 1px solid var(--line-soft);
}

.why-policy-grid {
  display: grid;
  grid-template-columns: 210px minmax(280px, 0.58fr) minmax(420px, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: stretch;
}

.street-panel {
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  border-right: 1px solid var(--line);
}

.street-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.18) brightness(0.74);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--paper);
  font-size: 1.16rem;
  font-weight: 1000;
  line-height: 1;
}

.eyebrow.ghost {
  color: rgba(242, 242, 234, 0.18);
  font-size: clamp(2.6rem, 4vw, 4.2rem);
  letter-spacing: 0;
}

.hand,
.stamp,
.no-stress,
.footer-scribble {
  font-family: "Marker Felt", "Comic Sans MS", "Hiragino Sans", system-ui, sans-serif;
}

.hand {
  color: var(--acid);
  font-size: clamp(1.7rem, 2.5vw, 2.6rem);
  transform: rotate(-3deg);
}

.why-copy h2,
.policy-block h2,
.proof-box h2,
.process-box h2,
.plans h2,
.faq-box h2,
.apply-box h2 {
  margin: 0;
  color: var(--paper);
  font-size: clamp(1.45rem, 2.45vw, 2.35rem);
  font-weight: 1000;
  line-height: 1.38;
  letter-spacing: 0;
}

.why-copy h2 span {
  color: var(--acid);
}

.why-copy p,
.policy-block > p,
.proof-box p,
.process-box p,
.apply-box > p,
.service-card p,
.plan-card p,
.faq-answer p {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 760;
}

.policy-block {
  padding-left: clamp(22px, 3.6vw, 46px);
  border-left: 1px solid var(--line);
}

.policy-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
  border-top: 1px solid var(--line);
}

.policy-list div {
  min-width: 0;
  padding: 24px 22px 0 0;
  border-right: 1px solid var(--line);
}

.policy-list div + div {
  padding-left: 22px;
}

.policy-list div:last-child {
  border-right: 0;
}

.policy-list span {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 14px;
  place-items: center;
  color: var(--acid);
  font-size: 1.05rem;
  font-weight: 1000;
  border: 2px solid var(--acid);
  border-radius: 50%;
}

.policy-list h3,
.service-card h3,
.plan-card h3,
.process-list h3 {
  margin: 0;
  color: var(--paper);
  font-size: 1rem;
  font-weight: 1000;
  line-height: 1.35;
}

.policy-list p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 760;
  line-height: 1.72;
}

.support-heading {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  align-items: flex-end;
  margin-bottom: 18px;
}

.support-heading .eyebrow {
  margin: 0;
  color: var(--paper);
  font-size: clamp(2rem, 3.4vw, 3.5rem);
}

.support-heading h2 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 1000;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.service-card,
.plan-card,
.proof-box,
.process-box,
.faq-box,
.apply-box {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.016)),
    var(--panel);
  border: 1px solid var(--line);
}

.service-card::before,
.plan-card::before,
.proof-box::before,
.process-box::before,
.faq-box::before,
.apply-box::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image: radial-gradient(circle, rgba(255,255,255,0.12) 0.7px, transparent 1px);
  background-size: 8px 8px;
  opacity: 0.18;
}

.service-card {
  display: flex;
  min-height: 440px;
  flex-direction: column;
  padding: 20px 18px 16px;
}

.service-head {
  display: grid;
  gap: 4px;
}

.service-head span {
  color: var(--acid);
  font-size: clamp(2.6rem, 3.7vw, 4.4rem);
  font-weight: 1000;
  line-height: 0.9;
}

.service-head h3 {
  color: var(--acid);
}

.service-card p {
  margin: 10px 0 0;
  min-height: 92px;
  font-size: 0.86rem;
}

.service-card ul {
  display: grid;
  gap: 5px;
  margin: 16px 0 12px;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 18px;
  color: var(--paper);
  font-size: 0.82rem;
  font-weight: 900;
}

.service-card li::before {
  position: absolute;
  top: 0.64em;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  border: 2px solid var(--acid);
  border-radius: 50%;
}

.service-card img {
  width: calc(100% + 36px);
  height: 112px;
  margin: auto -18px 12px;
  object-fit: cover;
  object-position: center bottom;
  filter: saturate(0.95) contrast(1.1) brightness(0.84);
}

.text-action {
  min-height: 40px;
  padding: 0 12px;
  color: var(--acid);
  font-size: 0.82rem;
  background: rgba(0, 0, 0, 0.24);
  box-shadow: none;
}

.proof-process-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.12fr;
  gap: 10px;
}

.proof-box,
.process-box,
.faq-box,
.apply-box {
  padding: clamp(20px, 2.6vw, 34px);
}

.proof-box img {
  width: min(100%, 390px);
  height: 126px;
  margin-top: 22px;
  object-fit: cover;
  object-position: center 34%;
  filter: grayscale(1) contrast(1.1);
}

.stamp {
  position: absolute;
  right: clamp(18px, 2.6vw, 34px);
  bottom: 28px;
  max-width: 280px;
  margin: 0;
  color: var(--acid);
  font-size: clamp(1.25rem, 2vw, 2.05rem);
  font-weight: 1000;
  line-height: 0.98;
  transform: rotate(-8deg);
}

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

.process-list li {
  position: relative;
  min-width: 0;
  text-align: center;
}

.process-list li + li::before {
  position: absolute;
  top: 36px;
  left: -14px;
  color: var(--paper);
  content: ">";
  opacity: 0.7;
}

.process-list span {
  display: grid;
  width: 72px;
  height: 72px;
  margin: 0 auto 14px;
  place-items: center;
  color: var(--paper);
  font-size: 1.1rem;
  font-weight: 1000;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.process-list h3 {
  color: var(--acid);
}

.process-list p {
  margin: 8px 0 0;
  font-size: 0.76rem;
}

.bottom-grid {
  display: grid;
  grid-template-columns: minmax(420px, 0.96fr) minmax(420px, 1.04fr);
  gap: 10px;
  align-items: start;
}

.section-title-row {
  display: flex;
  gap: 14px;
  align-items: baseline;
  margin-bottom: 14px;
}

.section-title-row .eyebrow {
  margin: 0;
  color: var(--paper);
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
}

.section-title-row h2 {
  font-size: 1.18rem;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.plan-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  padding: 22px 16px 16px;
  text-align: center;
}

.plan-name {
  margin: 0;
  color: var(--paper);
  font-size: 1rem;
  font-weight: 1000;
}

.price {
  margin: 8px 0 10px;
  color: var(--acid);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 1000;
  line-height: 1;
}

.price span {
  margin-left: 3px;
  color: var(--acid);
  font-size: 0.94rem;
}

.plan-card p:not(.plan-name):not(.price) {
  margin: 0 0 14px;
  font-size: 0.82rem;
  text-align: left;
}

.plan-card .button {
  margin-top: auto;
}

.faq-box {
  min-height: 232px;
  margin-top: 10px;
}

.faq-item {
  border-top: 1px solid var(--line);
}

.faq-item button {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 12px 0;
  color: var(--paper);
  text-align: left;
  cursor: pointer;
  background: transparent;
  border: 0;
}

.faq-item button span {
  min-width: 0;
  font-size: 0.93rem;
  font-weight: 900;
}

.faq-item i {
  color: var(--paper);
  font-style: normal;
  font-weight: 1000;
}

.faq-answer p {
  margin: 0 0 14px;
  font-size: 0.82rem;
}

.no-stress {
  position: absolute;
  right: 18px;
  bottom: 18px;
  margin: 0;
  color: rgba(242, 242, 234, 0.76);
  font-size: clamp(1.35rem, 2.4vw, 2.1rem);
  font-weight: 1000;
  line-height: 1.03;
  transform: rotate(-8deg);
}

.apply-box {
  min-height: 596px;
}

.apply-box > p {
  max-width: 680px;
  margin-bottom: 24px;
}

.apply-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px 14px;
}

.apply-form label {
  display: grid;
  min-width: 0;
  gap: 6px;
  color: var(--paper);
  font-size: 0.78rem;
  font-weight: 1000;
}

.apply-form .wide {
  grid-column: 1 / -1;
}

.apply-form input,
.apply-form select,
.apply-form textarea {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  color: var(--paper);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(242, 242, 234, 0.35);
  border-radius: 2px;
}

.apply-form textarea {
  min-height: 112px;
  resize: vertical;
}

.apply-form input:focus,
.apply-form select:focus,
.apply-form textarea:focus {
  outline: 2px solid rgba(183, 255, 0, 0.72);
  outline-offset: 2px;
}

.check-row {
  grid-template-columns: auto 1fr;
  align-items: start;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 760;
}

.check-row input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
  accent-color: var(--acid);
}

.submit-button {
  width: 100%;
  min-height: 58px;
  margin-top: 4px;
}

.submit-button span {
  margin-left: 10px;
  font-size: 0.78rem;
}

.form-note {
  min-height: 24px;
  margin: -2px 0 0;
  color: var(--acid);
  font-size: 0.82rem;
  font-weight: 900;
}

.site-footer {
  padding: 30px 0 34px;
  background: #050505;
}

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

.footer-inner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
}

.footer-scribble {
  color: rgba(242, 242, 234, 0.72) !important;
  font-size: clamp(1.5rem, 3vw, 2.6rem) !important;
  transform: rotate(-5deg);
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: auto auto 1fr auto;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: var(--x);
    left: var(--x);
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 10px;
    background: rgba(0, 0, 0, 0.96);
    border: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
    border-bottom: 1px solid var(--line-soft);
  }

  .hero-layout,
  .why-policy-grid,
  .proof-process-grid,
  .bottom-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-bottom: 38px;
  }

  .hero-layout {
    align-items: start;
  }

  .hero-visual {
    width: 100%;
    min-height: 430px;
    justify-self: stretch;
  }

  .hero-visual img {
    height: 470px;
  }

  .street-panel {
    min-height: 240px;
    border-right: 0;
  }

  .policy-block {
    padding-left: 0;
    border-left: 0;
  }

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

  .bottom-grid {
    gap: 18px;
  }
}

@media (max-width: 760px) {
  :root {
    --x: clamp(14px, 5vw, 22px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
    gap: 10px;
    min-height: 60px;
  }

  .brand-mark {
    min-width: 58px;
    font-size: 1.8rem;
  }

  .brand-mark::before {
    top: 5px;
    width: 14px;
    height: 14px;
  }

  .brand-text strong {
    font-size: 0.58rem;
  }

  .brand-text small {
    font-size: 0.56rem;
  }

  .menu-toggle {
    grid-column: 2;
    grid-row: 1;
    min-height: 34px;
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(242, 242, 234, 0.38);
  }

  .header-cta {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 42px;
  }

  .top-notice {
    display: block;
    min-height: 0;
    padding: 6px 14px;
    font-size: 0.66rem;
    line-height: 1.35;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .hero::before {
    inset-top: 34px;
    background: linear-gradient(180deg, rgba(0,0,0,0.96), rgba(0,0,0,0.8));
  }

  .hero-layout {
    gap: 26px;
    padding-top: 34px;
  }

  .hero h1 {
    font-size: clamp(2.05rem, 8.8vw, 2.28rem);
    line-height: 1.08;
  }

  .hero p {
    font-size: 0.94rem;
  }

  .hero-actions {
    display: grid;
    gap: 10px;
  }

  .button,
  .header-cta,
  .text-action {
    width: 100%;
  }

  .hero-facts,
  .policy-list,
  .support-grid,
  .process-list,
  .plan-grid,
  .apply-form {
    grid-template-columns: 1fr;
  }

  .hero-facts {
    gap: 12px;
    margin-top: 32px;
  }

  .hero-visual {
    min-height: 330px;
  }

  .hero-visual img {
    height: 360px;
  }

  .why-policy,
  .support,
  .proof-process,
  .bottom-area {
    padding: 34px 0;
  }

  .eyebrow.ghost {
    font-size: 2.4rem;
  }

  .policy-list {
    border-top: 0;
  }

  .policy-list div,
  .policy-list div + div {
    padding: 18px 0;
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .support-heading {
    display: grid;
  }

  .service-card {
    min-height: 0;
  }

  .service-card p {
    min-height: 0;
  }

  .process-list {
    gap: 20px;
  }

  .process-list li {
    text-align: left;
  }

  .process-list li + li::before {
    display: none;
  }

  .process-list span {
    margin: 0 0 10px;
  }

  .section-title-row {
    display: grid;
    gap: 4px;
  }

  .plans {
    min-width: 0;
  }

  .apply-box {
    min-height: 0;
  }

  .submit-button {
    display: grid;
    gap: 3px;
  }

  .submit-button span {
    margin-left: 0;
  }

  .no-stress,
  .stamp {
    position: static;
    margin-top: 18px;
    transform: rotate(-6deg);
  }

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