/* ============================================
   BRANDING MOVIE LP - style.css
   Design: Cinematic × Minimal × Premium
   ============================================ */

/* ===== CSS VARIABLES ===== */
:root {
  --color-bg: #0c0c0e;
  --color-bg-2: #111115;
  --color-bg-light: #f7f5f2;
  --color-surface: #161619;
  --color-surface-2: #1e1e23;
  --color-primary: #c9a96e;
  --color-primary-dark: #a8854a;
  --color-primary-light: #e8cfa0;
  --color-text: #f0ece6;
  --color-text-muted: #9e9a94;
  --color-text-dark: #1a1a20;
  --color-accent: #6e9fc9;
  --color-border: rgba(201, 169, 110, 0.2);
  --color-border-light: rgba(255,255,255,0.08);

  --font-serif: 'Zen Old Mincho', 'Georgia', serif;
  --font-sans: 'Noto Sans JP', 'Helvetica Neue', sans-serif;

  --max-width: 1080px;
  --section-pad: 120px;
  --section-pad-sm: 80px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

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

ul { list-style: none; }

em {
  font-style: normal;
  color: var(--color-primary);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--color-bg); }
::-webkit-scrollbar-thumb { background: var(--color-primary); border-radius: 3px; }

/* ===== CONTAINER ===== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

/* ===== SECTION BASE ===== */
.section {
  padding: var(--section-pad) 0;
  position: relative;
}

.section-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--color-primary);
  text-transform: uppercase;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--color-primary);
}

.section-label.light {
  color: var(--color-primary-light);
}
.section-label.light::after {
  background: var(--color-primary-light);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-text);
  margin-bottom: 48px;
}

.section-title.light {
  color: #fff;
}

.section-lead {
  font-size: 15px;
  color: var(--color-text-muted);
  margin-bottom: 56px;
  max-width: 600px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 2px;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  border: none;
  white-space: nowrap;
}

.btn-primary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f0d79d 0%, #c9a96e 46%, #a8854a 100%);
  color: #1a1208;
  box-shadow: 0 8px 28px rgba(201, 169, 110, 0.38), inset 0 1px 0 rgba(255,255,255,0.55);
  animation: ctaPulse 2.8s ease-in-out infinite;
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.48) 42%, transparent 58%);
  transform: translateX(-120%);
  transition: transform 0.75s var(--ease-out);
  pointer-events: none;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ffe6ad 0%, #d8b879 46%, #b28c4d 100%);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(201, 169, 110, 0.52), inset 0 1px 0 rgba(255,255,255,0.62);
}

.btn-primary:hover::before {
  transform: translateX(120%);
}

.btn-primary i {
  position: relative;
  z-index: 1;
  transition: transform 0.3s var(--ease-out);
}

.btn-primary:hover i {
  transform: translateX(3px);
}

.btn-ghost {
  background: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

.btn-ghost:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-2px);
}

.btn-ghost-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.5);
}

.btn-ghost-light:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.btn-white {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fff 0%, #f0d79d 100%);
  color: #1a1208;
  box-shadow: 0 10px 34px rgba(255,255,255,0.24), 0 4px 24px rgba(0,0,0,0.3);
  animation: ctaPulseLight 2.8s ease-in-out infinite;
}

.btn-white:hover {
  background: linear-gradient(135deg, #fff7e7 0%, #e8cfa0 100%);
  transform: translateY(-2px);
  box-shadow: 0 14px 44px rgba(201,169,110,0.42), 0 8px 32px rgba(0,0,0,0.4);
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
}

.site-header.scrolled,
.site-header.menu-open {
  background: rgba(12, 12, 14, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border-light);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.logo img {
  width: 52px;
  height: auto;
}

.logo span {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.4;
  color: rgba(240,236,230,0.74);
  white-space: nowrap;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header-nav a {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: rgba(240,236,230,0.7);
  transition: color 0.2s;
}

.header-nav a:hover { color: var(--color-primary); }

.btn-nav {
  position: relative;
  overflow: hidden;
  padding: 10px 24px !important;
  background: linear-gradient(135deg, #f0d79d 0%, #c9a96e 54%, #a8854a 100%) !important;
  color: #1a1208 !important;
  border-radius: 2px !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  box-shadow: 0 6px 22px rgba(201,169,110,0.28);
  transition: all 0.3s var(--ease-out) !important;
  animation: ctaPulseNav 2.8s ease-in-out infinite;
}

.btn-nav::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.45) 42%, transparent 58%);
  transform: translateX(-120%);
  transition: transform 0.75s var(--ease-out);
}

.btn-nav:hover {
  background: linear-gradient(135deg, #ffe6ad 0%, #d8b879 54%, #b28c4d 100%) !important;
  color: #1a1208 !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(201,169,110,0.42) !important;
}

.btn-nav:hover::before {
  transform: translateX(120%);
}

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

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--color-text);
  transition: all 0.3s ease;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: rgba(12, 12, 14, 0.97);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--color-border-light);
  padding: 24px 40px 32px;
  gap: 20px;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-size: 15px;
  color: rgba(240,236,230,0.8);
  letter-spacing: 0.05em;
}

.btn-nav-mobile {
  display: inline-block;
  margin-top: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #f0d79d 0%, #c9a96e 54%, #a8854a 100%);
  color: #1a1208 !important;
  font-weight: 600;
  text-align: center;
  border-radius: 2px;
  width: fit-content;
  box-shadow: 0 8px 28px rgba(201,169,110,0.34);
  animation: ctaPulseNav 2.8s ease-in-out infinite;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  /* min-height: 100svh; */
  padding: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: #0c0c0e;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.25);
}

