/* ========================================
   CSS Custom Properties
======================================== */
:root {
  --color-navy: #1a2f4b;
  --color-orange: #ff6b35;
  --color-blue-accent: #60b3ff;
  --color-gold: #b8860b;
  --color-gold-light: #ffd700;
  --color-red: #e63946;
  --color-text-dark: #1a1a1a;
  --color-text-gray: #4a5568;
  --color-white: #ffffff;
  --color-bg: #ffffff;

  --font-base: 'Noto Sans JP', 'Inter', sans-serif;
  --font-num: 'Inter', 'Noto Sans JP', sans-serif;
  --font-logo: 'DM Sans', sans-serif;

  --header-height: 72px;
  --max-width: 1440px;
  --container: 1280px;
  margin-top: 0 !important;
}
#wpadminbar{
  display: none;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-base);
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text-dark);
  background: var(--color-bg);
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ========================================
   Buttons
======================================== */
.btn {
  min-width: 240px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-family: var(--font-base);
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s, transform 0.15s;
}
.btn:hover { opacity: 0.85; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--color-orange);
  color: var(--color-white);
  border-radius: 4px;
}
.btn--outline {
  background: var(--color-white);
  color: var(--color-orange);
  border: 1.5px solid var(--color-orange);
  border-radius: 4px;
}

.btn--sm { height: 40px; padding: 0 16px; font-size: 16px; }
.btn--lg { height: 53px; padding: 0 24px; font-size: 18px; font-weight: 600; }

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

.btn__icon--circle-fill {
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255);
}
.btn__icon--circle-outline {
  width: 30px; height: 30px; border-radius: 50%;
  border: 1.5px solid var(--color-orange);
}
.btn__text{
  white-space: nowrap;
}

/* CTA button with label badge */
.cta-btn-wrap { 
  min-width: 240px;
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  gap: 0; 
}
.cta-btn-wrap__label {
  min-width: 180px;
  text-align: center;
  font-size: 13px;
  color: var(--color-orange);
  border: 1px solid var(--color-orange);
  padding: 2px 12px;
  border-radius: 20px;
  margin-bottom: -8px;
  background: var(--color-bg);
  position: relative;
  z-index: 1;
  white-space: nowrap;
}
/* .mid-cta .cta-btn-wrap__label,
.mid-cta--b .cta-btn-wrap__label { background: var(--color-navy); }
.footer-cta .cta-btn-wrap__label { background: var(--color-navy); } */

