/* ===== CSS VARIABLES & RESET ===== */

:root {
  --gold: #B18F5B;
  --gold-light: #c9a96e;
  --gold-dark: #8a6f45;
  --dark: #333333;
  --dark-deep: #1a1a1a;
  --text-dark: #333;
  --text-light: #ffffff;
  --text-gray: #666;
  --bg-light: #F9F9F9;
  --bg-white: #ffffff;
  --bg-dark: #2a2a2a;
  --font-main: 'Noto Sans JP', sans-serif;
  --font-accent: 'Playfair Display', serif;
  --font-cursive: 'Dancing Script', cursive;
  --font-mincho: 'Noto Serif JP', serif;
  --max-width: 1200px;
  --header-h: 72px;
  --transition: 0.3s ease;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  line-height: 1.8;
  background: var(--bg-white);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.sp-only {
  display: none;
}

/* ===== ANIMATIONS ===== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== SECTION COMMON ===== */
.section {
  padding: 100px 0;
}

.section--light {
  background: var(--bg-light);
}

.section--dark {
  background: var(--bg-dark);
}

.section--marble {
  background: var(--dark) url('images/marble-bg.png') center/cover;
  position: relative;
}

.section--marble::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(30, 30, 30, 0.55);
}

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

.section-label {
  font-family: var(--font-cursive);
  font-size: 3.5rem;
  letter-spacing: 0.05em;
  color: var(--gold);
  margin-bottom: 4px;
  font-weight: 700;
  line-height: 1;
}

.section-label--light {
  color: var(--gold-light);
}

.section-title {
  font-family: var(--font-main);
  font-size: 1.8rem;
  font-style: italic;
  font-weight: 700;
  margin-bottom: 48px;
  line-height: 1.5;
}

.section-title--light {
  color: var(--text-light);
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
  height: var(--header-h);
}

.header__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 20px;
}

.header__logo {
  display: flex;
  align-items: center;
  height: 100%;
}

.header__logo img {
  height: 44px;
  width: auto;
}

.logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--text-gray);
}

.logo-main {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--text-dark);
  letter-spacing: 0.05em;
}

.header__nav-list {
  display: flex;
  gap: 4px;
}

.header__nav-list li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 12px;
  font-size: 0.78rem;
  font-weight: 500;
  transition: color var(--transition);
  border-bottom: 2px solid transparent;
}

.header__nav-list li a small {
  font-size: 0.6rem;
  color: var(--text-gray);
  letter-spacing: 0.05em;
  margin-top: 2px;
}

.header__nav-list li a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.header__contact-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 24px;
  background: var(--dark);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: 999px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition), color var(--transition), border-color var(--transition);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

.header__contact-btn small {
  font-size: 0.58rem;
  letter-spacing: 0.05em;
  margin-top: 2px;
  opacity: 0.95;
}

.header__contact-btn:hover {
  background: var(--gold);
  transform: translateY(-1px);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 16px;
}

.header__contact-btn--outline {
  background: linear-gradient(135deg, var(--gold), #b38a48);
  border: 2px solid var(--gold);
}

.header__contact-btn--outline:hover {
  background: linear-gradient(135deg, var(--gold-dark), #9b7231);
  border-color: var(--gold-dark);
}

.header__contact-btn--line {
  background: #06C755;
  border: 2px solid #06C755;
}

.header__contact-btn--line:hover {
  background: #04ad4a;
  border-color: #04ad4a;
}

.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.header__hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--dark);
  transition: var(--transition);
}

