/* ==========================================================================
   Variables
   ========================================================================== */
:root {
  --color-primary: #0e4d6e;
  --color-navy: #0a2d42;
  --color-accent-blue: #1a7a9e;
  --color-gold: #c9a84c;
  --color-orange: #d4622a;
  --color-bg-light: #f5f7fa;
  --color-text-dark: #0a0a0a;
  --color-text-gray: #4a6a7a;
  --color-border: #bbcdd8;

  --font-serif: 'Noto Serif JP', serif;
  --font-sans: 'Noto Sans JP', 'Inter', sans-serif;
  --font-en: 'Inter', sans-serif;

  --container-width: 1200px;
  --container-padding: 120px;
  --section-padding-y: 80px;

  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 14px;

  --shadow-card: 0 1px 1.5px rgba(0, 0, 0, 0.1), 0 1px 1px rgba(0, 0, 0, 0.1);
  --shadow-btn: 0 3px 3px rgba(0, 0, 0, 0.25);
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text-dark);
  background-color: #fff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

/* ==========================================================================
   Utilities
   ========================================================================== */
.u-section-label {
  display: block;
  font-family: var(--font-en);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.u-section-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.u-section-title--white {
  color: #fff;
}

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

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 44px;
  padding: 0 1.5rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  border-radius: 6px;
  cursor: pointer;
  transition:
    opacity 0.2s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
  white-space: nowrap;
  border: none;
}

.btn:hover {
  opacity: 0.95;
}

.btn--primary:hover,
.btn--primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.28);
}

.btn--secondary:hover,
.btn--secondary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 98, 42, 0.25);
}

.btn--primary {
  background: linear-gradient(to bottom, #c56a17, #b75d13, #7a3308);
  color: #fff;
  border: 2px solid #b8860b;
  box-shadow: 0 3px 1.5px rgba(0, 0, 0, 0.25);
  min-width: 210px;
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.8);
  color: var(--color-orange);
  border: 0.75px solid var(--color-orange);
  box-shadow: var(--shadow-btn);
  min-width: 200px;
}

.btn__icon {
  width: 17px;
  height: 13px;
  object-fit: contain;
  flex-shrink: 0;
}

.btn__icon--dl {
  width: 13px;
  height: 17px;
}

.btn-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.header {
  --header-bg-opacity: 0.45;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: rgba(10, 45, 66, var(--header-bg-opacity));
  transition: box-shadow 0.35s ease;
}

.header.is-scrolled {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1440px;
  min-height: 68px;
  margin: 0 auto;
  padding: 16px var(--container-padding) ;
}

.header__logo {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  width: 25%;
  max-width: 180px;
}

.header__logo img{
  width: 100%;
  height: auto;
  object-fit: contain;
} 

.header__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
}

.header__nav-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.5;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}

.header__nav-link:hover {
  color: rgba(255, 255, 255, 0.85);
}

.header__btn.btn--primary {
  gap: 4px;
  width: 195px;
  min-width: 195px;
  height: 37px;
  padding: 0;
  font-size: 0.875rem;
  font-weight: 600;
}

.header__btn.btn--secondary {
  gap: 5px;
  width: 179px;
  min-width: 179px;
  height: 38px;
  padding: 0;
  font-size: 1rem;
  font-weight: 500;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  position: relative;
  background-color: #fff;
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 700px) minmax(0, 1fr);
  width: 100%;
  margin: 0 auto;
  min-height: 100svh;
}

.hero__main {
  position: relative;
  z-index: 2;
  padding: 96px 0 0 74px;
  max-width: 700px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 45px;
  padding: 0 24px;
  margin-bottom: 26px;
  border: 1px solid #8a5a00;
  border-radius: 30px;
  background: linear-gradient(
    270deg,
    #6b4300 0%,
    rgba(184, 134, 11, 0.38) 18%,
    #d4af37 41%,
    #8a5a00 100%
  );
}

.hero__badge-icon {
  flex-shrink: 0;
  width: 20px;
  height: 18px;
}

.hero__badge-text {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.005em;
  white-space: nowrap;
}

.hero__title-wrap {
  position: relative;
  margin-bottom: 54px;
  max-width: 600px;
}

.hero__title {
  position: relative;
  z-index: 1;
  font-family: var(--font-serif);
  font-size: 3.75rem;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.25;
  letter-spacing: 0.019em;
  width: fit-content;
}

.hero__title-line {
  display: block;
}

