/* ================================================
   CSS Variables & Base — LEAPY STYLE
   Coral Red x Black x Colorful Geometric
   ================================================ */

:root {
  --bg-base: #FFFFFF;
  --bg-section: #F5F7FA;
  --bg-dark: #1A2D3F;

  --color-primary: #1A1A1A;
  --color-primary-deep: #000000;
  --text-heading: #1A1A1A;
  --text-body: #333333;
  --text-sub: #6B7280;

  --color-accent: #FF5252;
  --color-accent-deep: #E94560;
  --color-accent-light: #FF7676;

  --color-green: #3DD9A8;
  --color-blue: #4DABF7;
  --color-cyan: #74C0FC;
  --color-yellow: #FFD43B;

  --border-light: #E8E8E8;
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.10);
  --content-max: 1200px;
  --text-max: 800px;
  --section-padding: 140px;
  --font-sans: 'Noto Sans JP', sans-serif;
  --font-accent: 'Cormorant Garamond', serif;
}


/* ================================================
   Base
   ================================================ */

body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-body);
  background-color: var(--bg-base);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-sans);
  color: var(--text-heading);
  line-height: 1.4;
  font-weight: 700;
}

.accent-en {
  font-family: var(--font-accent);
  font-weight: 400;
  letter-spacing: 0.08em;
}

.pc-only { display: inline; }

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

.text-block {
  max-width: var(--text-max);
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}


/* ================================================
   Section (common wrapper)
   ================================================ */

.section {
  position: relative;
  overflow: hidden;
}


/* ================================================
   Decoration Groups — 図形グループ（各セクション余白用）
   ================================================ */

.deco-group {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.deco-group .deco-shape {
  position: absolute;
  opacity: 0.55;
}

/* グループ配置パターン */
.deco-group--top-right    { top: 40px; right: 40px; }
.deco-group--top-left     { top: 40px; left: 40px; }
.deco-group--bottom-left  { bottom: 40px; left: 40px; }
.deco-group--bottom-right { bottom: 40px; right: 40px; }
.deco-group--mid-left     { top: 50%; left: 30px; transform: translateY(-50%); }

/* 図形ベース：丸 */
.deco-group .deco-circle {
  border-radius: 50%;
  animation: decoFloatY 7s ease-in-out infinite;
}

/* 図形ベース：三角（CSS border trick） */
.deco-group .deco-triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  animation: decoRotate 25s linear infinite, decoFloatY 8s ease-in-out infinite;
}

/* 図形ベース：四角 */
.deco-group .deco-square {
  border-radius: 12px;
  animation: decoFloatY 9s ease-in-out infinite reverse, decoRotate 40s linear infinite;
}