/* ===== FLOATING CTA ===== */
.floating-cta {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.floating-cta__btn {
  display: block;
  width: 48px;
  padding: 20px 0;
  font-size: 0.78rem;
  font-weight: 700;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: 0.2em;
  text-align: center;
  transition: var(--transition);
  line-height: 48px;
}

.floating-cta__btn span {
  writing-mode: inherit;
  text-orientation: inherit;
}

.floating-cta__btn--doc {
  background: var(--gold);
  color: #fff;
  border: 2px solid var(--gold);
}

.floating-cta__btn--doc:hover {
  background: var(--gold-dark);
}

.floating-cta__btn--consult {
  background: rgba(255, 255, 255, 0.9);
  color: var(--gold);
  border: 2px solid var(--gold);
}

.floating-cta__btn--consult:hover {
  background: var(--gold);
  color: #fff;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: var(--header-h);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url('images/hero-bg.png') center/cover no-repeat;
  transform: scale(1.08);
  opacity: 0;
  animation: heroBgReveal 1.4s ease-out forwards;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  opacity: 0;
  animation: heroBgReveal 1.4s ease-out forwards;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
  opacity: 0;
  animation: heroOverlayReveal 1s ease-out 0.1s forwards;
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: left;
  padding: 0 60px;
  max-width: 1200px;
  width: 100%;
}

.hero__title {
  margin-bottom: 32px;
  font-style: italic;
}

.hero__title-line {
  display: block;
  margin-bottom: 8px;
  opacity: 0;
  transform: translateX(-44px);
  filter: blur(8px);
  animation: heroCopySlideIn 0.82s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero__title-line:nth-child(1) {
  animation-delay: 0.35s;
}

.hero__title-line:nth-child(2) {
  animation-delay: 0.5s;
}

.hero__title-line:nth-child(3) {
  animation-delay: 0.65s;
}

.hero__title-highlight {
  display: inline;
  background: rgba(160, 130, 80, 0.85);
  color: #fff;
  font-size: 2.5rem;
  font-weight: 900;
  padding: 6px 16px;
  line-height: 1.6;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.hero__subtitle {
  margin-bottom: 48px;
  opacity: 0;
  transform: translateX(-32px);
  filter: blur(8px);
  animation: heroCopySlideIn 0.82s cubic-bezier(0.22, 1, 0.36, 1) 0.82s forwards;
}

.hero__subtitle-highlight {
  display: inline;
  background: rgba(50, 50, 50, 0.8);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  padding: 8px 20px;
  letter-spacing: 0.05em;
}

.hero__badges {
  display: flex;
  gap: 24px;
}

.hero__badge {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.4;
  padding: 16px;
  position: relative;
  opacity: 0;
  transform: translateY(48px) scale(0.82);
  animation: heroBadgePop 0.72s cubic-bezier(0.2, 0.9, 0.25, 1.2) forwards;
}

.hero__badge:nth-child(1) {
  animation-delay: 1.02s;
}

.hero__badge:nth-child(2) {
  animation-delay: 1.16s;
}

.hero__badge:nth-child(3) {
  animation-delay: 1.3s;
}

.hero__badge::before {
  content: '';
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

@keyframes heroBgReveal {
  0% {
    opacity: 0;
    transform: scale(1.08);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}

@keyframes heroOverlayReveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes heroCopySlideIn {
  0% {
    opacity: 0;
    transform: translateX(-44px);
    filter: blur(8px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
}

@keyframes heroBadgePop {
  0% {
    opacity: 0;
    transform: translateY(48px) scale(0.82);
  }
  70% {
    opacity: 1;
    transform: translateY(-6px) scale(1.03);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__bg,
  .hero__overlay,
  .hero__title-line,
  .hero__subtitle,
  .hero__badge {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

.hero__badge-line {
  display: block;
  white-space: nowrap;
}

.hero__badge-num {
  font-family: var(--font-accent);
  font-size: 2.8rem;
  font-weight: 700;
  font-style: italic;
  color: var(--gold-light);
  line-height: 1;
  vertical-align: -0.15em;
}

/* ===== ABOUT ===== */
.about__block {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  margin-bottom: 80px;
}

.about__block--reverse {
  flex-direction: row-reverse;
}

.about__img {
  flex: 0 0 45%;
}

.about__img img {
  width: 100%;
  border-radius: 4px;
}

.about__text {
  flex: 1;
}

.about__text p:not(.section-label) {
  margin-bottom: 16px;
  line-height: 2;
  color: var(--text-gray);
}

/* ===== WHY ===== */
.why__cards {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.why__card {
  background: var(--bg-white);
  border-radius: 8px;
  padding: 40px 48px;
}

.why__card-reason {
  font-family: var(--font-accent);
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 600;
}

.why__card-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.5;
}

.why__card-text {
  color: var(--text-gray);
  line-height: 2;
}

.why__chart {
  margin-top: 24px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 16px;
}


.why__card--flex {
  display: flex;
  gap: 40px;
  align-items: center;
}

.why__card--reverse {
  flex-direction: row-reverse;
}

.why__card-body {
  flex: 1;
}

.why__card-img {
  width: 240px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.why__card-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .why__card--flex {
    flex-direction: column-reverse;
    gap: 24px;
  }
  .why__card--reverse {
    flex-direction: column-reverse;
  }
  .why__card-img {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
}

.why__chart-svg {
  width: 100%;
  max-width: 500px;
}

.why__img {
  margin-top: 24px;
  border-radius: 4px;
  overflow: hidden;
}

.why__img img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== RECOMMEND ===== */
.recommend__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.recommend__item {
  text-align: center;
  padding: 32px 16px;
  background: var(--bg-light);
  border-radius: 12px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.recommend__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.recommend__icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 16px;
}

.recommend__icon svg {
  width: 100%;
  height: 100%;
}

.recommend__item p {
  font-weight: 500;
  line-height: 1.6;
}

.recommend__note {
  text-align: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gold);
  line-height: 1.8;
}

/* ===== COMPANY ===== */
.company__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.company__card {
  background: var(--dark-deep);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  border-radius: 8px;
}

.company__card-img {
  height: 200px;
  overflow: hidden;
}

.company__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transition: transform 0.5s ease;
}

.company__card:hover .company__card-img img {
  transform: scale(1.05);
}

.company__card-body {
  padding: 24px;
  color: #fff;
}

.company__card-type {
  font-size: 0.75rem;
  color: var(--gold);
  margin-bottom: 4px;
}

.company__card-name {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.company__card-body h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.5;
}

.company__card-body p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 16px;
}

.company__card-link {
  display: inline-block;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition);
}

.company__card-link:hover {
  color: var(--gold-light);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 80px 0;
  text-align: center;
}

.cta-banner__title {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-banner__sub {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
}

.cta-banner__btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 4px;
  transition: all var(--transition);
  letter-spacing: 0.05em;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn--gold {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.btn--gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

.btn--gold-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn--gold-outline:hover {
  background: var(--gold);
  color: #fff;
}

.btn--dark {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}

.btn--dark:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.btn--sm {
  padding: 10px 24px;
  font-size: 0.85rem;
}

/* ===== SERVICE ===== */
.service__block {
  display: flex;
  gap: 60px;
  align-items: center;
}

.service__img {
  flex: 0 0 50%;
}

.service__img img {
  width: 100%;
  border-radius: 4px;
}

.service__text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.5;
}

.service__text p {
  color: var(--text-gray);
  margin-bottom: 24px;
  line-height: 2;
}

/* ===== MERIT ===== */
.merit__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.merit__item {
  display: flex;
  background: var(--bg-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.merit__item-img {
  flex: 0 0 40%;
  min-height: 250px;
}

.merit__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 250px;
}

.merit__item-img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 250px;
}

.merit__item-img-placeholder--1 {
  background: linear-gradient(135deg, #2a3a4a, #1a2530);
}

.merit__item-img-placeholder--2 {
  background: linear-gradient(135deg, #3a2a1a, #2a1810);
}

.merit__item-img-placeholder--3 {
  background: linear-gradient(135deg, #1a3a2a, #102820);
}

.merit__item-img-placeholder--4 {
  background: linear-gradient(135deg, #3a3a1a, #282810);
}

.merit__item-img-placeholder--5 {
  background: linear-gradient(135deg, #2a1a3a, #1a1028);
}

.merit__item-img-placeholder--6 {
  background: linear-gradient(135deg, #1a2a3a, #101828);
}

.merit__item-body {
  flex: 1;
  padding: 36px 40px;
}

.merit__item-num {
  font-family: var(--font-accent);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.merit__item-body h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.merit__item-sub {
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px !important;
}

.merit__item-body p {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 8px;
}

/* ===== SIMULATION ===== */
.simulation__sub-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: center;
}

.simulation__table-wrap {
  margin-bottom: 60px;
}

.simulation__table {
  width: 100%;
  max-width: 700px;
  margin: 0 auto 16px;
  border-collapse: collapse;
}

.simulation__table th,
.simulation__table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}

.simulation__table th {
  background: var(--dark);
  color: #fff;
  font-weight: 500;
  font-size: 0.9rem;
}

.simulation__table td:last-child {
  text-align: right;
}

.simulation__table-total td {
  font-weight: 700;
  font-size: 1.1rem;
  background: var(--bg-light);
  border-top: 2px solid var(--gold);
}

.simulation__note {
  font-size: 0.8rem;
  color: var(--text-gray);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.simulation__table--3col {
  max-width: 900px;
}

.simulation__table--3col td:nth-child(2),
.simulation__table--3col td:nth-child(3),
.simulation__table--3col th:nth-child(2),
.simulation__table--3col th:nth-child(3) {
  text-align: right;
}

.simulation__table--revenue {
  max-width: 800px;
  margin-bottom: 24px;
}

.simulation__table--revenue td:nth-child(2),
.simulation__table--revenue td:nth-child(3),
.simulation__table--revenue th:nth-child(2),
.simulation__table--revenue th:nth-child(3) {
  text-align: right;
}

.simulation__table-revenue-top td {
  background: #f0f7ff !important;
  font-weight: 700;
}

.simulation__table--revenue tbody td:nth-child(2) {
  filter: blur(6px);
  user-select: none;
}

.simulation__table-subtotal td {
  background: var(--bg-light) !important;
  border-top: 1px solid #ccc;
}


.simulation__stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.simulation__stat {
  text-align: center;
  padding: 32px 24px;
  background: var(--bg-light);
  border-radius: 8px;
  min-width: 200px;
  border: 1px solid #e8e8e8;
}

.simulation__stat-label {
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.simulation__stat-value {
  font-size: 1.1rem;
  font-weight: 700;
}

.simulation__stat-value span {
  font-family: var(--font-accent);
  font-size: 3rem;
  color: var(--gold);
  font-weight: 700;
  font-style: italic;
  line-height: 1;
}

.simulation__cta {
  text-align: center;
  margin-top: 32px;
}

/* ===== VALUE ===== */
.value__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.value__item {
  display: flex;
  gap: 40px;
  align-items: center;
  background: var(--bg-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.value__item--reverse {
  flex-direction: row-reverse;
}

.value__item-img {
  flex: 0 0 40%;
}

.value__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 250px;
}

.value__item-img-placeholder {
  width: 100%;
  height: 250px;
  background: linear-gradient(135deg, var(--dark), #444);
}

.value__item-body {
  flex: 1;
  padding: 32px 40px 32px 0;
}

.value__item--reverse .value__item-body {
  padding: 32px 0 32px 40px;
}

.value__item-badge {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.value__item-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.5;
}

.value__item-body p {
  color: var(--text-gray);
  line-height: 1.8;
}

/* ===== REASON ===== */
.reason__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.reason__item {
  text-align: center;
}

.reason__item-img {
  margin-bottom: 24px;
}

.reason__item-circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--dark);
  border: 2px solid var(--gold);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  color: #fff;
  text-align: center;
}

.reason__item-num {
  display: block;
  font-size: 0.85rem;
  color: var(--gold-light);
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.reason__item-title {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.4;
}

.reason__item-title small {
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
}

.reason__item p {
  color: var(--text-gray);
  line-height: 1.8;
  text-align: left;
}

/* ===== COMPARE TABLE ===== */
.compare {
  margin-top: 80px;
}

.compare__table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.compare__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.compare__th-empty {
  width: 120px;
  background: #fff;
  border: none;
}

.compare__th-brand {
  background: var(--gold);
  color: #fff;
  text-align: center;
  padding: 20px 16px;
  font-size: 0.9rem;
  font-weight: 700;
  width: 35%;
}

.compare__brand-sub {
  display: block;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}

.compare__brand-name {
  display: block;
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.compare__th-other {
  background: #999;
  color: #fff;
  text-align: center;
  padding: 20px 16px;
  font-size: 1rem;
  font-weight: 700;
}

.compare__table tbody tr {
  border-bottom: 1px solid #e8e8e8;
}

.compare__table tbody tr:nth-child(odd) {
  background: #fafafa;
}

.compare__table tbody tr:nth-child(even) {
  background: #fff;
}

.compare__category {
  padding: 20px 16px;
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
  color: var(--text-dark);
  white-space: nowrap;
}

.compare__brand-cell {
  padding: 20px 16px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  background: rgba(177, 143, 91, 0.08) !important;
  line-height: 1.6;
}

.compare__brand-cell small {
  font-weight: 400;
  font-size: 0.75rem;
  color: var(--text-gray);
}

.compare__other-cell {
  padding: 20px 16px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-gray);
  line-height: 1.6;
}

.compare__mark {
  display: block;
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 4px;
}

.compare__mark--good {
  color: var(--gold);
}

.compare__mark--mid {
  color: #aaa;
}

.compare__mark--bad {
  color: #ccc;
}

/* ===== FLOW ===== */
.flow__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 20px 0;
}

.flow__step {
  text-align: center;
  flex: 0 0 auto;
  width: 170px;
}

.flow__step-icon {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  padding: 28px;
}

.flow__step-icon svg {
  width: 100%;
  height: 100%;
}

.flow__step-num {
  color: var(--gold);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: 0.08em;
}

.flow__step-text {
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.5;
}

.flow__step-arrow {
  color: var(--gold);
  font-size: 1.5rem;
  margin-top: 55px;
}

/* ===== FAQ ===== */
.faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid #e0e0e0;
}

.faq__question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  font-family: var(--font-main);
  transition: color var(--transition);
}

.faq__question:hover {
  color: var(--gold);
}

.faq__q-mark {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.faq__toggle {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-left: auto;
  position: relative;
}

.faq__toggle::before,
.faq__toggle::after {
  content: '';
  position: absolute;
  background: var(--dark);
  transition: transform var(--transition);
}

.faq__toggle::before {
  width: 20px;
  height: 2px;
  top: 9px;
  left: 0;
}

.faq__toggle::after {
  width: 2px;
  height: 20px;
  top: 0;
  left: 9px;
}

.faq__question[aria-expanded="true"] .faq__toggle::after {
  transform: rotate(90deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq__answer p {
  padding: 0 0 20px 52px;
  color: var(--text-gray);
  line-height: 1.8;
}

.faq__item.is-open .faq__answer {
  max-height: 500px;
}

/* ===== MESSAGE ===== */
.section--message {
  background: var(--dark) url('images/message-bg.png') center/cover no-repeat;
  position: relative;
}

.section--message::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 20, 0.7);
}

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

.message__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.message__lead {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 24px;
}

.message__content p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 2;
  margin-bottom: 16px;
}

/* ===== SUBPAGE STYLES ===== */
.sub-hero {
  position: relative;
  height: 300px;
  background: var(--dark-deep) url('images/hero-bg.png') right 31%/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  margin-top: var(--header-h);
}

.sub-hero--company {
  background-position: right 31% !important;
}

.sub-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 20, 0.7);
}

.sub-hero__content {
  position: relative;
  z-index: 1;
}

.sub-hero__title {
  font-family: var(--font-en);
  font-size: 2.5rem;
  letter-spacing: 0.05em;
  color: var(--gold);
  margin-bottom: 8px;
}

.sub-hero__title-ja {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

.breadcrumb {
  background: var(--bg-light);
  padding: 16px 20px;
  font-size: 0.75rem;
}

.breadcrumb__list {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: 8px;
  color: var(--text-gray);
}

.breadcrumb__list li::after {
  content: '>';
  margin-left: 8px;
  color: #ccc;
}

.breadcrumb__list li:last-child::after {
  display: none;
}

.breadcrumb__list li a {
  color: var(--dark);
}

.breadcrumb__list li a:hover {
  text-decoration: underline;
}

.page-recruit .sub-hero,
.page-recruit .breadcrumb {
  display: none;
}

.page-recruit .sub-page {
  padding-top: 0;
}

.floating-cta--recruit {
  top: auto;
  bottom: 28px;
  transform: none;
  z-index: 1001;
}

.floating-cta--recruit .floating-cta__btn {
  width: 72px;
  min-height: 232px;
  padding: 18px 0 20px;
  border-radius: 18px 0 0 18px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 14px 28px rgba(98, 73, 33, 0.18);
}

.floating-cta--recruit .floating-cta__btn--doc {
  background: linear-gradient(180deg, var(--gold), var(--gold-dark));
  border-color: var(--gold);
}

.floating-cta--recruit .floating-cta__btn--doc:hover {
  background: linear-gradient(180deg, var(--gold-dark), #8f6b2f);
}

.floating-cta--recruit .floating-cta__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.sub-page {
  padding: 80px 0;
  min-height: 50vh;
  background: #fdfdfd;
}

.sub-page__content {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 60px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.sub-page__content h2 {
  font-size: 1.5rem;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
}

.sub-page__content p {
  line-height: 1.8;
  margin-bottom: 24px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark-deep);
  color: #fff;
  padding: 60px 0 24px;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__logo {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.footer__address {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
  line-height: 1.8;
}

.footer__sns {
  display: flex;
  gap: 12px;
}

.footer__sns a {
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}

.footer__sns a:hover {
  color: var(--gold);
}

.footer__links {
  display: flex;
  gap: 60px;
}

.footer__links ul li {
  margin-bottom: 8px;
}

.footer__links ul li a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition);
}

.footer__links ul li a:hover {
  color: var(--gold);
}

.footer__links ul li a small {
  margin-left: 8px;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer__bottom {
  text-align: center;
}

.footer__bottom-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.footer__privacy {
  display: inline-block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}

.footer__privacy:hover {
  color: var(--gold);
}

.footer__copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .header__nav-list li a {
    padding: 8px 8px;
    font-size: 0.72rem;
  }

  .hero__title-highlight {
    font-size: 2rem;
  }

  .company__cards {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 60px;
  }

  .sp-only {
    display: inline;
  }

  .header__logo img {
    height: 38px;
  }

  /* Header Mobile */
  .header__nav {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 32px 24px;
    overflow-y: auto;
  }

  .header__nav.is-open {
    display: block;
  }

  .header__nav-list {
    flex-direction: column;
    gap: 0;
  }

  .header__nav-list li a {
    flex-direction: row;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid #eee;
    font-size: 1rem;
  }

  .header__actions {
    display: none;
  }

  .header__hamburger {
    display: flex;
  }

  .header__hamburger.is-open span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

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

  .header__hamburger.is-open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .floating-cta {
    display: none;
  }

  /* Hero Mobile */
  .hero {
    min-height: 500px;
    height: auto;
    padding: 80px 0;
  }

  .hero__bg {
    background-image: url('images/hero-bg-sp.png');
    background-position: 42% center;
  }

  .hero__video {
    display: none;
  }

  .hero__content {
    padding: 0 20px;
  }

  .hero__title-highlight {
    font-size: 1.4rem;
  }

  .hero__subtitle-highlight {
    font-size: 1rem;
  }

  .hero__badges {
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
  }

  .hero__badge {
    width: 130px;
    height: 130px;
    font-size: 0.78rem;
  }

  .hero__badge-num {
    font-size: 2rem;
  }

  /* Sections Mobile */
  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.4rem;
    margin-bottom: 32px;
  }

  .about__block,
  .about__block--reverse {
    flex-direction: column;
    gap: 24px;
  }

  .about__img {
    flex: 0 0 auto;
  }

  .why__card {
    padding: 24px;
  }

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

  .recommend__note {
    font-size: 0.95rem;
  }

  .service__block {
    flex-direction: column;
    gap: 24px;
  }

  .service__img {
    flex: 0 0 auto;
  }

  .merit__item {
    flex-direction: column;
  }

  .merit__item-img {
    flex: 0 0 auto;
    height: 200px;
  }

  .merit__item-body {
    padding: 24px;
  }

  .simulation__stats {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .simulation__stat {
    width: 100%;
    max-width: 300px;
  }

  .value__item,
  .value__item--reverse {
    flex-direction: column;
  }

  .value__item-img {
    flex: 0 0 auto;
  }

  .value__item-body,
  .value__item--reverse .value__item-body {
    padding: 24px;
  }

  .reason__list {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .reason__item-circle {
    width: 140px;
    height: 140px;
  }

  .flow__steps {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .flow__step-arrow {
    transform: rotate(90deg);
    margin-top: 0;
  }

  .cta-banner__title {
    font-size: 1.4rem;
  }

  .cta-banner__btns {
    flex-direction: column;
    align-items: center;
  }

  .footer__top {
    flex-direction: column;
    gap: 32px;
  }

  .footer__links {
    gap: 32px;
  }

  .footer__bottom-btns {
    flex-direction: column;
    align-items: center;
  }

  /* Subpage Mobile */
  .sub-hero {
    height: 200px;
  }
  .sub-hero__title {
    font-size: 1.8rem;
  }
  .sub-page {
    padding: 60px 0;
  }
  .sub-page__content {
    padding: 32px 20px;
    border-radius: 0;
  }
}

/* ===== RECRUIT PAGE ===== */
.recruit-concept__title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--gold);
}

.recruit-concept--hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  margin-top: var(--header-h);
  overflow: hidden;
  background:
    linear-gradient(rgba(18, 18, 18, 0.66), rgba(18, 18, 18, 0.78)),
    var(--dark-deep) url('images/recruit-hero-bg.png') center/cover no-repeat;
}

.recruit-concept--hero .container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 42px 48px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(16, 16, 16, 0.18) 0%, rgba(16, 16, 16, 0.28) 100%);
  backdrop-filter: blur(2px);
}

.recruit-concept--hero .container > * {
  position: relative;
  z-index: 3;
}

.recruit-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0;
  transform: scale(1.04);
  animation: heroBgReveal 1.4s ease-out forwards;
}

.recruit-hero__curtain {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.recruit-hero__curtain-panel {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  background: linear-gradient(90deg, rgba(17, 17, 17, 0.72) 0%, rgba(17, 17, 17, 0.48) 72%, rgba(17, 17, 17, 0.18) 100%);
  backdrop-filter: blur(2px);
}

.recruit-hero__curtain-panel--left {
  left: 0;
  animation: recruitCurtainLeft 1.2s cubic-bezier(0.7, 0, 0.2, 1) 0.15s forwards;
}

.recruit-hero__curtain-panel--right {
  right: 0;
  background: linear-gradient(270deg, rgba(17, 17, 17, 0.72) 0%, rgba(17, 17, 17, 0.48) 72%, rgba(17, 17, 17, 0.18) 100%);
  animation: recruitCurtainRight 1.2s cubic-bezier(0.7, 0, 0.2, 1) 0.15s forwards;
}

.recruit-concept--hero::before {
  content: '';
  position: absolute;
  left: 8%;
  top: 22%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(177, 143, 91, 0.22) 0%, rgba(177, 143, 91, 0.04) 62%, rgba(177, 143, 91, 0) 100%);
  filter: blur(2px);
}

.recruit-hero__eyebrow {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
  opacity: 0;
  animation: recruitHeroReveal 0.8s ease 0.7s forwards;
}

.recruit-hero__eyebrow span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(177, 143, 91, 0.88);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

.recruit-concept--hero .section-label {
  margin-bottom: 20px;
}

.recruit-concept__subtitle {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 700;
  margin-bottom: 40px;
  color: #fff;
  letter-spacing: 0.1em;
}

.recruit-concept__text p {
  color: #ccc;
  line-height: 2;
  margin-bottom: 24px;
}

.recruit-concept--hero .recruit-concept__title {
  font-size: clamp(2.3rem, 6vw, 4.4rem);
  line-height: 1.25;
  margin-bottom: 24px;
  color: #fff;
  font-style: italic;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  opacity: 0;
  animation: recruitHeroReveal 0.9s ease 0.95s forwards;
}

.recruit-concept--hero .recruit-concept__subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  letter-spacing: 0.18em;
  margin-bottom: 32px;
  color: var(--gold-light);
  font-style: italic;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
  opacity: 0;
  animation: recruitHeroReveal 0.9s ease 1.15s forwards;
}

.recruit-concept--hero .recruit-concept__text p {
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.28);
}

.recruit-concept--hero .recruit-concept__text {
  opacity: 0;
  animation: recruitHeroReveal 1s ease 1.35s forwards;
}

.recruit-hero__stats {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-top: 44px;
  flex-wrap: wrap;
}

.recruit-hero__stat {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(4px);
  opacity: 0;
  animation: recruitHeroReveal 0.8s ease 1.58s forwards;
}

.recruit-hero__stat--accent {
  background: rgba(16, 16, 16, 0.38);
  border-color: rgba(177, 143, 91, 0.55);
}

.recruit-hero__stat strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-light);
  font-size: 1.7rem;
  font-weight: 700;
  font-style: italic;
}

.recruit-hero__stat span {
  font-size: 0.9rem;
  line-height: 1.6;
  font-weight: 600;
}

.recruit-hero__stat:nth-child(2) {
  animation-delay: 1.72s;
}

.recruit-hero__stat:nth-child(3) {
  animation-delay: 1.84s;
}

@keyframes recruitCurtainLeft {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(-100%);
    opacity: 0;
  }
}

@keyframes recruitCurtainRight {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(100%);
    opacity: 0;
  }
}

@keyframes recruitHeroReveal {
  0% {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@media screen and (max-width: 768px) {
  .recruit-concept--hero {
    min-height: auto;
    padding: 140px 0 96px;
    background-image:
      linear-gradient(rgba(31, 27, 25, 0.44), rgba(31, 27, 25, 0.44)),
      url('images/recruit-hero-bg-sp.png');
    background-position: 64% center;
  }

  .recruit-hero__video {
    display: none;
  }

  .recruit-hero__curtain-panel {
    width: 52%;
  }

  .recruit-concept--hero::before,
  .recruit-concept--hero::after {
    display: none;
  }

  .recruit-hero__eyebrow {
    gap: 8px;
    margin-bottom: 22px;
  }

  .recruit-hero__eyebrow span {
    min-height: 34px;
    padding: 0 14px;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
  }

  .recruit-hero__stats {
    gap: 14px;
    margin-top: 36px;
  }

  .recruit-hero__stat {
    width: 112px;
    height: 112px;
    padding: 16px;
  }

  .recruit-hero__stat strong {
    font-size: 1rem;
    margin-bottom: 4px;
  }

  .recruit-hero__stat span {
    font-size: 0.72rem;
    line-height: 1.45;
  }
}

.recruit-message {
  background: linear-gradient(180deg, #f7f3ec 0%, #ffffff 100%);
  padding-top: 88px;
}

.recruit-message__card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 40px;
  align-items: center;
  padding: 0;
}

.recruit-message__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.recruit-message__title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.45;
  margin-bottom: 24px;
  color: var(--gold);
  font-style: italic;
}

.recruit-message__text p {
  color: var(--text-main);
  line-height: 2;
  margin-bottom: 18px;
}

.recruit-message__text p:last-child {
  margin-bottom: 0;
}

.recruit-message__visual {
  position: relative;
  width: min(100%, 360px);
  aspect-ratio: 1 / 1;
  margin-left: auto;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(181, 146, 82, 0.18), rgba(34, 34, 34, 0.08));
  box-shadow: 0 20px 46px rgba(34, 34, 34, 0.12);
}

.recruit-message__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24, 24, 24, 0.12), rgba(24, 24, 24, 0.02));
}

