:root {
  --color-teal: #2f8b81;
  --color-teal-dark: #0f7f83;
  --color-teal-soft: #e8f6f4;
  --color-mint: #e6f7f4;
  --color-blue: #6baed6;
  --color-blue-dark: #2f6fb3;
  --color-coral: #ff6868;
  --color-green: #34b573;
  --color-gold: #ffc857;
  --color-text: #1a2a33;
  --color-muted: #65737d;
  --color-border: #d8edf0;
  --color-border-strong: #a7d9dd;
  --color-bg: #f7fbfc;
  --color-white: #ffffff;
  --font-sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;
  --shadow-card: 0 10px 26px rgba(34, 120, 130, 0.10);
  --shadow-soft: 0 8px 20px rgba(30, 83, 96, 0.08);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --container: 1190px;
  --gap: 24px;
}

/* Taste refinement layer */
:root {
  --color-teal: #2f8581;
  --color-teal-dark: #0b7f85;
  --color-teal-ink: #0f5962;
  --color-teal-soft: #e9f8f7;
  --color-mint: #f0fbfa;
  --color-blue: #6aa8dd;
  --color-blue-dark: #2f70b6;
  --color-coral: #ff686b;
  --color-green: #30b86e;
  --color-gold: #ffc857;
  --color-text: #17313a;
  --color-muted: #60747c;
  --color-border: #cfe9ed;
  --color-border-strong: #91d3d8;
  --color-bg: #f7fcfd;
  --shadow-card: 0 16px 42px rgba(19, 94, 108, 0.10);
  --shadow-soft: 0 10px 28px rgba(20, 88, 100, 0.08);
  --shadow-button: 0 11px 20px rgba(255, 104, 107, 0.22);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
}

html {
  scroll-padding-top: 88px;
}

body {
  background:
    radial-gradient(circle at 96% 90px, rgba(116, 212, 224, 0.38) 0 2px, transparent 2.8px) 0 0 / 18px 18px,
    linear-gradient(145deg, rgba(235, 249, 250, 0.65) 0%, transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #fbfeff 30%, #f3fbfc 66%, #ffffff 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

:focus-visible {
  outline: 3px solid rgba(255, 200, 87, 0.85);
  outline-offset: 4px;
}

.site-header {
  height: 76px;
  background: rgba(255, 255, 255, 0.86);
  border-bottom-color: rgba(189, 225, 230, 0.85);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.86), 0 12px 34px rgba(30, 79, 92, 0.06);
  transition: background-color 220ms ease, box-shadow 220ms ease, height 220ms ease;
}

.site-header--scrolled {
  height: 68px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 34px rgba(28, 76, 88, 0.10);
}

.site-header__inner {
  width: min(100% - 56px, var(--container));
}

.brand {
  color: var(--color-teal-dark);
  transition: transform 180ms ease;
}

.brand:hover {
  transform: translateY(-1px);
}

.brand__caption {
  color: #15989c;
  font-size: 10px;
  line-height: 1.3;
}

.brand__name {
  color: #09848a;
  font-size: 39px;
  line-height: 0.92;
  letter-spacing: 0.14em;
}

.site-nav {
  gap: clamp(16px, 2.2vw, 30px);
  color: #243a43;
  font-size: 13px;
}

.site-nav__link {
  position: relative;
  padding: 26px 0;
  transition: color 180ms ease;
}

.site-nav__link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 19px;
  left: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--color-teal-dark);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav__link:hover {
  color: var(--color-teal-dark);
}

.site-nav__link:hover::after {
  transform: scaleX(1);
}

.site-header__menu {
  position: relative;
  border-radius: 12px;
}

.site-header__menu span {
  width: 27px;
  background: #17313a;
  transition: transform 190ms ease, opacity 190ms ease, background-color 190ms ease;
}

.is-menu-open .site-header__menu span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.is-menu-open .site-header__menu span:nth-child(2) {
  opacity: 0;
}

.is-menu-open .site-header__menu span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.button {
  position: relative;
  isolation: isolate;
  min-height: 46px;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: var(--shadow-button);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 1px 1px auto;
  z-index: -1;
  height: 48%;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0));
}

.button:hover {
  transform: translateY(-2px);
  filter: saturate(1.05);
  box-shadow: 0 15px 26px rgba(255, 104, 107, 0.24);
}

.button:active {
  transform: translateY(0);
}

.button--green {
  box-shadow: 0 11px 20px rgba(39, 176, 102, 0.24);
}

.button--green:hover {
  box-shadow: 0 15px 26px rgba(39, 176, 102, 0.28);
}

.button--outline {
  color: var(--color-teal-dark);
  background: rgba(255, 255, 255, 0.96);
  border-color: #83ccd2;
  box-shadow: 0 9px 18px rgba(34, 120, 130, 0.12);
}

.hero {
  min-height: 574px;
  background:
    radial-gradient(circle at 86% 20%, rgba(191, 232, 235, 0.55) 0 1px, transparent 2px) 0 0 / 20px 20px,
    linear-gradient(92deg, #ffffff 0%, #ffffff 43%, #effafa 72%, #ffffff 100%);
}

.hero::before {
  content: "";
  position: absolute;
  right: 7%;
  bottom: 18px;
  z-index: 1;
  width: min(450px, 46vw);
  height: 80px;
  border-bottom: 2px solid rgba(70, 190, 200, 0.24);
  border-radius: 0 0 50% 50%;
  transform: rotate(-2deg);
  pointer-events: none;
}

.hero::after {
  right: -90px;
  bottom: -32px;
  width: 62%;
  height: 156px;
  background:
    radial-gradient(circle, rgba(86, 199, 209, 0.52) 0 2px, transparent 3px) 0 30px / 18px 18px,
    linear-gradient(176deg, transparent 0 43%, #ffffff 44% 100%);
}

.hero__inner {
  grid-template-columns: minmax(630px, 0.98fr) minmax(430px, 0.92fr);
  align-items: center;
  min-height: 498px;
  padding-top: 24px;
}

.hero__content {
  max-width: 650px;
  padding: 54px 0 82px;
}

.hero__eyebrow {
  margin-bottom: 12px;
  color: #1499a1;
  font-size: 13px;
  letter-spacing: 0.02em;
}

.hero__title {
  color: #0e8a8f;
  font-size: clamp(29px, 2.25vw, 31px);
  line-height: 1.42;
  letter-spacing: 0.03em;
}

.hero__lead {
  width: min(100%, 570px);
  margin-top: 24px;
  color: #203943;
  line-height: 1.95;
}

.hero__note {
  color: #526870;
}

.hero__actions {
  gap: 12px;
  margin-top: 28px;
}

.hero__visual {
  min-height: 420px;
  margin: 0 -52px 0 0;
  border: 1px solid rgba(207, 233, 237, 0.7);
  border-radius: 0 0 0 72px;
  box-shadow: -24px 30px 70px rgba(34, 83, 94, 0.14);
}

.hero__visual::before {
  width: 32%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.56) 38%, rgba(255, 255, 255, 0) 100%);
}

.hero__visual::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 18px;
  z-index: 2;
  width: 120px;
  height: 42px;
  border-right: 2px solid rgba(47, 133, 129, 0.28);
  border-bottom: 2px solid rgba(47, 133, 129, 0.28);
  border-radius: 0 0 18px 0;
}

.hero__visual img {
  min-height: 420px;
}

.hero__badges {
  width: min(100% - 86px, 900px);
  margin-top: -44px;
  gap: 14px;
}

