/* ZEKU FITNESS — corporate landing page */

body[data-page="corporate"] {
  background: #faf8f2;
  color: #1a1a1a;
}

body[data-page="corporate"] .final-cta,
body[data-page="corporate"] .mobile-cta {
  display: none !important;
}

body[data-page="corporate"] main {
  overflow: clip;
}

body[data-page="corporate"] [id] {
  scroll-margin-top: 132px;
}

.corp-skip {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 500;
  padding: 12px 16px;
  background: #111;
  color: #fff;
  transform: translateY(-140%);
  transition: transform .2s ease;
}

.corp-skip:focus {
  transform: translateY(0);
}

.corp-hero {
  position: relative;
  padding: 112px 0 56px;
  background:
    radial-gradient(circle at 85% 20%, rgba(255,229,0,.22), transparent 30%),
    linear-gradient(180deg, #faf8f2 0%, #f1eee5 100%);
  isolation: isolate;
}

.corp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(20,20,20,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20,20,20,.045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, #000 0%, rgba(0,0,0,.8) 70%, transparent 100%);
}

.corp-hero__grid {
  display: grid;
  gap: 40px;
  align-items: start;
}

.corp-hero .breadcrumb {
  margin-bottom: 16px;
}

.corp-hero .breadcrumb__current,
.corp-hero .breadcrumb a:hover {
  color: var(--accent-text-strong);
}

.corp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--accent-text-strong);
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .28em;
}

.corp-eyebrow::before {
  display: none;
}

.corp-eyebrow::after {
  content: "";
  width: 32px;
  height: 1px;
  background: rgba(90,77,0,.38);
}

.corp-hero__title {
  max-width: 760px;
  font-size: clamp(40px, 6.4vw, 78px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.045em;
}

.corp-hero__title-line {
  display: table;
  white-space: nowrap;
}

.corp-hero__title-line--accent {
  background: linear-gradient(transparent 68%, var(--yellow) 68%);
}

.corp-hero__lead {
  margin-top: 20px;
  color: #30302c;
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 700;
  line-height: 1.7;
}

.corp-hero__conditions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 22px;
  list-style: none;
}

.corp-hero__conditions li {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 14px 12px;
  border-radius: 4px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 8px 24px rgba(60,48,0,.06);
}

.corp-hero__conditions i,
.corp-hero__condition-symbol {
  flex: 0 0 auto;
  width: 25px;
  height: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #896f12;
  font-size: 23px;
}

.corp-hero__condition-symbol {
  border: 1.5px solid currentColor;
  border-radius: 50%;
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 700;
}

.corp-hero__condition-copy,
.corp-hero__condition-copy strong,
.corp-hero__condition-copy > span {
  display: block;
}

.corp-hero__condition-copy {
  min-width: 0;
}

.corp-hero__condition-copy strong {
  color: #171717;
  font-size: clamp(13px, 1.25vw, 17px);
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: -.025em;
}

.corp-hero__condition-copy > span {
  margin-top: 3px;
  color: #55554f;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.45;
}

.corp-hero__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  margin-top: 24px;
}

.corp-hero__primary-wrap {
  position: relative;
  min-width: 0;
}

.corp-hero__primary-wrap .corp-btn {
  width: 100%;
}

.corp-hero__cta-note {
  position: absolute;
  top: -9px;
  left: 0;
  z-index: 2;
  padding: 5px 11px;
  border-radius: 3px 3px 3px 0;
  background: #171717;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}

.corp-btn {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 16px 22px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}

.corp-btn--primary {
  background: var(--yellow);
  color: #111;
  box-shadow: 0 8px 22px rgba(224,194,0,.18);
}

.corp-btn--secondary {
  border-color: rgba(0,0,0,.28);
  background: rgba(255,255,255,.75);
  color: #1a1a1a;
}

.corp-btn:hover {
  transform: translateY(-2px);
}

.corp-btn--primary:hover {
  background: #111;
  color: #fff;
}

.corp-btn--secondary:hover {
  border-color: #111;
  background: #111;
  color: #fff;
}

.corp-btn:focus-visible,
.corp-gallery-filters button:focus-visible,
.corp-gallery-card button:focus-visible,
.corp-gallery-toggle:focus-visible,
.corp-gallery-dialog button:focus-visible,
.corp-field input:focus-visible,
.corp-field select:focus-visible,
.corp-field textarea:focus-visible,
.corp-fieldset input:focus-visible + span,
.corp-consent input:focus-visible + span,
.corp-faq summary:focus-visible {
  outline: 3px solid #5a4d00;
  outline-offset: 3px;
}

.corp-hero__visual {
  position: relative;
  margin: 0;
  min-width: 0;
}

.corp-hero__visual::before {
  display: none;
}

.corp-hero__visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 42%;
}