.recruit-message__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 76% center;
  display: block;
}

@media screen and (max-width: 768px) {
  .recruit-message {
    padding-top: 72px;
  }

  .recruit-message__card {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .recruit-message__title {
    font-size: 1.7rem;
    margin-bottom: 20px;
  }

  .recruit-message__visual {
    width: min(100%, 280px);
    margin: 0 auto;
  }
}

.recruit-points__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.recruit-point {
  display: flex;
  background: var(--bg-light);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.recruit-point--reverse {
  flex-direction: row-reverse;
}

.recruit-point__img {
  width: 45%;
  flex-shrink: 0;
}

.recruit-point__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.recruit-point__body {
  padding: 48px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.recruit-point__badge {
  display: inline-block;
  font-family: var(--font-accent);
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.1em;
}

.recruit-point__body h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.5;
}

.recruit-point__body p {
  color: var(--text-gray);
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  .recruit-point, .recruit-point--reverse {
    flex-direction: column;
  }
  .recruit-point__img {
    width: 100%;
    height: 200px;
  }
  .recruit-point__body {
    padding: 24px;
  }
}

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

.recruit-flow__item {
  position: relative;
  background: #fff;
  border-radius: 12px;
  padding: 32px 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  overflow: visible;
  z-index: 1;
}

.recruit-flow__item:not(:last-child)::after {
  content: '→';
  position: absolute;
  top: 50%;
  right: -22px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d7ba82, #b89453);
  border: 4px solid #f7f3ec;
  font-size: 26px;
  line-height: 1;
  color: #fff;
  font-weight: 700;
  z-index: 5;
  box-shadow: 0 12px 28px rgba(98, 73, 33, 0.18);
}

.recruit-flow__step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 94px;
  height: 32px;
  border-radius: 999px;
  background: var(--gold);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.recruit-flow__icon,
.staff-day__photo,
.staff-voice__photo {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #fff;
  color: var(--gold);
  font-family: var(--font-accent);
  letter-spacing: 0.08em;
  text-align: center;
}

.recruit-flow__icon {
  height: 120px;
  margin-bottom: 20px;
  font-size: 1rem;
  overflow: hidden;
  padding: 12px;
}

.recruit-flow__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.recruit-flow__item h3 {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.recruit-flow__item p {
  color: var(--text-gray);
  line-height: 1.8;
}

.recruit-flow__cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.recruit-flow__line-box {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
  max-width: 920px;
  margin: 32px auto 0;
  padding: 44px 34px 38px;
  background: #fff;
  border: 1px solid rgba(177, 143, 91, 0.2);
  border-radius: 18px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.recruit-flow__line-copy h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 18px;
  color: var(--gold);
  font-style: italic;
  line-height: 1.5;
}

.recruit-flow__line-copy p {
  margin: 0 0 8px;
  line-height: 1.9;
  color: var(--text-gray);
}

.recruit-flow__line-copy p:last-child {
  margin-bottom: 0;
}

.recruit-flow__line-btn {
  min-width: 380px;
  background: #06C755;
  border-color: #06C755;
  color: #fff;
  border-radius: 999px;
}

.recruit-flow__line-btn:hover {
  background: #04ad4a;
  border-color: #04ad4a;
}

.staff-day__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.9fr);
  gap: 32px;
  align-items: start;
}

.staff-day__timeline {
  position: relative;
  background: #fff;
  border-radius: 12px;
  padding: 28px 28px 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.staff-day__timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  bottom: 40px;
  left: 61px;
  width: 2px;
  background: linear-gradient(to bottom, rgba(201, 166, 107, 0.5), rgba(201, 166, 107, 0.08));
}

.staff-day__item {
  position: relative;
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 24px;
  padding-bottom: 28px;
}

.staff-day__time {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--dark);
  color: #fff;
  font-weight: 700;
  z-index: 1;
}