/* ========================================
   Header / Navbar
======================================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-height);
  background: var(--color-navy);
  z-index: 100;
  transition: box-shadow 0.2s;
}
.header.is-scrolled { box-shadow: 0 2px 12px rgba(0,0,0,0.3); }

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

.header__logo {
  font-family: var(--font-logo);
  font-weight: 700;
  min-width: 140px;
  flex-shrink: 0;
}
.header__logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.header__logo-white { color: var(--color-white); }
.header__logo-blue  { color: var(--color-blue-accent); }

.header__nav { flex: 1; display: flex; justify-content: center; }
.header__nav-list { display: flex; gap: 32px; }
.header__nav-link {
  color: var(--color-white);
  font-size: 16px;
  font-weight: 400;
  transition: color 0.2s;
}
.header__nav-link:hover { color: var(--color-blue-accent); }

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

.header__actions .btn {
  min-width: auto;
}
.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.header__hamburger-bar {
  display: block;
  width: 24px; height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.header__hamburger[aria-expanded="true"] .header__hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header__hamburger[aria-expanded="true"] .header__hamburger-bar:nth-child(2) {
  opacity: 0;
}
.header__hamburger[aria-expanded="true"] .header__hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ========================================
   Hero
======================================== */
.hero {
  margin-top: var(--header-height);
  height: 100svh;
  overflow: hidden;
  position: relative;
  background: var(--color-navy);
}
.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  left: 0;
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 44px 65px 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  height: 100%;
  justify-content: center;
}
.hero__title {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 1083px;
}
.hero__title-line {
  display: block;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-white);
  text-shadow: 0 6px 6px rgba(0, 0, 0, 0.4);
}
.hero__lead {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 766px;
}
.hero__lead-line {
  display: block;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-white);
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.hero__stats {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero__stat {
  position: relative;
  width: 245px;
  height: 95px;
  background: var(--color-white);
  border: 1px solid var(--color-gold);
  overflow: hidden;
  padding: 10px 22px;
}
.hero__stat-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 8px;
}
.hero__stat-icon {
  width: 24px;
  height: auto;
  object-fit: contain;
}
.hero__stat-icon--star {
  top: 10px;
  left: 22px;
  object-fit: contain;
  width: 19px;
}
.hero__stat-icon--rating {
  top: 36px;
  right: 38px;
}
.hero__stat-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-dark);
  text-align: center;
  line-height: 1.2;
}
.hero__stat-value {
  position: absolute;
  top: 26px;
  left: 0;
  right: 0;
  text-align: center;
  font-weight: 700;
  color: var(--color-text-dark);
  line-height: 1;
}
.hero__stat-value-prefix,
.hero__stat-value-suffix {
  font-size: 14px;
}
.hero__stat-value-num {
  font-size: 50px;
  color: var(--color-red);
  letter-spacing: -0.02em;
}
.hero__stat-value--score {
  font-size: 50px;
  color: var(--color-red);
  letter-spacing: -2px;
  line-height: 1;
}
.hero__flow {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.hero__flow-step {
  position: relative;
  width: 148px;
  height: 97px;
  background: var(--color-white);
  border: 1px solid var(--color-gold);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px;
}
.hero__flow-icon {
  display: block;
  height: auto;
  height: 46px;
  object-fit: contain;
}
.hero__flow-text {
  bottom: 12px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.1;
  color: var(--color-text-dark);
  text-align: center;
}
.hero__flow-arrow {
  font-family: var(--font-num);
  font-size: 32px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
  padding: 0 4px;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.hero__cta {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 61px;
  width: 100%;
  padding: 64px 0 0 0;
}
.hero__btn {
  width: 281px;
  justify-content: center;
  border-radius: 8px;
  font-size: 20px;
  gap: 12px;
}
.hero__btn.btn--primary {
  border: 0.75px solid var(--color-white);
  height: 53px;
}
.hero__btn--download {
  height: 57px;
  box-shadow: 0 20px 12.5px rgba(0, 0, 0, 0.1), 0 8px 5px rgba(0, 0, 0, 0.1);
}
.hero .cta-btn-wrap__label {
  font-size: 10px;
  padding: 2px 10px;
  background: var(--color-white);
}

/* ========================================
   Logo Slider
======================================== */
.logo-slider {
  background: var(--color-bg);
  padding: 40px 0;
  overflow: hidden;
}
.logo-slider__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.logo-slider__title {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-text-dark);
  line-height: 1.2;
  letter-spacing: -0.48px;
}
.logo-slider__note {
  font-size: 14px;
  color: var(--color-text-gray);
  line-height: 1.5;
}

/* ========================================
   MidCTA
======================================== */
.mid-cta {
  background: var(--color-navy);
  padding: 29px 0;
}
.mid-cta__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.mid-cta__lead {
  color: var(--color-white);
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}
.mid-cta__buttons {
  display: flex;
  gap: 48px;
  align-items: flex-end;
}

/* ========================================
   Stats
======================================== */
.stats {
  position: relative;
  overflow: hidden;
  background-image: url("../../img/sales/lp/mairy-review-business/stats-bg.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.stats__inner {
  position: relative;
  z-index: 1;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 73px 64px 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.stats__header {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.stats__heading {
  font-size: 48px;
  font-weight: 700;
  color: var(--color-text-dark);
  line-height: 1.2;
  letter-spacing: -0.48px;
}
.stats__subtext {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-gray);
  line-height: 1.5;
}
.stats__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 67px;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  max-width: 965px;
}
.stats-card {
  flex: 0 1 449px;
  width: min(100%, 449px);
  min-height: 243px;
  background: var(--color-white);
  border: 3px solid var(--color-gold);
  border-radius: 3px;
  box-shadow: 0 4px 4px rgba(0,0,0,0.25);
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.stats-card__number {
  text-align: center;
  font-family: var(--font-num);
  font-weight: 600;
  color: var(--color-gold);
  letter-spacing: 1.6px;
  line-height: 1.2;
}
.stats-card__number--sm { font-size: 32px; }
.stats-card__number--lg { font-size: 64px; letter-spacing: 3.2px; }
.stats-card__number--score { font-size: 64px; letter-spacing: -0.64px; }
.stats-card__text {
  font-size: 16px;
  color: var(--color-text-gray);
  line-height: 1.5;
}

/* ========================================
   Feature
======================================== */
.feature {
  background: var(--color-bg);
  padding: 112px 0;
}
.feature__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  min-height: 640px;
}
.feature__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.feature__heading {
  font-family: var(--font-base);
  font-size: 48px;
  font-weight: 700;
  color: var(--color-text-dark);
  line-height: 1.3;
  letter-spacing: -0.48px;
}
.feature__text {
  font-size: 18px;
  color: var(--color-text-gray);
  line-height: 1.5;
}
.feature__image {
  height: 640px;
  overflow: hidden;
  border-radius: 4px;
}
.feature__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ========================================
   Services
======================================== */
.services {
  background: var(--color-bg);
  padding: 112px 0;
}
.services__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  flex-direction: column;
  gap: 80px;
  align-items: center;
}
.services__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 768px;
  text-align: center;
}
.services__heading {
  font-size: 48px;
  font-weight: 700;
  color: var(--color-text-dark);
  line-height: 1.2;
  letter-spacing: -0.48px;
}
.services__subtext {
  font-size: 18px;
  color: var(--color-text-gray);
  line-height: 1.5;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  width: 100%;
}
.service-card {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.service-card__image {
  aspect-ratio: 405/240;
  overflow: hidden;
  border-radius: 4px;
}
.service-card__image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.service-card__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
}
.service-card__heading {
  font-size: 32px;
  font-weight: 500;
  color: var(--color-text-dark);
  line-height: 1.3;
  letter-spacing: -0.32px;
}
.service-card__text {
  font-size: 16px;
  color: var(--color-text-gray);
  line-height: 1.5;
}