.hero-decoration {
    position: absolute;
    right: -20%;
    bottom: 0;
    z-index: 1;
    /* width: min(42vw, 520px); */
    max-height: 150vh;
    object-fit: contain;
    opacity: 0.16;
    pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(12, 12, 14, 0.55) 0%,
      rgba(12, 12, 14, 0.65) 45%,
      rgba(12, 12, 14, 0.8) 100%
    ),
    linear-gradient(135deg, rgba(201,169,110,0.20) 0%, transparent 55%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 59px,
      rgba(255,255,255,0.12) 60px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 59px,
      rgba(255,255,255,0.12) 60px
    );
    opacity: 1;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20vh 40px 17.5vh;
  width: 100%;
  /* min-height: 100svh; */
  display: flex;
  align-items: center;
}

.hero-label {
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--color-primary);
  text-transform: uppercase;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
}

.hero-main {
  margin-bottom: clamp(22px, 3vh, 32px);
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.4s forwards;
  line-height: 1;
}

.hero-main .line1 {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(28px, 6vw, 66px);
  font-weight: 300;
  color: #fff;
  line-height: 1.2;
  letter-spacing: 0.03em;
  text-shadow: 0 4px 18px rgba(0,0,0,0.46);
}

.hero-main .line2 {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(25px, 5.5vw, 55px);
  font-weight: 400;
  color: var(--color-primary);
  margin-top: 8px;
  text-shadow: 0 4px 18px rgba(0,0,0,0.5);
}

.hero-sub {
  font-size: clamp(16px, 2vw, 32px);
  color: rgba(240,236,230,0.8);
  line-height: 1.9;
  margin-bottom: 0;

  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.6s forwards;
}

.hero-lower {
  display: flex;
  align-items: stretch;
  gap: clamp(32px, 7vw, 96px);
}

.hero-copy {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-cta {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.9s forwards;
}

.hero-cta .btn {
  min-width: 220px;
  justify-content: center;
}

.hero-text {
  max-width: 1120px;
  margin: auto;
}

.hero-image {
  flex: 0 1 clamp(220px, 20vw, 330px);
  display: flex;
  align-items: flex-end;
  pointer-events: none;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 1.05s forwards;
}

.hero-image img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.86;
}

@media (min-width: 1025px) {
  .hero-copy {
    padding: 1.5rem 0;
  }

  .hero-main .line1 {
    font-size: clamp(40px, 6vw, 80px);
    white-space: nowrap;
  }

  .hero-main .line2 {
    font-size: clamp(36px, 5vw, 65px);
    white-space: nowrap;
  }

  .hero-sub {
    font-size: clamp(20px, 2vw, 28px);
    white-space: nowrap;
  }
}

@media (max-width: 1024px) and (min-width: 768px) {
  .hero-content {
    padding-inline: 32px;
  }

  .hero-image {
    flex-basis: min(30vw, 280px);
  }
}

@media (max-width: 767px) {
  .hero {
    min-height: auto;
    padding-top: 0;
    padding-bottom: 72px;
  }

  .hero-content {
    min-height: auto;
    padding: 96px 24px 56px;
    text-align: center;
    display: block;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-main {
    margin-bottom: 8px;
  }

  .hero-sub {
    margin-bottom: 28px;
  }

  .hero-lower {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .hero-cta {
    align-items: center;
    justify-content: center;
    margin-top: 0;
  }

  .hero-cta .btn {
    min-width: 0;
  }

  .hero-image {
    display: flex;
    order: -1;
    /* width: 65%; */
    max-width: 230px;
    margin: 20px auto;
    justify-content: center;
    align-items: center;
  }

}

@media (max-width: 360px) {
  .hero-main {
    margin-bottom: 0;
  }

  .hero-main .line1 {
    font-size: 26px;
  }

  .hero-main .line2 {
    font-size: 23px;
    line-height: 1.2;
  }
}
.hero-scroll {
  position: absolute;
  bottom: 0;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeIn 1s ease 1.5s forwards;
  transform: translateX(-50%);
}

.hero-scroll span {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--color-text-muted);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--color-primary), transparent);
  animation: scrollDown 2s ease-in-out infinite;
}

/* ===== PROBLEM ===== */
.problem {
  background: var(--color-bg-light);
}

.problem .section-label {
  color: #8a7355;
}

.problem .section-label::after {
  background: #8a7355;
}

.problem .section-title {
  color: var(--color-text-dark);
  /* max-width: 700px; */
}
@media (max-width: 768px) {
.problem .section-title{
  margin-bottom: 20px;
}
}

.problem .section-title em {
  color: #8a5a1e;
}

.problem-lead {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 34%);
  align-items:flex-start;
  gap: 15px;
}

.problem-lead-text {
  min-width: 0;
}

.problem-lead-visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.problem-lead-visual img {
  width: min(100%, 360px);
  height: auto;
  display: block;
}

.problem-body {
  max-width: 680px;
}

.problem-solution-body {
  margin-top: 56px;
  margin-left: auto;
  margin-right: auto;
  max-width: 760px;
  padding: 0 0 4px;
  text-align: center;
}
@media (max-width: 768px) {
.problem-solution-body{
  margin-top: 20px;
}
}

.problem-body p {
  font-size: 16px;
  color: #3a3632;
  line-height: 2;
  margin-bottom: 20px;
}