.staff-day__body {
  padding-top: 10px;
}

.staff-day__body h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.staff-day__body p {
  color: var(--text-gray);
  line-height: 1.8;
}

.staff-day__profile {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.staff-day__photo {
  min-height: 320px;
  margin-bottom: 20px;
  overflow: hidden;
}

.staff-day__photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-content: start;
  padding: 10px;
}

.staff-day__photo-grid img {
  width: 100%;
  aspect-ratio: 1 / 1.2;
  object-fit: cover;
  object-position: center top;
  border-radius: 10px;
  display: block;
}

.staff-day__photo img,
.staff-voice__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 12px;
}

.staff-day__profile h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.staff-day__meta {
  display: grid;
  gap: 14px;
}

.staff-day__meta div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid #eee;
}

.staff-day__meta dt {
  font-weight: 700;
  color: var(--dark);
}

.staff-day__meta dd {
  color: var(--text-gray);
}

.staff-voice__list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.staff-voice__card {
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  gap: 28px;
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.staff-voice__photo {
  min-height: 320px;
}

.staff-voice__content h3 {
  font-size: 1.35rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.staff-voice__name {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.staff-voice__content p {
  color: var(--text-gray);
  line-height: 1.9;
  margin-bottom: 14px;
}

.staff-voice__content p:last-child {
  margin-bottom: 0;
}

.recruit-reasons__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.recruit-reason {
  background: #fff;
  padding: 40px 32px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.recruit-reason h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.recruit-reason h3 span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  font-family: var(--font-accent);
  font-size: 1.5rem;
  font-weight: 700;
}

.recruit-reason p {
  color: var(--text-gray);
  line-height: 1.8;
  text-align: left;
  flex-grow: 1;
}

@media screen and (max-width: 768px) {
  .recruit-reasons__grid {
    grid-template-columns: 1fr;
  }
}

.recruit-ideal {
  padding-top: 20px;
  padding-bottom: 32px;
}

.recruit-ideal__card {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 54px 72px 56px;
  border-radius: 28px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)),
    linear-gradient(transparent 31px, rgba(177, 143, 91, 0.08) 32px),
    linear-gradient(90deg, transparent 31px, rgba(177, 143, 91, 0.08) 32px);
  background-size: auto, 32px 32px, 32px 32px;
  border: 2px solid rgba(177, 143, 91, 0.5);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.05);
}