.corp-section-nav {
  position: sticky;
  top: 68px;
  z-index: 70;
  border-top: 1px solid rgba(0,0,0,.08);
  border-bottom: 1px solid rgba(0,0,0,.08);
  background: rgba(250,248,242,.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.corp-section-nav__inner {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}

.corp-section-nav__inner::-webkit-scrollbar {
  display: none;
}

.corp-section-nav a {
  flex: 0 0 auto;
  padding: 16px 15px;
  color: #3a3a35;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.corp-section-nav a:hover {
  color: var(--accent-text-strong);
}

.corp-section-nav .corp-section-nav__cta {
  margin-left: auto;
  background: #111;
  color: #fff;
}

.corp-section {
  padding: 82px 0;
  background: #faf8f2;
}

.corp-section--muted {
  background: #f0ede5;
}

.corp-section .section-label {
  color: var(--accent-text-strong);
}

.corp-section .section-label::before {
  background: var(--yellow);
}

.corp-section .section-title {
  color: #1a1a1a;
  font-size: clamp(30px, 5vw, 52px);
}

.corp-section .section-title .yellow {
  color: var(--accent-text-strong);
}

.corp-section__lead {
  max-width: 780px;
  margin: 0 0 42px;
  color: #4b4b45;
  font-size: 15px;
  line-height: 1.95;
}

.corp-challenge-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.corp-challenge-card {
  position: relative;
  min-height: 180px;
  padding: 26px 24px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
}

.corp-challenge-card > span {
  position: absolute;
  right: 12px;
  bottom: -20px;
  color: rgba(90,77,0,.08);
  font-family: var(--font-en);
  font-size: 92px;
  font-style: italic;
  font-weight: 800;
  line-height: 1;
}

.corp-challenge-card h3 {
  position: relative;
  margin-bottom: 12px;
  font-size: 17px;
  line-height: 1.5;
}

.corp-challenge-card h3::before {
  content: "";
  display: block;
  width: 28px;
  height: 3px;
  margin-bottom: 16px;
  background: var(--yellow);
}

.corp-challenge-card p {
  position: relative;
  color: #5a5a54;
  font-size: 13px;
  line-height: 1.85;
}

.corp-reason-grid {
  display: grid;
  gap: 12px;
}

.corp-reason-card {
  position: relative;
  min-height: 250px;
  padding: 28px 24px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.09);
  background: #fff;
}

.corp-reason-card__num {
  position: absolute;
  top: 18px;
  right: 18px;
  color: rgba(90,77,0,.14);
  font-family: var(--font-en);
  font-size: 52px;
  font-style: italic;
  font-weight: 800;
  line-height: 1;
}

.corp-reason-card__en {
  color: var(--accent-text-strong) !important;
  font-family: var(--font-en);
  font-size: 11px !important;
  font-weight: 800;
  letter-spacing: .18em;
}

.corp-reason-card h3 {
  max-width: 75%;
  margin: 42px 0 14px;
  font-size: 22px;
  line-height: 1.45;
}

.corp-reason-card > p:last-child {
  color: #50504a;
  font-size: 14px;
  line-height: 1.9;
}

.corp-fee-band {
  display: grid;
  gap: 18px;
  align-items: center;
  margin-top: 18px;
  padding: 30px 24px;
  background: #171717;
  color: #fff;
}

.corp-fee-band > p {
  color: var(--yellow);
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .2em;
}

.corp-fee-band > strong {
  font-size: clamp(22px, 4vw, 36px);
}

.corp-fee-band > strong span {
  color: var(--yellow);
  font-family: var(--font-en);
  font-size: 1.45em;
  font-style: italic;
}

.corp-fee-band ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.corp-fee-band li {
  padding: 7px 11px;
  border: 1px solid rgba(255,255,255,.22);
  font-size: 12px;
}

.corp-support {
  background: #171717;
  color: #fff;
}

.corp-support .section-title {
  color: #fff;
}

.corp-support .section-title .yellow {
  color: var(--yellow);
}

.corp-support__intro {
  display: grid;
  gap: 20px;
  margin-bottom: 42px;
}

.corp-support__intro > p {
  max-width: 620px;
  color: #d1d1cc;
  font-size: 15px;
  line-height: 1.95;
}

.corp-support-steps {
  display: grid;
  gap: 18px;
  list-style: none;
  counter-reset: support;
}

.corp-support-steps li {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  background: #222;
}

.corp-support-steps figure {
  min-height: 220px;
  overflow: hidden;
}

.corp-support-steps img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.corp-support-steps li > div {
  padding: 26px 22px 30px;
}

.corp-support-steps li > div > span {
  color: var(--yellow);
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
}

.corp-support-steps h3 {
  margin: 16px 0 12px;
  font-size: 22px;
  line-height: 1.5;
}

.corp-support-steps p {
  color: #bdbdb7;
  font-size: 14px;
  line-height: 1.9;
}

.corp-gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.corp-gallery-filters button {
  flex: 0 0 auto;
  min-height: 46px;
  padding: 10px 17px;
  border: 1px solid rgba(0,0,0,.16);
  border-radius: 999px;
  background: #fff;
  color: #333;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.corp-gallery-filters button[aria-pressed="true"] {
  border-color: #111;
  background: #111;
  color: #fff;
}

.corp-gallery-filters button[aria-pressed="true"]::before {
  content: "✓";
  margin-right: 7px;
  color: var(--yellow);
  font-weight: 900;
}

.corp-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-auto-rows: 1fr;
  gap: 18px;
  align-items: stretch;
}