.problem-highlight {
  font-family: var(--font-serif);
  font-size: 18px !important;
  font-weight: 500 !important;
  color: #1a1208 !important;
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(201,169,110,0.18), rgba(255,255,255,0.58));
  border: 1px solid rgba(201,169,110,0.34);
  border-bottom: 3px solid #c9a96e;
  box-shadow: 0 14px 36px rgba(28,20,10,0.07);
  margin: 22px 0 30px !important;
}
@media (max-width: 768px) {
.problem-highlight{
  padding: 20px;
}
.problem-highlight br{
  display: none;
}
}

.problem-arrow {
  width: 54px;
  height: 54px;
  margin: 0 auto;
  border-radius: 50%;
  background: #1a1208;
  color: #c9a96e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 12px 28px rgba(26,18,8,0.18);
}

.problem-keywords {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.keyword-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  color: #1a1208;
}

.keyword-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #1a1208;
  color: #c9a96e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.keyword-divider {
  font-size: 24px;
  color: #c9a96e;
  font-weight: 300;
}

.problem-mockup {
  display: flex;
  justify-content: center;
  margin: 0 auto 26px;
}

.problem-mockup img {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
}

.problem-conclusion {
  font-family: var(--font-sans);
  font-size: 16px !important;
  color: #3a3028 !important;
  margin-bottom: 0 !important;
}

.issues-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 20px;
}

.issue-card {
  background: #fff;
  padding: 34px 32px;
  position: relative;
  border: 1px solid rgba(26,18,8,0.08);
  box-shadow: 0 8px 28px rgba(28,20,10,0.05);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s, border-color 0.3s;
  display: grid;
  grid-template-columns: 52px 1fr;
  column-gap: 18px;
  align-items: center;
}

.issue-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,169,110,0.38);
  box-shadow: 0 16px 40px rgba(28,20,10,0.1);
}

.issue-card::before {
  content: attr(data-num);
  position: absolute;
  top: 28px;
  right: 28px;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: rgba(138,90,30,0.28);
  font-weight: 700;
}

.issue-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(201,169,110,0.14);
  border: 1px solid rgba(201,169,110,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8a5a1e;
  font-size: 20px;
  margin-bottom: 0;
  grid-column: 1;
  grid-row: 1;
}

.issue-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
  color: #241604;
  margin: 0;
  padding-right: 40px;
  grid-column: 2;
  grid-row: 1;
}

.issue-card p {
  font-size: 14px;
  color: #4a4440;
  line-height: 1.9;
  grid-column: 1 / -1;
  margin-top: 18px;
}

/* ===== MOVIE SLIDES ===== */
.movie-slides {
  --slide-columns: 5;
  --slide-duration: 36s;
  background: #0a0907;
  overflow: hidden;
  padding: 10px 0;
}

.movie-slides-track {
  display: flex;
  width: max-content;
  animation: movieSlideLoop var(--slide-duration) linear infinite;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
}

.movie-slide {
  flex: 0 0 calc(100vw / var(--slide-columns));
  aspect-ratio: 9 / 13;
  padding: 6px;
}

.movie-slide video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #111;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

@keyframes movieSlideLoop {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .movie-slides-track {
    animation: none;
  }
}

/* ===== SOLUTION ===== */
.solution {
  background: #0a0907;
  overflow: hidden;
  padding-bottom: 80px;
}

.solution-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 60% 50%, rgba(201,169,110,0.06) 0%, transparent 65%),
    url('../images/sct_solution_bg_kazari.png') right center / auto 100% no-repeat;
  opacity: 0.58;
  pointer-events: none;
}
@media (max-width: 768px) {
.solution-bg{
  display: none;
}
}

.solution .section-title { color: #fff; }
.solution .section-title em { color: var(--color-primary-light); }

.solution-title-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 34%);
  align-items: center;
  gap: 48px;
  margin-bottom: 48px;
}

.solution-title-wrap .section-title {
  margin-bottom: 0;
}

.solution-title-kazari {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-width: 0;
}

.solution-title-kazari img {
  width: min(100%, 360px);
  height: auto;
  display: block;
  opacity: 0.92;
}

.solution-body {
  max-width: 680px;
  margin-bottom: 20px;
}

.solution-body p {
  font-size: 16px;
  color: rgba(240,236,230,0.75);
  line-height: 2;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
.solution-body p{
  font-size: 14px;;
}
.solution-body p br{
  display: none;
}
}

.solution-italic {
  margin: 32px 0;
  padding: 28px 32px;
  border-left: 2px solid var(--color-primary);
  display: grid;
  grid-template-columns: 222px 1fr;
  align-items: center;
  gap: 20px;
}

.solution-italic-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution-italic-icon img {
  width: 192px;
  height: auto;
  display: block;
  opacity: 0.94;
}

.solution-italic p {
  font-family: var(--font-serif) !important;
  font-size: 18px !important;
  color: var(--color-primary-light) !important;
  margin-bottom: 0 !important;
  letter-spacing: 0.05em;
}

@media (max-width: 767px) {
.solution-italic{
  padding: 10px 16px;
  grid-template-columns: 1fr;
  gap: 12px;
}
.solution-italic-icon img {
  width: 158px;
  margin-bottom: 10px;
}
.solution-italic p {
  font-size: 16px !important;
  text-align: center;
}
}

.solution-conclusion {
  font-family: var(--font-serif);
  font-size: 17px !important;
  color: #fff !important;
  font-weight: 500 !important;
}