.recruit-ideal__card::before,
.recruit-ideal__card::after {
  position: absolute;
  color: rgba(177, 143, 91, 0.18);
  line-height: 1;
  pointer-events: none;
}

.recruit-ideal__card::before {
  content: '♡';
  top: 46px;
  left: 72px;
  font-size: 3.7rem;
}

.recruit-ideal__card::after {
  content: '✦';
  right: 126px;
  bottom: 112px;
  font-size: 4rem;
}

.recruit-ideal__eyebrow {
  margin-bottom: 10px;
  text-align: center;
  font-family: var(--font-cursive);
  font-size: 3rem;
  color: rgba(177, 143, 91, 0.82);
}

.recruit-ideal__title {
  margin-bottom: 34px;
  text-align: center;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.4;
  color: var(--gold);
  font-style: italic;
}

.recruit-ideal__list {
  max-width: 640px;
  margin: 0 auto;
}

.recruit-ideal__list li {
  position: relative;
  padding-left: 42px;
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--dark);
}

.recruit-ideal__list li + li {
  margin-top: 14px;
}

.recruit-ideal__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
  .recruit-ideal__card {
    padding: 34px 22px 38px;
    border-radius: 20px;
  }

  .recruit-ideal__card::before {
    left: 22px;
    top: 24px;
    font-size: 2.7rem;
  }

  .recruit-ideal__card::after {
    right: 24px;
    bottom: 92px;
    font-size: 2.8rem;
  }

  .recruit-ideal__eyebrow {
    font-size: 2.2rem;
  }

  .recruit-ideal__title {
    margin-bottom: 24px;
    font-size: 1.8rem;
  }

  .recruit-ideal__list li {
    padding-left: 34px;
    font-size: 1rem;
  }
}

.recruit-reqs__subtitle {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 8px;
  display: inline-block;
}

.recruit-tabs {
  margin-top: 32px;
}

.recruit-tabs__nav {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.recruit-tabs__button {
  appearance: none;
  border: 1px solid rgba(201, 166, 107, 0.45);
  background: #fff;
  color: var(--dark);
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}

.recruit-tabs__button:hover {
  border-color: var(--gold);
  transform: translateY(-1px);
}

.recruit-tabs__button.is-active {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}

.recruit-tabs__panel {
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.recruit-tabs__panel[hidden] {
  display: none;
}

.recruit-tabs__panel .recruit-reqs__subtitle {
  margin-top: 0 !important;
}

.recruit-table th {
  width: 25%;
  background: var(--bg-light);
  color: var(--dark-deep);
}

@media screen and (max-width: 500px) {
  .recruit-tabs__nav {
    gap: 8px;
  }

  .recruit-tabs__button {
    width: 100%;
  }

  .recruit-tabs__panel {
    padding: 20px;
  }

  .recruit-table th {
    width: 30%;
  }
}

.recruit-loc__list {
  background: #fff;
  padding: 32px;
  border-radius: 8px;
}

.recruit-loc__list dl {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #eee;
  padding-bottom: 16px;
  margin-bottom: 16px;
}

.recruit-loc__list dt {
  width: 100px;
  font-weight: 700;
  color: var(--dark);
}

.recruit-loc__list dd {
  flex: 1;
  color: var(--text-gray);
  line-height: 1.6;
}

.recruit-loc__note {
  font-size: 0.9rem;
  color: #666;
}

.recruit-form__intro {
  max-width: 720px;
  margin: 0 auto 32px;
  text-align: center;
}

.recruit-form__intro p {
  color: var(--text-gray);
  line-height: 1.8;
}

.recruit-entry-form {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

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

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
}

.form-label span {
  display: inline-block;
  background: #d9584a;
  color: #fff;
  font-size: 0.7rem;
  padding: 2px 6px;
  margin-left: 8px;
  border-radius: 4px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d7d1c7;
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 166, 107, 0.16);
}

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

.recruit-entry-form__footer {
  text-align: center;
  margin-top: 12px;
}

.recruit-entry-form__footer p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 18px;
}

.recruit-entry-form__footer a {
  text-decoration: underline;
}