.corp-gallery-card {
  min-width: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
}

.corp-gallery-card[hidden] {
  display: none;
}

.corp-gallery-card button {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  overflow: hidden;
  background: #ddd;
}

.corp-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.corp-gallery-card--support img {
  object-position: center 42%;
}

.corp-gallery-card--studio img {
  object-position: center 46%;
}

.corp-gallery-card--exterior img {
  object-position: center 48%;
}

.corp-gallery-card--locker img {
  object-position: center 38%;
}

.corp-gallery-card button:hover img {
  transform: scale(1.035);
}

.corp-gallery-card__zoom {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 8px 11px;
  border-radius: 2px;
  background: rgba(17,17,17,.88);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  transition: background .2s ease, color .2s ease;
}

.corp-gallery-card button:hover .corp-gallery-card__zoom,
.corp-gallery-card button:focus-visible .corp-gallery-card__zoom {
  background: var(--yellow);
  color: #111;
}

.corp-gallery-card figcaption {
  display: grid;
  align-content: start;
  gap: 7px;
  padding: 18px 18px 20px;
}

.corp-gallery-card figcaption strong {
  font-size: 17px;
  line-height: 1.45;
}

.corp-gallery-card figcaption span {
  color: #5a5a54;
  font-size: 14px;
  line-height: 1.7;
}

.corp-gallery-toggle-wrap {
  margin-top: 28px;
  text-align: center;
}

.corp-gallery-toggle {
  min-width: min(100%, 290px);
  min-height: 52px;
  padding: 13px 26px;
  border: 1px solid #171717;
  background: transparent;
  color: #171717;
  font-size: 14px;
  font-weight: 800;
  transition: background .2s ease, color .2s ease;
}

.corp-gallery-toggle:hover {
  background: #171717;
  color: #fff;
}

.corp-gallery-toggle[hidden] {
  display: none;
}

.corp-facility-link {
  margin-top: 26px;
  text-align: right;
}

.corp-facility-link a {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  border-bottom: 1px solid #1a1a1a;
  font-weight: 700;
}

.corp-gallery-dialog {
  position: fixed;
  width: min(94vw, 1100px);
  max-height: 92vh;
  margin: auto;
  padding: 0;
  overflow: hidden auto;
  border: 0;
  background: #111;
  color: #fff;
  box-shadow: 0 30px 90px rgba(0,0,0,.5);
}

.corp-gallery-dialog::backdrop {
  background: rgba(0,0,0,.8);
  backdrop-filter: blur(5px);
}

.corp-gallery-dialog img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 78vh;
  display: block;
  margin: 0 auto;
  object-fit: contain;
  background: #080808;
}

.corp-gallery-dialog p {
  padding: 14px 64px 18px 18px;
  color: #e8e8e3;
  font-size: 14px;
}

.corp-gallery-dialog__close {
  position: fixed;
  z-index: 2;
  width: 48px;
  height: 48px;
  margin: 10px 0 0 min(84vw, 1035px);
  border-radius: 50%;
  background: #fff;
  color: #111;
  font-size: 28px;
  line-height: 1;
}

.corp-plan-grid {
  display: grid;
  gap: 16px;
}

.corp-plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 28px 22px 22px;
  border: 1px solid rgba(0,0,0,.1);
  border-top: 5px solid #111;
  background: #fff;
}

.corp-plan-card--featured {
  border: 2px solid #111;
  border-top: 8px solid var(--yellow);
  background: linear-gradient(180deg, #fffbdc 0%, #fff 48%);
  box-shadow: 0 18px 42px rgba(31, 28, 8, .16);
}

.corp-plan-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 7px 12px;
  border: 1px solid #111;
  background: #111;
  color: var(--yellow);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1;
}