.hero__title-deco {
  position: absolute;
  left: -58px;
  top: -9px;
  width: 100%;
  max-width: none;
  height: auto;
  pointer-events: none;
  z-index: 0;
}

.hero__lead {
  margin-bottom: 24px;
}

.hero__lead-line {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.83;
}

.hero__lead-brand {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1.83;
}

.hero__stats {
  display: flex;
  gap: 0;
  margin-bottom: 3px;
}

.hero__stat {
  position: relative;
  width: 228px;
  height: 228px;
  flex-shrink: 0;
}

.hero__stat:not(:first-child) {
  margin-left: -60px;
}

.hero__stat-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__stat-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3px;
}

.hero__stat-value {
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-gold);
  line-height: 1.125;
  letter-spacing: 0.004em;
}

.hero__stat-value--score {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.028em;
}

.hero__stat-label {
  font-size: 0.875rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.18;
}

.hero__stat-note {
  font-size: 0.6875rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.77;
}

.hero__cta {
  margin-top: 3px;
  padding-left: 55px;
}

.hero__visual {
  position: relative;
  min-height: 720px;
}

.hero__visual-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__visual-img {
  position: absolute;
  top: 0;
  left: -19%;
  width: 156%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.hero__flow {
  position: absolute;
  right: 5%;
  bottom: 22px;
  display: flex;
  align-items: flex-start;
  gap: 0;
  width: 447px;
  z-index: 2;
}

.hero__flow-step {
  position: relative;
  width: 129px;
  height: 129px;
  flex-shrink: 0;
}

.hero__flow-circle {
  position: relative;
  width: 129px;
  height: 129px;
}

.hero__flow-circle-bg {
  width: 100%;
  height: 100%;
}

.hero__flow-icon {
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 31px;
  height: 38px;
  object-fit: contain;
}

.hero__flow-icon--step3 {
  top: 18px;
  width: 46px;
  height: 46px;
}

.hero__flow-label {
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text-dark);
  text-align: center;
  line-height: 1;
}

.hero__flow-label span {
  display: block;
}

.hero__flow-arrow {
  flex-shrink: 0;
  width: 31px;
  margin-top: 49px;
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1;
}

/* ==========================================================================
   Trust / Partners Section
   ========================================================================== */
.trust {
  background-color: #fff;
  padding: 0;
}

.trust__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 44px 0 0;
  text-align: center;
}

.trust__title {
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--color-text-dark);
  line-height: 1.5;
  letter-spacing: -0.02em;
  margin-bottom: 11px;
}

.trust__note {
  font-size: 1.25rem;
  font-weight: 400;
  color: #656262;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
}

.trust__logos {
  width: 100%;
  overflow: hidden;
}

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

/* ==========================================================================
   Score Cards Section
   ========================================================================== */
.score-cards {
  background-color: #fff;
  padding: 63px var(--container-padding);
}

.score-cards__inner {
  max-width: 1192px;
  margin: 0 auto;
}

.score-cards__slider {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 40px;
  gap: 12px;
  align-items: center;
}

.score-cards__slider.is-static {
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}

.score-cards__slider.is-static .score-cards__nav {
  display: none;
}

.score-cards__viewport {
  width: 100%;
  min-width: 0;
  outline: none;
}

.score-cards__slider.is-static .score-cards__viewport {
  overflow: visible;
}

.score-cards__slider.is-slider .score-cards__viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.score-cards__slider.is-slider .score-cards__viewport::-webkit-scrollbar {
  display: none;
}

.score-cards__track {
  display: flex;
  gap: 28px;
  align-items: stretch;
  margin: 0;
  padding: 4px 0;
  list-style: none;
}

.score-cards__slider.is-static .score-cards__track {
  justify-content: center;
  flex-wrap: nowrap;
}

.score-cards__slider.is-slider .score-cards__track {
  justify-content: flex-start;
  width: max-content;
  padding-block: 4px;
}

.score-cards__slider.is-slide-single .score-cards__viewport {
  scroll-padding-inline: var(--score-cards-slide-inset, 0px);
}

.score-cards__slider.is-slide-single .score-cards__track {
  padding-inline: var(--score-cards-slide-inset, 0px);
}

.score-cards__slider.is-slide-single .score-card {
  scroll-snap-align: center;
  scroll-snap-stop: always;
}

.score-cards__slider.is-slide-multi .score-cards__viewport {
  scroll-padding-inline: var(--score-cards-slide-inset, 0px);
}