.form-submit {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  display: inline-flex;
  justify-content: center;
  border: none;
  cursor: pointer;
}

@media screen and (max-width: 1024px) {
  .recruit-flow__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .recruit-flow__line-box {
    padding: 32px 24px 28px;
  }

  .recruit-flow__item:nth-child(2)::after {
    display: none;
  }

  .staff-day__layout,
  .staff-voice__card {
    grid-template-columns: 1fr;
  }

  .staff-day__photo,
  .staff-voice__photo {
    min-height: 260px;
  }

  .recruit-entry-form__grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 768px) {
  .recruit-flow__grid {
    grid-template-columns: 1fr;
  }

  .recruit-flow__line-box {
    padding: 24px 20px;
  }

  .recruit-flow__line-btn {
    min-width: 100%;
  }

  .recruit-flow__item:not(:last-child)::after {
    content: '↓';
    top: auto;
    right: 50%;
    bottom: -34px;
    transform: translateX(50%);
    width: 48px;
    height: 48px;
    font-size: 22px;
  }

  .staff-day__timeline {
    padding: 24px 20px 8px;
  }

  .staff-day__timeline::before {
    left: 34px;
  }

  .staff-day__item {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-left: 56px;
  }

  .staff-day__time {
    position: absolute;
    left: 0;
    top: 0;
    width: 44px;
    height: 44px;
    font-size: 0.78rem;
  }

  .staff-day__body {
    padding-top: 0;
  }

  .staff-day__profile,
  .staff-voice__card {
    padding: 20px;
  }

  .staff-day__photo-grid {
    grid-template-columns: 1fr;
  }

  .staff-day__meta div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .recruit-entry-form {
    padding: 24px 20px;
  }

  .floating-cta--recruit {
    right: 12px;
    bottom: 16px;
  }

  .floating-cta--recruit .floating-cta__btn {
    width: 62px;
    min-height: 204px;
    border-radius: 16px 0 0 16px;
  }
}

/* ===== MAIN LP ===== */
.floating-cta--main {
  top: auto;
  bottom: 28px;
  right: 20px;
}

.main-lp-hero {
  position: relative;
  min-height: 100vh;
  margin-top: var(--header-h);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark-deep);
}

.main-lp-hero__bg {
  position: absolute;
  inset: 0;
  background: url('images/hero-bg2.png') center/cover no-repeat;
}

.main-lp-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(16, 16, 16, 0.8) 0%, rgba(16, 16, 16, 0.52) 44%, rgba(16, 16, 16, 0.22) 100%);
}

.main-lp-hero__content {
  position: relative;
  z-index: 1;
  max-width: 980px;
}

.main-lp-hero__eyebrow {
  display: inline-flex;
  padding: 0 18px;
  min-height: 38px;
  align-items: center;
  margin-bottom: 24px;
  border-radius: 999px;
  background: rgba(177, 143, 91, 0.88);
  color: #fff;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  font-weight: 700;
}

.main-lp-hero__title {
  margin-bottom: 22px;
  color: #fff;
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  line-height: 1.2;
  font-style: italic;
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.main-lp-hero__subcopy {
  max-width: 760px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 2;
  font-size: 1.02rem;
}

.main-lp-hero__cta,
.main-lp-reserve__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.main-lp-hero__chips {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.main-lp-hero__chips span {
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  backdrop-filter: blur(4px);
}

.main-lp-copy {
  padding-top: 84px;
  padding-bottom: 84px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f4ee 100%);
}

.main-lp-copy__inner,
.main-lp-solution__panel,
.main-lp-message__box {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.main-lp-copy__lead,
.main-lp-solution__eyebrow,
.main-lp-message__eyebrow {
  margin-bottom: 16px;
  color: var(--gold);
  font-family: var(--font-cursive);
  font-size: 3rem;
}

.main-lp-copy h2,
.main-lp-solution__panel h2,
.main-lp-message__box h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.4;
  color: var(--dark);
  font-style: italic;
}

.main-lp-copy p:not(.main-lp-copy__lead),
.main-lp-solution__panel p,
.main-lp-message__box p {
  line-height: 2;
  color: var(--text-gray);
}

.main-lp-problem__list,
.main-lp-appeal__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.main-lp-problem__card,
.main-lp-appeal__card {
  background: #fff;
  border-radius: 24px;
  padding: 34px 28px;
  border: 1px solid rgba(177, 143, 91, 0.16);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.05);
}

.main-lp-problem__num,
.main-lp-reason__num,
.main-lp-flow__step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  margin-bottom: 16px;
  background: rgba(177, 143, 91, 0.12);
  color: var(--gold-dark);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.main-lp-problem__card h3,
.main-lp-appeal__card h3,
.main-lp-flow__step h3,
.main-lp-reason__text h3 {
  margin-bottom: 14px;
  font-size: 1.4rem;
  line-height: 1.55;
}

.main-lp-problem__card p,
.main-lp-appeal__card p,
.main-lp-flow__step p,
.main-lp-reason__text p,
.main-lp-concept__text p {
  line-height: 1.95;
  color: var(--text-gray);
}

.main-lp-solution {
  padding-top: 0;
}

.main-lp-solution__panel {
  padding: 42px 46px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(177, 143, 91, 0.18);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.05);
}

.main-lp-concept__layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 46px;
  align-items: center;
}

.main-lp-concept__placeholder,
.main-lp-reason__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 460px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(177, 143, 91, 0.14), rgba(20, 20, 20, 0.05));
  color: var(--gold-dark);
  letter-spacing: 0.28em;
}

.main-lp-reason__stack {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.main-lp-reason__item {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
  gap: 30px;
  align-items: center;
  padding: 28px;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.05);
}

.main-lp-reason__item--reverse {
  grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1.05fr);
}

.main-lp-reason__item--reverse .main-lp-reason__text {
  order: 2;
}

.main-lp-reason__item--reverse .main-lp-reason__visual {
  order: 1;
}

.main-lp-reason__placeholder {
  min-height: 320px;
}

.main-lp-appeal__card {
  text-align: center;
}

.main-lp-menu {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 247, 241, 0.98) 100%);
}

.main-lp-menu__lead {
  max-width: 720px;
  margin: 18px auto 0;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.9;
  color: var(--text-light);
}

.main-lp-menu__stack {
  max-width: 760px;
  margin: 44px auto 0;
  display: grid;
  gap: 18px;
}

.main-lp-menu__item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px 74px 24px 30px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(199, 157, 92, 0.12), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(199, 157, 92, 0.28);
  box-shadow: 0 16px 40px rgba(36, 32, 26, 0.08);
  color: var(--text-main);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.main-lp-menu__item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  width: 14px;
  height: 14px;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  transform: translateY(-50%) rotate(45deg);
}

.main-lp-menu__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(36, 32, 26, 0.12);
  border-color: rgba(199, 157, 92, 0.52);
}

.main-lp-menu__label {
  font-size: 1.1rem;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: var(--gold);
}

.main-lp-menu__item strong {
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.45;
  font-weight: 700;
}

.main-lp-menu__item small {
  font-size: 1.35rem;
  color: var(--text-light);
}

.main-lp-flow__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.main-lp-flow__step {
  padding: 30px 24px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.05);
}

.main-lp-message__box {
  padding: 46px 48px;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.05);
}

.main-lp-reserve__text {
  max-width: 760px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 2;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .floating-cta--main {
    right: 12px;
    bottom: 16px;
  }

  .main-lp-hero {
    min-height: auto;
    padding: 138px 0 88px;
  }

  .main-lp-hero__cta,
  .main-lp-reserve__actions {
    flex-direction: column;
  }

  .main-lp-copy__lead,
  .main-lp-solution__eyebrow,
  .main-lp-message__eyebrow {
    font-size: 2.2rem;
  }

  .main-lp-problem__list,
  .main-lp-appeal__grid,
  .main-lp-flow__steps,
  .main-lp-concept__layout,
  .main-lp-reason__item,
  .main-lp-reason__item--reverse {
    grid-template-columns: 1fr;
  }

  .main-lp-problem__card,
  .main-lp-appeal__card,
  .main-lp-flow__step,
  .main-lp-solution__panel,
  .main-lp-message__box,
  .main-lp-reason__item {
    padding: 26px 20px;
    border-radius: 20px;
  }

  .main-lp-menu__item {
    padding: 20px 54px 20px 20px;
    border-radius: 18px;
  }

  .main-lp-menu__item::after {
    right: 22px;
    width: 12px;
    height: 12px;
  }

  .main-lp-menu__item strong {
    font-size: 1.9rem;
  }

  .main-lp-menu__item small {
    font-size: 1.25rem;
  }

  .main-lp-concept__placeholder,
  .main-lp-reason__placeholder {
    min-height: 260px;
  }

  .main-lp-hero__chips span {
    font-size: 0.9rem;
  }
}