/* 色クラス */
.deco-color-blue        { background: #4DABF7; }
.deco-color-green-fill  { background: #3DD9A8; }
.deco-color-green-sq    { background: #3DD9A8; }
.deco-color-cyan        { background: #74C0FC; }
.deco-color-cyan-fill   { background: #74C0FC; }
.deco-color-coral       { background: #FF5252; }
.deco-color-yellow-fill { background: #FFD43B; }
.deco-color-yellow-sq   { background: #FFD43B; }

/* 三角の色（border-bottom-color で指定） */
.deco-color-yellow      { border-bottom-color: #FFD43B !important; }
.deco-color-green       { border-bottom-color: #3DD9A8 !important; }
.deco-color-coral-tri   { border-bottom-color: #FF5252 !important; }
.deco-color-blue-tri    { border-bottom-color: #4DABF7 !important; }

/* グループ内で2つ目の図形に異なるアニメーション遅延 */
.deco-group .deco-shape:nth-child(2) {
  animation-delay: -3s;
}

@keyframes geoFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-16px) rotate(4deg); }
}


/* ================================================
   Section Heading
   ================================================ */

.section-heading {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.section-heading__en {
  display: block;
  font-family: var(--font-accent);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: var(--color-accent);
  text-transform: lowercase;
  margin-bottom: 12px;
}

.section-heading__ja {
  display: block;
  font-family: var(--font-sans);
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 900;
  color: var(--text-heading);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.section-heading__line {
  display: block;
  width: 56px;
  height: 3px;
  background: var(--color-accent);
  margin: 24px auto 0;
  border-radius: 2px;
}


/* ================================================
   Buttons
   ================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 40px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  white-space: nowrap;
  position: relative;
}

.btn--primary {
  background: var(--color-accent);
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(255, 82, 82, 0.35);
}

.btn--primary:hover {
  background: var(--color-accent-deep);
  box-shadow: 0 12px 36px rgba(255, 82, 82, 0.45);
  transform: translateY(-3px);
}

.btn--secondary {
  background: var(--color-primary);
  color: #FFFFFF;
  border: 2px solid var(--color-primary);
}

.btn--secondary:hover {
  background: transparent;
  color: var(--color-primary);
  transform: translateY(-3px);
}

.btn--small { padding: 10px 28px; font-size: 13px; }
.btn--large {
  padding: 22px 56px;
  font-size: 18px;
}


/* ================================================
   Header — 白背景固定（画像と被らない）
   ================================================ */

.header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 120px;
  z-index: 1000;
  padding: 0;
  background: #FFFFFF;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.header--scrolled {
  background: #FFFFFF;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.10);
  padding: 0;
}

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

.header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.header__logo-img {
  height: 100px;
  width: auto;
  display: block;
  object-fit: contain;
  border: none;
  outline: none;
  background: transparent;
  padding: 0;
  margin: 0;
}

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

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

.header__nav-link {
  font-size: 15px;
  font-weight: 500;
  color: #1A1A1A;
  letter-spacing: 0.04em;
  transition: color 0.3s ease;
  position: relative;
}

.header--scrolled .header__nav-link {
  color: #1A1A1A;
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--color-accent);
  transition: width 0.3s ease;
}

.header__nav-link:hover { color: var(--color-accent); }
.header__nav-link:hover::after { width: 100%; }

.header__cta { padding: 10px 24px; font-size: 13px; }

.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}

.header__hamburger span {
  display: block;
  height: 2px;
  background: #1A1A1A;
  border-radius: 1px;
  transition: all 0.3s ease;
}

.header--scrolled .header__hamburger span {
  background: #1A1A1A;
}

.header__hamburger--active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__hamburger--active span:nth-child(2) { opacity: 0; }
.header__hamburger--active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  position: fixed;
  top: 0; right: -100%;
  width: 80%; max-width: 360px; height: 100vh;
  background: var(--bg-base);
  z-index: 999;
  padding: 100px 40px 40px;
  transition: right 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.08);
}

.mobile-nav--open { right: 0; }

.mobile-nav__list { display: flex; flex-direction: column; gap: 28px; }
.mobile-nav__link { font-size: 16px; font-weight: 700; color: var(--text-heading); letter-spacing: 0.04em; }
.mobile-nav__cta { margin-top: 40px; width: 100%; text-align: center; }

.mobile-nav__overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-nav__overlay--visible { opacity: 1; pointer-events: auto; }


/* ================================================
   01. Hero (First View) — 左右分割レイアウト
   ================================================ */

.hero {
  position: relative;
  margin-top: 120px;
  height: calc(100vh - 120px);
  min-height: 600px;
  max-height: 900px;
  background: #FFFFFF;
  overflow: hidden;
}

/* コンテナ：左右分割 */
.hero-container {
  display: flex;
  width: 100%;
  height: 100%;
}

/* 左側：文字エリア（50%） */
.hero-left {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 48px;
  background: #FFFFFF;
  position: relative;
  z-index: 2;
}

/* 右側：写真エリア（50%） */
.hero-right {
  width: 50%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* スライドショー */
.hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

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

/* 各スライドごとに object-position を最適化 */
.hero-slide:nth-child(1) img {
  object-position: center center;
}

.hero-slide:nth-child(2) img {
  object-position: center center;
}

.hero-slide:nth-child(3) img {
  object-position: center 40%;
}

@keyframes decoFloatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-30px); }
}

@keyframes decoRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* 文字コンテンツ */
.hero-eyebrow {
  font-family: var(--font-accent);
  font-size: 16px;
  letter-spacing: 0.3em;
  margin-bottom: 32px;
  color: #6B7280;
  font-style: italic;
  animation: heroFadeInUp 1s ease 0.2s both;
}

.hero-title {
  font-family: var(--font-sans);
  font-size: 64px;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  color: #1A1A1A;
  animation: heroFadeInUp 1s ease 0.4s both;
}

.hero-subtitle {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.9;
  margin-bottom: 48px;
  color: #4A4A4A;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  animation: heroFadeInUp 1s ease 0.6s both;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  animation: heroFadeInUp 1s ease 0.8s both;
}

/* CTAボタン：メイン（コーラルレッド） */
.cta-button-primary {
  background: #FF5252;
  color: #FFFFFF;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  padding: 20px 44px;
  border-radius: 50px;
  border: none;
  box-shadow: 0 8px 24px rgba(255, 82, 82, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}

.cta-button-primary:hover {
  background: #E94560;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255, 82, 82, 0.45);
}

/* CTAボタン：サブ（白背景+黒枠） */
.cta-button-secondary {
  background: #FFFFFF;
  color: #1A1A1A;
  border: 2px solid #1A1A1A;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  padding: 18px 42px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.cta-button-secondary:hover {
  background: #1A1A1A;
  color: #FFFFFF;
  transform: translateY(-3px);
}

@keyframes heroFadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ================================================
   Marquee (horizontal scrolling text)
   ================================================ */

.marquee {
  overflow: hidden;
  white-space: nowrap;
  padding: 28px 0;
  background: var(--bg-base);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

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

.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 0;
  animation: marqueeScroll 30s linear infinite;
}

.marquee__track--reverse {
  animation: marqueeScrollReverse 35s linear infinite;
}

.marquee__item {
  font-family: var(--font-accent);
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--text-sub);
  opacity: 0.5;
  padding: 0 24px;
}

.marquee--reverse .marquee__item {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.marquee__dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.5;
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes marqueeScrollReverse {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}


/* ================================================
   02. Pain Points
   ================================================ */

.pain {
  padding: var(--section-padding) 0;
  background: var(--bg-base);
}

.pain__list {
  max-width: 640px;
  margin: 0 auto 52px;
}

.pain__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 24px;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.8;
  background: var(--bg-section);
  border-radius: 12px;
  border: 1px solid var(--border-light);
}

.pain__item:last-child { margin-bottom: 0; }

.pain__check {
  width: 28px; height: 28px; min-width: 28px;
  background: var(--color-accent);
  color: #fff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  margin-top: 2px;
}

.pain__cta {
  text-align: center;
  font-size: 15px;
  color: var(--color-accent);
  font-weight: 700;
}


/* ================================================
   03. Concept
   ================================================ */

.concept {
  padding: var(--section-padding) 0;
  background: var(--bg-section);
}

.concept__body { text-align: center; }

.concept__body p {
  font-family: var(--font-sans);
  font-size: clamp(15px, 2vw, 18px);
  line-height: 2.3;
  color: var(--text-body);
  margin-bottom: 36px;
  letter-spacing: 0.03em;
}

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


/* ================================================
   04. Features — Big number style
   ================================================ */

.features {
  padding: var(--section-padding) 0;
  background: var(--bg-base);
}

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

.feature {
  background: var(--bg-base);
  border-radius: 24px;
  padding: 52px 36px 44px;
  text-align: left;
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
  position: relative;
  border: 1px solid var(--border-light);
}

.feature::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--color-accent);
  border-radius: 24px 24px 0 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-6px);
}

.feature:hover::before { opacity: 1; }

/* Giant number */
.feature__num {
  font-family: var(--font-sans);
  font-size: clamp(100px, 12vw, 140px);
  font-weight: 900;
  color: var(--color-accent);
  line-height: 1;
  opacity: 0.15;
  position: absolute;
  top: -10px;
  left: 20px;
}

.feature__icon {
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.feature__icon svg { display: block; }

.feature__title {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 20px;
  color: var(--text-heading);
  position: relative;
  z-index: 1;
}

.feature__text {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-body);
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}

/* チェックリスト */
.feature__list {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature__list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-body);
}