.score-cards__slider.is-slide-multi .score-cards__track {
  padding-inline-start: var(--score-cards-slide-inset, 0px);
  padding-inline-end: var(--score-cards-slide-inset-end, 0px);
}

.score-cards__slider.is-slide-multi .score-card {
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.score-cards__nav {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  background-color: var(--color-navy);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: opacity 0.2s ease, background-color 0.2s ease;
}

.score-cards__nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.score-cards__nav:not(:disabled):hover {
  background-color: var(--color-primary);
}

.score-cards__nav-icon {
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.score-cards__nav--prev .score-cards__nav-icon {
  transform: rotate(-135deg);
  margin-left: 4px;
}

.score-cards__nav--next .score-cards__nav-icon {
  transform: rotate(45deg);
  margin-right: 4px;
}

.score-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  width: 216px;
  min-width: 216px;
  flex-shrink: 0;
  padding: 20px 29px;
  background-color: #fff;
  border: 2px solid #8a5a00;
  border-radius: 5px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.score-card__hotel-name {
  font-family: var(--font-en);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-gold);
  line-height: 1.25;
  text-align: center;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.score-card__block {
  width: 158px;
}

.score-card__block--bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.score-card__block--bottom .score-card__platform-name {
  width: 100%;
  text-align: left;
}

.score-card__block--bottom .score-card__rating {
  text-align: right;
}

.score-card__block--bottom .score-card__diff {
  justify-content: flex-end;
}

.score-card__platform-name {
  font-family: var(--font-en);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-dark);
  line-height: 1.43;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}

.score-card__rating {
  margin: 0 0 5px;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.score-card__before {
  font-family: var(--font-en);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text-dark);
  letter-spacing: 0.02em;
}

.score-card__star {
  font-size: 1.5rem;
  color: #ffd700;
}

.score-card__after {
  font-family: var(--font-en);
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--color-orange);
  letter-spacing: 0.02em;
}

.score-card__diff {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
}

.score-card__diff-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  height: 24px;
  border: 1px solid var(--color-gold);
  background-color: #fff;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--color-gold);
  line-height: 1.43;
  letter-spacing: 0.02em;
}

.score-card__diff-value {
  display: flex;
  align-items: baseline;
  margin: 0;
  color: var(--color-orange);
  line-height: 1;
}

.score-card__diff-plus {
  font-family: var(--font-en);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.score-card__diff-plus--accent {
  color: #e63946;
}

.score-card__diff-num {
  font-family: var(--font-en);
  font-size: 2.25rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.score-card__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 145px;
  margin: 6px 0;
  flex-shrink: 0;
}

.score-card__divider img {
  width: 100%;
  height: auto;
}

/* ==========================================================================
   Problem Section
   ========================================================================== */
.problem {
  background-color: var(--color-bg-light);
  padding: 80px var(--container-padding) 80px;
}

.problem__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.problem__header {
  max-width: 960px;
  margin: 0 auto 64px;
  text-align: center;
}

.problem__label {
  font-family: var(--font-en);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--color-gold);
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 16px;
}

.problem__title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.5;
  letter-spacing: 0.01em;
}

.problem__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 298.664px));
  justify-content: center;
  gap: 32px;
  max-width: 960px;
  margin: 0 auto 16px;
  list-style: none;
}

.problem-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 358px;
  padding: 22px 32px 32px;
  background-color: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow-card);
}

.problem-card__img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  margin-bottom: 24px;
}

.problem-card__img--01 {
  width: 240px;
  max-height: 160px;
}

.problem-card__img--02 {
  width: 247px;
  max-height: 164px;
}

.problem-card__img--03 {
  width: 250px;
  max-height: 167px;
}

.problem-card__title {
  margin-top: auto;
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.5;
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.problem-card__text {
  width: 100%;
  max-width: 235px;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--color-text-gray);
  line-height: 1.7;
  text-align: center;
  letter-spacing: -0.01em;
}

.problem__summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  max-width: 960px;
  margin: 0 auto;
}

.problem__summary-line {
  width: 4px;
  height: 64px;
  background-color: var(--color-accent-blue);
  border-radius: 2px;
  flex-shrink: 0;
}

.problem__summary-text {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 640px;
  min-height: 78px;
  padding: 24px 48px;
  background-color: var(--color-orange);
  border-radius: 10px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  text-align: center;
  letter-spacing: -0.028em;
}