.corp-plan-card--featured .corp-plan-card__num {
  padding-right: 112px;
}

.corp-plan-card--featured h3 {
  font-size: 23px;
}

.corp-plan-card--featured .corp-plan-card__corporate dd strong {
  background: linear-gradient(transparent 62%, var(--yellow) 62%);
}

.corp-plan-card__num {
  margin-bottom: 13px;
  color: var(--accent-text-strong);
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .2em;
}

.corp-plan-card h3 {
  min-height: 3.1em;
  font-size: 21px;
  line-height: 1.55;
}

.corp-plan-card__summary {
  min-height: 4.7em;
  margin-top: 12px;
  color: #50504a;
  font-size: 14px;
  line-height: 1.8;
}

.corp-plan-card__prices {
  margin-top: 24px;
  border-top: 1px solid rgba(0,0,0,.08);
}

.corp-plan-card__prices > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.corp-plan-card__prices dt {
  color: #686861;
  font-size: 12px;
}

.corp-plan-card__prices dd {
  font-size: 17px;
  font-weight: 700;
  text-align: right;
}

.corp-plan-card__prices small {
  display: block;
  color: #6b6b65;
  font-size: 10px;
  font-weight: 500;
}

.corp-plan-card__corporate dd strong {
  color: #1a1a1a;
  font-family: var(--font-en);
  font-size: 42px;
  font-style: italic;
  line-height: 1;
}

.corp-plan-card__saving {
  margin-top: 16px;
  padding: 12px;
  background: var(--yellow);
  color: #111;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.corp-plan-card__saving strong {
  font-size: 18px;
}

.corp-plan-card__features {
  display: grid;
  gap: 9px;
  margin-top: 18px;
  padding: 0;
  list-style: none;
}

.corp-plan-card__features li {
  position: relative;
  padding-left: 19px;
  color: #454540;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
}

.corp-plan-card__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-text-strong);
  font-weight: 900;
}

.corp-plan-notes {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  padding: 22px 24px;
  border-left: 4px solid var(--yellow);
  background: #fff;
  list-style: none;
}

.corp-plan-notes li {
  position: relative;
  padding-left: 18px;
  color: #50504a;
  font-size: 13px;
  line-height: 1.75;
}

.corp-plan-notes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-text-strong);
  font-weight: 900;
}

.corp-slot-guide {
  display: grid;
  gap: 28px;
  margin-top: 56px;
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid rgba(0,0,0,.1);
  background: #fff;
}

.corp-slot-guide__intro h3 {
  margin-top: 8px;
  font-size: clamp(30px, 6vw, 48px);
  line-height: 1.2;
}

.corp-slot-guide__share {
  max-width: 820px;
  margin-top: 20px;
  color: #50504a;
  font-size: 14px;
  line-height: 1.9;
}

.corp-slot-guide__share strong {
  display: block;
  margin-bottom: 8px;
  color: #111;
  font-size: clamp(20px, 4vw, 30px);
  line-height: 1.45;
}

.corp-slot-guide__notice {
  margin-top: 18px;
  padding: 13px 16px;
  border-left: 4px solid var(--yellow);
  background: #f7f4e9;
  color: #34342f;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
}

.corp-slot-diagrams {
  display: grid;
  gap: 16px;
}

.corp-slot-card {
  min-width: 0;
  padding: 24px 20px;
  border-top: 4px solid #111;
  background: #f5f2e9;
}

.corp-slot-card__label {
  color: var(--accent-text-strong);
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
}

.corp-slot-card h4 {
  margin-top: 5px;
  font-size: 20px;
}

.corp-slot-card__flow {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  text-align: center;
}

.corp-slot-card__flow span,
.corp-slot-card__flow strong {
  padding: 12px 10px;
  border: 1px solid rgba(0,0,0,.12);
  background: #fff;
  font-size: 13px;
}

.corp-slot-card__flow strong {
  background: var(--yellow);
  color: #111;
}

.corp-slot-card__flow b {
  color: #77766e;
  font-size: 18px;
  transform: rotate(90deg);
}

.corp-slot-card ul {
  display: grid;
  gap: 1px;
  margin-top: 18px;
  padding: 1px;
  background: rgba(0,0,0,.1);
  list-style: none;
}

.corp-slot-card li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 13px;
  background: #fff;
  font-size: 13px;
}

.corp-slot-card__call {
  margin-top: 16px;
  color: #493e00;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.7;
}