.solution-pillars {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 800px;
  /* padding: 48px 0 0;
  border-top: 1px solid var(--color-border-light); */
}
@media (max-width: 768px) {
.solution-pillars{
  padding-top: 0;
  border-top: none;
}
}

.pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px 16px;
  border: 1px solid var(--color-border);
  border-radius: 2px;
  width: 100%;
  min-width: 0;
  min-height: 132px;
  justify-content: center;
  transition: border-color 0.3s;
}

.pillar:hover { border-color: var(--color-primary); }

.pillar-result {
  background: rgba(201,169,110,0.08);
  border-color: var(--color-primary);
}

.pillar-icon {
  font-size: 28px;
  color: var(--color-primary);
}

.pillar-text {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  text-align: center;
}

.pillar-plus, .pillar-arrow {
  font-size: 28px;
  color: var(--color-primary);
  font-weight: 200;
}

/* ===== WHY ===== */
.why {
  background: var(--color-bg-light);
}

.why .section-label { color: #8a7355; }
.why .section-label::after { background: #8a7355; }
.why .section-title { color: var(--color-text-dark); max-width: 640px; }
.why .section-title em { color: #8a5a1e; }

.why-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.why-text p {
  font-size: 15px;
  color: #3a3632;
  line-height: 2;
  margin-bottom: 20px;
}

.why-quote {
  background: #1a1208;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}

.quote-heading {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(201,169,110,0.22);
}

.quote-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.quote-role {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--color-primary);
  font-weight: 700;
  min-width: 40px;
}

.quote-text {
  font-family: var(--font-serif);
  font-size: 18px;
  color: #fff;
  font-weight: 500;
}

.quote-plus {
  font-size: 24px;
  color: var(--color-primary);
  text-align: center;
}

.quote-result {
  margin-top: 8px;
  padding-top: 24px;
  border-top: 1px solid rgba(201,169,110,0.2);
}

.quote-result p {
  font-family: var(--font-serif);
  font-size: 15px;
  color: rgba(240,236,230,0.7);
  line-height: 1.9;
}

.quote-kazari {
  margin-top: 8px;
  display: flex;
  justify-content: center;
}

.quote-kazari img {
  width: min(100%, 180px);
  height: auto;
  display: block;
  opacity: 0.9;
}

.stats-heading {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 500;
  line-height: 1.5;
  color: #1a1208;
  margin-top: 64px;
}

.problem-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.stat-card {
  background: #fff;
  border: 1px solid rgba(26,18,8,0.08);
  box-shadow: 0 10px 30px rgba(28,20,10,0.06);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #8a5a1e, #c9a96e);
}

.stat-value {
  font-family: var(--font-serif);
  font-size: 18px;
  color: #8a5a1e;
  line-height: 1;
  margin-bottom: 18px;
  text-align: center;
}

.stat-value span {
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 600;
  color: #1a1208;
  margin: 0 2px;
}

.stat-title {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  color: #1a1208;
  line-height: 1.5;
  margin-bottom: 12px;
  text-align: center;
}

.stat-text {
  font-size: 14px;
  color: #4a4440;
  line-height: 1.8;
  margin-bottom: 0;
}

.stats-notes {
  margin-top: 16px;
  font-size: 11px;
  color: #776f68;
  line-height: 1.7;
  text-align: left;
}

.stats-notes p {
  margin-bottom: 0;
}

.stats-notes p + p {
  margin-top: 4px;
}

.stats-notes a {
  color: #8a5a1e;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ===== BENEFITS ===== */
.benefits {
  background: var(--color-bg);
  padding-bottom: 0;
}

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

.benefit-card {
  padding: 34px 32px;
  border: 1px solid var(--color-border-light);
  position: relative;
  transition: border-color 0.3s, transform 0.3s var(--ease-out);
  overflow: hidden;
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  column-gap: 18px;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}

.benefit-card:hover {
  border-color: var(--color-border);
  transform: translateY(-4px);
}

.benefit-card:hover::before { transform: scaleX(1); }

.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(201,169,110,0.1);
  border: 1px solid rgba(201,169,110,0.24);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--color-primary);
  grid-column: 1;
  grid-row: 1;
}

.benefit-card h3 {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 500;
  color: var(--color-text);
  margin: 0;
  line-height: 1.6;
  grid-column: 2;
  grid-row: 1;
}

.benefit-card p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.9;
  grid-column: 1 / -1;
  margin-top: 18px;
}

.benefit-video {
  width: 100%;
  height: 33vh;
  min-height: 220px;
  max-height: 360px;
  margin-top: 80px;
  overflow: hidden;
  position: relative;
}

.benefit-video video {
  width: 100%;
  height: 140%;
  display: block;
  object-fit: cover;
  transform: translate3d(0, var(--benefit-parallax-y, -18%), 0);
  will-change: transform;
}

/* ===== MOVIE CONTENT ===== */
.movie-content {
  background: var(--color-bg-light);
}

.movie-content .section-title {
  color: var(--color-text-dark);
}

.movie-content .section-title em {
  color: #8a5a1e;
}

.movie-content .section-label {
  color: #8a7355;
}

.movie-content .section-label::after {
  background: #8a7355;
}

.movie-content .section-lead {
  color: #3a3632;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--color-border-light);
}

.content-card {
  background: var(--color-surface);
  transition: background 0.3s;
  overflow: hidden;
}

.content-card:hover { background: var(--color-surface-2); }

.content-thumb {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #15120e;
}

.content-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.4s var(--ease-out);
}

.content-card:hover .content-thumb img {
  transform: scale(1.04);
}

.content-card-head {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 14px;
  padding: 30px 32px 20px;
}