/* ==========================================================================
   CTA Banner
   ========================================================================== */
.cta-banner {
  background-color: var(--color-navy);
}

.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  min-height: 163px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.cta-banner__lead {
  flex-shrink: 0;
  width: 347px;
  max-width: 100%;
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: #fff;
  text-align: center;
  white-space: nowrap;
}

.cta-banner__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  width: 442px;
  max-width: 100%;
  gap: 32px;
}

.cta-banner__btn.btn--primary {
  gap: 4px;
  width: 210px;
  min-width: 210px;
  padding: 0;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
}

.cta-banner__btn.btn--secondary {
  gap: 5px;
  width: 200px;
  min-width: 200px;
  padding: 0;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 500;
}

/* ==========================================================================
   System / Steps Section
   ========================================================================== */
.system {
  background-color: #fff;
  padding: 80px var(--container-padding);
}

.system__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.system__header {
  max-width: 960px;
  margin: 0 0 88px;
}

.system__label {
  font-family: var(--font-en);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--color-gold);
  line-height: 1.35;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.system__title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.5;
  letter-spacing: 0.01em;
}

.system__cards {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0 auto;
}

.step-card {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  width: 28%;
  max-width: 296px;
  overflow: hidden;
  background-color: #fff;
  border: 1px solid #000;
}

.step-card__media {
  flex-shrink: 0;
  height: 171px;
  overflow: hidden;
}

.step-card__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.step-card__img--02 {
  width: 105.41%;
  height: 121.65%;
  max-width: none;
  margin-left: -2.03%;
  margin-top: -9.77%;
}

.step-card__img--03 {
  width: 100%;
  height: 115.41%;
  max-width: none;
  margin-top: -5.46%;
}

.step-card__body {
  position: relative;
  flex: 1;
  padding: 24px;
}

.step-card--03 .step-card__body {
  padding-top: 24px;
}

.step-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 108px;
  height: 33px;
  margin-bottom: 8px;
  background-color: var(--color-primary);
  font-family: var(--font-en);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  letter-spacing: -0.02em;
}

.step-card__icon {
  position: absolute;
  top: 24px;
  right: 24px;
  object-fit: contain;
}

.step-card__icon--01 {
  width: 31px;
  height: 38px;
}

.step-card__icon--02 {
  width: 39px;
  height: 37px;
}

.step-card__icon--03 {
  top: 17px;
  width: 59px;
  height: 59px;
}

.step-card__title {
  margin: 0 0 8px;
  padding-right: 48px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.5;
  letter-spacing: -0.028em;
}

.step-card__text {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text-dark);
  line-height: 1.7;
  letter-spacing: -0.02em;
}

.system__arrow {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}

.system__arrow img {
  display: block;
  width: 36px;
  height: auto;
}

/* ==========================================================================
   Reputation Section
   ========================================================================== */
.reputation {
  background-color: var(--color-bg-light);
  padding: 80px var(--container-padding);
}

.reputation__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.reputation__header {
  max-width: 960px;
  margin-bottom: 32px;
}

.reputation__label {
  font-family: var(--font-en);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--color-gold);
  line-height: 1.35;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.reputation__title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.5;
  letter-spacing: 0.01em;
}

.reputation__content {
  display: grid;
  grid-template-columns: 551px minmax(0, 1fr);
  column-gap: 48px;
  align-items: start;
}

.reputation__main {
  max-width: 551px;
}

.reputation__lead {
  max-width: 800px;
  margin: 0 0 74px;
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text-dark);
  line-height: 1.7;
  letter-spacing: -0.02em;
}

.reputation__features {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
}

.reputation__feature {
  display: flex;
  align-items: center;
  gap: 36px;
  width: 100%;
  height: 113px;
  padding: 0 32px;
  background-color: #fff;
  border: 0.75px solid var(--color-border);
}

.reputation__feature-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background-color: var(--color-navy);
  border-radius: 50%;
}

.reputation__feature-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.reputation__feature-name {
  flex-shrink: 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.5;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.reputation__feature-desc {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text-gray);
  line-height: 1.7;
  letter-spacing: -0.02em;
}

.reputation__feature:first-child .reputation__feature-desc {
  max-width: 239px;
}

.reputation__visual {
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  min-height: 393px;
}

.reputation__visual-img {
  display: block;
  width: 100%;
  max-width: 488px;
  height: auto;
  aspect-ratio: 488 / 393;
  object-fit: contain;
}