.corp-simulator {
  background: #faf8f2;
}

.corp-simulator__head {
  display: grid;
  gap: 16px;
  align-items: end;
  margin-bottom: 36px;
}

.corp-simulator__head > p {
  color: #50504a;
  font-size: 14px;
  line-height: 1.9;
}

.corp-simulator__panel {
  display: grid;
  border: 1px solid rgba(0,0,0,.1);
  background: #fff;
  box-shadow: 0 16px 50px rgba(30,25,5,.08);
}

.corp-simulator__inputs {
  padding: 24px 20px;
  background: #f0ede5;
}

.corp-simulator__inputs > label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(0,0,0,.09);
}

.corp-simulator__inputs label > span:first-child {
  min-width: 0;
}

.corp-simulator__inputs strong,
.corp-simulator__inputs small {
  display: block;
}

.corp-simulator__inputs strong {
  font-size: 14px;
  line-height: 1.6;
}

.corp-simulator__inputs small {
  margin-top: 3px;
  color: #686861;
  font-size: 11px;
}

.corp-number-input {
  flex: 0 0 112px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(0,0,0,.2);
  background: #fff;
}

.corp-number-input input {
  width: 76px;
  min-height: 48px;
  padding: 8px 4px 8px 12px;
  border: 0;
  background: transparent;
  color: #111;
  font-family: var(--font-en);
  font-size: 24px;
  font-weight: 800;
  text-align: right;
}

.corp-number-input > span {
  color: #555;
  font-size: 13px;
}

.corp-simulator__status {
  min-height: 3.4em;
  margin-top: 18px;
  padding: 12px 14px;
  border-left: 4px solid #b13a24;
  background: #fff1ed;
  color: #7b2618;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
}

.corp-simulator__status.is-valid {
  border-left-color: #536400;
  background: #f7f5cf;
  color: #384300;
}

.corp-simulator__results {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  gap: 1px;
  padding: 1px;
  background: rgba(0,0,0,.08);
}

.corp-result {
  min-width: 0;
  padding: 18px 14px;
  background: #fff;
}

.corp-result > span {
  display: block;
  min-height: 2.9em;
  color: #60605a;
  font-size: 11px;
  line-height: 1.45;
}

.corp-result strong {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 3px;
  margin-top: 8px;
  color: #1a1a1a;
}

.corp-result output {
  max-width: 100%;
  overflow-wrap: anywhere;
  font-family: var(--font-en);
  font-size: clamp(24px, 6vw, 38px);
  font-style: italic;
  font-weight: 800;
  line-height: 1;
}

.corp-result small {
  font-size: 11px;
}

.corp-result--slots,
.corp-result--primary {
  grid-column: span 2;
}

.corp-result--primary {
  background: #171717;
  color: #fff;
}

.corp-result--primary > span,
.corp-result--primary strong {
  color: #fff;
}

.corp-result--primary output {
  color: var(--yellow);
  font-size: clamp(38px, 9vw, 58px);
}

.corp-result--saving {
  background: #fffdeb;
}

.corp-result--saving output {
  color: var(--accent-text-strong);
}

.corp-simulator__note {
  margin-top: 14px;
  color: #66665f;
  font-size: 11px;
  line-height: 1.8;
}

.corp-simulator__breakdown {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.corp-simulator__breakdown article {
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(0,0,0,.09);
  background: #fff;
}

.corp-simulator__breakdown p {
  color: #60605a;
  font-size: 12px;
  font-weight: 700;
}

.corp-simulator__breakdown strong,
.corp-simulator__breakdown span {
  display: block;
}

.corp-simulator__breakdown strong {
  margin-top: 8px;
  font-family: var(--font-en);
  font-size: 24px;
  font-style: italic;
}

.corp-simulator__breakdown span {
  margin-top: 8px;
  color: #50504a;
  font-size: 12px;
  line-height: 1.7;
}

.corp-kickback {
  position: relative;
  padding: 88px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 20%, rgba(255,0,212,.18), transparent 34%),
    radial-gradient(circle at 10% 90%, rgba(0,240,255,.12), transparent 30%),
    #050008;
  color: #fff;
}

.corp-kickback__grid {
  display: grid;
  gap: 42px;
  align-items: center;
}

.corp-kickback__visual {
  position: relative;
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.04);
}

.corp-kickback__visual::after {
  content: "KICK BACK";
  position: absolute;
  right: -8px;
  bottom: -10px;
  padding: 8px 14px;
  background: #ff21bd;
  color: #080008;
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .14em;
}

.corp-kickback__visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.corp-kickback__label {
  color: #00f0ff;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .2em;
}