.content-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(201,169,110,0.1);
  border: 1px solid rgba(201,169,110,0.26);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--color-primary);
}

.content-card h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--color-text);
  margin: 0;
  line-height: 1.5;
}

.content-card ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0 32px 36px;
}

.content-card li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.content-card li .fa-check {
  color: var(--color-primary);
  font-size: 11px;
  margin-top: 4px;
  flex-shrink: 0;
}

/* ===== FLOW ===== */
.flow {
  background: #050503;
  overflow: hidden;
}

.flow-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(201,169,110,0.04) 0%, transparent 60%);
}

.flow .section-title { color: #fff; }
.flow .section-title em { color: var(--color-primary-light); }

.flow-steps {
  max-width: 860px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.flow-step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 28px;
  align-items: center;
  padding: 28px 32px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(201,169,110,0.14);
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out), border-color 0.3s, background 0.3s;
}

.flow-step:hover {
  background: rgba(201,169,110,0.07);
  border-color: rgba(201,169,110,0.32);
}

.flow-step.visible {
  opacity: 1;
  transform: translateX(0);
}

.flow-connector {
  width: 1px;
  height: 28px;
  background: linear-gradient(180deg, rgba(201,169,110,0.7), rgba(201,169,110,0.14));
  margin: 0 0 0 67px;
}

.step-left {
  flex-shrink: 0;
}

.step-num {
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.15em;
  color: rgba(240,236,230,0.72);
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.44);
  background: rgba(201,169,110,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.step-num span {
  display: block;
  font-size: 30px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1;
  margin-top: 2px;
  color: var(--color-primary);
}

.step-right {
  flex: 1;
}

.step-right h3 {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 8px;
}

.step-right p {
  font-size: 14px;
  color: rgba(240,236,230,0.68);
  line-height: 1.85;
}

/* ===== CASES ===== */
/* ===== CASES ===== */
.cases {
  background: var(--color-bg-light);
}

.cases .section-label { color: #8a7355; }
.cases .section-label::after { background: #8a7355; }
.cases .section-title { color: var(--color-text-dark); }
.cases .section-title em { color: #8a5a1e; }
.cases .section-lead { color: #3a3632; }

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.case-card {
  background: #fff;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.case-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.case-thumb {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #111;
}

.case-media {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  overflow: hidden;
}

.case-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s var(--ease-out);
}

.case-thumb-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.48) 0%,
      rgba(0, 0, 0, 0.16) 48%,
      rgba(0, 0, 0, 0.12) 100%
    );
  z-index: 1;
  pointer-events: none;
}

.case-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  font-size: 56px;
  color: rgba(255,255,255,0.8);
  transition: color 0.3s, transform 0.3s;
  pointer-events: none;
}

.case-tag {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.78);
  background: rgba(0,0,0,0.4);
  padding: 4px 10px;
  border-radius: 2px;
}

.case-media:hover .case-thumb-img,
.case-media:focus-visible .case-thumb-img {
  transform: scale(1.06);
}

.case-media:hover .case-play,
.case-media:focus-visible .case-play {
  color: var(--color-primary-light);
  transform: translate(-50%, -50%) scale(1.08);
}

.case-media:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: -2px;
}

.case-body {
  padding: 28px 28px 32px;
}

.case-body h3 {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 500;
  color: #1a1208;
  line-height: 1.6;
  margin-bottom: 20px;
}

.case-detail {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.case-before,
.case-after {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.case-label-badge {
  font-size: 9px;
  letter-spacing: 0.15em;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 2px;
  width: fit-content;
}

.case-label-badge.before {
  background: #f0ece6;
  color: #6a5a4a;
}

.case-label-badge.after {
  background: rgba(201,169,110,0.15);
  color: #8a5a1e;
}

.case-before p,
.case-after p {
  font-size: 12px;
  color: #4a4440;
  line-height: 1.8;
}

.cases-cta {
  text-align: center;
}

.case-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.case-feature-card {
  background: #fff;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.case-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(0,0,0,0.14);
}

.case-feature-link {
  display: grid;
  grid-template-columns: 46% 1fr;
  min-height: 100%;
}

.case-feature-media {
  position: relative;
  min-height: 100%;
  background: #111;
  overflow: hidden;
}

.case-video-button {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  padding: 0;
  border: 0;
  background: #111;
  cursor: pointer;
  overflow: hidden;
}

.case-video-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease-out);
}

.case-video-button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.48), rgba(0,0,0,0.08));
}

.case-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  color: rgba(255,255,255,0.84);
  font-size: 58px;
  transition: color 0.3s, transform 0.3s;
}

.case-video-button:hover img,
.case-video-button:focus-visible img {
  transform: scale(1.06);
}

.case-video-button:hover .case-video-play,
.case-video-button:focus-visible .case-video-play {
  color: var(--color-primary-light);
  transform: translate(-50%, -50%) scale(1.08);
}

.case-feature-body {
  padding: 32px 32px 34px;
}

.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.case-meta span {
  display: inline-flex;
  align-items: center;
  padding: 4px 9px;
  background: #f4f0ea;
  color: #6a5843;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
}

.case-feature-body h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  color: #1a1208;
  margin-bottom: 18px;
}

.case-feature-body p {
  color: #4a4440;
  font-size: 13px;
  line-height: 1.95;
  margin-bottom: 24px;
}