/* ==========================================================================
   Mechanism Section
   ========================================================================== */
.mechanism {
  background-color: var(--color-navy);
  padding: 80px var(--container-padding);
}

.mechanism__inner {
  max-width: 1093px;
  margin: 0 auto;
}

.mechanism__header {
  margin-bottom: 46px;
}

.mechanism__label {
  font-family: var(--font-en);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--color-gold);
  line-height: 1.35;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.mechanism__title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  letter-spacing: 0.01em;
}

.mechanism__photo-wrap {
  overflow: hidden;
  width: 100%;
  height: 293px;
  margin-bottom: 0;
}

.mechanism__photo {
  display: block;
  width: 100%;
  height: 615px;
  max-width: none;
  object-fit: cover;
  margin-top: -189px;
}

.mechanism__cards {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 0;
  padding: 33px 0 0;
  list-style: none;
}

.mechanism-card {
  flex: 0 0 238.79px;
  width: 238.79px;
  min-height: 217px;
  padding: 24.75px;
  background-color: #fff;
  border: 0.75px solid var(--color-border);
  border-radius: 10px;
}

.mechanism-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  background-color: var(--color-navy);
  border-radius: 4px;
}

.mechanism-card__icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.mechanism-card__title {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.5;
  letter-spacing: -0.02em;
}

.mechanism-card__text {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--color-text-gray);
  line-height: 1.7;
  letter-spacing: -0.01em;
}

/* ==========================================================================
   Global Reviews Section
   ========================================================================== */
.global-reviews {
  background-color: var(--color-bg-light);
  padding: 80px var(--container-padding);
}

.global-reviews__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.global-reviews__header {
  margin-bottom: 48px;
}

.global-reviews__label {
  font-family: var(--font-en);
  font-size: 1.125rem;
  font-style: italic;
  font-weight: 400;
  color: var(--color-gold);
  line-height: 1.5;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.global-reviews__title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.5;
  letter-spacing: 0.01em;
}

.global-reviews__body {
  display: grid;
  grid-template-columns: minmax(0, 456px) minmax(0, 456px);
  justify-content: space-between;
  gap: 48px;
  align-items: center;
}

.global-reviews__lang-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}

.global-reviews__lang-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 41px;
  padding: 10px 20px;
  background-color: var(--color-navy);
  border: 0.75px solid var(--color-accent-blue);
  border-radius: 4px;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.global-reviews__text {
  margin: 0;
  max-width: 402px;
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--color-text-dark);
  line-height: 1.7;
  letter-spacing: -0.02em;
}

.global-reviews__photo-wrap {
  overflow: hidden;
  width: 100%;
  max-width: 456px;
  height: 290px;
  border-radius: 10px;
}

.global-reviews__photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   Results Section
   ========================================================================== */
.results {
  position: relative;
  padding: 74px var(--container-padding) 52px;
  overflow: hidden;
  background-image: url(../../img/sales/lp/mairy-review-city/results-bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.results__bg {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1592px;
  max-width: none;
  height: 674px;
  object-fit: cover;
  opacity: 0.6;
  transform: translate(-50%, calc(-50% - 22px));
  pointer-events: none;
}

.results__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.results__header {
  margin-bottom: 38px;
}

.results__label {
  font-family: var(--font-en);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--color-primary);
  line-height: 1.35;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.results__title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.5;
  letter-spacing: 0.01em;
  text-shadow: 0 3px 3px #fff;
}

.results__hotel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 38px;
}

.results__hotel-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 240px;
  height: 66px;
  background-color: #fff;
  border: 1.5px solid var(--color-gold);
  border-radius: 3px;
  box-shadow: 0 3px 1.5px rgba(0, 0, 0, 0.25);
}

.results__hotel-logo {
  flex-shrink: 0;
  width: 37px;
  height: 37px;
  object-fit: cover;
}

.results__hotel-logo--resort {
  width: 55px;
  height: 55px;
}

.results__hotel-logo--luxury {
  width: 65px;
  height: 65px;
}

.results__hotel-name {
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text-gray);
  line-height: 1.2;
  letter-spacing: -0.005em;
  white-space: nowrap;
}

.results__hotel-tag--center .results__hotel-name,
.results__hotel-tag:last-child .results__hotel-name {
  font-size: 0.875rem;
}

.results__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: left;
  margin: 0;
  padding: 0;
  list-style: none;
}