/* ========================================
   Results (Hotel Score Cards Slider)
======================================== */
.results {
  background: var(--color-bg);
  padding: 63px 0;
}
.results__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 124px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.results__slider-wrapper {
  width: 100%;
  overflow: hidden;
}
.results__slider {
  display: flex;
  gap: 28px;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.score-card {
  flex: 0 0 auto;
  width: auto;
  min-width: 0;
  min-height: 276px;
  box-sizing: border-box;
  background: var(--color-white);
  border: 2px solid var(--color-gold);
  border-radius: 5px;
  box-shadow: 0 4px 4px rgba(0,0,0,0.25);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.score-card__name {
  font-family: var(--font-num);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-gold);
  text-align: center;
  letter-spacing: 0.35px;
}
.score-card__platform {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.score-card__platform-name {
  font-family: var(--font-num);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-dark);
  letter-spacing: 0.35px;
}
.score-card__scores { display: flex; flex-direction: column; gap: 4px; }
.score-card__value {
  font-family: var(--font-num);
  font-size: 24px;
  font-weight: 600;
  color: var(--color-text-dark);
  line-height: 1.2;
}
.score-card__star { color: var(--color-gold-light); }
.score-card__new { color: var(--color-red); font-size: 36px; }
.score-card__diff-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.score-card__diff-badge {
  font-family: var(--font-num);
  font-size: 14px;
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
  padding: 0 8px;
  height: 24px;
  display: flex;
  align-items: center;
  letter-spacing: 0.35px;
}
.score-card__diff-value {
  font-family: var(--font-num);
  font-size: 24px;
  font-weight: 600;
  color: var(--color-red);
  line-height: 1.2;
}
.score-card__diff-value:has(+ ) {}
.score-card__divider {
  height: 1px;
  background: var(--color-gold);
  opacity: 0.3;
  margin: 4px 0;
}

.results__controls {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.results__inner.is-slider-active .results__controls {
  display: flex;
}
.results__arrow {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--color-text-gray);
  background: none;
  font-size: 18px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-text-gray);
  transition: background 0.2s, color 0.2s;
}
.results__arrow:hover { background: var(--color-navy); color: var(--color-white); border-color: var(--color-navy); }
.results__dots { display: flex; gap: 8px; }
.results__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: background 0.2s;
}
.results__dot.is-active { background: var(--color-navy); }