.case-purpose {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.case-purpose span {
  padding: 5px 10px;
  border: 1px solid rgba(138,90,30,0.2);
  color: #8a5a1e;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.case-sub-section {
  margin-bottom: 56px;
}

.case-sub-title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  color: #1a1208;
  margin-bottom: 24px;
}

.case-sub-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.case-sub-card {
  display: flex;
  flex-direction: column;
  min-height: 170px;
  background: #fff;
  border: 1px solid rgba(26,18,8,0.08);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.case-sub-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,169,110,0.5);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.case-sub-media {
  aspect-ratio: 16 / 9;
  background: #111;
}

.case-sub-media .case-video-button {
  min-height: 0;
  aspect-ratio: 16 / 9;
}

.case-sub-media .case-video-play {
  font-size: 44px;
}

.case-sub-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  padding: 20px;
}

.case-sub-company {
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.6;
  color: #1a1208;
}

.case-sub-industry {
  color: #6a625a;
  font-size: 12px;
  line-height: 1.6;
}

.case-sub-purpose {
  margin-top: auto;
  color: #8a5a1e;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

/* ===== PRICE ===== */
.price {
  background: var(--color-bg-2);
}

.price .section-title {
  max-width: 680px;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 30px;
}

.price-arrow {
  width: 54px;
  height: 54px;
  margin: 0 auto 30px;
  border-radius: 50%;
  background: rgba(201,169,110,0.12);
  border: 1px solid rgba(201,169,110,0.36);
  color: var(--color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.22);
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 32px 24px;
  background: var(--color-surface);
  border: 1px solid var(--color-border-light);
  transition: transform 0.3s var(--ease-out), border-color 0.3s, background 0.3s;
}

.price-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-border);
  background: var(--color-surface-2);
}

.price-card.is-recommended {
  border-color: var(--color-primary);
  background: linear-gradient(180deg, rgba(201,169,110,0.12) 0%, rgba(22,22,25,1) 46%);
}

.price-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 10px;
  background: var(--color-primary);
  color: #1a1208;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.price-card-head {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--color-border-light);
  margin-bottom: 22px;
}

.price-plan {
  display: block;
  margin-bottom: 10px;
  color: var(--color-primary);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.price-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-text);
  margin-bottom: 18px;
}
@media (max-width: 768px) {
.price-card h3{
  margin-bottom: 0;
}
}
.price-value {
  color: var(--color-primary-light);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.price-value span {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.price-copy {
  min-height: 96px;
  margin-bottom: 24px;
  color: var(--color-text-muted);
  font-size: 13px;
  line-height: 1.9;
}

.price-spec {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--color-border-light);
}

.price-spec div {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--color-border-light);
}

.price-spec div:last-child {
  border-bottom: 0;
}

.price-spec dt {
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.price-spec dd {
  color: rgba(240,236,230,0.78);
  font-size: 12px;
  line-height: 1.6;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}

.price-list li {
  position: relative;
  padding-left: 18px;
  color: var(--color-text-muted);
  font-size: 12px;
  line-height: 1.7;
}

.price-list li::before {
  content: "";
  position: absolute;
  top: 0.8em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
}

.price-reason {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  padding: 40px;
  margin-bottom: 24px;
  border: 1px solid var(--color-border);
  background: rgba(201,169,110,0.06);
}

.price-reason-head span {
  display: block;
  margin-bottom: 12px;
  color: var(--color-primary);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.price-reason-head h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  color: #fff;
}

.price-reason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.price-reason-grid strong {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--color-primary-light);
}

.price-reason-grid p {
  color: var(--color-text-muted);
  font-size: 13px;
  line-height: 1.9;
}

.price-design {
  padding: 40px;
  border: 1px solid var(--color-border-light);
  background: rgba(255,255,255,0.03);
}

.price-design-head {
  margin-bottom: 28px;
}

.price-design-head span {
  display: block;
  margin-bottom: 12px;
  color: var(--color-primary);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.price-design-head h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  color: #fff;
}

.price-design-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--color-border-light);
}

.price-design-card {
  padding: 28px 24px;
  background: #151313;
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  column-gap: 14px;
}
@media (max-width: 768px) {
.price-design-card{
  padding: 15px ;
}
}

.price-design-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  color: var(--color-primary);
  grid-column: 1;
  grid-row: 1;
}

.price-design-card h4 {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 500;
  color: var(--color-primary-light);
  margin: 0;
  grid-column: 2;
  grid-row: 1;
}

.price-design-card p {
  color: var(--color-text-muted);
  font-size: 13px;
  line-height: 1.9;
  grid-column: 1 / -1;
  margin-top: 16px;
}

/* ===== VIDEO MODAL ===== */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.video-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.video-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(4px);
}

.video-modal__content {
  position: relative;
  z-index: 1;
  width: min(100%, 960px);
}

.video-modal__player {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.video-modal__player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-modal__player video {
  position: absolute;
  inset: 0;
  display: none;
  width: 100%;
  height: 100%;
  background: #000;
}

.video-modal__close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.video-modal__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28px;
  height: 1.5px;
  background: #fff;
}

.video-modal__close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.video-modal__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

body.is-locked {
  overflow: hidden;
}