.corp-kickback__copy h2 {
  margin: 16px 0 24px;
  font-size: clamp(40px, 8vw, 76px);
  font-weight: 900;
  line-height: 1.13;
  letter-spacing: -.04em;
}

.corp-kickback__copy h2 span {
  color: #ff49cb;
}

.corp-kickback__copy > p:not(.corp-kickback__label) {
  color: #d2d2d2;
  font-size: 15px;
  line-height: 2;
}

.corp-kickback__copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 26px 0 30px;
  list-style: none;
}

.corp-kickback__copy li {
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  font-size: 12px;
}

.corp-kickback__copy a {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding-bottom: 4px;
  border-bottom: 1px solid #fff;
  font-weight: 700;
}

.corp-flow-list {
  display: grid;
  gap: 0;
  margin-top: 42px;
  list-style: none;
}

.corp-flow-list li {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  padding: 0 0 34px;
}

.corp-flow-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 52px;
  bottom: 0;
  left: 25px;
  width: 1px;
  background: rgba(0,0,0,.18);
}

.corp-flow-list li > span {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: #111;
  font-family: var(--font-en);
  font-size: 18px;
  font-style: italic;
  font-weight: 800;
}

.corp-flow-list small {
  color: var(--accent-text-strong);
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
}

.corp-flow-list h3 {
  margin: 5px 0 8px;
  font-size: 18px;
}

.corp-flow-list p {
  color: #595953;
  font-size: 13px;
  line-height: 1.8;
}

.corp-condition-grid {
  display: grid;
  gap: 12px;
  margin-top: 40px;
}

.corp-condition-grid dl {
  padding: 8px 22px;
  border-top: 4px solid #111;
  background: #fff;
}

.corp-condition-grid dl > div {
  padding: 18px 0;
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.corp-condition-grid dl > div:last-child {
  border-bottom: 0;
}

.corp-condition-grid dt {
  margin-bottom: 6px;
  color: #686861;
  font-size: 11px;
  font-weight: 700;
}

.corp-condition-grid dd {
  color: #1a1a1a;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;
}

.corp-condition-grid dd small {
  color: #5f5f59;
  font-size: 11px;
  font-weight: 500;
}

.corp-faq__grid {
  display: grid;
  gap: 36px;
}

.corp-faq__head > p:last-child {
  color: #595953;
  font-size: 14px;
  line-height: 1.9;
}

.corp-faq__list {
  display: grid;
  gap: 10px;
}

.corp-faq details {
  border: 1px solid rgba(0,0,0,.09);
  background: #fff;
}

.corp-faq details[open] {
  border-color: rgba(90,77,0,.5);
}

.corp-faq summary {
  position: relative;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  padding: 19px 52px 19px 18px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
  list-style: none;
}

.corp-faq summary::-webkit-details-marker {
  display: none;
}

.corp-faq summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  color: var(--accent-text-strong);
  font-family: var(--font-en);
  font-size: 25px;
  font-weight: 800;
}

.corp-faq details[open] summary::after {
  content: "−";
}

.corp-faq summary span,
.corp-faq details > div > span {
  color: var(--accent-text-strong);
  font-family: var(--font-en);
  font-size: 20px;
  font-style: italic;
  font-weight: 800;
}

.corp-faq details > div {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  padding: 0 52px 22px 18px;
}

.corp-faq details > div p {
  color: #50504a;
  font-size: 14px;
  line-height: 1.95;
}

.corp-consultation {
  position: relative;
  padding: 88px 0 110px;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    #171717;
  background-size: 48px 48px;
  color: #fff;
}

.corp-consultation__head {
  max-width: 780px;
  margin-bottom: 38px;
}

.corp-consultation__head .corp-eyebrow {
  color: var(--yellow);
}

.corp-consultation__head h2 {
  margin-bottom: 20px;
  font-size: clamp(36px, 7vw, 68px);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -.035em;
}

.corp-consultation__head > p:last-child {
  color: #d0d0ca;
  font-size: 15px;
  line-height: 1.95;
}

.corp-form {
  padding: 26px 20px;
  background: #faf8f2;
  color: #1a1a1a;
}

.corp-form__grid {
  display: grid;
  gap: 20px;
}

.corp-field {
  display: grid;
  gap: 8px;
}

.corp-field > span:first-child,
.corp-fieldset legend {
  font-size: 13px;
  font-weight: 700;
}

.corp-field em,
.corp-consent em {
  margin-left: 6px;
  color: #8d2919;
  font-size: 10px;
  font-style: normal;
}