.feature__list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
  font-size: 14px;
}

.feature__list li:last-child {
  margin-bottom: 0;
}

/* 数値ハイライト */
.feature__highlights {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  position: relative;
  z-index: 1;
}

.feature__highlight {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  padding: 10px 20px;
  background: rgba(255, 82, 82, 0.08);
  border: 1.5px solid rgba(255, 82, 82, 0.2);
  border-radius: 12px;
  font-size: 14px;
  color: var(--color-accent);
  font-weight: 500;
}

.feature__highlight strong {
  font-size: 24px;
  font-weight: 900;
  color: var(--color-accent);
}


/* ================================================
   05. Service & Pricing
   ================================================ */

.service {
  padding: var(--section-padding) 0;
  background: var(--bg-base);
}

.plan-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  max-width: 920px;
  margin: 0 auto 72px;
}

.plan-card {
  background: var(--bg-base);
  border: 1.5px solid var(--border-light);
  border-radius: 24px;
  padding: 52px 40px 44px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.plan-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}

.plan-card--recommend {
  border-color: var(--color-accent);
  box-shadow: 0 8px 40px rgba(255, 82, 82, 0.12);
}

.plan-card__badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 24px;
  border-radius: 30px;
  white-space: nowrap;
}

.plan-card__header {
  text-align: center;
  margin-bottom: 36px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-light);
}