@media (max-width: 1024px) {
  .cases-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .price-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .price-card {
  border-color: var(--color-primary);
  background: linear-gradient(180deg, rgba(201,169,110,0.12) 0%, rgba(22,22,25,1) 46%);
  }
  .price-reason {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .price-design-grid {
    grid-template-columns: 1fr;
  }

  .case-feature-grid {
    grid-template-columns: 1fr;
  }

  .case-sub-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .solution {
    padding-bottom: 40px;
  }
  .hero-decoration {
    display: none;
  }
}

@media (max-width: 767px) {
  .hero-decoration {
    display: none;
  }
  .case-thumb {
    height: 220px;
  }

  .case-body {
    padding: 24px 20px 28px;
  }
  .solution {
    padding-bottom: 20px !important;
  }
  .video-modal {
    padding: 16px;
  }

  .video-modal__close {
    top: -42px;
    width: 36px;
    height: 36px;
  }
  .problem-stats { grid-template-columns: 1fr; }
  .price-grid {
    grid-template-columns: 1fr;
  }

  .price-card {
    padding: 28px 22px;
  border-color: var(--color-primary);
  background: linear-gradient(180deg, rgba(201,169,110,0.12) 0%, rgba(22,22,25,1) 46%);
  }

  .price-copy {
    min-height: auto;
  }

  .price-reason {
    padding: 28px 22px;
  }

  .price-design {
    padding: 28px 22px;
  }

  .price-reason-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .case-feature-link {
    grid-template-columns: 1fr;
  }

  .case-feature-media .case-video-button {
    min-height: auto;
    aspect-ratio: 16 / 9;
  }

  .case-feature-body {
    padding: 26px 22px 28px;
  }

  .case-feature-body h3 {
    font-size: 21px;
  }

  .case-feature-body h3 br{
    display: none;
  }


  /* .case-sub-grid {
    grid-template-columns: 1fr;
  } */

  .case-sub-card {
    min-height: auto;
  }
}

/* ===== FAQ ===== */
.faq {
  background: var(--color-bg-light);
}

.faq .section-label {
  color: #8a7355;
}

.faq .section-label::after {
  background: #8a7355;
}

.faq .section-title {
  max-width: 400px;
  color: var(--color-text-dark);
}

.faq .section-title em {
  color: #8a5a1e;
}

.faq-layout {
  display: grid;
  grid-template-columns:  4fr 3fr;
  align-items: center;
  gap: 20px;
}

.faq-list {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #fff;
  border: 1px solid rgba(26,18,8,0.08);
  box-shadow: 0 12px 34px rgba(28,20,10,0.05);
}

.faq-kazari {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.faq-kazari img {
  width: min(100%, 400px);
  height: auto;
  display: block;
}

.faq-item {
  border-bottom: 1px solid rgba(26,18,8,0.08);
}

.faq-item:last-child { border-bottom: none; }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 32px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--color-text-dark);
  font-size: 15px;
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.7;
  transition: background 0.2s;
}

.faq-q-mark {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--color-primary);
  flex-shrink: 0;
  font-weight: 600;
}

.faq-question > span:nth-child(2) { flex: 1; }

.faq-arrow {
  flex-shrink: 0;
  color: var(--color-primary);
  transition: transform 0.3s var(--ease-out);
  font-size: 14px;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.3s ease;
}

.faq-answer.open {
  max-height: 300px;
  padding-bottom: 8px;
}

.faq-answer p {
  padding: 0 32px 28px 72px;
  font-size: 14px;
  color: #4a4440;
  line-height: 2;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: #050301;
  text-align: center;
  overflow: hidden;
  padding: 140px 0;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 35%, rgba(232,207,160,0.18) 0%, transparent 58%),
    radial-gradient(ellipse at 12% 82%, rgba(201,169,110,0.08) 0%, transparent 42%),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 79px,
      rgba(255,255,255,0.035) 80px
    );
}

.cta-panel {
  position: relative;
  padding: clamp(48px, 7vw, 76px) clamp(24px, 6vw, 72px);
  border: 1px solid rgba(201,169,110,0.34);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.025) 100%),
    rgba(12,12,14,0.62);
  box-shadow: 0 24px 80px rgba(0,0,0,0.38), inset 0 1px 0 rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
}

.cta-panel::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(201,169,110,0.14);
  pointer-events: none;
}

.cta-panel .section-label {
  justify-content: center;
}

.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 4vw, 50px);
  font-weight: 300;
  color: #fff;
  line-height: 1.42;
  margin-bottom: 40px;
  text-shadow: 0 8px 40px rgba(201,169,110,0.22);
}

.cta-title em { color: var(--color-primary); }

.cta-body {
  max-width: 720px;
  margin: 0 auto 40px;
}

.cta-body p {
  font-size: 15px;
  color: rgba(240,236,230,0.65);
  line-height: 2;
  margin-bottom: 12px;
}

.cta-actions {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding: 16px;
  margin-bottom: 28px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(0,0,0,0.18);
}

.cta-mini {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  min-height: 62px;
  border-right: 1px solid rgba(255,255,255,0.12);
  padding-right: 22px;
}

.cta-mini span:first-child {
  font-family: var(--font-serif);
  font-size: 28px;
  line-height: 1;
  color: var(--color-primary-light);
}

.cta-mini span:last-child {
  margin-top: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(240,236,230,0.62);
}

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

.cta-note {
  font-size: 12px;
  color: rgba(240,236,230,0.35);
  letter-spacing: 0.06em;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #050301;
  border-top: 1px solid var(--color-border-light);
  padding: 56px 0 40px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.footer-logo {
  display: inline-flex;
}

.footer-logo img {
  width: 82px;
  height: auto;
}

.footer-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #fff;
}

.footer-lead {
  font-size: 13px;
  color: rgba(240,236,230,0.66);
  line-height: 1.9;
}

.footer-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  font-size: 12px;
  color: rgba(240,236,230,0.4);
  letter-spacing: 0.06em;
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--color-primary); }