/* ===== MAIN CUSTOMER LP ===== */
.page-main-customer {
  background: #f8f5ef;
}

.customer-lp {
  padding-top: 72px;
  background:
    radial-gradient(circle at top, rgba(199, 157, 92, 0.08), transparent 30%),
    linear-gradient(180deg, #fbfaf7 0%, #f5f1e9 100%);
}

.customer-lp__hero {
  padding: 28px 20px 42px;
}

.customer-lp__hero-image,
.customer-lp__hero-badges,
.customer-lp__block--narrow,
.customer-lp__bar-inner,
.customer-lp__faq-inner,
.customer-lp__final-card {
  max-width: 900px;
  margin: 0 auto;
}

.customer-lp__hero-image {
  position: relative;
  min-height: 720px;
  border-radius: 36px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(32, 28, 24, 0.15), rgba(32, 28, 24, 0.45)),
    url("images/message-bg.png") center/cover no-repeat;
  box-shadow: 0 28px 70px rgba(27, 24, 20, 0.16);
}

.customer-lp__hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(21, 18, 15, 0.68) 0%, rgba(21, 18, 15, 0.28) 52%, rgba(21, 18, 15, 0.06) 100%);
}

.customer-lp__hero-copy {
  position: relative;
  z-index: 1;
  max-width: 560px;
  padding: 96px 56px 72px;
  color: #fff;
}

.customer-lp__hero-label,
.customer-lp__eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 0.26em;
  font-weight: 700;
}

.customer-lp__hero-copy h1,
.customer-lp__heading h2,
.customer-lp__copy-card h2,
.customer-lp__final-card h2 {
  margin: 0;
  line-height: 1.35;
  font-size: clamp(3.2rem, 5vw, 5.6rem);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.customer-lp__hero-sub,
.customer-lp__final-card p {
  margin: 22px 0 0;
  font-size: 1.65rem;
  line-height: 2;
  color: rgba(255, 255, 255, 0.9);
}

.customer-lp__copy-card p,
.customer-lp__lead {
  margin: 22px 0 0;
  font-size: 1.65rem;
  line-height: 2;
  color: var(--text-light);
}

.customer-lp__hero-actions,
.customer-lp__final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.customer-lp__hero-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: -48px;
  position: relative;
  z-index: 2;
}

.customer-lp__hero-badge {
  padding: 26px 20px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 40px rgba(36, 32, 26, 0.1);
  text-align: center;
}

.customer-lp__hero-badge strong,
.customer-lp__bar-inner strong,
.customer-lp__menu-item strong,
.customer-lp__reason-copy h3,
.customer-lp__trouble-card h3,
.customer-lp__change-card h3,
.customer-lp__flow-item h3 {
  display: block;
  font-size: 2.2rem;
  line-height: 1.5;
  color: var(--text-main);
}

.customer-lp__hero-badge span,
.customer-lp__menu-item small,
.customer-lp__reason-copy p,
.customer-lp__trouble-card p,
.customer-lp__change-card p,
.customer-lp__flow-item p,
.customer-lp__bar-inner p {
  display: block;
  margin-top: 8px;
  font-size: 1.45rem;
  line-height: 1.9;
  color: var(--text-light);
}

.customer-lp__block {
  padding: 88px 20px 0;
}

.customer-lp__block--tight {
  padding-top: 56px;
}

.customer-lp__heading {
  text-align: center;
  margin-bottom: 32px;
}

.customer-lp__heading h2,
.customer-lp__copy-card h2,
.customer-lp__final-card h2 {
  font-size: clamp(2.8rem, 4vw, 4.5rem);
}

.customer-lp__trouble-list,
.customer-lp__change-grid,
.customer-lp__flow-stack,
.customer-lp__reason-stack,
.customer-lp__menu-stack,
.customer-lp__feature-stack,
.customer-lp__menu-teasers,
.customer-lp__proof-grid {
  display: grid;
  gap: 20px;
}

.customer-lp__trouble-card,
.customer-lp__change-card,
.customer-lp__flow-item,
.customer-lp__copy-card,
.customer-lp__reason-item,
.customer-lp__story-card,
.customer-lp__feature-card,
.customer-lp__menu-teaser {
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 42px rgba(36, 32, 26, 0.07);
}

.customer-lp__bar {
  padding: 52px 20px 0;
}

.customer-lp__strip {
  padding: 34px 20px 0;
}

.customer-lp__bar-inner {
  padding: 28px 32px;
  border-radius: 28px;
  text-align: center;
}

.customer-lp__strip-inner,
.customer-lp__cta-band-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 24px 28px;
  border-radius: 24px;
  text-align: center;
}

.customer-lp__bar--dark .customer-lp__bar-inner {
  background: linear-gradient(135deg, #1f1d1b, #3c342a);
}

.customer-lp__bar--dark .customer-lp__bar-inner strong,
.customer-lp__bar--gold .customer-lp__bar-inner strong,
.customer-lp__copy-card--dark h2,
.customer-lp__copy-card--dark p,
.customer-lp__eyebrow--light,
.customer-lp__final-card h2,
.customer-lp__final-card p {
  color: #fff;
}

.customer-lp__bar--gold .customer-lp__bar-inner {
  background: linear-gradient(135deg, rgba(199, 157, 92, 0.9), rgba(176, 132, 66, 0.92));
}

.customer-lp__bar--soft .customer-lp__bar-inner {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 241, 229, 0.98));
  border: 1px solid rgba(199, 157, 92, 0.2);
}

.customer-lp__strip--soft .customer-lp__strip-inner,
.customer-lp__cta-band--light .customer-lp__cta-band-inner {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 241, 229, 0.98));
  border: 1px solid rgba(199, 157, 92, 0.2);
}

.customer-lp__strip--dark .customer-lp__strip-inner,
.customer-lp__cta-band .customer-lp__cta-band-inner {
  background: linear-gradient(135deg, #221f1b, #40362c);
}

.customer-lp__strip-inner strong,
.customer-lp__cta-band-inner h2 {
  color: var(--text-main);
  font-size: clamp(2.4rem, 3.8vw, 4rem);
  line-height: 1.45;
  margin: 0;
}

.customer-lp__strip--dark .customer-lp__strip-inner strong,
.customer-lp__cta-band .customer-lp__cta-band-inner h2 {
  color: #fff;
}

.customer-lp__cta-band {
  padding: 34px 20px 0;
}

.customer-lp__cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
}

.customer-lp__image-placeholder {
  min-height: 360px;
  border-radius: 30px;
  border: 1px dashed rgba(199, 157, 92, 0.5);
  background:
    linear-gradient(135deg, rgba(199, 157, 92, 0.12), rgba(255, 255, 255, 0.94));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  color: var(--gold);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.customer-lp__image-placeholder small {
  max-width: 70%;
  font-size: 1.3rem;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: var(--text-light);
}

.customer-lp__image-placeholder--hero {
  min-height: 520px;
}

.customer-lp__image-placeholder--square {
  min-height: 260px;
}

.customer-lp__image-placeholder--wide {
  min-height: 260px;
}

.customer-lp__media {
  overflow: hidden;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(199, 157, 92, 0.16);
  box-shadow: 0 18px 42px rgba(36, 32, 26, 0.08);
}

.customer-lp__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 241, 229, 0.98));
}

.customer-lp__media--hero {
  min-height: 520px;
}

.customer-lp__media--proof {
  min-height: 380px;
  padding: 12px;
}

.customer-lp__media--panel {
  min-height: 360px;
  padding: 12px;
}

.customer-lp__media--square {
  min-height: 260px;
  padding: 12px;
}

.customer-lp__media--wide {
  min-height: 280px;
  padding: 12px;
}

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

.customer-lp__copy-card {
  margin-top: 24px;
  text-align: center;
}

.customer-lp__copy-card--dark,
.customer-lp__final-card {
  background: linear-gradient(135deg, #1f1d1b, #3e352b);
}

.customer-lp__story-card,
.customer-lp__feature-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  align-items: center;
}