.plan-card__name {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-heading);
}

.plan-card__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 10px;
}

.plan-card__price-yen {
  font-family: var(--font-sans);
  font-size: 20px;
  color: var(--text-heading);
  font-weight: 700;
}

.plan-card__price-num {
  font-family: var(--font-sans);
  font-size: 48px;
  font-weight: 900;
  color: var(--text-heading);
  line-height: 1;
  letter-spacing: -0.02em;
}

.plan-card__price-tax { font-size: 13px; color: var(--text-sub); margin-left: 4px; }
.plan-card__period { font-size: 14px; color: var(--text-sub); }

.plan-card__features { flex: 1; margin-bottom: 36px; }

.plan-card__features li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.7;
}

.plan-card__features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

.plan-card__btn { width: 100%; text-align: center; }

/* Options */
.options { max-width: 920px; margin: 0 auto; }

.options__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 20px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-body);
  background: var(--bg-section);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.options__toggle:hover { border-color: var(--color-accent); }

.options__arrow { transition: transform 0.3s ease; }
.options__toggle[aria-expanded="true"] .options__arrow { transform: rotate(180deg); }

.options__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.options__content--open { max-height: 600px; }

.options__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  padding: 40px 0 16px;
}

.options__group-title {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
}

.options__list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 14px;
  border-bottom: 1px dashed var(--border-light);
}

.options__list li:last-child { border-bottom: none; }

.options__price {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--text-heading);
  font-weight: 700;
  white-space: nowrap;
  margin-left: 16px;
}

.options__note {
  font-size: 13px;
  color: var(--text-sub);
  text-align: center;
  padding: 16px 0 8px;
}


/* ================================================
   06. Works
   ================================================ */

.works {
  padding: var(--section-padding) 0;
  background: var(--bg-section);
}

.works__tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.works__tab {
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-sub);
  background: transparent;
  border: 1.5px solid var(--border-light);
  border-radius: 30px;
  transition: all 0.3s ease;
}

.works__tab:hover { border-color: var(--color-accent); color: var(--color-accent); }

.works__tab--active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

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

/* ── Work Card（実画像版） ── */
.work-card {
  position: relative;
  background: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  cursor: pointer;
}

.work-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.work-card--hidden { display: none; }

.work-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.work-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.work-card:hover .work-card__image img {
  transform: scale(1.08);
}

.work-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1) 0%,
    transparent 30%,
    transparent 70%,
    rgba(0, 0, 0, 0.2) 100%
  );
  pointer-events: none;
}

.work-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  color: #1A1A1A;
  letter-spacing: 0.05em;
  z-index: 2;
}

.work-card__info {
  padding: 20px 24px 24px;
}

.work-card__location {
  display: inline-block;
  padding: 4px 12px;
  background: #F5F1EA;
  border-radius: 50px;
  font-size: 12px;
  color: #6B7280;
  margin-bottom: 12px;
}

.work-card__name {
  font-size: 16px;
  font-weight: 700;
  color: #1A1A1A;
  line-height: 1.5;
}

/* ── Demo-linked card ── */
.work-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 16px;
}

.work-card-link .work-card {
  cursor: pointer;
}

.work-card-link:hover .work-card {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
}

.work-card-link:hover .work-card__image img {
  transform: scale(1.08);
}

.work-card-link.work-card--hidden {
  display: none;
}

/* Demo overlay (shown on hover) */
.work-card__demo-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 3;
}

.work-card-link:hover .work-card__demo-overlay {
  opacity: 1;
}

.work-card__view {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 12px 28px;
  border: 2px solid #fff;
  border-radius: 50px;
  background: rgba(255,82,82,0.9);
}