.results__stat {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 30%;
  min-height: 200px;
  overflow: hidden;
  background-color: #fff;
  text-align: center;
  background-image: url(../../img/sales/lp/mairy-review-city/stat-circle-bg.webp);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.results__stat-value {
  position: relative;
  z-index: 1;
  font-family: var(--font-en);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1.5;
  letter-spacing: 0.01em;
  margin: 0;
}

.results__stat-label {
  position: relative;
  z-index: 1;
  margin: 4px 0 0;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--color-gold);
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.results__stat-sub {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 0.75rem;
  font-style: italic;
  font-weight: 400;
  color: var(--color-gold);
  line-height: 1.5;
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials {
  background-color: var(--color-bg-light);
  padding: 80px var(--container-padding) 0;
}

.testimonials__inner {
  max-width: 1242px;
  margin: 0 auto;
}

.testimonials__header {
  max-width: 960px;
  margin: 0 auto 68px;
  padding-left: 120px;
}

.testimonials__label {
  font-family: var(--font-en);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--color-gold);
  line-height: 1.35;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.testimonials__title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.5;
  letter-spacing: 0.01em;
}

.testimonials__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 35px;
  justify-content: center;
  margin: 0;
  padding: 0 0 80px;
  list-style: none;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  width: 379px;
  min-height: 346px;
  padding: 69px 21px 0;
  background-color: #fff;
  overflow: hidden;
}

.testimonial-card__text {
  flex: 1;
  margin: 0 0 35px;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--color-text-dark);
  line-height: 1.94;
  letter-spacing: -0.02em;
}

.testimonial-card__footer {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 80px;
  padding-top: 0.75px;
  border-top: 0.75px solid var(--color-border);
}

.testimonial-card__facility {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.125;
  letter-spacing: -0.01em;
}

/* ==========================================================================
   Other Features Section
   ========================================================================== */
.other-features {
  background-color: rgba(247, 243, 232, 0.38);
  padding: 80px var(--container-padding);
}

.other-features__inner {
  max-width: 1080px;
  margin: 0 auto;
}

.other-features__header {
  margin-bottom: 48px;
}

.other-features__label {
  font-family: var(--font-en);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--color-gold);
  line-height: 1.35;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.other-features__title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.5;
  letter-spacing: 0.01em;
}

.other-features__grid {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 299px;
  min-height: 302px;
  padding: 144px 32px 24px;
  text-align: center;
  background-color: #fff;
  border: 0.75px solid #b8860b;
}

.feature-card__icon-wrap {
  position: absolute;
  top: -21px;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 206px;
  height: 206px;
  transform: translateX(-50%);
}

.feature-card:nth-child(2) .feature-card__icon-wrap {
  width: 186px;
  height: 186px;
  top: -17px;
}

.feature-card:nth-child(3) .feature-card__icon-wrap {
  width: 193px;
  height: 193px;
  top: -26px;
}

.feature-card__icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-card__title {
  margin: 0 0 12px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.5;
  letter-spacing: -0.02em;
}

.feature-card__text {
  margin: 0 0 23px;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--color-text-dark);
  line-height: 1.71;
  letter-spacing: -0.02em;
}

.feature-card__tag {
  font-size: 1rem;
  font-weight: 600;
  color: #d4af37;
  line-height: 1.7;
  letter-spacing: -0.02em;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq {
  background-color: #fff;
  padding: 80px var(--container-padding);
}

.faq__inner {
  max-width: 1080px;
  margin: 0 auto;
}

.faq__header {
  margin-bottom: 48px;
}

.faq__label {
  font-family: var(--font-en);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--color-gold);
  line-height: 1.5;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.faq__title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.5;
  letter-spacing: 0.01em;
}

.faq__list {
  width: 100%;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 0.75px solid var(--color-border);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  min-height: 75px;
  padding: 24px 0;
  cursor: pointer;
  user-select: none;
  background: none;
  border: none;
  text-align: left;
}

.faq__question-text {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.5;
  letter-spacing: -0.02em;
}

.faq__icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.faq__icon img {
  display: block;
  width: 24px;
  height: 24px;
}

.faq__item.is-open .faq__icon {
  transform: rotate(180deg);
}

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

.faq__item.is-open .faq__answer {
  max-height: var(--faq-answer-height, 500px);
  opacity: 1;
  padding: 0 0 1.5rem;
}