.corp-field input,
.corp-field select,
.corp-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid rgba(0,0,0,.2);
  border-radius: 0;
  background: #fff;
  color: #1a1a1a;
  font: inherit;
  font-size: 16px;
}

.corp-field textarea {
  min-height: 150px;
  resize: vertical;
  line-height: 1.8;
}

.corp-field input[aria-invalid="true"],
.corp-field select[aria-invalid="true"],
.corp-field textarea[aria-invalid="true"],
.corp-consent input[aria-invalid="true"] + span {
  border-color: #a3301f;
  box-shadow: 0 0 0 2px rgba(163,48,31,.12);
}

.corp-field__unit {
  display: flex;
  align-items: center;
  border: 1px solid rgba(0,0,0,.2);
  background: #fff;
}

.corp-field__unit input {
  border: 0;
}

.corp-field__unit > span {
  padding-right: 14px;
  color: #555;
  font-size: 13px;
}

.corp-fieldset {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 28px 0 20px;
  padding: 20px;
  border: 1px solid rgba(0,0,0,.12);
}

.corp-fieldset legend {
  padding: 0 8px;
}

.corp-fieldset legend small {
  margin-left: 6px;
  color: #686861;
  font-weight: 500;
}

.corp-fieldset label {
  position: relative;
}

.corp-fieldset input {
  position: absolute;
  opacity: 0;
}

.corp-fieldset label span {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 11px 14px 11px 42px;
  border: 1px solid rgba(0,0,0,.15);
  background: #fff;
  font-size: 13px;
  font-weight: 700;
}

.corp-fieldset label span::before {
  content: "";
  position: absolute;
  left: 15px;
  width: 17px;
  height: 17px;
  border: 1px solid rgba(0,0,0,.35);
  background: #fff;
}

.corp-fieldset input:checked + span {
  border-color: #111;
  background: #fffdeb;
}

.corp-fieldset input:checked + span::before {
  border-color: #111;
  background: var(--yellow);
  box-shadow: inset 0 0 0 4px #fff;
}

.corp-field--full {
  margin-top: 20px;
}

.corp-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 22px;
  font-size: 13px;
  line-height: 1.7;
}

.corp-consent input {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  margin-top: 1px;
  accent-color: #111;
}

.corp-consent a,
.corp-form__mail {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.corp-form__error {
  min-height: 1.7em;
  margin-top: 14px;
  color: #8d2919;
  font-size: 13px;
  font-weight: 700;
}

.corp-form__error.is-info {
  color: #3d4a00;
}

.corp-form__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
  margin-top: 8px;
}

.corp-form__actions button {
  width: 100%;
}

.corp-form__mail {
  align-self: center;
  color: #333;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.corp-form__note {
  margin-top: 16px;
  color: #66665f;
  font-size: 11px;
  line-height: 1.8;
}