.work-card__note {
  font-size: 12px;
  color: #FF5252;
  font-weight: 700;
  margin-top: 6px;
}

/* Works note banner */
.works__note {
  text-align: center;
  margin-bottom: 32px;
  padding: 14px 20px;
  background: #FFF8E1;
  border-radius: 12px;
  font-size: 14px;
  color: #92400E;
}


/* ================================================
   07. Flow
   ================================================ */

.flow {
  padding: var(--section-padding) 0;
  background: var(--bg-base);
}

.flow__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
}

.flow__step {
  flex: 1;
  text-align: center;
  padding: 0 12px;
  max-width: 200px;
}

.flow__step-num {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 900;
  color: var(--color-accent);
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}

.flow__step-icon {
  width: 72px; height: 72px;
  background: rgba(255, 82, 82, 0.06);
  border: 1px solid rgba(255, 82, 82, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: transform 0.3s ease;
}

.flow__step:hover .flow__step-icon {
  transform: scale(1.08);
}

.flow__step-title {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.5;
  color: var(--text-heading);
}
.flow__step-desc { font-size: 13px; color: var(--text-sub); line-height: 1.6; }

.flow__connector {
  width: 40px; min-width: 40px;
  height: 2px;
  background: var(--border-light);
  margin-top: 88px;
  position: relative;
}

.flow__connector::after {
  content: '';
  position: absolute;
  right: -3px; top: -4px;
  width: 8px; height: 8px;
  border-right: 2px solid var(--color-accent);
  border-top: 2px solid var(--color-accent);
  transform: rotate(45deg);
}


/* ================================================
   08. About
   ================================================ */

.about {
  padding: var(--section-padding) 0;
  background: var(--bg-base);
}

.about__inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  max-width: 960px;
  margin: 0 auto;
  align-items: start;
}

.about__photo { display: flex; justify-content: center; }

.about__meta { margin-bottom: 28px; }

.about__meta-row {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 15px;
}

.about__meta-row dt { min-width: 64px; color: var(--text-sub); font-weight: 400; }
.about__meta-row dd { color: var(--text-heading); font-weight: 700; }

.about__skills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px; }

.about__skill-tag {
  font-size: 13px;
  padding: 6px 18px;
  background: var(--bg-section);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  color: var(--text-heading);
  font-weight: 500;
}

.about__story p {
  font-size: 15px;
  line-height: 2.1;
  margin-bottom: 20px;
}

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


/* ================================================
   Enhanced Profile Photo
   ================================================ */

.about__photo-wrap {
  position: relative;
  width: 220px;
  height: 220px;
  margin: 0 auto;
}

.about__photo-wrap img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  display: block;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

.about__photo-wrap__fallback {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 64px;
  font-family: var(--font-sans);
  box-shadow: 0 8px 40px rgba(255, 82, 82, 0.2);
  position: relative;
  z-index: 2;
}

.about__photo-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid var(--color-accent);
  opacity: 0.15;
  pointer-events: none;
}
.about__photo-ring--1 {
  width: 260px; height: 260px;
  top: -20px; left: -20px;
  animation: geoFloat 8s ease-in-out infinite;
}
.about__photo-ring--2 {
  width: 300px; height: 300px;
  top: -40px; left: -40px;
  opacity: 0.08;
  animation: geoFloat 11s ease-in-out infinite reverse;
}

.about__photo-note {
  text-align: center;
  font-size: 11px;
  color: var(--text-sub);
  margin-top: 14px;
  letter-spacing: 0.04em;
  opacity: 0.7;
}


/* ================================================
   09. FAQ
   ================================================ */

.faq {
  padding: var(--section-padding) 0;
  background: var(--bg-section);
}

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

.faq__item { border-bottom: 1px solid var(--border-light); }

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 28px 0;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.6;
}

.faq__q-label {
  font-family: var(--font-sans);
  font-size: 20px;
  color: var(--color-accent);
  font-weight: 900;
  margin-right: 12px;
  flex-shrink: 0;
}

.faq__q-text { flex: 1; }