/* ========================================
   Testimonials
======================================== */
.testimonials {
  background: var(--color-bg);
  padding: 112px 80px;
}
.testimonials__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}
.testimonials__heading {
  font-size: 48px;
  font-weight: 700;
  color: var(--color-text-dark);
  text-align: center;
  line-height: 1.2;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
}
.testimonial-card {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.testimonial-card__avatar { display: flex; justify-content: flex-start; }
.testimonial-card__text {
  font-size: 15px;
  color: var(--color-text-dark);
  line-height: 1.7;
  flex: 1;
}
.testimonial-card__divider {
  height: 1px;
  background: #e0e0e0;
}
.testimonial-card__name {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-navy);
}

/* ========================================
   Footer CTA
======================================== */
.footer-cta {
  background: var(--color-navy);
  padding: 62px 0;
}
.footer-cta__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.footer-cta__heading {
  font-size: 46px;
  font-weight: 700;
  color: var(--color-white);
  text-align: center;
  line-height: 1.3;
}
.footer-cta__subtext {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  text-align: center;
}
.footer-cta__buttons {
  display: flex;
  gap: 48px;
  align-items: flex-end;
  margin-top: 16px;
}
.footer-cta__tel {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  text-align: center;
  margin-top: 8px;
}

/* ========================================
   Footer
======================================== */
.footer {
  background: var(--color-navy);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 40px 0;
}
.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 120px;
}
.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
}
.footer__brand { display: flex; flex-direction: column; gap: 6px; }
.footer__brand-name {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-white);
}
.footer__brand-name img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.footer__brand-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}
.footer__nav { display: flex; gap: 32px; }
.footer__nav-link {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
}
.footer__nav-link:hover { color: var(--color-white); }
.footer__divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
}
.footer__copy {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}
.footer__legal { display: flex; gap: 24px; }
.footer__legal-link {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer__legal-link:hover { color: var(--color-white); }

/* ========================================
   Responsive (Tablet: 769px – 1350px)
======================================== */
@media (max-width: 1350px) {
  .header__inner { padding: 0 40px; }
  .header__nav-list { gap: 24px; }

  .hero__inner { padding: 40px; }
  .hero__title-line { font-size: 48px; }
  .hero__cta { gap: 32px; flex-wrap: wrap; }

  .mid-cta__inner { padding: 0 40px; }
  .stats__inner { padding: 56px 40px 48px; gap: 40px; }
  .stats__heading { font-size: 40px; }
  .stats__subtext { font-size: 16px; }
  .stats__cards { gap: 32px; }

  .feature__inner { padding: 0 40px; }
  .services__inner { padding: 0 40px; }
  .results__inner { padding: 0 40px; }

  .testimonials { padding: 80px 40px; }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }

  .footer-cta__inner,
  .footer__inner { padding: 0 40px; }
  .footer-cta__heading { font-size: 36px; }
  .footer__top { flex-wrap: wrap; gap: 24px; }

  .problems__inner { padding: 0 32px; }
  .solution__hero { padding: 0 32px 60px; }
  .steps__inner,
  .other-features__inner,
  .faq__inner { padding: 0 32px; }

  .solution__hero { gap: 32px; }
  .solution__image { flex: 1 1 360px; max-width: 100%; }

  .steps__grid { flex-wrap: wrap; }
  .step-card { flex: 1 1 calc(50% - 12px); min-width: 280px; }
  .step-card:nth-child(3) { flex: 1 1 100%; max-width: 560px; }
}