.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.footer-address {
  font-size: 12px;
  color: rgba(240,236,230,0.42);
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.footer-copy {
  font-size: 11px;
  color: rgba(240,236,230,0.25);
  letter-spacing: 0.1em;
}

/* ===== FLOATING CTA ===== */
.floating-cta {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s var(--ease-out);
  pointer-events: none;
}

.floating-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.btn-float {
  padding: 14px 28px;
  font-size: 13px;
  box-shadow: 0 12px 40px rgba(201,169,110,0.5), 0 2px 10px rgba(0,0,0,0.45);
  animation: ctaPulse 2.8s ease-in-out infinite;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scrollDown {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.01% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 12px 40px rgba(201,169,110,0.42), 0 2px 10px rgba(0,0,0,0.45); }
  50% { box-shadow: 0 16px 54px rgba(232,207,160,0.62), 0 2px 10px rgba(0,0,0,0.45); }
}

@keyframes ctaPulseNav {
  0%, 100% { box-shadow: 0 6px 22px rgba(201,169,110,0.28); }
  50% { box-shadow: 0 10px 32px rgba(232,207,160,0.5); }
}

@keyframes ctaPulseLight {
  0%, 100% { box-shadow: 0 10px 34px rgba(255,255,255,0.22), 0 4px 24px rgba(0,0,0,0.3); }
  50% { box-shadow: 0 16px 48px rgba(232,207,160,0.5), 0 6px 30px rgba(0,0,0,0.36); }
}

/* Scroll animations */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1280px) {
    .header-nav { gap: 20px;}
}
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .why-content { grid-template-columns: 1fr; gap: 20px; }
  .solution-pillars { gap: 10px; }
  .pillar { min-width: 0; padding: 22px 16px; }
  .problem-lead { grid-template-columns: minmax(0, 1fr) 220px; gap: 32px; }
  .solution-title-wrap { grid-template-columns: minmax(0, 1fr) 240px; gap: 32px; }
  .solution-title-kazari img { width: min(100%, 260px); }
  .movie-slides {
    --slide-columns: 4;
    --slide-duration: 45s;
  }
}
@media (max-width: 1024px) {
  .header-nav { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 767px) {
  :root {
    --section-pad: 80px;
  }

  .container { padding: 0 24px; }

  .header-inner { padding: 0 24px; }

  .hero-content { padding: 96px 24px 56px; }
  .hero-decoration {
    width: min(58vw, 320px);
    opacity: 0.5;
  }
  .logo img { width: 46px; }
  .logo span { font-size: 9px; }

  .section-title { font-size: clamp(22px, 4vw, 28px); margin-bottom: 25px;}

  .problem-lead { grid-template-columns: 1fr; gap: 0; }
  .problem-lead-visual { display: none; }
  .solution-title-wrap { grid-template-columns: 1fr; gap: 24px; }
  .solution-title-kazari { justify-content: center; }
  .solution-title-kazari img { width: min(68vw, 240px); opacity: 0.72; }
  .movie-slides {
    --slide-columns: 2;
    --slide-duration: 90s;
    padding: 6px 0;
  }
  .movie-slide { padding: 4px; }

  .issues-grid {
    grid-template-columns: 1fr;
    margin-top: 10px;
   }
  .issue-card h3 {
    font-size: 16px;
    padding-right: 0;
   }
   .issue-card h3 br,
  .issue-card:before {
    display: none;;
   }
  .benefits-grid { grid-template-columns: 1fr; gap: 16px; }
  .benefit-video {
    height: 32vh;
    min-height: 180px;
    margin-top: 56px;
  }
  .content-grid { grid-template-columns: 1fr; }
  .cases-grid { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-kazari { display: none; }

  .problem-keywords { gap: 16px; flex-direction: column;}

  .flow-step {
    grid-template-columns: 56px 1fr;
    gap: 18px;
    padding: 24px 20px;
  }
  .step-num {
    width: 56px;
    height: 56px;
    font-size: 8px;
  }
  .step-num span { font-size: 24px; }
  .flow-connector {
    height: 22px;
    margin-left: 47px;
  }

  .faq-question { padding: 20px 20px; font-size: 14px; }
  .faq-answer p { padding: 0 20px 20px 60px; }

  .cta-section { padding: 96px 0; }
  .cta-actions {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 16px;
  }
  .cta-mini {
    width: 100%;
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    padding: 0 0 14px;
  }
  .cta-buttons { flex-direction: column; align-items: stretch; width: 100%; }
  .cta-buttons .btn { justify-content: center; }

  .footer-nav { gap: 16px; }
  .footer-address { max-width: 280px; }

  .floating-cta { bottom: 20px; right: 20px; }

  .hero-cta {
    width: 100%;
    max-width: 520px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta .btn {
    justify-content: center;
    width: 100%;
    padding: 14px 12px;
    font-size: 12px;
    letter-spacing: 0.04em;
    gap: 6px;
  }

  .solution-pillars {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .solution-pillars .pillar {
    width: min(100%, 260px);
  }

  .pillar-plus, .pillar-arrow {
    transform: rotate(90deg);
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .hero-content { padding: 88px 20px 56px; }
  .hero-cta { gap: 8px; }
  .hero-cta .btn {
    padding: 12px 8px;
    font-size: 11px;
  }
  .section { padding: 64px 0; }
  .issue-card, .benefit-card, .content-card { padding: 28px 24px; }
  .case-body { padding: 20px 20px 24px; }
  .why-quote { padding: 32px 24px; }
}