.faq__icon {
  width: 36px; height: 36px; min-width: 36px;
  border: 2px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.faq__icon svg { transition: transform 0.3s ease; }

.faq__item--open .faq__icon {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.faq__item--open .faq__icon svg {
  transform: rotate(180deg);
  stroke: #fff;
}

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

.faq__answer-inner {
  padding: 0 0 28px 44px;
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-body);
}

.faq__a-label {
  font-family: var(--font-sans);
  font-size: 18px;
  color: var(--color-accent);
  font-weight: 900;
  margin-right: 8px;
}


/* ================================================
   CTA Banner
   ================================================ */

.cta-banner {
  position: relative;
  padding: 160px 0;
  background: var(--bg-dark);
  overflow: hidden;
  text-align: center;
}

.cta-banner__bg-text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-accent);
  font-size: clamp(60px, 14vw, 180px);
  font-weight: 300;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.03);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.cta-banner__geo {
  position: absolute;
  pointer-events: none;
}
.cta-banner__geo--1 { top: 10%; left: 5%; animation: geoFloat 10s ease-in-out infinite; }
.cta-banner__geo--2 { bottom: 15%; right: 8%; animation: geoFloat 12s ease-in-out infinite reverse; }
.cta-banner__geo--3 { top: 60%; left: 80%; animation: geoFloat 8s ease-in-out infinite; animation-delay: -3s; }

.cta-banner__content {
  position: relative;
  z-index: 1;
}

.cta-banner__en {
  display: block;
  font-family: var(--font-accent);
  font-size: 13px;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.4);
  text-transform: lowercase;
  margin-bottom: 28px;
}

.cta-banner__heading {
  font-family: var(--font-sans);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  color: #fff;
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.cta-banner__sub {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 56px;
  line-height: 1.9;
}

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

.cta-banner__buttons .btn--primary {
  font-size: 18px;
  padding: 22px 56px;
  box-shadow: 0 8px 32px rgba(255, 82, 82, 0.4);
}

.btn--outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
  font-size: 16px;
  font-weight: 700;
  padding: 20px 52px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn--outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-3px);
}

/* Trust items inside CTA */
.cta-banner__trust {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 52px;
  flex-wrap: wrap;
}
.cta-banner__trust-item {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 8px;
}
.cta-banner__trust-item::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--color-green);
  border-radius: 50%;
  opacity: 0.8;
}


/* ================================================
   10. Contact — Dark Navy
   ================================================ */

.contact {
  padding: var(--section-padding) 0;
  background: var(--bg-dark);
  position: relative;
}

.contact .section-heading__en  { color: var(--color-accent); }
.contact .section-heading__ja  { color: #fff; }
.contact .section-heading__line { background: var(--color-accent); }
.contact .contact__line-text   { color: rgba(255,255,255,0.88); }

.contact__line { text-align: center; margin-bottom: 52px; }

.contact__line-text {
  font-size: 17px;
  line-height: 2.1;
  color: rgba(255,255,255,0.88);
  margin-bottom: 32px;
}

.contact__divider {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 600px;
  margin: 0 auto 52px;
}

.contact__divider::before,
.contact__divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.2);
}

.contact__divider span { font-size: 14px; color: rgba(255,255,255,0.5); }

.contact__form { max-width: 600px; margin: 0 auto; }
.contact__form-group { margin-bottom: 28px; }

.contact__label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.88);
  margin-bottom: 10px;
}

.contact__required {
  font-size: 11px;
  color: var(--color-accent-light);
  background: rgba(255, 82, 82, 0.15);
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 8px;
}

.contact__input,
.contact__select,
.contact__textarea {
  width: 100%;
  padding: 16px 20px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  background: rgba(255,255,255,0.97);
  font-size: 15px;
  color: var(--text-body);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact__input:focus,
.contact__select:focus,
.contact__textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(255, 82, 82, 0.15);
  outline: none;
}

.contact__input::placeholder,
.contact__textarea::placeholder { color: var(--text-sub); opacity: 0.5; }

.contact__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%238B8B8B' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.contact__textarea { resize: vertical; min-height: 120px; }

.contact__radio-group { display: flex; gap: 24px; }

.contact__radio {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 15px;
  color: rgba(255,255,255,0.88);
}

.contact__radio input[type="radio"] { width: 18px; height: 18px; accent-color: var(--color-accent); }
.contact__submit { width: 100%; margin-top: 8px; }


/* ================================================
   11. Footer
   ================================================ */