@media (max-width: 1100px) {
  .header__nav-list { gap: 16px; }
  .header__nav-link { font-size: 14px; }
  .header__actions .btn--sm {
    height: 36px;
    padding: 0 12px;
    font-size: 14px;
  }

  .hero__title-line { font-size: 40px; }
  .hero__flow { justify-content: flex-start; }

  .stats {
    height: auto;
    min-height: 560px;
  }
  .stats__inner {
    height: auto;
    justify-content: flex-start;
    padding: 48px 40px 56px;
    gap: 48px;
  }
  .stats__cards {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .stats-card {
    flex: none;
    width: 100%;
    max-width: 449px;
  }

  .feature__inner {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 32px;
  }
  .feature__image { height: 360px; }

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

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

  .solution__hero {
    flex-direction: column;
    align-items: stretch;
  }
  .solution__image {
    flex: none;
    width: 100%;
    height: 280px;
  }
  .solution__heading { font-size: 36px; }
  .solution__heading--accent { font-size: 44px; }

  .steps__grid { flex-direction: column; align-items: center; }
  .step-card {
    flex: none;
    width: 100%;
    max-width: 520px;
  }
  .step-card:nth-child(3) { max-width: 520px; }

  .other-features__grid { gap: 24px; }
  .feature-extra-card {
    flex: 1 1 calc(50% - 12px);
    max-width: none;
  }
  .feature-extra-card:nth-child(3) {
    flex: 1 1 100%;
    max-width: 520px;
  }

  .mid-cta__buttons,
  .footer-cta__buttons { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 900px) {
  .services__grid { grid-template-columns: 1fr; }

  .problems__grid { gap: 24px; }
  .problem-card { flex: 1 1 100%; max-width: 400px; }

  .other-features__grid { flex-direction: column; align-items: center; }
  .feature-extra-card,
  .feature-extra-card:nth-child(3) {
    flex: none;
    width: 100%;
    max-width: 400px;
  }
}

/* ========================================
   Responsive (SP: max 768px)
======================================== */
@media (max-width: 768px) {
  :root { --header-height: 60px; }

  .header__inner { padding: 0 20px; }
  .header__nav {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0; right: 0;
    background: var(--color-navy);
    padding: 24px 20px 32px;
    flex-direction: column;
    align-items: flex-start;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .header__nav.is-open { display: flex; }
  .header__nav-list { flex-direction: column; gap: 20px; }
  .header__actions { display: none; }
  .header__hamburger { display: flex; }

  .hero { min-height: auto; }
  .hero__img { height: 100%; min-height: 480px; top: 0; }
  .hero__inner {
    padding: 32px 20px 40px;
    gap: 16px;
    align-items: stretch;
  }
  .hero__title-line { font-size: 28px; }
  .hero__lead-line { font-size: 15px; }
  .hero__stats { flex-direction: column; gap: 12px; }
  .hero__stat { width: 100%; max-width: 320px; }
  .hero__flow { justify-content: center; gap: 4px; }
  .hero__flow-step { width: 88px; height: 88px; }
  .hero__flow-text { font-size: 14px; bottom: 10px; }
  .hero__flow-arrow { font-size: 18px; }
  .hero__cta {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 16px 0 0;
    margin-top: 8px;
  }
  .hero__btn { width: 100%; max-width: 320px; }

  .mid-cta { padding: 32px 0; }
  .mid-cta__inner { padding: 0 20px; }
  .mid-cta__lead { font-size: 16px; }
  .mid-cta__buttons { flex-direction: column; gap: 24px; align-items: center; }

  .stats { height: auto; min-height: 0; padding: 60px 0; }
  .stats::before { top: 0; height: 100%; }
  .stats__inner { padding: 48px 20px; gap: 32px; }
  .stats__heading { font-size: 28px; }
  .stats__subtext { font-size: 15px; font-weight: 700; }
  .stats__cards { flex-direction: column; gap: 24px; }
  .stats-card { width: 100%; max-width: 400px; }
  .stats-card__number--sm { font-size: 24px; }
  .stats-card__number--lg,
  .stats-card__number--score { font-size: 48px; }

  .feature { padding: 60px 0; }
  .feature__inner {
    padding: 0 20px;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }
  .feature__content { padding: 0; order: 2; }
  .feature__image { height: 260px; order: 1; }
  .feature__heading { font-size: 32px; }
  .feature__text { font-size: 15px; }

  .services { padding: 60px 0; }
  .services__inner { padding: 0 20px; gap: 48px; }
  .services__heading { font-size: 28px; }
  .services__subtext { font-size: 15px; }
  .services__grid { grid-template-columns: 1fr; gap: 40px; }
  .service-card__heading { font-size: 22px; }

  .results { padding: 40px 0; }
  .results__inner { padding: 0 20px; }
  .results__slider {
    gap: 16px;
  }
  .score-card {
    box-sizing: border-box;
  }
  .results__inner.is-slider-active .results__controls {
    justify-content: center;
    margin-top: 20px;
  }
  .results__arrow {
    display: none;
  }
  .results__dots {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .testimonials { padding: 60px 20px; }
  .testimonials__heading { font-size: 32px; }
  .testimonials__grid { grid-template-columns: 1fr; gap: 20px; }

  .footer-cta { padding: 48px 0; }
  .footer-cta__inner { padding: 0 20px; }
  .footer-cta__heading { font-size: 28px; }
  .footer-cta__buttons { flex-direction: column; gap: 24px; align-items: center; }

  .footer { padding: 40px 0; }
  .footer__inner { padding: 0 20px; }
  .footer__top { flex-direction: column; align-items: flex-start; gap: 24px; }
  .footer__nav { flex-wrap: wrap; gap: 16px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ========================================
   Problems
======================================== */
.problems {
  background-color: var(--color-navy);
  padding: 100px 0;
}

.problems__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.problems__header {
  text-align: center;
  margin-bottom: 48px;
}

.problems__heading {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 16px;
}

.problems__subtext {
  font-size: 16px;
  color: #fff;
  line-height: 1.5;
}

.problems__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.problem-card {
  flex: 1 1 280px;
  max-width: 300px;
  width: auto;
  background: #fff;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.25);
  border: 0.75px solid #e5e7eb;
}

.problem-card__image {
  height: 224px;
  overflow: hidden;
  background: #f3f4f6;
}

.problem-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.problem-card__body {
  padding: 24px 16px;
  min-height: 113px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.problem-card__heading {
  font-size: 20px;
  font-weight: 500;
  color: var(--color-navy);
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 768px) {
  .problems { padding: 60px 0; }
  .problems__inner { padding: 0 20px; }
  .problems__heading { font-size: 28px; }
  .problems__grid { flex-direction: column; align-items: center; }
  .problem-card { width: 100%; max-width: 360px; }
}

/* ========================================
   Solution
======================================== */
.solution {
  background: #fff;
  padding: 80px 0 0;
}

.solution__hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 60px;
  display: flex;
  align-items: center;
  gap: 48px;
}

.solution__image {
  flex: 0 0 500px;
  height: 360px;
  overflow: hidden;
  border-radius: 8px;
}

.solution__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.solution__text {
  flex: 1;
}

.solution__heading {
  font-size: 44px;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.4;
}

.solution__heading--accent {
  color: #1a8c5a;
  font-size: 56px;
}

@media (max-width: 768px) {
  .solution { padding: 60px 0 0; }
  .solution__hero { flex-direction: column; padding: 0 20px 40px; gap: 32px; }
  .solution__image { flex: none; width: 100%; height: 240px; }
  .solution__heading { font-size: 32px; }
  .solution__heading--accent { font-size: 40px; }
}

/* ========================================
   Steps
======================================== */
.steps {
  background: #fff;
  padding: 0 0 100px;
}

.steps__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.steps__header {
  text-align: center;
  margin-bottom: 48px;
}

.steps__heading {
  font-size: 48px;
  font-weight: 700;
  color: var(--color-text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.steps__heading--num {
  color: #1a8c5a;
  font-size: 64px;
}

.steps__subtext {
  font-size: 18px;
  color: var(--color-text-gray);
  line-height: 1.5;
}

.steps__grid {
  display: flex;
  gap: 24px;
  justify-content: center;
}

.step-card {
  flex: 1 1 0;
  min-width: 0;
  background: #fff;
  border: 0.75px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.step-card__image {
  position: relative;
  height: 228px;
  background: #e5e7eb;
  overflow: hidden;
}

.step-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.step-card__label {
  position: absolute;
  top: 19px;
  left: 19px;
  z-index: 1;
  background: #1a8c5a;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  padding: 0 16px;
  line-height: 1.5;
}

.step-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 12px;
}

.step-card__heading {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text-dark);
  line-height: 1.4;
  margin-bottom: 12px;
}

.step-card__heading-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.step-card__text {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text-gray);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .steps { padding: 0 0 60px; }
  .steps__inner { padding: 0 20px; }
  .steps__heading { font-size: 32px; }
  .steps__heading--num { font-size: 44px; }
  .steps__subtext { font-size: 15px; }
  .steps__grid { flex-direction: column; align-items: center; }
  .step-card { flex: none; width: 100%; max-width: 420px; }
}

/* ========================================
   Other Features
======================================== */
.other-features {
  background: #fff;
  padding: 80px 0;
}

.other-features__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.other-features__heading {
  font-size: 40px;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.5;
  margin-bottom: 48px;
  text-align: center;
}

.other-features__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 31px;
  justify-content: center;
}

.feature-extra-card {
  flex: 1 1 260px;
  max-width: 299px;
  width: auto;
  background: #fff;
  border: 0.75px solid var(--color-gold);
  padding-bottom: 24px;
  position: relative;
}

.feature-extra-card__image {
  height: 180px;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 20px;
  background: #fff;
}

.feature-extra-card__image img {
  height: 160px;
  width: auto;
  object-fit: contain;
  max-width: 100%;
}

.feature-extra-card__heading {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-navy);
  text-align: center;
  margin-bottom: 16px;
  padding: 0 16px;
}

.feature-extra-card__text {
  font-size: 14px;
  color: var(--color-text-gray);
  text-align: center;
  line-height: 1.7;
  padding: 0 32px;
  margin-bottom: 16px;
}

.feature-extra-card__highlight {
  font-size: 16px;
  font-weight: 600;
  color: #1a8c5a;
  text-align: center;
  padding: 0 16px;
}

@media (max-width: 768px) {
  .other-features { padding: 60px 0; }
  .other-features__inner { padding: 0 20px; }
  .other-features__heading { font-size: 28px; margin-bottom: 32px; }
  .other-features__grid { flex-direction: column; align-items: center; }
  .feature-extra-card { width: 100%; max-width: 360px; }
}

/* ========================================
   FAQ
======================================== */
.faq {
  background: #fff;
  padding: 80px 0;
}

.faq__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.faq__header {
  text-align: center;
  margin-bottom: 48px;
}

.faq__heading {
  font-size: 40px;
  font-weight: 700;
  color: var(--color-text-dark);
  line-height: 1.5;
  margin-bottom: 16px;
}

.faq__subtext {
  font-size: 18px;
  color: var(--color-text-gray);
  line-height: 1.5;
}

.faq__list {
  max-width: 960px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 0.75px solid #bbcdd8;
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-base);
  font-size: 18px;
  font-weight: 700;
  color: #0e4d6e;
  line-height: 1.5;
}

.faq-item__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.faq-item__question[aria-expanded="true"] .faq-item__icon {
  transform: rotate(180deg);
}

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

.faq-item__answer.is-open {
  opacity: 1;
  padding: 0 0 24px;
}

@media (prefers-reduced-motion: reduce) {
  .faq-item__answer {
    transition: none;
  }
}

.faq-item__answer p {
  font-size: 16px;
  color: var(--color-text-gray);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .faq { padding: 60px 0; }
  .faq__inner { padding: 0 20px; }
  .faq__heading { font-size: 28px; }
  .faq__subtext { font-size: 15px; }
  .faq-item__question { font-size: 15px; }
}
/* ========================================
   Animation base
======================================== */
.animate-target {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: var(--animate-delay, 0ms);
}

.animate-target.is-visible {
  opacity: 1;
  transform: none;
}

.hero .animate-target {
  transform: translateY(16px);
}

.hero.is-ready .animate-target {
  opacity: 1;
  transform: none;
}

/* Hero background */
.hero__img {
  transform: scale(1.03);
  animation: heroBgZoom 8s ease-out forwards;
}

@keyframes heroBgZoom {
  to { transform: scale(1); }
}

/* CTA pulse (hero primary only) */
.hero__btn.btn--primary {
  animation: ctaPulse 3s ease-in-out 2;
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0); }
  50% { box-shadow: 0 0 0 6px rgba(255, 107, 53, 0.2); }
}

.btn:focus-visible {
  outline: 2px solid var(--color-orange);
  outline-offset: 3px;
}

.btn--primary:hover,
.btn--outline:hover {
  opacity: 0.85;
  transform: translateY(-1px) scale(1.02);
}

/* Sticky CTA (SP) */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 12px 16px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  background: var(--color-white);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
  gap: 10px;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sticky-cta.is-visible {
  transform: translateY(0);
}

.sticky-cta__inner {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto;
}

.sticky-cta__inner .btn {
  flex: 1;
  justify-content: center;
}

@media (max-width: 768px) {
  .sticky-cta {
    display: flex;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .animate-target,
  .hero .animate-target {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero__img {
    animation: none;
    transform: none;
  }

  .hero__btn.btn--primary {
    animation: none;
  }

  .sticky-cta {
    transition: none;
  }

}