.faq__answer-text {
  font-size: 0.9375rem;
  color: var(--color-text-gray);
  line-height: 1.8;
}

/* ==========================================================================
   Bottom CTA Section
   ========================================================================== */
.bottom-cta {
  background-color: var(--color-navy);
  padding: 33px var(--container-padding) 40px;
  text-align: center;
}

.bottom-cta__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.bottom-cta__title {
  margin: 0 0 48px;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  letter-spacing: 0.01em;
}

.bottom-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}

.bottom-cta__btn.btn--primary {
  width: 210px;
  height: 44px;
}

.bottom-cta__btn.btn--secondary {
  width: 200px;
  height: 44px;
}

.bottom-cta__lead {
  margin: 0 0 12px;
  font-size: 0.9375rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.3;
  letter-spacing: -0.005em;
}

.bottom-cta__tel {
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
  letter-spacing: -0.01em;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background-color: var(--color-navy);
  padding: 0 var(--container-padding) 32px;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 120px;
}

.footer__top {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 33px;
  border-bottom: 0.75px solid rgba(255, 255, 255, 0.1);
}

.footer__brand {
  width: 180px;
  height: auto;
  object-fit: contain;
}
.footer__logo{
  width: 100%;
  height: auto;
  object-fit: contain;
}

.footer__brand-tagline {
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.footer__nav-link {
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}

.footer__nav-link:hover {
  color: #fff;
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.footer__copyright {
  font-size: 0.8125rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  letter-spacing: -0.005em;
}

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

.footer__legal-link {
  font-size: 0.8125rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  letter-spacing: -0.005em;
  transition: color 0.2s ease;
}

.footer__legal-link:hover {
  color: rgba(255, 255, 255, 0.85);
}

/* ==========================================================================
   Responsive (SP: ~768px)
   ========================================================================== */
@media (max-width: 768px) {
  :root {
    --container-padding: 1.25rem;
    --section-padding-y: 3rem;
  }

  .u-section-title {
    font-size: 1.75rem;
  }

  .header__nav {
    display: none;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero__main {
    order: 1;
    padding: 16px 8px;
    max-width: 100%;
  }

  .hero__badge {
    max-width: 100%;
    white-space: normal;
  }

  .hero__badge-text {
    white-space: normal;
    font-size: 0.875rem;
  }

  .hero__title {
    font-size: 2rem;
  }

  .hero__title-deco {
    left: -1rem;
    width: min(100%, 320px);
  }

  .hero__lead-brand {
    font-size: 1.5rem;
  }

  .hero__stats {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    justify-content: center;
    gap: -1rem;
  }

  .hero__stat {
    width: 120px;
    height: 120px;
    margin-left: 0 !important;
  }

  .hero__stat-value {
    font-size: 1.25rem;
  }

  .hero__stat-value--score {
    font-size: 1rem;
  }

  .hero__cta {
    padding-left: 0;
    justify-content: center;
  }

  .hero__visual {
    order: -1;
    min-height: 280px;
  }

  .hero__visual-img {
    left: 0;
    width: 100%;
  }
  .hero__flow {
    transform: translateX(-50%);
    right: auto;
    left: 50%;
    align-items: center;
    justify-content: center;
  }
  .hero__flow-step{
    width: 80px;
    height: 80px;
  }
  .hero__flow-circle{
    width: 80px;
    height: 80px;
  }
  .hero__flow-icon{
    width: 20px;
    height: 20px;
    margin-top: -8px;
  }
  .hero__flow-label{
    font-size: 14px;
    top: 40px;
  }
  .hero__flow-arrow {
    font-size: 16px;
    margin-top: 0;
  }

  .problem {
    padding: 48px var(--container-padding);
  }

  .problem__header {
    margin-bottom: 40px;
  }

  .problem__title {
    font-size: 1.75rem;
  }

  .problem__cards {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 100%;
  }

  .problem-card {
    min-height: auto;
  }

  .problem__summary-text {
    font-size: 1.125rem;
    padding: 20px 24px;
    min-height: auto;
  }

  .system {
    padding: 48px var(--container-padding);
  }

  .system__header {
    margin-bottom: 40px;
  }

  .system__title {
    font-size: 1.75rem;
  }

  .system__cards {
    flex-direction: column;
    gap: 16px;
    max-width: 100%;
  }

  .step-card {
    width: 100%;
    max-width: 320px;
    height: auto;
    min-height: 400px;
  }

  .system__arrow {
    transform: rotate(90deg);
  }

  .reputation {
    padding: 48px var(--container-padding);
  }

  .reputation__title {
    font-size: 1.75rem;
  }

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

  .reputation__main {
    max-width: 100%;
  }

  .reputation__lead {
    margin-bottom: 32px;
  }

  .reputation__feature {
    flex-wrap: wrap;
    gap: 16px;
    height: auto;
    min-height: 113px;
    padding: 20px 24px;
  }

  .reputation__feature-name {
    white-space: normal;
  }

  .reputation__visual {
    justify-content: center;
    min-height: auto;
  }

  .reputation__visual-img {
    max-width: 100%;
  }

  .mechanism {
    padding: 48px var(--container-padding);
  }

  .mechanism__title {
    font-size: 1.75rem;
  }

  .mechanism__photo-wrap{
    height: auto;
  }

  .mechanism__photo {
    height: auto;
    margin-top: -30%;
  }

  .mechanism__cards {
    flex-direction: column;
    justify-content: center;
    padding-top: 24px;
  }

  .mechanism-card {
    width: 100%;
    max-width: 272px;
    margin: 0 auto;
  }

  .global-reviews {
    padding: 48px var(--container-padding);
  }

  .global-reviews__title {
    font-size: 1.75rem;
    white-space: normal;
  }

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

  .global-reviews__photo-wrap {
    max-width: 100%;
  }

  .results {
    padding: 48px var(--container-padding);
  }

  .results__title {
    font-size: 1.75rem;
  }

  .results__hotel-tags {
    justify-content: center;
  }

  .results__hotel-tag {
    width: 100%;
    max-width: 280px;
  }

  .results__hotel-tag--center {
    margin-top: 0;
  }

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

  .results__stat {
    width: 100%;
    max-width: 280px;
  }

  .testimonials {
    padding: 48px var(--container-padding) 0;
  }

  .testimonials__header {
    margin-bottom: 40px;
    padding-left: 0;
  }

  .testimonials__title {
    font-size: 1.75rem;
  }

  .testimonial-card {
    width: 100%;
    max-width: 379px;
  }

  .other-features {
    padding: 48px var(--container-padding);
  }

  .other-features__grid{
    justify-content: center;
  }

  .other-features__title {
    font-size: 1.75rem;
  }

  .feature-card {
    width: 100%;
    max-width: 299px;
  }

  .faq {
    padding: 48px var(--container-padding);
  }

  .faq__title {
    font-size: 1.75rem;
  }

  .faq__question-text {
    font-size: 1rem;
    white-space: normal;
  }

  .footer__inner {
    padding: 0;
  }

  .score-cards {
    padding: 40px var(--container-padding);
  }

  .score-cards__slider.is-slider {
    grid-template-columns: 36px minmax(0, 1fr) 36px;
    gap: 8px;
  }

  .score-cards__nav {
    width: 36px;
    height: 36px;
  }

  .score-card {
    width: 216px;
    min-width: 216px;
  }

  .score-card__before,
  .score-card__star {
    font-size: 1.25rem;
  }

  .score-card__after,
  .score-card__diff-num {
    font-size: 1.75rem;
  }

  .score-card__diff-plus {
    font-size: 1.25rem;
  }

  .cta-banner__inner {
    flex-direction: column;
    gap: 20px;
    min-height: auto;
    padding: 32px var(--container-padding);
  }

  .cta-banner__lead {
    width: auto;
    white-space: normal;
    font-size: 1.125rem;
  }

  .cta-banner__actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 12px;
  }

  .cta-banner__btn.btn--primary,
  .cta-banner__btn.btn--secondary {
    width: 100%;
    max-width: 280px;
    min-width: 0;
  }

  .footer__top {
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer__nav {
    gap: 1rem;
  }

  .bottom-cta__title {
    font-size: 1.75rem;
  }

}

/* ==========================================================================
   Animations (scroll reveal, hero entrance, CTA)
   ========================================================================== */
[data-animate],
[data-hero-item] {
  opacity: 0;
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
  transition-delay: var(--animate-delay, 0ms);
}

[data-animate="fade-up"],
[data-hero-item] {
  transform: translateY(24px);
}

[data-animate="scale-in"] {
  transform: scale(0.92);
}

[data-animate].is-visible,
[data-hero-item].is-visible {
  opacity: 1;
  transform: none;
}

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

  [data-animate],
  [data-hero-item] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