.footer {
  background: #111111;
  color: rgba(255, 255, 255, 0.65);
  padding: 72px 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 48px;
  align-items: start;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__logo-img {
  height: 48px;
  width: auto;
  display: block;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
}

.footer__location,
.footer__email { font-size: 13px; margin-bottom: 4px; }

.footer__email a { transition: color 0.3s ease; }
.footer__email a:hover { color: var(--color-accent); }

.footer__nav-list { display: flex; flex-direction: column; gap: 14px; }
.footer__nav-list a { font-size: 13px; transition: color 0.3s ease; }
.footer__nav-list a:hover { color: var(--color-accent); }

.footer__links { display: flex; flex-direction: column; gap: 14px; }
.footer__links a { font-size: 13px; transition: color 0.3s ease; }
.footer__links a:hover { color: var(--color-accent); }

.footer__bottom { text-align: center; padding: 28px 0; }
.footer__bottom small { font-size: 12px; color: rgba(255, 255, 255, 0.35); }


/* ================================================
   Modal
   ================================================ */

.modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal--visible { opacity: 1; pointer-events: auto; }

.modal__overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.modal__content {
  position: relative;
  background: var(--bg-base);
  border-radius: 24px;
  padding: 52px;
  max-width: 440px;
  width: 90%;
  text-align: center;
  box-shadow: var(--shadow-card);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal--visible .modal__content { transform: translateY(0); }
.modal__title { font-size: 20px; font-weight: 900; margin-bottom: 16px; }
.modal__text { font-size: 15px; color: var(--text-body); line-height: 1.8; margin-bottom: 36px; }
.modal__close { min-width: 160px; }


/* ================================================
   Scroll Fade-in
   ================================================ */

.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.fade-in--visible { opacity: 1; transform: translateY(0); }
.fade-in--delay-1 { transition-delay: 0.12s; }
.fade-in--delay-2 { transition-delay: 0.24s; }
.fade-in--delay-3 { transition-delay: 0.36s; }
.fade-in--delay-4 { transition-delay: 0.48s; }


/* ================================================
   Large Decorative Background Text
   ================================================ */

.deco-text {
  position: absolute;
  font-family: var(--font-accent);
  font-size: clamp(100px, 18vw, 260px);
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--text-heading);
  opacity: 0.03;
  pointer-events: none;
  user-select: none;
  line-height: 1;
  white-space: nowrap;
  z-index: 0;
}

.deco-text--right  { right: -10px; bottom: 10px; }
.deco-text--left   { left: -10px; top: 40px; }
.deco-text--center { left: 50%; transform: translateX(-50%); top: 20px; }
.deco-text--top-right { right: -10px; top: 10px; }

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


/* ================================================
   IMAGE STRIP (horizontal scroll carousel)
   ================================================ */

.img-strip {
  overflow: hidden;
  background: var(--color-primary);
  padding: 56px 0;
  position: relative;
}

.img-strip__label {
  text-align: center;
  font-family: var(--font-accent);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  margin-bottom: 32px;
}

.img-strip__track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: stripScroll 35s linear infinite;
}

.img-strip__item {
  width: 280px;
  height: 180px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}

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

@keyframes stripScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.img-strip:hover .img-strip__track { animation-play-state: paused; }


/* ================================================
   Section heading light variant
   ================================================ */

.section-heading--light .section-heading__en {
  color: var(--color-accent);
}
.section-heading--light .section-heading__ja {
  color: #fff;
}
.section-heading--light .section-heading__line {
  background: var(--color-accent);
}


/* ================================================
   Responsive — Tablet (900px)
   ================================================ */