.customer-lp__story-card--reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.customer-lp__story-card--reverse .customer-lp__story-image {
  order: 2;
}

.customer-lp__story-card--reverse .customer-lp__story-copy {
  order: 1;
}

.customer-lp__reason-item {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  align-items: center;
}

.customer-lp__reason-copy span,
.customer-lp__flow-item span,
.customer-lp__menu-item span {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 1.15rem;
  letter-spacing: 0.24em;
  font-weight: 700;
  color: var(--gold);
}

.customer-lp__story-copy h2,
.customer-lp__feature-copy h2 {
  margin: 0;
  font-size: clamp(2.8rem, 4vw, 4.4rem);
  line-height: 1.4;
}

.customer-lp__story-copy p,
.customer-lp__feature-copy p {
  margin: 18px 0 0;
  font-size: 1.55rem;
  line-height: 1.95;
  color: var(--text-light);
}

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

.customer-lp__change-card {
  text-align: center;
}

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

.customer-lp__menu-teaser {
  text-align: center;
}

.customer-lp__menu-teaser h3 {
  margin: 18px 0 0;
  font-size: 2.1rem;
  line-height: 1.45;
}

.customer-lp__menu-teaser p {
  margin: 10px 0 0;
  font-size: 1.45rem;
  line-height: 1.9;
  color: var(--text-light);
}

.customer-lp__menu-item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 24px 72px 24px 28px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(199, 157, 92, 0.12), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(199, 157, 92, 0.28);
  box-shadow: 0 18px 42px rgba(36, 32, 26, 0.08);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.customer-lp__menu-item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  width: 14px;
  height: 14px;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  transform: translateY(-50%) rotate(45deg);
}

.customer-lp__menu-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(36, 32, 26, 0.12);
  border-color: rgba(199, 157, 92, 0.5);
}

.customer-lp__final {
  padding: 88px 20px 96px;
}

.customer-lp__final-card {
  padding: 48px;
  border-radius: 32px;
  text-align: center;
  box-shadow: 0 24px 60px rgba(27, 24, 20, 0.18);
}

.customer-lp__faq {
  padding-top: 88px;
}

@media screen and (max-width: 768px) {
  .customer-lp {
    padding-top: 64px;
  }

  .customer-lp__hero {
    padding: 20px 14px 36px;
  }

  .customer-lp__hero-image {
    min-height: 560px;
    border-radius: 26px;
  }

  .customer-lp__hero-copy {
    max-width: none;
    padding: 72px 24px 48px;
  }

  .customer-lp__hero-actions,
  .customer-lp__final-actions {
    flex-direction: column;
  }

  .customer-lp__hero-badges,
  .customer-lp__change-grid,
  .customer-lp__reason-item,
  .customer-lp__story-card,
  .customer-lp__story-card--reverse,
  .customer-lp__feature-card,
  .customer-lp__menu-teasers,
  .customer-lp__proof-grid {
    grid-template-columns: 1fr;
  }

  .customer-lp__hero-badges {
    margin-top: 20px;
  }

  .customer-lp__block,
  .customer-lp__faq,
  .customer-lp__final {
    padding-left: 14px;
    padding-right: 14px;
  }

  .customer-lp__block {
    padding-top: 68px;
  }

  .customer-lp__bar {
    padding: 38px 14px 0;
  }

  .customer-lp__strip,
  .customer-lp__cta-band {
    padding: 28px 14px 0;
  }

  .customer-lp__trouble-card,
  .customer-lp__change-card,
  .customer-lp__flow-item,
  .customer-lp__copy-card,
  .customer-lp__reason-item,
  .customer-lp__story-card,
  .customer-lp__feature-card,
  .customer-lp__menu-teaser,
  .customer-lp__final-card {
    padding: 24px 20px;
    border-radius: 22px;
  }

  .customer-lp__bar-inner,
  .customer-lp__strip-inner,
  .customer-lp__cta-band-inner {
    padding: 24px 20px;
    border-radius: 22px;
  }

  .customer-lp__cta-band-inner {
    flex-direction: column;
    text-align: center;
  }

  .customer-lp__image-placeholder,
  .customer-lp__image-placeholder--hero {
    min-height: 280px;
    border-radius: 22px;
  }

  .customer-lp__media,
  .customer-lp__media--hero,
  .customer-lp__media--proof,
  .customer-lp__media--panel,
  .customer-lp__media--square,
  .customer-lp__media--wide {
    min-height: 240px;
    border-radius: 22px;
  }

  .customer-lp__menu-item {
    padding: 20px 50px 20px 20px;
    border-radius: 18px;
  }

  .customer-lp__menu-item::after {
    right: 20px;
    width: 12px;
    height: 12px;
  }
}

/* ===== MAIN CUSTOMER REF STACK ===== */
.customer-ref {
  padding: 92px 16px 72px;
  background: #1f1f1f;
}

.customer-ref__stack {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 0;
}

.customer-ref__section {
  position: relative;
  background: #fff;
}

#customer-first-menu {
  scroll-margin-top: 120px;
}

#customer-second-menu {
  scroll-margin-top: 120px;
}

.customer-ref__image {
  display: block;
  width: 100%;
  height: auto;
}

.customer-ref__section--movie {
  overflow: hidden;
  background: #111;
}

.customer-ref__movie {
  display: block;
  width: 100%;
  height: auto;
}

.customer-ref__sound-button {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  padding: 10px 18px;
  background: rgba(20, 20, 20, 0.62);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.customer-ref__sound-button:hover {
  background: rgba(20, 20, 20, 0.82);
}

.customer-ref__section--cta .customer-ref__cta-image {
  position: absolute;
  left: 50%;
  bottom: 72px;
  transform: translateX(-50%);
  width: min(72%, 620px);
  transition: transform 0.25s ease;
  animation: customer-ref-pulse 0.9s ease-in-out infinite alternate;
  transform-origin: center bottom;
  z-index: 2;
}

.customer-ref__section--cta .customer-ref__cta-image:hover {
  transform: translateX(-50%) scale(1.05);
}

.customer-ref__section--cta .customer-ref__cta-image img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.28));
}

.customer-ref__missing {
  min-height: 420px;
  display: grid;
  place-items: center;
  gap: 12px;
  padding: 40px 24px;
  background:
    linear-gradient(135deg, rgba(199, 157, 92, 0.12), rgba(255, 255, 255, 0.98));
  color: var(--text-main);
  text-align: center;
}

.customer-ref__missing strong {
  display: block;
  font-size: 2rem;
  letter-spacing: 0.16em;
  color: var(--gold);
}

.customer-ref__missing span {
  display: block;
  font-size: 1.4rem;
  line-height: 1.8;
  color: var(--text-light);
  word-break: break-all;
}

.customer-ref__section--links {
  padding: 48px 20px;
  background:
    linear-gradient(135deg, rgba(46, 46, 46, 0.98), rgba(91, 91, 91, 0.98));
}

.customer-ref__links-card {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.customer-ref__links-label {
  margin: 0 0 14px;
  font-size: 1.2rem;
  letter-spacing: 0.24em;
  font-weight: 700;
  color: var(--gold);
}

.customer-ref__links-card h2 {
  margin: 0;
  font-size: clamp(2.2rem, 3.4vw, 3.2rem);
  line-height: 1.45;
  color: #fff;
  font-style: italic;
}

.customer-ref__links {
  margin-top: 28px;
  display: grid;
  gap: 14px;
}

.customer-ref__link {
  display: block;
  padding: 18px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #c8a86b, #b79252);
  color: #fff;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.customer-ref__link:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.customer-ref__link--line {
  background: linear-gradient(135deg, #17c950, #0cbf49);
}

@keyframes customer-ref-pulse {
  0% {
    transform: translateX(-50%) scale(1);
  }
  100% {
    transform: translateX(-50%) scale(0.96);
  }
}

@media screen and (max-width: 768px) {
  .customer-ref {
    padding: 76px 8px 52px;
  }

  .customer-ref__section--cta .customer-ref__cta-image {
    width: min(78%, 360px);
    bottom: 32px;
  }

  .customer-ref__sound-button {
    right: 12px;
    bottom: 12px;
    padding: 8px 14px;
    font-size: 0.82rem;
  }

  .customer-ref__missing {
    min-height: 300px;
    padding: 28px 16px;
  }

  .customer-ref__section--links {
    padding: 36px 14px;
  }

  .customer-ref__link {
    font-size: 1.45rem;
    padding: 16px 18px;
  }
}