.mini-badge {
  min-height: 66px;
  border-color: rgba(185, 224, 229, 0.9);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 30px rgba(38, 102, 116, 0.10);
  color: #218e93;
  backdrop-filter: blur(12px);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.mini-badge:hover {
  transform: translateY(-3px);
  border-color: #8dd0d6;
  box-shadow: 0 18px 34px rgba(38, 102, 116, 0.14);
}

.mini-badge__icon {
  color: #67bdc5;
}

.section {
  padding: 56px 0;
}

.section::before {
  content: "";
  position: absolute;
  top: 14px;
  right: max(24px, calc((100vw - var(--container)) / 2));
  width: 88px;
  height: 54px;
  background: radial-gradient(circle, rgba(93, 202, 212, 0.28) 0 2px, transparent 3px) 0 0 / 16px 16px;
  opacity: 0.85;
  pointer-events: none;
}

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

.section-heading__title {
  color: #0c858b;
  font-size: clamp(25px, 2.3vw, 32px);
  letter-spacing: 0.04em;
}

.section-heading__dots {
  height: 6px;
  background-image: radial-gradient(circle, #64c5ce 2px, transparent 2.6px);
  opacity: 0.8;
}

.section--pains {
  padding-top: 58px;
}

.pain-layout__grid {
  width: min(72%, 820px);
  gap: 18px;
}

.pain-card {
  min-height: 94px;
  border-color: rgba(209, 230, 234, 0.98);
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(35, 91, 104, 0.07);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.pain-card:hover {
  transform: translateY(-3px);
  border-color: #a8dbe0;
  box-shadow: 0 15px 30px rgba(35, 91, 104, 0.10);
}

.pain-card__icon,
.feature-card__icon {
  color: #55b9c3;
}

.highlight-card {
  border-color: #f4cb72;
  border-radius: 14px;
  background:
    radial-gradient(circle at 86% 28%, rgba(255, 200, 87, 0.18), transparent 34%),
    #fffdf8;
  box-shadow: 0 14px 34px rgba(246, 196, 87, 0.14);
}

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

.reason-grid {
  gap: 18px;
}

.feature-card,
.review-card,
.flow-card {
  border-color: rgba(200, 229, 234, 0.92);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature-card:hover,
.review-card:hover,
.flow-card:hover {
  transform: translateY(-4px);
  border-color: #9ed8dd;
  box-shadow: var(--shadow-card);
}

.feature-card__title {
  color: #138a90;
}

.section--service {
  padding-top: 42px;
}

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 16px 36px rgba(29, 92, 105, 0.08);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #2fb5a4, #77d7da);
}

.service-card--relax::before {
  background: linear-gradient(90deg, #4e9ad7, #9ec7f2);
}

.service-card__image {
  height: 112px;
  border: 1px solid rgba(203, 229, 233, 0.8);
}

.service-card__tags span {
  border-radius: 8px;
}

.service-copy {
  color: #14858b;
}

.pricing-grid {
  gap: 28px;
}

.pricing-card {
  border-color: #b6dde3;
  border-radius: 12px;
  box-shadow: 0 18px 42px rgba(30, 88, 103, 0.10);
}

.pricing-card__title {
  min-height: 48px;
  display: grid;
  place-items: center;
  letter-spacing: 0.02em;
}

.pricing-table th,
.pricing-table td {
  border-color: #d8e9ee;
}

.pricing-table tbody tr {
  transition: background-color 160ms ease;
}

.pricing-table tbody tr:hover th,
.pricing-table tbody tr:hover td {
  background-color: #f8feff;
}

.student-note {
  border: 1px solid rgba(255, 196, 196, 0.9);
  background: #fff0f0;
  color: #57646a;
}

.trainer-card {
  border: 1px solid rgba(181, 222, 226, 0.9);
  border-radius: 14px;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.98), transparent 30%),
    linear-gradient(105deg, #ffffff 0%, #e8f9f5 100%);
  box-shadow: 0 18px 48px rgba(30, 88, 103, 0.12);
}

.trainer-card__photo {
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(30, 83, 96, 0.12);
}

.trainer-card__heading h2,
.trainer-card__skills h3,
.access-title {
  color: #0c858b;
}

.trainer-card__skills span {
  border-color: #97d6da;
  border-radius: 8px;
}

.review-grid {
  gap: 34px;
}

.review-card {
  position: relative;
}

.review-card::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -24px;
  width: 0;
  height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 14px solid rgba(111, 199, 204, 0.58);
  transform: translateY(-50%);
}

.review-card:last-child::after {
  display: none;
}

.faq-item {
  border-color: rgba(200, 229, 234, 0.92);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.faq-item:hover,
.faq-item[open] {
  border-color: #9ed8dd;
  box-shadow: 0 8px 18px rgba(30, 83, 96, 0.07);
}

.faq-item summary {
  list-style: none;
}

.contact-form,
.line-card,
.access-card {
  border-color: rgba(188, 224, 230, 0.92);
  box-shadow: 0 16px 38px rgba(30, 88, 103, 0.09);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
  border-color: #d6e6ea;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #69c5cc;
  background: #fbffff;
  box-shadow: 0 0 0 4px rgba(105, 197, 204, 0.14);
  outline: 0;
}

.line-card {
  background:
    radial-gradient(circle at 50% 26%, rgba(48, 184, 110, 0.08), transparent 32%),
    #ffffff;
}

.line-card__qr {
  border-radius: 4px;
}

.access-card__map {
  border: 1px solid rgba(203, 229, 233, 0.9);
}

.site-footer {
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.6), transparent 28%),
    linear-gradient(90deg, #bceff0 0%, #edfbfb 52%, #c9f0f2 100%);
}

.sticky-cta__item {
  transition: transform 160ms ease, filter 160ms ease;
}

.sticky-cta__item:hover {
  transform: translateY(-2px);
  filter: saturate(1.06);
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 620ms ease,
    transform 620ms cubic-bezier(0.19, 1, 0.22, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.js [data-reveal].is-in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1180px) {
  .site-nav {
    gap: 16px;
    font-size: 12px;
  }

  .hero__inner {
    grid-template-columns: minmax(520px, 0.96fr) minmax(390px, 0.9fr);
  }
}

@media (max-width: 1020px) {
  .site-header {
    height: 66px;
  }

  .site-header__inner {
    width: min(100% - 32px, var(--container));
  }

  .site-nav {
    position: fixed;
    top: 66px;
    right: 14px;
    left: 14px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(189, 225, 230, 0.95);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 22px 60px rgba(23, 67, 78, 0.18);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .is-menu-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav__link {
    padding: 13px 12px;
    border-radius: 8px;
  }

  .site-nav__link::after {
    display: none;
  }

  .site-nav__link:hover {
    background: #edfafa;
  }

  .hero {
    min-height: 0;
  }

  .hero__inner {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 0;
  }

  .hero__visual {
    min-height: 336px;
    margin: 0 -24px 0;
  }

  .hero__visual img {
    min-height: 336px;
  }

  .hero__content {
    max-width: none;
    padding: 34px 0 32px;
  }

  .hero__badges {
    margin-top: 10px;
  }

  .pain-layout__grid {
    width: 100%;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 74px;
  }

  body {
    background:
      radial-gradient(circle at 95% 74px, rgba(116, 212, 224, 0.27) 0 2px, transparent 3px) 0 0 / 18px 18px,
      linear-gradient(180deg, #ffffff 0%, #f6fcfd 100%);
  }

  .site-header {
    height: 62px;
  }

  .site-header__inner,
  .section__inner {
    width: min(100% - 30px, var(--container));
  }

  .site-nav {
    top: 62px;
    grid-template-columns: 1fr;
  }

  .brand__name {
    font-size: 31px;
  }

  .hero::before {
    display: none;
  }

  .hero::after {
    top: 338px;
  }

  .hero__visual {
    position: relative;
    grid-row: 1;
    width: 100%;
    margin: 0;
    min-height: 292px;
    height: 292px;
    border-radius: 0 0 0 36px;
  }

  .hero__content {
    grid-row: 2;
    width: min(100% - 30px, var(--container));
    margin-inline: auto;
    padding: 27px 0 20px;
  }

  .hero__visual img {
    min-height: 292px;
  }

  .hero__content {
    padding: 27px 0 20px;
  }

  .hero__title {
    font-size: 27px;
    line-height: 1.5;
  }

  .hero__lead {
    font-size: 13px;
  }

  .hero__actions {
    grid-template-columns: 1fr;
  }

  .hero__actions .button {
    width: 100%;
  }

  .button {
    min-height: 42px;
    white-space: normal;
  }

  .hero__badges {
    grid-template-columns: repeat(2, 1fr);
    gap: 9px;
  }

  .mini-badge {
    min-height: 54px;
  }

  .section {
    padding: 34px 0;
  }

  .section::before {
    width: 52px;
    height: 40px;
  }

  .section-heading__title {
    font-size: 20px;
  }

  .pain-layout__grid {
    grid-template-columns: 1fr;
  }

  .pain-card {
    min-height: 72px;
  }

  .reason-grid {
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .feature-card {
    min-height: 0;
    text-align: left;
  }

  .feature-card__icon {
    height: 32px;
    justify-content: start;
  }

  .feature-card__title {
    font-size: 14px;
  }

  .feature-card p {
    font-size: 12px;
  }

  .service-card__tags,
  .service-card--relax .service-card__tags {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-card {
    overflow-x: hidden;
  }

  .pricing-table {
    min-width: 0;
    table-layout: fixed;
    font-size: 11px;
  }

  .pricing-table th {
    width: 38%;
  }

  .pricing-table td:nth-child(2) {
    width: 25%;
    font-size: 12px;
  }

  .pricing-table td:last-child {
    width: 37%;
    font-size: 9px;
  }

  .pricing-table span {
    display: block;
    width: fit-content;
    margin: 3px auto 0;
  }

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

  .button--wide {
    width: 100%;
  }

  .trainer-card {
    border-radius: 12px;
  }

  .review-grid {
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .review-card::after {
    display: none;
  }

  .contact-form__field {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .contact-form__checks {
    grid-template-columns: 1fr;
  }

  .contact-form__checks legend {
    grid-row: auto;
  }

  .contact-form__button {
    width: 100%;
  }

  .access-card__map {
    min-height: 140px;
  }

  .sticky-cta {
    gap: 7px;
    padding: 9px 10px calc(9px + env(safe-area-inset-bottom));
  }

  .sticky-cta__item {
    min-height: 46px;
    padding: 0 6px;
    font-size: 11px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.78;
  letter-spacing: 0;
  background:
    radial-gradient(circle at 96% 13%, rgba(116, 212, 224, 0.30) 0 2px, transparent 3px) 0 0 / 18px 18px,
    linear-gradient(180deg, #ffffff 0%, #fbfdfe 26%, #f4fbfc 72%, #ffffff 100%);
}

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

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

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

.sp-only {
  display: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: 70px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(216, 237, 240, 0.75);
  box-shadow: 0 8px 22px rgba(20, 72, 86, 0.06);
  backdrop-filter: blur(12px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 48px, var(--container));
  height: 100%;
  margin-inline: auto;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  min-width: 144px;
  color: var(--color-teal-dark);
  line-height: 1.05;
}

.brand__caption {
  color: #14939b;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand__name {
  margin-top: 4px;
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 500;
  letter-spacing: 0.16em;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex: 1 1 auto;
  color: #273c46;
  font-size: 13px;
  font-weight: 700;
}

.site-nav__link {
  white-space: nowrap;
}

.site-header__cta {
  min-width: 148px;
}

.site-header__menu {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
}

.site-header__menu span {
  display: block;
  width: 28px;
  height: 2px;
  margin: 7px auto;
  background: #1b2d34;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--color-white);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 8px 16px rgba(35, 118, 125, 0.12);
  white-space: nowrap;
}

.button::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 13px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.button--coral {
  background: linear-gradient(180deg, #ff7474 0%, #ff5c63 100%);
}

.button--green {
  background: linear-gradient(180deg, #41c67c 0%, #1fb162 100%);
}

.button--outline {
  color: var(--color-teal-dark);
  background: #ffffff;
  border-color: #7bc5d2;
  box-shadow: 0 6px 12px rgba(47, 139, 129, 0.10);
}

.button--wide {
  min-width: 286px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 540px;
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 44%, rgba(232, 246, 244, 0.60) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -54px;
  width: 58%;
  height: 160px;
  background:
    radial-gradient(circle, rgba(88, 197, 211, 0.58) 0 2px, transparent 3px) 0 28px / 18px 18px,
    linear-gradient(176deg, transparent 0 40%, #ffffff 42% 100%);
  opacity: 0.65;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(440px, 0.92fr);
  align-items: start;
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
  padding-top: 42px;
}

.hero__content {
  max-width: 610px;
  padding-bottom: 58px;
}

.hero__eyebrow {
  margin: 0 0 8px;
  color: #1599a0;
  font-size: 12px;
  font-weight: 900;
}

.hero__title {
  margin: 0;
  color: #15878c;
  font-size: clamp(30px, 2.8vw, 38px);
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: 0.05em;
  word-break: keep-all;
  overflow-wrap: normal;
}

.hero__lead {
  width: min(100%, 540px);
  margin: 22px 0 0;
  color: #273b44;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.9;
}

.hero__note {
  width: min(100%, 500px);
  margin: 14px 0 0;
  color: #40515a;
  font-size: 15px;
  font-weight: 700;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero__visual {
  position: relative;
  min-height: 386px;
  margin: 0 -40px 0 0;
  border-radius: 0 0 0 64px;
  overflow: hidden;
  box-shadow: -16px 20px 48px rgba(50, 85, 92, 0.12);
}

.hero__visual::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 26%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0) 100%);
}

.hero__visual img {
  width: 100%;
  height: 100%;
  min-height: 386px;
  object-fit: cover;
  object-position: center top;
}

.hero__badges {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(130px, 1fr));
  width: min(100% - 80px, 810px);
  margin: -34px auto 0;
  gap: 14px;
}

.mini-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 10px 18px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
  color: #24969b;
  font-weight: 900;
}

.mini-badge__icon {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  margin-right: 9px;
  color: #78c7cf;
  font-size: 22px;
  line-height: 1;
}

.section {
  position: relative;
  padding: 44px 0;
}

.section__inner {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  color: var(--color-teal-dark);
  text-align: center;
}

.section-heading__title {
  margin: 0;
  color: var(--color-teal-dark);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.07em;
  line-height: 1.45;
}

.section-heading__dots {
  width: 134px;
  height: 5px;
  background-image: radial-gradient(circle, #69c8d2 2px, transparent 2.5px);
  background-size: 14px 5px;
  background-repeat: repeat-x;
}

.section--pains {
  padding-top: 50px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fdfe 100%);
}

.pain-layout__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: 70%;
}

.pain-layout {
  position: relative;
}

.pain-card {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  align-items: center;
  min-height: 86px;
  padding: 14px 18px;
  border: 1px solid #e3edf0;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(61, 99, 108, 0.07);
}

.pain-card__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 2px solid #a8dce1;
  border-radius: 16px;
  color: #58b9c2;
  font-size: 28px;
}

.pain-card p {
  margin: 0;
  color: #334851;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.6;
}

.pain-layout__highlight {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 300px;
}

.highlight-card {
  display: grid;
  place-items: center;
  min-height: 126px;
  padding: 24px;
  border: 2px solid #f9cf7a;
  border-radius: 18px;
  background: #fffdf7;
  color: var(--color-teal-dark);
  text-align: center;
  box-shadow: 0 8px 18px rgba(246, 196, 87, 0.11);
}

.highlight-card p {
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.7;
}

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

.reason-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}

.feature-card {
  min-height: 196px;
  padding: 24px 18px 20px;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: var(--shadow-card);
  text-align: center;
}

.feature-card__icon {
  display: grid;
  place-items: center;
  height: 52px;
  color: #73c8d0;
  font-size: 40px;
  line-height: 1;
}

.feature-card--crown .feature-card__icon {
  color: #f2ba42;
}

.feature-card__title {
  margin: 14px 0 10px;
  color: #178f95;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.5;
}

.feature-card p {
  margin: 0;
  color: #4b5e66;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.75;
}

.section--service {
  padding-top: 30px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.service-card {
  padding: 18px 18px 16px;
  border: 2px solid #91d8d1;
  border-radius: 13px;
  background: linear-gradient(180deg, rgba(236, 250, 248, 0.92), #ffffff);
  box-shadow: var(--shadow-soft);
}

.service-card--relax {
  border-color: #9ec7f2;
  background: linear-gradient(180deg, rgba(241, 247, 255, 0.95), #ffffff);
}

.service-card__title {
  margin: 0 0 12px;
  color: var(--color-teal-dark);
  font-size: 17px;
  font-weight: 900;
  text-align: center;
  letter-spacing: 0.08em;
}

.service-card--relax .service-card__title {
  color: #3d7ec0;
}

.service-card__image {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 10px;
}

.service-card__tags {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
  margin-top: 12px;
}

.service-card--relax .service-card__tags {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card__tags span {
  display: grid;
  place-items: center;
  min-height: 32px;
  border: 1px solid #b9e4e5;
  border-radius: 7px;
  background: #ffffff;
  color: #208b92;
  font-size: 13px;
  font-weight: 900;
}

.service-card--relax .service-card__tags span {
  border-color: #bbd6f7;
  color: #3d7ec0;
}

.service-copy {
  margin: 24px 0 0;
  color: #178f95;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.7;
  text-align: center;
}

.section--pricing {
  padding-top: 22px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.pricing-card {
  overflow: hidden;
  border: 1px solid var(--color-border-strong);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.pricing-card__title {
  margin: 0;
  padding: 11px 16px 12px;
  color: #ffffff;
  font-size: 17px;
  font-weight: 900;
  text-align: center;
  line-height: 1.25;
}

.pricing-card__title--green {
  background: linear-gradient(90deg, #22a995, #2f8b81);
}

.pricing-card__title--blue {
  background: linear-gradient(90deg, #4b9bd0, #2f6fb3);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  color: #263944;
  font-size: 15px;
  font-weight: 800;
}

.pricing-table th,
.pricing-table td {
  height: 52px;
  padding: 8px 13px;
  border: 1px solid #d9e8ed;
  background: #ffffff;
  text-align: left;
}

.pricing-table th {
  width: 36%;
}

.pricing-table td:nth-child(2) {
  width: 26%;
  color: var(--color-teal);
  font-size: 18px;
  font-weight: 900;
  text-align: center;
  white-space: nowrap;
}

.pricing-card:nth-child(2) .pricing-table td:nth-child(2) {
  color: #367fc5;
}

.pricing-table td:last-child {
  color: #42545d;
  font-size: 13px;
  text-align: center;
}

.pricing-table span {
  display: inline-block;
  margin-left: 8px;
  padding: 3px 8px;
  border-radius: 5px;
  background: var(--color-coral);
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
}

.student-note {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin: 18px 0 20px;
  padding: 8px 20px;
  border-radius: 7px;
  background: #fff0f0;
  color: #5f5960;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.section-actions {
  display: flex;
  justify-content: center;
  gap: 52px;
}

.section--trainer {
  padding-top: 30px;
}

.trainer-card {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: center;
  padding: 28px;
  border-radius: 18px;
  background: linear-gradient(105deg, #ffffff 0%, #e7f8f4 100%);
  box-shadow: var(--shadow-card);
}

.trainer-card__photo {
  margin: 0;
  overflow: hidden;
  height: 305px;
  border-radius: 8px;
}

.trainer-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.trainer-card__heading h2 {
  margin: 0 0 9px;
  color: var(--color-teal-dark);
  font-size: 27px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.trainer-card__name {
  margin: 0 0 16px;
  color: #1f2f36;
  font-size: 27px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.trainer-card__body p {
  margin: 0;
  color: #3c4e57;
  font-size: 15px;
  font-weight: 700;
  line-height: 2;
}

.trainer-card__skills {
  display: grid;
  gap: 10px;
  align-self: stretch;
  align-content: center;
}

.trainer-card__skills h3 {
  margin: 0 0 4px;
  color: var(--color-teal-dark);
  font-size: 17px;
  font-weight: 900;
}

.trainer-card__skills span {
  display: block;
  min-height: 28px;
  padding: 4px 15px;
  border: 1px solid #9ed9d9;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-teal-dark);
  font-size: 14px;
  font-weight: 900;
}

.section--voice {
  padding-bottom: 28px;
}

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

.review-card {
  min-height: 132px;
  padding: 22px 22px 18px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.review-card__google {
  margin: 0 0 8px;
  color: #4285f4;
  font-size: 25px;
  font-weight: 900;
  line-height: 1;
}

.review-card p:not(.review-card__google) {
  margin: 0;
  color: #394a52;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.65;
}

.review-card span {
  display: block;
  margin-top: 9px;
  color: #8b989e;
  font-size: 12px;
}

.section--flow {
  display: none;
}

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

.flow-card {
  position: relative;
  min-height: 168px;
  padding: 28px 18px;
  border: 1px solid var(--color-border);
  border-radius: 13px;
  background: #ffffff;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.flow-card span {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--color-teal);
  color: #ffffff;
  font-weight: 900;
}

.flow-card h3 {
  margin: 12px 0 8px;
  color: var(--color-teal-dark);
  font-size: 16px;
  font-weight: 900;
}

.flow-card p {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
}

.section--news {
  background: #f8fbfa;
}

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

.news-item {
  min-height: 150px;
  padding: 24px;
  border: 1px solid var(--color-border);
  border-radius: 13px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.news-item time {
  display: block;
  margin-bottom: 10px;
  color: var(--color-coral);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
}

.news-item h3 {
  margin: 0 0 10px;
  color: var(--color-teal-dark);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.45;
}

.news-item p {
  margin: 0;
  color: #5c6a70;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  column-gap: 44px;
  align-items: center;
}

.faq-layout__heading {
  grid-column: 1 / -1;
}

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

.faq-item {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: #ffffff;
}

.faq-item summary {
  position: relative;
  display: block;
  padding: 11px 52px 11px 24px;
  color: #253940;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.45;
  cursor: pointer;
}

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

.faq-item summary::before {
  content: "Q.";
  margin-right: 14px;
  color: var(--color-teal-dark);
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  color: var(--color-teal-dark);
  font-size: 24px;
  font-weight: 300;
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 24px 14px 58px;
  color: #52636b;
  font-size: 14px;
  font-weight: 700;
}

.faq-layout__aside {
  color: var(--color-teal-dark);
  font-size: 17px;
  font-weight: 900;
  text-align: center;
}

.faq-layout__aside p {
  margin: 0 0 8px;
  line-height: 1.8;
}

.faq-layout__aside img {
  width: 156px;
  margin-inline: auto;
}

.section--contact {
  padding-top: 20px;
}

.contact-lead {
  margin: -18px 0 24px;
  color: #596b73;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  gap: 58px;
  align-items: stretch;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 20px;
  padding: 22px 28px 24px;
  border: 1px solid var(--color-border);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.contact-grid > .wpcf7 {
  min-width: 0;
}

.contact-grid > .wpcf7 .contact-form {
  height: 100%;
}

.contact-form__field,
.contact-form__checks {
  margin: 0;
  color: #566872;
  font-size: 13px;
  font-weight: 900;
}

.contact-form__field {
  display: grid;
  grid-template-columns: 142px minmax(0, 1fr);
  align-items: center;
  grid-column: 1 / -1;
}

.contact-form--missing {
  display: flex;
  align-items: center;
}

.contact-form--missing p {
  margin: 0;
  color: #566872;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.8;
}

.contact-form__field--wide {
  align-items: start;
}

.contact-form .wpcf7-form-control-wrap {
  display: block;
  min-width: 0;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 32px;
  padding: 6px 12px;
  border: 1px solid #d9e4e8;
  border-radius: 6px;
  background: #ffffff;
  color: #263944;
  font-size: 14px;
  font-weight: 600;
}

.contact-form textarea {
  min-height: 76px;
  resize: vertical;
}

.contact-form__checks {
  display: flex;
  grid-column: 1 / -1;
  gap: 14px;
  align-items: center;
  padding: 0;
  border: 0;
}

.contact-form__checks legend {
  width: 142px;
  float: left;
}

.contact-form__checks label {
  color: #566872;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.contact-form__button {
  grid-column: 1 / -1;
  justify-self: center;
  width: 350px;
  min-height: 43px;
  margin-top: 6px;
}

.contact-form .wpcf7-not-valid-tip {
  margin-top: 5px;
  color: #b13b3f;
  font-size: 12px;
  font-weight: 800;
}

.contact-form .wpcf7-response-output {
  grid-column: 1 / -1;
  margin: 2px 0 0;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
}

.contact-form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form__message {
  grid-column: 1 / -1;
  margin: 0 0 6px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
}

.contact-form__message--success {
  border: 1px solid rgba(48, 184, 110, 0.36);
  background: rgba(48, 184, 110, 0.10);
  color: #177245;
}

.contact-form__message--error {
  border: 1px solid rgba(255, 104, 107, 0.34);
  background: rgba(255, 104, 107, 0.10);
  color: #b13b3f;
}

.line-card {
  display: grid;
  place-items: center;
  padding: 28px;
  border: 2px solid #58bd7c;
  border-radius: 12px;
  background: #ffffff;
  text-align: center;
}

.line-card h3 {
  margin: 0;
  color: #1ca65c;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.7;
}

.line-card p {
  margin: 14px 0 18px;
  color: #53656d;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.8;
}

.line-card__button {
  width: min(100%, 280px);
  margin: 0 0 14px;
}

.line-card__qr {
  display: grid;
  place-items: center;
  width: 134px;
  height: 134px;
  border: 1px solid #cfd9dd;
  background: #fbfbfb;
  color: #333;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.6;
}

.section--access {
  padding-top: 16px;
  padding-bottom: 44px;
}

.access-title {
  margin: 0 0 12px;
  color: var(--color-teal-dark);
  font-size: 25px;
  font-weight: 900;
  text-align: center;
  letter-spacing: 0.08em;
}

.access-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 24px;
  align-items: stretch;
  padding: 18px 24px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.access-card__list {
  display: grid;
  gap: 0;
  margin: 0;
}

.access-card__list div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  min-height: 43px;
  align-items: center;
  border-bottom: 1px solid #edf4f6;
}

.access-card__list div:last-child {
  border-bottom: 0;
}

.access-card__list dt {
  color: #24969b;
  font-size: 14px;
  font-weight: 900;
}

.access-card__list dd {
  margin: 0;
  color: #32454f;
  font-size: 14px;
  font-weight: 800;
}

.access-card__map {
  margin: 0;
  overflow: hidden;
  height: 184px;
  border-radius: 10px;
  background: #f3f7f8;
}

.access-card__map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-footer {
  padding: 28px 0;
  background: linear-gradient(90deg, #bdeff0 0%, #e9fbfb 52%, #c4edf0 100%);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 260px 1fr 330px;
  align-items: center;
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
  gap: 28px;
  color: var(--color-teal-dark);
}

.site-footer__copy {
  margin: 0;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.7;
  text-align: center;
  letter-spacing: 0.08em;
}

.site-footer__address {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
}

.sticky-cta {
  display: none;
}

@media (max-width: 1020px) {
  .site-nav,
  .site-header__cta {
    display: none;
  }

  .site-header__menu {
    display: block;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    padding-top: 0;
  }

  .hero__visual {
    grid-row: 1;
    width: calc(100% + 48px);
    min-height: 320px;
    margin: 0 -24px 0;
    border-radius: 0 0 0 42px;
  }

  .hero__visual img {
    min-height: 320px;
  }

  .hero__content {
    padding-top: 28px;
  }

  .pain-layout__grid,
  .pain-layout__highlight {
    position: static;
    width: 100%;
  }

  .pain-layout__highlight {
    margin-top: 18px;
  }

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

  .trainer-card,
  .faq-layout,
  .contact-grid,
  .access-card,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  body {
    padding-bottom: 74px;
    font-size: 14px;
    background:
      radial-gradient(circle at 95% 12%, rgba(116, 212, 224, 0.28) 0 2px, transparent 3px) 0 0 / 18px 18px,
      linear-gradient(180deg, #ffffff 0%, #f7fcfd 100%);
  }

  .sp-only {
    display: inline;
  }

  .site-header {
    height: 62px;
  }

  .site-header__inner,
  .section__inner {
    width: min(100% - 28px, var(--container));
  }

  .brand {
    min-width: 120px;
  }

  .brand__caption {
    font-size: 9px;
  }

  .brand__name {
    font-size: 31px;
    letter-spacing: 0.14em;
  }

  .hero {
    min-height: 0;
    background: #ffffff;
  }

  .hero::after {
    right: -24px;
    bottom: auto;
    top: 336px;
    width: 100%;
    height: 78px;
  }

  .hero__inner {
    width: 100%;
    display: block;
    min-height: 384px;
    padding: 0;
  }

  .hero__visual {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
    width: 58%;
    min-height: 306px;
    height: 306px;
    margin: 0;
    border-radius: 0 0 0 32px;
  }

  .hero__visual::before {
    width: 24%;
  }

  .hero__visual img {
    min-height: 306px;
    object-position: center top;
  }

  .hero__content {
    position: relative;
    z-index: 2;
    width: min(100% - 28px, var(--container));
    margin-inline: auto;
    padding: 24px 0 18px;
  }

  .hero__eyebrow {
    display: none;
  }

  .hero__title {
    width: 57%;
    font-size: 28px;
    line-height: 1.48;
    letter-spacing: 0.05em;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .hero__lead {
    width: 55%;
    margin-top: 16px;
    font-size: 12px;
    line-height: 1.75;
  }

  .hero__note {
    display: none;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr 1fr 0.86fr;
    gap: 8px;
    margin-top: 16px;
  }

  .button {
    min-height: 38px;
    padding: 0 12px;
    font-size: 12px;
  }

  .button::after {
    display: none;
  }

  .hero__badges {
    grid-template-columns: repeat(4, 1fr);
    width: min(100% - 28px, var(--container));
    margin: 8px auto 0;
    gap: 8px;
  }

  .mini-badge {
    min-height: 50px;
    flex-direction: column;
    padding: 6px 4px;
    border-radius: 14px;
    font-size: 11px;
    line-height: 1.2;
  }

  .mini-badge__icon {
    width: 20px;
    height: 20px;
    margin: 0 0 3px;
    font-size: 18px;
  }

  .section {
    padding: 30px 0;
  }

  .section-heading {
    gap: 8px;
    margin-bottom: 18px;
  }

  .section-heading__title {
    font-size: 20px;
    letter-spacing: 0.05em;
  }

  .section-heading__dots {
    flex: 1;
    max-width: 76px;
  }

  .pain-layout__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .pain-card {
    min-height: 70px;
    grid-template-columns: 38px minmax(0, 1fr);
    padding: 10px 10px;
  }

  .pain-card__icon {
    width: 30px;
    height: 30px;
    border-radius: 10px;
    font-size: 20px;
  }

  .pain-card p {
    font-size: 12px;
    line-height: 1.5;
  }

  .highlight-card {
    min-height: 70px;
    padding: 12px;
    border-radius: 12px;
  }

  .highlight-card p {
    font-size: 15px;
    line-height: 1.55;
  }

  .reason-grid {
    grid-template-columns: repeat(5, minmax(132px, 1fr));
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 4px;
    scroll-snap-type: x mandatory;
  }

  .feature-card {
    min-height: 134px;
    padding: 13px 10px;
    scroll-snap-align: start;
  }

  .feature-card__icon {
    height: 34px;
    font-size: 28px;
  }

  .feature-card__title {
    margin: 8px 0 5px;
    font-size: 12px;
  }

  .feature-card p {
    font-size: 10px;
    line-height: 1.65;
  }

  .service-grid,
  .pricing-grid,
  .review-grid,
  .flow-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-card {
    padding: 12px;
  }

  .service-card__title {
    font-size: 14px;
  }

  .service-card__image {
    height: 74px;
  }

  .service-card__tags {
    gap: 6px;
  }

  .service-card__tags span {
    min-height: 27px;
    font-size: 11px;
  }

  .service-copy {
    margin-top: 12px;
    font-size: 14px;
  }

  .pricing-card__title {
    padding: 9px;
    font-size: 14px;
  }

  .pricing-table {
    font-size: 12px;
  }

  .pricing-table th,
  .pricing-table td {
    height: 40px;
    padding: 6px 7px;
  }

  .pricing-table td:nth-child(2) {
    font-size: 13px;
  }

  .pricing-table td:last-child {
    font-size: 10px;
  }

  .pricing-table span {
    margin-left: 3px;
    padding: 2px 5px;
    font-size: 9px;
  }

  .student-note {
    min-height: 34px;
    margin: 10px 0 12px;
    font-size: 11px;
  }

  .section-actions {
    gap: 8px;
  }

  .button--wide {
    min-width: 0;
    width: 50%;
  }

  .trainer-card {
    gap: 14px;
    padding: 14px;
  }

  .trainer-card__photo {
    height: 210px;
  }

  .trainer-card__heading h2 {
    font-size: 20px;
    text-align: center;
  }

  .trainer-card__name {
    font-size: 19px;
    text-align: center;
  }

  .trainer-card__body p {
    font-size: 12px;
    line-height: 1.75;
  }

  .trainer-card__skills {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .trainer-card__skills h3 {
    font-size: 13px;
    text-align: center;
  }

  .trainer-card__skills span {
    min-height: 25px;
    font-size: 11px;
    text-align: center;
  }

  .review-grid {
    grid-template-columns: repeat(3, minmax(190px, 1fr));
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .review-card {
    min-height: 112px;
    padding: 16px;
  }

  .section--flow {
    display: block;
  }

  .flow-grid {
    grid-template-columns: repeat(4, minmax(150px, 1fr));
    overflow-x: auto;
    gap: 10px;
  }

  .flow-card {
    min-height: 134px;
    padding: 17px 10px;
  }

  .flow-card h3 {
    font-size: 12px;
  }

  .flow-card p {
    font-size: 11px;
  }

  .news-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .news-item {
    min-height: 0;
    padding: 16px;
  }

  .news-item h3 {
    font-size: 14px;
  }

  .news-item p {
    font-size: 12px;
  }

  .faq-layout {
    gap: 16px;
  }

  .faq-item summary {
    padding: 9px 42px 9px 14px;
    font-size: 12px;
  }

  .faq-item summary::before {
    margin-right: 8px;
  }

  .faq-item p {
    padding: 0 14px 12px 42px;
    font-size: 12px;
  }

  .faq-layout__aside {
    display: grid;
    grid-template-columns: 1fr 100px;
    align-items: center;
    text-align: left;
    font-size: 13px;
  }

  .faq-layout__aside img {
    width: 98px;
  }

  .contact-lead {
    margin-top: -10px;
    font-size: 11px;
  }

  .contact-grid {
    gap: 14px;
  }

  .contact-form {
    padding: 15px;
    gap: 8px;
  }

  .contact-form__field {
    grid-template-columns: 104px minmax(0, 1fr);
    font-size: 11px;
  }

  .contact-form input[type="text"],
  .contact-form input[type="email"],
  .contact-form input[type="tel"],
  .contact-form select,
  .contact-form textarea {
    min-height: 29px;
    font-size: 12px;
  }

  .contact-form__checks {
    display: grid;
    grid-template-columns: 104px 1fr;
    gap: 4px 8px;
  }

  .contact-form__checks legend {
    width: auto;
    float: none;
    grid-row: span 3;
    font-size: 11px;
  }

  .contact-form__checks label {
    font-size: 11px;
  }

  .contact-form__button {
    width: 210px;
    min-height: 36px;
  }

  .line-card {
    min-height: 220px;
    padding: 18px;
  }

  .line-card h3 {
    font-size: 16px;
  }

  .line-card__button {
    width: 100%;
    margin-bottom: 12px;
  }

  .line-card__qr {
    width: 116px;
    height: 116px;
    font-size: 14px;
  }

  .access-title {
    font-size: 18px;
  }

  .access-card {
    gap: 10px;
    padding: 12px;
  }

  .access-card__list div {
    grid-template-columns: 72px minmax(0, 1fr);
    min-height: 34px;
  }

  .access-card__list dt,
  .access-card__list dd {
    font-size: 11px;
  }

  .access-card__map {
    height: 116px;
  }

  .site-footer {
    padding: 20px 0;
  }

  .site-footer__inner {
    gap: 10px;
    text-align: center;
  }

  .site-footer__copy {
    font-size: 15px;
  }

  .site-footer__address {
    font-size: 11px;
  }

  .sticky-cta {
    position: fixed;
    z-index: 50;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1.05fr 1.18fr 0.94fr;
    gap: 8px;
    padding: 10px 12px;
    background: linear-gradient(180deg, rgba(207, 246, 247, 0.92), #92d9df);
    box-shadow: 0 -8px 22px rgba(17, 91, 106, 0.14);
  }

  .sticky-cta__item {
    display: grid;
    place-items: center;
    min-height: 44px;
    border-radius: 8px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
    line-height: 1.15;
    text-align: center;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.55), 0 5px 10px rgba(34, 82, 94, 0.13);
  }

  .sticky-cta__item--coral {
    background: linear-gradient(180deg, #ff7272, #ff5d63);
  }

  .sticky-cta__item--green {
    background: linear-gradient(180deg, #3fc47a, #19a95b);
  }

  .sticky-cta__item--blue {
    background: linear-gradient(180deg, #5c9fca, #377fb8);
  }
}

/* Final cascade: keep the reference-system polish above the legacy rules. */
html {
  scroll-padding-top: 88px;
}

body {
  color: var(--color-text);
  background:
    radial-gradient(circle at 96% 90px, rgba(116, 212, 224, 0.34) 0 2px, transparent 2.8px) 0 0 / 18px 18px,
    linear-gradient(145deg, rgba(235, 249, 250, 0.64) 0%, transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #fbfeff 30%, #f3fbfc 66%, #ffffff 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

:focus-visible {
  outline: 3px solid rgba(255, 200, 87, 0.85);
  outline-offset: 4px;
}

.site-header {
  height: 76px;
  background: rgba(255, 255, 255, 0.88);
  border-bottom-color: rgba(189, 225, 230, 0.86);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.86), 0 12px 34px rgba(30, 79, 92, 0.06);
  transition: background-color 220ms ease, box-shadow 220ms ease, height 220ms ease;
}

.site-header--scrolled {
  height: 68px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 34px rgba(28, 76, 88, 0.10);
}

.site-header__inner {
  width: min(100% - 56px, var(--container));
}

.brand {
  color: var(--color-teal-dark);
  transition: transform 180ms ease;
}

.brand:hover {
  transform: translateY(-1px);
}

.brand__caption {
  color: #15989c;
  line-height: 1.3;
}

.brand__name {
  color: #09848a;
  line-height: 0.92;
  letter-spacing: 0.14em;
}

.site-nav {
  gap: clamp(16px, 2.2vw, 30px);
}

.site-nav__link {
  position: relative;
  padding: 26px 0;
  transition: color 180ms ease;
}

.site-nav__link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 19px;
  left: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--color-teal-dark);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.site-nav__link:hover {
  color: var(--color-teal-dark);
}

.site-nav__link:hover::after {
  transform: scaleX(1);
}

.site-header__menu {
  position: relative;
  border-radius: 12px;
}

.site-header__menu span {
  width: 27px;
  transition: transform 190ms ease, opacity 190ms ease;
}

.is-menu-open .site-header__menu span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.is-menu-open .site-header__menu span:nth-child(2) {
  opacity: 0;
}

.is-menu-open .site-header__menu span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.button {
  position: relative;
  isolation: isolate;
  min-height: 46px;
  overflow: hidden;
  box-shadow: var(--shadow-button);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 1px 1px auto;
  z-index: -1;
  height: 48%;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0));
}

.button:hover {
  transform: translateY(-2px);
  filter: saturate(1.05);
  box-shadow: 0 15px 26px rgba(255, 104, 107, 0.24);
}

.button:active {
  transform: translateY(0);
}

.button--green {
  box-shadow: 0 11px 20px rgba(39, 176, 102, 0.24);
}

.button--outline {
  color: var(--color-teal-dark);
  background: rgba(255, 255, 255, 0.96);
  border-color: #83ccd2;
  box-shadow: 0 9px 18px rgba(34, 120, 130, 0.12);
}

.hero {
  min-height: 574px;
  background:
    radial-gradient(circle at 86% 20%, rgba(191, 232, 235, 0.55) 0 1px, transparent 2px) 0 0 / 20px 20px,
    linear-gradient(92deg, #ffffff 0%, #ffffff 43%, #effafa 72%, #ffffff 100%);
}

.hero::before {
  content: "";
  position: absolute;
  right: 7%;
  bottom: 18px;
  z-index: 1;
  width: min(450px, 46vw);
  height: 80px;
  border-bottom: 2px solid rgba(70, 190, 200, 0.24);
  border-radius: 0 0 50% 50%;
  transform: rotate(-2deg);
  pointer-events: none;
}

.hero__inner {
  grid-template-columns: minmax(630px, 0.98fr) minmax(430px, 0.92fr);
  align-items: center;
  min-height: 498px;
  padding-top: 24px;
}

.hero__content {
  max-width: 650px;
  padding: 54px 0 82px;
}

.hero__eyebrow {
  margin-bottom: 12px;
  color: #1499a1;
}

.hero__title {
  color: #0e8a8f;
  font-size: clamp(29px, 2.25vw, 31px);
  line-height: 1.42;
  letter-spacing: 0.03em;
}

.hero__lead {
  width: min(100%, 570px);
  margin-top: 24px;
  color: #203943;
  line-height: 1.95;
}

.hero__actions {
  gap: 12px;
  margin-top: 28px;
}

.hero__visual {
  min-height: 420px;
  margin: 0 -52px 0 0;
  border: 1px solid rgba(207, 233, 237, 0.7);
  border-radius: 0 0 0 72px;
  box-shadow: -24px 30px 70px rgba(34, 83, 94, 0.14);
}

.hero__visual::before {
  width: 32%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.56) 38%, rgba(255, 255, 255, 0) 100%);
}

.hero__visual img {
  min-height: 420px;
}

.hero__badges {
  width: min(100% - 86px, 900px);
  margin-top: -44px;
  gap: 14px;
}

.mini-badge {
  min-height: 66px;
  border-color: rgba(185, 224, 229, 0.9);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 30px rgba(38, 102, 116, 0.10);
  backdrop-filter: blur(12px);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.mini-badge:hover {
  transform: translateY(-3px);
  border-color: #8dd0d6;
  box-shadow: 0 18px 34px rgba(38, 102, 116, 0.14);
}

.section {
  padding: 56px 0;
}

.section::before {
  content: "";
  position: absolute;
  top: 14px;
  right: max(24px, calc((100vw - var(--container)) / 2));
  width: 88px;
  height: 54px;
  background: radial-gradient(circle, rgba(93, 202, 212, 0.28) 0 2px, transparent 3px) 0 0 / 16px 16px;
  opacity: 0.85;
  pointer-events: none;
}

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

.section-heading__title {
  color: #0c858b;
  font-size: clamp(25px, 2.3vw, 32px);
  letter-spacing: 0.04em;
}

.section-heading__dots {
  height: 6px;
  background-image: radial-gradient(circle, #64c5ce 2px, transparent 2.6px);
  opacity: 0.8;
}

.pain-layout__grid {
  width: min(72%, 820px);
  gap: 18px;
}

.pain-card,
.feature-card,
.review-card,
.flow-card {
  border-color: rgba(200, 229, 234, 0.92);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.pain-card:hover,
.feature-card:hover,
.review-card:hover,
.flow-card:hover {
  transform: translateY(-4px);
  border-color: #9ed8dd;
  box-shadow: var(--shadow-card);
}

.highlight-card {
  border-color: #f4cb72;
  border-radius: 14px;
  background:
    radial-gradient(circle at 86% 28%, rgba(255, 200, 87, 0.18), transparent 34%),
    #fffdf8;
  box-shadow: 0 14px 34px rgba(246, 196, 87, 0.14);
}

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 16px 36px rgba(29, 92, 105, 0.08);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #2fb5a4, #77d7da);
}

.service-card--relax::before {
  background: linear-gradient(90deg, #4e9ad7, #9ec7f2);
}

.service-card__image {
  height: 112px;
  border: 1px solid rgba(203, 229, 233, 0.8);
}

.pricing-card,
.trainer-card,
.contact-form,
.line-card,
.access-card {
  border-color: rgba(188, 224, 230, 0.92);
  box-shadow: 0 16px 38px rgba(30, 88, 103, 0.09);
}

.pricing-card {
  border-radius: 12px;
}

.pricing-card__title {
  min-height: 48px;
  display: grid;
  place-items: center;
}

.pricing-table tbody tr:hover th,
.pricing-table tbody tr:hover td {
  background-color: #f8feff;
}

.trainer-card {
  border-radius: 14px;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.98), transparent 30%),
    linear-gradient(105deg, #ffffff 0%, #e8f9f5 100%);
}

.trainer-card__photo {
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(30, 83, 96, 0.12);
}

.trainer-card__skills span {
  border-radius: 8px;
}

.review-card::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -24px;
  width: 0;
  height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 14px solid rgba(111, 199, 204, 0.58);
  transform: translateY(-50%);
}

.review-card:last-child::after {
  display: none;
}

.faq-item {
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.faq-item:hover,
.faq-item[open] {
  border-color: #9ed8dd;
  box-shadow: 0 8px 18px rgba(30, 83, 96, 0.07);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
  border-color: #d6e6ea;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #69c5cc;
  background: #fbffff;
  box-shadow: 0 0 0 4px rgba(105, 197, 204, 0.14);
  outline: 0;
}

.line-card {
  background:
    radial-gradient(circle at 50% 26%, rgba(48, 184, 110, 0.08), transparent 32%),
    #ffffff;
}

.site-footer {
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.6), transparent 28%),
    linear-gradient(90deg, #bceff0 0%, #edfbfb 52%, #c9f0f2 100%);
}

.sticky-cta__item {
  transition: transform 160ms ease, filter 160ms ease;
}

.sticky-cta__item:hover {
  transform: translateY(-2px);
  filter: saturate(1.06);
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 620ms ease,
    transform 620ms cubic-bezier(0.19, 1, 0.22, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.js [data-reveal].is-in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1180px) {
  .site-nav {
    gap: 16px;
    font-size: 12px;
  }

  .hero__inner {
    grid-template-columns: minmax(520px, 0.96fr) minmax(390px, 0.9fr);
  }
}

@media (max-width: 1020px) {
  .site-header {
    height: 66px;
  }

  .site-header__inner {
    width: min(100% - 32px, var(--container));
  }

  .site-nav {
    position: fixed;
    top: 66px;
    right: 14px;
    left: 14px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(189, 225, 230, 0.95);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 22px 60px rgba(23, 67, 78, 0.18);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .is-menu-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav__link {
    padding: 13px 12px;
    border-radius: 8px;
  }

  .site-nav__link::after {
    display: none;
  }

  .site-nav__link:hover {
    background: #edfafa;
  }

  .hero {
    min-height: 0;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 0;
  }

  .hero__visual {
    min-height: 336px;
    margin: 0 -24px 0;
  }

  .hero__visual img {
    min-height: 336px;
  }

  .hero__content {
    max-width: none;
    padding: 34px 0 32px;
  }

  .hero__badges {
    margin-top: 10px;
  }

  .pain-layout__grid {
    width: 100%;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 74px;
  }

  body {
    background:
      radial-gradient(circle at 95% 74px, rgba(116, 212, 224, 0.27) 0 2px, transparent 3px) 0 0 / 18px 18px,
      linear-gradient(180deg, #ffffff 0%, #f6fcfd 100%);
  }

  .site-header {
    height: 62px;
  }

  .site-header__inner,
  .section__inner {
    width: min(100% - 30px, var(--container));
  }

  .site-nav {
    top: 62px;
    grid-template-columns: 1fr;
  }

  .hero::before {
    display: none;
  }

  .hero__inner {
    display: grid;
  }

  .hero__visual {
    position: relative;
    grid-row: 1;
    width: 100%;
    margin: 0;
    min-height: 292px;
    height: 292px;
    border-radius: 0 0 0 36px;
  }

  .hero__content {
    grid-row: 2;
    width: min(100% - 30px, var(--container));
    margin-inline: auto;
    padding: 27px 0 20px;
  }

  .hero__visual img {
    min-height: 292px;
  }

  .hero__title {
    font-size: 27px;
    line-height: 1.5;
  }

  .hero__actions {
    grid-template-columns: 1fr;
  }

  .hero__actions .button,
  .button--wide,
  .contact-form__button {
    width: 100%;
  }

  .button {
    min-height: 42px;
    white-space: normal;
  }

  .hero__badges {
    grid-template-columns: repeat(2, 1fr);
    gap: 9px;
  }

  .section {
    padding: 34px 0;
  }

  .section-heading__title {
    font-size: 20px;
  }

  .pain-layout__grid,
  .reason-grid,
  .review-grid {
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .feature-card {
    min-height: 0;
    text-align: left;
  }

  .feature-card__icon {
    height: 32px;
    justify-content: start;
  }

  .service-card__tags,
  .service-card--relax .service-card__tags {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-card {
    overflow-x: hidden;
  }

  .pricing-table {
    min-width: 0;
    table-layout: fixed;
    font-size: 11px;
  }

  .pricing-table th {
    width: 38%;
  }

  .pricing-table td:nth-child(2) {
    width: 25%;
    font-size: 12px;
  }

  .pricing-table td:last-child {
    width: 37%;
    font-size: 9px;
  }

  .pricing-table span {
    display: block;
    width: fit-content;
    margin: 3px auto 0;
  }

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

  .review-card::after {
    display: none;
  }

  .contact-form__field,
  .contact-form__checks {
    grid-template-columns: 1fr;
  }

  .contact-form__checks legend {
    grid-row: auto;
  }

  .access-card__map {
    min-height: 140px;
  }
}

/* isekai integration overrides: keep client facts/assets, import the example polish. */
.isekai-lp {
  overflow-x: hidden;
}

.brand {
  min-width: 76px;
}

.brand__logo {
  display: block;
  width: 68px;
  height: auto;
  object-fit: contain;
}

.brand--footer .brand__logo {
  width: 82px;
  margin-inline: auto;
}

.mini-badge__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.pain-card__icon,
.feature-card__icon {
  position: relative;
  overflow: hidden;
}

.pain-card__icon::before,
.feature-card__icon::before {
  content: "";
  display: block;
  width: 64%;
  height: 64%;
  margin: auto;
  border: 2px solid currentColor;
  border-radius: 12px;
  opacity: 0.85;
}

.pain-card:nth-child(2) .pain-card__icon::before,
.feature-card:nth-child(2) .feature-card__icon::before {
  border-radius: 50%;
}

.pain-card:nth-child(3) .pain-card__icon::before,
.feature-card:nth-child(3) .feature-card__icon::before {
  width: 58%;
  height: 58%;
  border-radius: 50% 50% 44% 44%;
  transform: rotate(-10deg);
}

.pain-card:nth-child(4) .pain-card__icon::before,
.feature-card:nth-child(4) .feature-card__icon::before {
  width: 68%;
  height: 42%;
  border-radius: 999px;
}

.feature-card--crown .feature-card__icon::before {
  border-color: #f2ba42;
  border-radius: 50% 50% 12px 12px;
}

.feature-card__icon::before,
.feature-card:nth-child(2) .feature-card__icon::before,
.feature-card:nth-child(3) .feature-card__icon::before,
.feature-card:nth-child(4) .feature-card__icon::before,
.feature-card--crown .feature-card__icon::before {
  display: none;
}

.feature-card__icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 12px;
  color: #55b9c3;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(232, 246, 244, 0.68)),
    #ffffff;
  border: 1px solid rgba(85, 185, 195, 0.34);
  border-radius: 18px;
}

.feature-card__icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.feature-card--crown .feature-card__icon {
  color: #e7ad2f;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 224, 0.82)),
    #ffffff;
  border-color: rgba(242, 186, 66, 0.4);
}

.feature-card__photo {
  margin: 0 auto 13px;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(200, 229, 234, 0.9);
  border-radius: 12px;
  background: #f4fbfc;
}

.feature-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 52%;
}

.feature-card--photo {
  padding-top: 16px;
}

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

.service-card__image-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.service-card__image-grid img {
  width: 100%;
  height: 108px;
  object-fit: cover;
  border: 1px solid rgba(203, 229, 233, 0.8);
  border-radius: 10px;
}

.review-grid--single {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}

.review-grid--single .review-card::after {
  display: none;
}

.notice-card {
  min-height: 120px;
}

.review-grid--google,
.review-grid--count-1,
.review-grid--count-2 {
  grid-template-columns: minmax(0, 920px);
  justify-content: center;
}

.review-grid--google {
  gap: 0;
  padding: 8px 24px;
  border: 1px solid rgba(203, 229, 233, 0.9);
  border-radius: 12px;
  background: #ffffff;
}

.review-card--google {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) 26px;
  gap: 0 16px;
  min-height: 0;
  padding: 18px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: left;
}

.review-card--google + .review-card--google {
  border-top: 1px solid rgba(224, 235, 238, 0.95);
}

.review-card--google::after {
  display: none;
}

.review-card__profile {
  display: flex;
  min-width: 0;
  grid-column: 1;
  grid-row: 1;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}

.review-card__avatar {
  position: relative;
  display: block;
  width: 56px;
  height: 56px;
  overflow: hidden;
  border-radius: 50%;
  background: #5a4037;
}

.review-card__avatar::before,
.review-card__avatar::after {
  content: "";
  position: absolute;
  left: 50%;
  background: #d7d0ca;
  transform: translateX(-50%);
}

.review-card__avatar::before {
  top: 13px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

.review-card__avatar::after {
  bottom: -5px;
  width: 40px;
  height: 28px;
  border-radius: 50% 50% 0 0;
}

.review-card__author {
  color: #4d3a33;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
  overflow-wrap: anywhere;
}

.review-card__content {
  min-width: 0;
  grid-column: 2;
}

.review-card__google-icon {
  width: 24px;
  height: 24px;
  grid-column: 3;
  align-self: start;
  margin-top: 2px;
}

.review-card__rating-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  margin: 0 0 8px;
}

.review-card--google .review-card__stars {
  margin: 0;
  color: #d9ad3c;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}

.review-card__date {
  color: #7d8b91;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.review-card--google .review-card__body {
  margin: 0;
  color: #394a52;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.75;
}

.review-card__source {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
}

.review-card__source a,
.review-card__source span {
  color: #6b7d86;
  text-decoration: none;
}

.review-card__source a:hover {
  color: var(--color-teal-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.small-note {
  margin: 14px 0 0;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.line-card__qr {
  overflow: hidden;
  padding: 8px;
  background: #ffffff;
}

.line-card__qr img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.access-card__photos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  background: transparent;
}

.access-card__photos img {
  border-radius: 10px;
}

.section--flow {
  display: block;
}

@media (max-width: 760px) {
  .brand__logo {
    width: 54px;
  }

  .hero__title {
    width: 60%;
  }

  .hero__lead {
    width: 58%;
  }

  .service-card__image-grid,
  .service-card__image-grid--three,
  .service-card__image-grid--relax {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card__image-grid img {
    height: 82px;
  }

  .review-grid--google,
  .review-grid--count-2 {
    grid-template-columns: 1fr;
    padding: 4px 14px;
  }

  .review-card--google {
    grid-template-columns: 62px minmax(0, 1fr) 22px;
    gap: 0 11px;
    min-height: 0;
    padding: 16px 0;
  }

  .review-card__avatar {
    width: 48px;
    height: 48px;
  }

  .review-card__avatar::before {
    top: 11px;
    width: 16px;
    height: 16px;
  }

  .review-card__avatar::after {
    width: 35px;
    height: 25px;
  }

  .review-card__author,
  .review-card__date,
  .review-card__source {
    font-size: 11px;
  }

  .review-card--google .review-card__stars {
    font-size: 15px;
  }

  .review-card--google .review-card__body {
    font-size: 13px;
    line-height: 1.7;
  }

  .review-card__google-icon {
    width: 21px;
    height: 21px;
  }

  .access-card__photos {
    grid-template-columns: 1fr;
  }

  .access-card__photos img {
    min-height: 132px;
  }
}

/* Badge alignment fix: equal rows/columns so the four hero cards sit on one clean grid. */
.hero__badges {
  align-items: stretch;
}

.mini-badge {
  min-width: 0;
}

@media (max-width: 760px) {
  .hero__badges {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 82px;
    align-items: stretch;
    gap: 10px;
  }

  .mini-badge {
    display: grid;
    grid-template-rows: 26px auto;
    place-items: center;
    align-content: center;
    width: 100%;
    height: 100%;
    min-height: 0;
    margin: 0;
    padding: 10px 8px;
    border-radius: 18px;
  }

  .mini-badge__icon {
    width: 24px;
    height: 24px;
    margin: 0 0 6px;
  }

  .mini-badge__text {
    display: block;
    width: 100%;
    font-size: 13px;
    line-height: 1.25;
    text-align: center;
  }
}

/* Worry cards use a clear troubled-face icon instead of abstract placeholders. */
.pain-card__icon::before {
  display: none;
}

.pain-card:nth-child(2) .pain-card__icon::before,
.pain-card:nth-child(3) .pain-card__icon::before,
.pain-card:nth-child(4) .pain-card__icon::before {
  display: none;
}

.pain-card__icon {
  color: #59bbc4;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(232, 246, 244, 0.64)),
    #ffffff;
}

.pain-card__icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

@media (max-width: 760px) {
  .pain-card__icon svg {
    width: 21px;
    height: 21px;
  }
}

/* Final reason-card icon lock: content-specific icons/photos, no abstract placeholder strokes. */
.reason-grid .feature-card {
  display: grid;
  align-content: start;
}

.reason-grid .feature-card__icon {
  display: grid !important;
  place-items: center !important;
  width: 64px !important;
  height: 64px !important;
  min-width: 64px !important;
  min-height: 64px !important;
  max-width: 64px !important;
  max-height: 64px !important;
  margin: 0 auto 14px !important;
  color: #55b9c3 !important;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(232, 246, 244, 0.76)),
    #ffffff !important;
  border: 1px solid rgba(85, 185, 195, 0.36) !important;
  border-radius: 18px !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.82), 0 10px 22px rgba(34, 120, 130, 0.08);
  transform: none !important;
}

.reason-grid .feature-card__icon::before,
.reason-grid .feature-card__icon::after {
  content: none !important;
  display: none !important;
}

.reason-grid .feature-card__icon svg {
  display: block !important;
  width: 34px !important;
  height: 34px !important;
  fill: none !important;
  stroke: currentColor !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
  stroke-width: 1.75 !important;
}

.reason-grid .feature-card--crown .feature-card__icon {
  color: #e7ad2f !important;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 224, 0.9)),
    #ffffff !important;
  border-color: rgba(242, 186, 66, 0.46) !important;
}

.reason-grid .feature-card__photo {
  width: 100%;
  margin: 0 auto 14px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(200, 229, 234, 0.94);
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(34, 120, 130, 0.08);
}

.reason-grid .feature-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 52%;
}

@media (max-width: 760px) {
  .reason-grid .feature-card__icon {
    width: 54px !important;
    height: 54px !important;
    min-width: 54px !important;
    min-height: 54px !important;
    max-width: 54px !important;
    max-height: 54px !important;
    margin: 0 0 10px !important;
  }

  .reason-grid .feature-card__icon svg {
    width: 29px !important;
    height: 29px !important;
  }

  .reason-grid .feature-card__photo {
    aspect-ratio: 16 / 9;
    margin-bottom: 10px;
  }
}

/* Client review revisions: hero photo-first, clearer cards, and non-cropped trainer photo. */
.isekai-lp .hero {
  isolation: isolate;
  min-height: 620px;
  background: #ffffff;
}

.isekai-lp .brand__logo {
  width: 56px;
}

.isekai-lp .hero::before,
.isekai-lp .hero::after {
  display: none;
}

.isekai-lp .hero__inner {
  position: relative;
  display: flex;
  align-items: flex-end;
  width: 100%;
  min-height: 610px;
  padding: 0 0 56px;
  overflow: hidden;
}

.isekai-lp .hero__visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #eef8f8;
  box-shadow: none;
}

.isekai-lp .hero__visual::before,
.isekai-lp .hero__visual::after {
  content: none;
  display: none;
}

.isekai-lp .hero__visual img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center 42%;
}

.isekai-lp .hero__content {
  position: relative;
  z-index: 2;
  width: min(100% - 56px, 660px);
  max-width: 660px;
  margin-right: 28px;
  margin-left: max(28px, calc((100vw - var(--container)) / 2));
  padding: 28px 30px 30px;
  border: 1px solid rgba(196, 228, 232, 0.78);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 22px 58px rgba(20, 69, 82, 0.18);
  backdrop-filter: blur(12px);
}

.isekai-lp .hero__title {
  color: #0b7f85;
}

.isekai-lp .hero__lead,
.isekai-lp .hero__note {
  color: #203943;
}

.isekai-lp .hero__badges {
  margin-top: -34px;
}

.isekai-lp .service-menu-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.isekai-lp .service-card--relax .service-menu-list {
  grid-template-columns: 1fr;
}

.isekai-lp .service-menu-item {
  min-height: 108px;
  padding: 12px 13px;
  border: 1px solid #b9e4e5;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
}

.isekai-lp .service-card--relax .service-menu-item {
  border-color: #bbd6f7;
}

.isekai-lp .service-menu-item h4 {
  margin: 0 0 5px;
  color: #208b92;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.45;
}

.isekai-lp .service-card--relax .service-menu-item h4 {
  color: #3d7ec0;
}

.isekai-lp .service-menu-item p {
  margin: 0;
  color: #42545d;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.65;
}

.isekai-lp .trainer-card__photo img {
  object-position: 58% 35%;
}

.isekai-lp .trainer-card__skills h3 {
  grid-column: 1 / -1;
}

.isekai-lp .trainer-card__skills span {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 7px 15px;
  line-height: 1.45;
}

@media (max-width: 1020px) {
  .isekai-lp .hero {
    min-height: 700px;
  }

  .isekai-lp .hero__inner {
    min-height: 620px;
    padding-bottom: 64px;
  }

  .isekai-lp .hero__content {
    width: min(100% - 56px, 620px);
    margin-right: 28px;
    margin-left: 28px;
  }

  .isekai-lp .trainer-card__photo {
    display: grid;
    place-items: center;
    height: clamp(360px, 60vw, 540px);
    background: #f2fbfa;
  }

  .isekai-lp .trainer-card__photo img {
    width: auto;
    max-width: 100%;
    height: clamp(360px, 60vw, 540px);
    max-height: 100%;
    object-fit: contain;
    object-position: center;
  }

  .isekai-lp .trainer-card__skills {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    align-content: start;
  }

  .isekai-lp .trainer-card__skills h3 {
    margin-bottom: 2px;
    text-align: left;
  }

  .isekai-lp .faq-layout__aside {
    justify-self: center;
    width: min(100%, 520px);
    margin-top: 4px;
    padding: 13px 22px;
    border: 1px solid rgba(188, 224, 230, 0.92);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 24px rgba(30, 88, 103, 0.07);
    text-align: center;
  }

  .isekai-lp .faq-layout__aside p {
    margin: 0;
    line-height: 1.65;
  }
}

@media (max-width: 760px) {
  .isekai-lp .brand__logo {
    width: 44px;
  }

  .isekai-lp .hero {
    min-height: 760px;
  }

  .isekai-lp .hero__inner {
    align-items: end;
    min-height: 680px;
    padding: 22px 0 34px;
  }

  .isekai-lp .hero__content {
    width: min(100% - 28px, var(--container));
    padding: 20px 18px;
    border-radius: 14px;
  }

  .isekai-lp .hero__title,
  .isekai-lp .hero__lead {
    width: auto;
  }

  .isekai-lp .hero__note {
    display: block;
  }

  .isekai-lp .hero__actions {
    grid-template-columns: 1fr;
  }

  .isekai-lp .service-menu-list,
  .isekai-lp .service-card--relax .service-menu-list {
    grid-template-columns: 1fr;
  }

  .isekai-lp .service-menu-item {
    min-height: 0;
    padding: 10px 11px;
  }

  .isekai-lp .service-menu-item h4 {
    font-size: 13px;
  }

  .isekai-lp .service-menu-item p {
    font-size: 11px;
  }

  .isekai-lp .trainer-card__photo {
    height: clamp(320px, 108vw, 430px);
  }

  .isekai-lp .trainer-card__photo img {
    height: clamp(320px, 108vw, 430px);
  }

  .isekai-lp .trainer-card__skills {
    grid-template-columns: 1fr;
  }

  .isekai-lp .trainer-card__skills h3 {
    text-align: center;
  }

  .isekai-lp .faq-layout__aside {
    display: block;
    width: min(100%, 320px);
    padding: 12px 16px;
    font-size: 12px;
    text-align: center;
  }
}

/* Hero final placement: keep the photo unobstructed and place the copy below it. */
.isekai-lp .hero {
  min-height: 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fcfd 100%);
}

.isekai-lp .hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  min-height: 0;
  padding: 0;
  overflow: visible;
}

.isekai-lp .hero__visual {
  position: relative;
  inset: auto;
  z-index: 0;
  grid-row: 1;
  width: 100%;
  height: clamp(360px, 43vw, 560px);
  min-height: 0;
}

.isekai-lp .hero__visual img {
  object-position: center 42%;
}

.isekai-lp .hero__content {
  grid-row: 2;
  width: min(100% - 56px, 980px);
  max-width: 980px;
  margin: 20px auto 0;
  padding: 30px 34px 32px;
}

.isekai-lp .hero__badges {
  margin-top: 18px;
}

.isekai-lp .section--service {
  padding-bottom: 0;
}

.isekai-lp .service-copy {
  margin: 24px 0 0;
}

.isekai-lp .section--pricing {
  padding-top: 32px;
  padding-bottom: 0;
}

.isekai-lp .student-note {
  margin-bottom: 32px;
}

.isekai-lp #pricing .section-actions {
  align-items: center;
}

.isekai-lp .section--trainer {
  padding-top: 32px;
}

.isekai-lp .section--faq {
  padding-bottom: 0;
}

.isekai-lp .section--contact {
  padding-top: 28px;
}

@media (max-width: 1020px) {
  .isekai-lp .hero {
    min-height: 0;
  }

  .isekai-lp .hero__inner {
    min-height: 0;
    padding: 0;
  }

  .isekai-lp .hero__visual {
    height: clamp(320px, 54vw, 520px);
  }

  .isekai-lp .hero__content {
    width: min(100% - 32px, 780px);
    margin: 18px auto 0;
  }

  .isekai-lp .service-copy {
    margin-top: 24px;
  }
}

@media (max-width: 760px) {
  .isekai-lp .hero {
    min-height: 0;
  }

  .isekai-lp .hero__inner {
    min-height: 0;
    padding: 0;
  }

  .isekai-lp .hero__visual {
    height: 300px;
  }

  .isekai-lp .hero__content {
    width: min(100% - 28px, var(--container));
    margin-top: 16px;
    padding: 20px 18px;
  }

  .isekai-lp .hero__badges {
    margin-top: 14px;
  }

  .isekai-lp .service-copy {
    margin-top: 18px;
  }
}

/* Client revision 2026-05-27: add fee details. */
.isekai-lp .pricing-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: -18px 0 28px;
}

.isekai-lp .pricing-notes p {
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 14px 16px;
  border: 1px solid #cbe5eb;
  border-radius: 10px;
  background: #ffffff;
  color: #3d5059;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.75;
  box-shadow: 0 8px 20px rgba(30, 88, 103, 0.06);
}

.isekai-lp .pricing-notes strong {
  color: #168c91;
  font-size: 15px;
  font-weight: 900;
}

.isekai-lp .access-card__list a,
.isekai-lp .site-footer__address {
  color: inherit;
}

/* Browser comment 2026-05-28: give the header logo more breathing room. */
.isekai-lp .site-header__inner {
  width: min(100% - 64px, var(--container));
}

.isekai-lp .site-header .brand {
  min-width: 54px;
  align-items: center;
  padding: 8px 0;
}

.isekai-lp .site-header .brand__logo {
  width: 42px;
  max-height: 52px;
}

/* Browser comment 2026-05-28: add outer spacing below the first view. */
.isekai-lp .hero {
  margin-bottom: 28px;
}

/* Browser comment 2026-06-09: soften elevated surfaces sitewide. */
.isekai-lp {
  --shadow-card: 0 7px 18px rgba(20, 88, 100, 0.055);
  --shadow-soft: 0 5px 14px rgba(20, 88, 100, 0.045);
  --shadow-button: 0 5px 12px rgba(255, 104, 107, 0.13);
}

.isekai-lp .site-header {
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.86), 0 5px 14px rgba(30, 79, 92, 0.035);
}

.isekai-lp .site-header--scrolled {
  box-shadow: 0 6px 16px rgba(28, 76, 88, 0.06);
}

.isekai-lp .site-nav {
  box-shadow: 0 10px 28px rgba(23, 67, 78, 0.08);
}

.isekai-lp .button {
  box-shadow: var(--shadow-button);
}

.isekai-lp .button:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(255, 104, 107, 0.14);
}

.isekai-lp .button--green,
.isekai-lp .button--green:hover {
  box-shadow: 0 5px 12px rgba(39, 176, 102, 0.14);
}

.isekai-lp .button--outline,
.isekai-lp .button--outline:hover {
  box-shadow: 0 3px 8px rgba(34, 120, 130, 0.06);
}

.isekai-lp .contact-form,
.isekai-lp .line-card,
.isekai-lp .access-card,
.isekai-lp .pricing-card,
.isekai-lp .feature-card,
.isekai-lp .service-card,
.isekai-lp .trainer-card,
.isekai-lp .review-card,
.isekai-lp .flow-card,
.isekai-lp .faq-layout__aside,
.isekai-lp .faq-item,
.isekai-lp .pain-card,
.isekai-lp .highlight-card,
.isekai-lp .student-note,
.isekai-lp .news-item {
  box-shadow: var(--shadow-soft);
}

.isekai-lp .sticky-cta {
  box-shadow: 0 -4px 12px rgba(17, 91, 106, 0.08);
}

.isekai-lp .sticky-cta__item {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5), 0 2px 6px rgba(34, 82, 94, 0.08);
}

/* Browser comment 2026-06-09: make service photos large enough to read. */
.isekai-lp .service-card__image-grid,
.isekai-lp .service-card__image-grid--three,
.isekai-lp .service-card__image-grid--relax {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.isekai-lp .service-card__image-grid img {
  aspect-ratio: 1 / 1;
  height: auto;
}

/* Browser comment 2026-06-09: show access photos without cropping. */
.isekai-lp .access-card__map.access-card__photos {
  height: auto;
  align-items: stretch;
  gap: 14px;
}

.isekai-lp .access-card__photos img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
  object-position: center;
  background: #f7fbfc;
  border: 1px solid rgba(200, 229, 234, 0.9);
}

@media (max-width: 760px) {
  .isekai-lp .access-card__photos img {
    height: auto;
    min-height: 0;
  }
}

/* Browser comment 2026-06-09: keep first-view text panel flat. */
.isekai-lp .hero__content {
  box-shadow: none;
}

/* Browser comment 2026-06-09: keep first-view feature badges flat. */
.isekai-lp .hero__badges .mini-badge,
.isekai-lp .hero__badges .mini-badge:hover {
  box-shadow: none;
}

/* Browser comment 2026-06-09: keep first-view CTA buttons flat. */
.isekai-lp .hero__actions .button,
.isekai-lp .hero__actions .button:hover,
.isekai-lp .hero__actions .button:active {
  box-shadow: none;
}

@media (max-width: 1020px) {
  .isekai-lp .pricing-notes {
    grid-template-columns: 1fr;
    margin-top: -12px;
  }

}

@media (max-width: 760px) {
  .isekai-lp .pricing-notes {
    gap: 10px;
    margin: -8px 0 20px;
  }

  .isekai-lp .pricing-notes p {
    padding: 12px 13px;
    font-size: 12px;
  }

  .isekai-lp .pricing-notes strong {
    font-size: 13px;
  }

  .isekai-lp .site-header__inner {
    width: min(100% - 48px, var(--container));
  }

  .isekai-lp .site-header .brand__logo {
    width: 38px;
    max-height: 46px;
  }

  .isekai-lp .hero {
    margin-bottom: 24px;
  }

  /* Browser comment 2026-05-28: add space below the bottom hero badges. */
  .isekai-lp .hero__badges {
    margin-bottom: 24px;
  }

  /* Browser comment 2026-05-28: match hero lead and note at readable mobile size. */
  .isekai-lp .hero__lead,
  .isekai-lp .hero__note {
    font-size: 14px;
    line-height: 1.85;
  }

  /* Browser comment 2026-05-28: keep wrapped trainer skill text left-aligned. */
  .isekai-lp .trainer-card__skills span {
    justify-content: flex-start;
    text-align: left;
  }

  /* Browser comment 2026-05-28: stack flow cards vertically on mobile. */
  .isekai-lp .flow-grid {
    grid-template-columns: 1fr;
    overflow-x: visible;
    gap: 12px;
    padding-bottom: 0;
    scroll-snap-type: none;
  }

  .isekai-lp .flow-card {
    min-height: 0;
    padding: 18px 16px;
    scroll-snap-align: none;
  }
}