@media (max-width: 900px) {
  :root { --section-padding: 100px; }

  .header { height: 100px; }
  .header__inner { padding: 0 50px; }
  .header__logo-img { height: 80px; }
  .header__nav-list, .header__cta { display: none; }
  .header__hamburger { display: flex; }
  .hero { margin-top: 100px; height: calc(100vh - 100px); }

  .features__grid {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 560px;
    margin: 0 auto;
  }

  .plan-cards { grid-template-columns: 1fr; max-width: 480px; }
  .options__grid { grid-template-columns: 1fr; gap: 28px; }
  .works__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  .flow__steps { flex-direction: column; align-items: center; }
  .flow__step { max-width: 100%; padding: 0; }
  .flow__connector { width: 1px; min-width: 1px; height: 32px; margin-top: 0; }
  .flow__connector::after { right: -3px; top: auto; bottom: -3px; transform: rotate(135deg); }

  .about__inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .about__meta-row { justify-content: center; }
  .about__skills { justify-content: center; }
  .about__story { text-align: left; }

  .footer__inner { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .footer__nav-list, .footer__links { align-items: center; }

  /* Hero tablet */
  .hero-title { font-size: 48px; }
  .hero-left { padding: 40px 40px 40px 50px; }
  .hero-right { height: auto; }
  .hero-subtitle { font-size: 16px; }

  /* 装飾グループ：タブレットで少し小さく */
  .deco-group .deco-shape { transform: scale(0.75); }
  .deco-group--mid-left { display: none; }
}


/* ================================================
   Responsive — Mobile (640px)
   ================================================ */

@media (max-width: 640px) {
  :root { --section-padding: 80px; }

  body { font-size: 15px; line-height: 1.85; }
  .container { padding: 0 20px; }
  .pc-only { display: none; }
  .section-heading { margin-bottom: 56px; }

  /* Header mobile */
  .header { height: 72px; }
  .header__inner { padding: 0 20px; }
  .header__logo-img { height: 56px; }

  /* Hero mobile：縦積みに変更 */
  .hero { height: auto; min-height: auto; max-height: none; margin-top: 72px; }
  .hero-left { padding: 40px 20px 32px; }
  .hero-container { flex-direction: column; }
  .hero-left,
  .hero-right { width: 100%; }
  .hero-left { padding: 60px 24px 40px; order: 1; }
  .hero-right { height: 300px; order: 2; }
  .hero-title { font-size: 36px; line-height: 1.5; }
  .hero-eyebrow { font-size: 13px; letter-spacing: 0.2em; }
  .hero-subtitle { font-size: 15px; }
  .hero-buttons { flex-direction: column; width: 100%; }
  .cta-button-primary,
  .cta-button-secondary { width: 100%; padding: 18px 32px; font-size: 16px; justify-content: center; }

  /* 装飾グループ：モバイルで縮小・一部非表示 */
  .deco-group .deco-shape { transform: scale(0.5); }
  .deco-group--bottom-left,
  .deco-group--mid-left { display: none; }

  /* Works */
  .works__grid { grid-template-columns: 1fr; gap: 16px; }
  .works__tabs { gap: 6px; flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; padding-bottom: 8px; -webkit-overflow-scrolling: touch; }
  .works__tabs::-webkit-scrollbar { height: 3px; }
  .works__tabs::-webkit-scrollbar-thumb { background: var(--border-light); border-radius: 3px; }
  .works__tab { padding: 8px 16px; font-size: 13px; }

  /* Plan */
  .plan-card { padding: 40px 24px 32px; }
  .plan-card__price-num { font-size: 36px; }

  /* Flow */
  .flow__step-icon { width: 60px; height: 60px; }

  /* About */
  .about__photo-wrap,
  .about__photo-wrap img,
  .about__photo-wrap__fallback { width: 180px; height: 180px; }
  .about__photo-ring--1 { width: 220px; height: 220px; top: -20px; left: -20px; }
  .about__photo-ring--2 { width: 260px; height: 260px; top: -40px; left: -40px; }
  .about__meta-row { flex-direction: column; gap: 4px; text-align: left; }

  /* Contact */
  .contact__radio-group { flex-direction: column; gap: 12px; }
  .btn--large { padding: 18px 36px; font-size: 16px; }

  /* FAQ */
  .faq__answer-inner { padding-left: 0; }

  /* Feature numbers */
  .feature__num { font-size: 80px; }

  /* Marquee */
  .marquee__item { font-size: 15px; padding: 0 16px; }
  .marquee--reverse .marquee__item { font-size: 13px; }

  /* Image strip */
  .img-strip__item { width: 220px; height: 140px; }

  /* CTA Banner */
  .cta-banner { padding: 100px 0; }
  .cta-banner__heading { font-size: 26px; }
  .cta-banner__buttons { flex-direction: column; align-items: center; }
  .cta-banner__buttons .btn--primary,
  .btn--outline-white { width: 100%; max-width: 320px; justify-content: center; }
  .cta-banner__trust { gap: 20px; }

  /* Deco text */
  .deco-text { font-size: 80px; }

  /* Pain items */
  .pain__item { padding: 16px 18px; }
}