.corp-mobile-cta {
  position: fixed;
  right: 8px;
  bottom: max(8px, env(safe-area-inset-bottom));
  left: 8px;
  z-index: 89;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 16px;
  border: 1px solid rgba(0,0,0,.15);
  background: var(--yellow);
  color: #111;
  box-shadow: 0 8px 28px rgba(0,0,0,.25);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

@media (min-width: 600px) {
  .corp-hero__actions {
    flex-direction: row;
    align-items: center;
  }

  .corp-hero__actions > .corp-hero__primary-wrap,
  .corp-hero__actions > .corp-btn {
    flex: 1 1 0;
  }

  .corp-challenge-grid,
  .corp-reason-grid,
  .corp-condition-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .corp-support-steps li {
    grid-template-columns: minmax(220px, .9fr) 1.1fr;
  }

  .corp-support-steps figure,
  .corp-support-steps img {
    min-height: 290px;
  }

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

  .corp-plan-card:last-child {
    grid-column: 1 / -1;
  }

  .corp-simulator__results {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .corp-result--slots,
  .corp-result--primary {
    grid-column: span 3;
  }

  .corp-result--saving:last-child {
    grid-column: span 2;
  }

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

@media (min-width: 760px) {
  .corp-section {
    padding: 110px 0;
  }

  .corp-challenge-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .corp-fee-band {
    grid-template-columns: auto 1fr auto;
    padding: 32px 34px;
  }

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

  .corp-slot-diagrams,
  .corp-simulator__breakdown {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .corp-simulator__breakdown article:last-child {
    grid-column: 1 / -1;
  }

  .corp-flow-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 38px;
  }

  .corp-flow-list li {
    display: block;
    padding: 0 20px 0 0;
  }

  .corp-flow-list li:not(:last-child)::after {
    top: 26px;
    right: 0;
    bottom: auto;
    left: 52px;
    width: calc(100% - 52px);
    height: 1px;
  }

  .corp-flow-list li > div {
    margin-top: 22px;
  }

  .corp-form {
    padding: 42px;
  }

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

  .corp-form__actions {
    flex-direction: row;
    align-items: center;
  }

  .corp-form__actions button {
    width: auto;
  }

  .corp-mobile-cta {
    display: none;
  }
}

@media (min-width: 900px) {
  .corp-plan-card--featured {
    transform: translateY(-8px);
  }

  body[data-page="corporate"] .header,
  body[data-page="corporate"] .header.scrolled {
    position: absolute;
    padding: 30px 0;
    border-bottom: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  body[data-page="corporate"] .header__inner {
    justify-content: flex-start;
  }

  body[data-page="corporate"] .header .gnav,
  body[data-page="corporate"] .header .header-cta,
  body[data-page="corporate"] .header .menu-btn {
    display: none;
  }

  body[data-page="corporate"] .header .logo__img {
    height: 46px;
    content: url("img/logo-h.webp");
    filter: none;
  }

  .corp-hero {
    min-height: 100svh;
    padding: 0;
    overflow: hidden;
  }

  .corp-hero__grid {
    min-height: 100svh;
    display: block;
  }

  .corp-hero__copy {
    position: relative;
    z-index: 2;
    width: min(54vw, 680px);
    padding-top: clamp(158px, 20vh, 190px);
    padding-bottom: 64px;
  }

  .corp-hero .breadcrumb {
    position: absolute;
    top: 46px;
    left: 140px;
    margin: 0;
  }

  .corp-eyebrow {
    margin-bottom: 24px;
  }

  .corp-hero__title {
    font-size: clamp(62px, 5.5vw, 82px);
    line-height: 1.05;
  }

  .corp-hero__lead {
    margin-top: 26px;
  }

  .corp-hero__conditions {
    width: min(100%, 620px);
    margin-top: 28px;
    gap: 10px;
  }

  .corp-hero__conditions li {
    min-height: 64px;
    padding: 14px 15px;
  }

  .corp-hero__condition-copy strong {
    font-size: 14px;
  }

  .corp-hero__actions {
    width: min(100%, 640px);
    margin-top: 38px;
  }

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

  .corp-hero__visual {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    width: 53vw;
    clip-path: polygon(28% 0, 100% 0, 100% 100%, 0 100%);
  }

  .corp-hero__visual img {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: 55% center;
  }

  .corp-support__intro,
  .corp-simulator__head {
    grid-template-columns: 1.3fr .7fr;
  }

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

  .corp-support-steps li {
    display: flex;
    flex-direction: column;
  }

  .corp-support-steps figure,
  .corp-support-steps img {
    min-height: 230px;
  }

  .corp-support-steps li > div {
    flex: 1;
  }

  .corp-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .corp-plan-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .corp-plan-card:last-child {
    grid-column: auto;
  }

  .corp-simulator__panel {
    grid-template-columns: minmax(360px, .85fr) 1.15fr;
  }

  .corp-simulator__breakdown {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .corp-simulator__breakdown article:last-child {
    grid-column: auto;
  }

  .corp-simulator__inputs {
    padding: 30px;
  }

  .corp-kickback {
    padding: 120px 0;
  }

  .corp-kickback__grid {
    grid-template-columns: 1.1fr .9fr;
    gap: 70px;
  }

  .corp-condition-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .corp-faq__grid {
    grid-template-columns: .72fr 1.28fr;
    gap: 70px;
    align-items: start;
  }

  .corp-faq__head {
    position: sticky;
    top: 150px;
  }

  .corp-consultation {
    padding: 120px 0;
  }
}

@media (min-width: 1100px) {
  .corp-flow-list {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    row-gap: 0;
  }

  .corp-reason-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .corp-reason-card h3 {
    max-width: none;
    margin-top: 58px;
    font-size: 19px;
  }
}

@media (max-width: 759px) {
  body[data-page="corporate"] .footer {
    padding-bottom: 112px;
  }

  .corp-section-nav {
    top: 64px;
  }

  .corp-section-nav .corp-section-nav__cta {
    display: none;
  }

  .corp-hero {
    padding: 96px 0 52px;
  }

  .corp-hero__grid {
    gap: 32px;
  }

  .corp-hero__conditions li {
    gap: 0;
  }

  .corp-hero__conditions i,
  .corp-hero__condition-symbol {
    display: none;
  }

  .corp-gallery-dialog__close {
    right: 16px;
    margin-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .corp-btn,
  .corp-gallery-card img {
    transition: none;
  }

  .corp-section-nav {
    scroll-behavior: auto;
  }
}
