/* =============================================
   BIRD VISION V2 - Studio Site Design
   ============================================= */

/* Design Tokens */
:root {
  --navy: #1a2744;
  --navy-light: #2a3d5e;
  --navy-dark: #0f1a2e;
  --white: #ffffff;
  --gray-50: #f8f9fa;
  --gray-100: #f0f1f3;
  --gray-200: #e0e2e6;
  --gray-300: #c0c4cc;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-900: #1f2937;
  --text: #333333;
  --text-light: #666666;
  --font-sans: 'Noto Sans JP', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
  --header-height: 80px;
  --transition: 0.4s cubic-bezier(.4,.4,0,1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  line-height: 1.8;
  font-size: 15px;
  background: var(--white);
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
table { border-collapse: collapse; width: 100%; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* =============================================
   HEADER
   ============================================= */
.header-v2 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  transition: box-shadow var(--transition);
}
.header-v2.is-scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.header-v2-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 30px;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.header-v2-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.header-v2-logo-img {
  height: 40px;
  width: auto;
}
.header-v2-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-v2-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  color: var(--text);
  transition: color 0.3s;
  text-align: center;
  white-space: nowrap;
}
.nav-en {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
}
.nav-ja {
  font-size: 9px;
  font-weight: 400;
  color: var(--gray-500);
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.header-v2-nav a:hover { color: var(--navy); }
.header-v2-nav a:hover .nav-ja { color: var(--navy); }
.header-v2-nav a.is-active { color: var(--navy); }
.header-v2-nav a.is-active .nav-ja { color: var(--navy); }
.header-v2-cta {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  padding: 8px 22px;
  background: var(--navy);
  color: var(--white);
  border-radius: 30px;
  transition: opacity 0.3s;
  white-space: nowrap;
  flex-shrink: 0;
}
.header-v2-cta .nav-en {
  font-size: 11px;
  color: var(--white);
}
.header-v2-cta .nav-ja {
  font-size: 8px;
  color: rgba(255,255,255,0.65);
}
.header-v2-cta:hover { opacity: 0.85; }

/* Mobile Menu Button */
.mobile-menu-btn-v2 {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 28px;
  padding: 4px 0;
}
.mobile-menu-btn-v2 span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-menu-btn-v2.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.mobile-menu-btn-v2.is-open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn-v2.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile Nav Overlay */
.mobile-nav-v2 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--white);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.mobile-nav-v2.is-open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav-v2 a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: var(--navy);
  transition: opacity 0.3s;
}
.mobile-nav-v2 a:hover { opacity: 0.6; }
.mobile-nav-en {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.06em;
}
.mobile-nav-ja {
  font-size: 11px;
  font-weight: 400;
  color: var(--gray-500);
  letter-spacing: 0.04em;
}
.mobile-nav-cta {
  margin-top: 8px;
  padding: 14px 40px;
  background: var(--navy);
  color: var(--white) !important;
  font-size: 14px;
  font-weight: 700;
  border-radius: 30px;
  letter-spacing: 0.08em;
}

/* =============================================
   HERO
   ============================================= */
.hero-v2 {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: var(--header-height);
  background: var(--navy);
}
.hero-v2-bg {
  width: 100%;
  position: relative;
}
.hero-v2-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent 0%, var(--navy) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-v2-bg img {
  width: 100%;
  height: auto;
  display: block;
}

/* =============================================
   INTRO
   ============================================= */
.intro-v2 {
  position: relative;
  padding: 120px 30px 100px;
  background: var(--navy);
  overflow: hidden;
  text-align: center;
  margin-top: -2px;
}
.intro-v2::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(42,61,94,0.7) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 60%, rgba(42,61,94,0.5) 0%, transparent 60%);
  pointer-events: none;
}
.intro-v2-bg-number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateZ(0);
  font-size: clamp(180px, 28vw, 360px);
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -0.02em;
  z-index: 0;
  font-feature-settings: 'tnum';
  font-variant-numeric: tabular-nums;
  contain: layout style paint;
}
.intro-v2-unit {
  font-size: 0.5em;
  font-weight: 700;
  vertical-align: baseline;
  margin-left: -0.05em;
}
.intro-v2-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.intro-v2-heading {
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 30px;
  color: var(--white);
  letter-spacing: 0.06em;
}
.intro-v2-text {
  font-size: 15px;
  line-height: 2;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0;
}
.intro-v2-text .text-emphasis {
  color: var(--white);
  font-weight: 700;
}

/* Buttons */
.btn-v2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 40px;
  background: var(--navy);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  border-radius: 30px;
  transition: opacity 0.3s, transform 0.3s;
  line-height: 1.5;
  text-align: center;
}
.btn-v2:hover { opacity: 0.85; transform: translateY(-1px); }
.btn-v2 .material-icons { font-size: 18px; }

.btn-v2-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 32px;
  border: 1.5px solid var(--gray-300);
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  border-radius: 30px;
  transition: var(--transition);
  background: var(--white);
}
.btn-v2-outline:hover {
  border-color: var(--navy);
  color: var(--navy);
}

.btn-v2-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 24px;
  border: 1.5px solid rgba(255,255,255,0.6);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  border-radius: 30px;
  transition: var(--transition);
}
.btn-v2-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn-v2-outline-white .material-icons { font-size: 16px; }

/* =============================================
   SECTION HEADINGS
   ============================================= */
.section-heading-v2 {
  text-align: right;
  margin-bottom: 50px;
}
.section-heading-v2--left { text-align: left; }
.section-heading-v2-en {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  font-style: italic;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.section-heading-v2-ja {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-top: 8px;
}

/* =============================================
   NEWS SECTION
   ============================================= */
.news-v2 {
  padding: 80px 30px 100px;
  background: var(--gray-50);
}
.news-v2-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.news-v2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 50px;
}
.news-v2-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(26,39,68,0.06);
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s ease;
  will-change: transform;
  transform: translateZ(0);
}
.news-v2-card:hover {
  transform: translateY(-6px) translateZ(0);
  box-shadow: 0 12px 40px rgba(26,39,68,0.12);
}
.news-v2-card-image {
  overflow: hidden;
}
.news-v2-card-image img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.news-v2-card:hover .news-v2-card-image img {
  transform: scale(1.06);
}
.news-v2-card-body {
  padding: 20px 22px 24px;
}
.news-v2-card-date {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 8px;
}
.news-v2-card-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--gray-900);
}
/* No-image placeholder for news cards */
.news-v2-card-image--noimage {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
  aspect-ratio: 16/10;
}
.news-v2-card-noimage-icon {
  font-size: 40px;
  color: var(--gray-300);
}

.news-v2-loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 0;
  font-size: 14px;
  color: var(--text-light);
}
.news-v2-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 0;
  font-size: 14px;
  color: var(--text-light);
}
.news-v2-more {
  text-align: center;
}

/* =============================================
   ADVANTAGES SECTION
   ============================================= */
.advantages-v2 {
  padding: 100px 30px;
}
.advantages-v2-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.advantages-v2-heading {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  font-style: italic;
  color: var(--navy);
  margin-bottom: 50px;
  line-height: 1.1;
  padding-right: 0.15em;
}
.advantages-v2-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}
.advantages-v2-card {
  text-align: center;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(26,39,68,0.06);
}
.advantages-v2-card-image {
  position: relative;
  height: 400px;
  background-size: cover;
  background-position: center;
  border-radius: 0;
  overflow: hidden;
}
.advantages-v2-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 30px 20px;
  color: var(--white);
}
.advantages-v2-card-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.advantages-v2-card-desc-short {
  font-size: 15px;
  line-height: 1.8;
  font-weight: 500;
}
/* Card text area below image */
.advantages-v2-card-text {
  padding: 24px 20px 28px;
}
.advantages-v2-card-title-text {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.4;
}
.advantages-v2-card-desc {
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-light);
}

/* =============================================
   WORKS SECTION
   ============================================= */
/* --- Stats Bar --- */
.works-v2 {
  position: relative;
  padding-bottom: 80px;
  background: var(--navy);
  overflow: hidden;
}
.works-v2 .section-heading-v2-en,
.works-v2 .section-heading-v2-ja {
  color: var(--white);
}
.works-v2 .section-heading-v2-en::after {
  background: rgba(255,255,255,0.3);
}
.works-v2-stats {
  padding: 80px 30px 60px;
  position: relative;
}
.works-v2-stats::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}
.works-v2-stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.works-v2-stat {
  text-align: center;
  position: relative;
}
.works-v2-stat-number {
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 900;
  font-style: italic;
  color: var(--white);
  line-height: 1;
  display: inline;
  letter-spacing: -2px;
}
.works-v2-stat-suffix {
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  font-style: italic;
}
.works-v2-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
  letter-spacing: 0.1em;
}
.works-v2-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
}

/* --- Stats Detail --- */
.works-v2-stat-detail {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  margin-top: 4px;
  letter-spacing: 0.02em;
}

/* --- Showcase Layout --- */
.works-v2-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 0 30px 40px;
  max-width: 1400px;
  margin: 0 auto;
}
.works-v2-featured {
  grid-row: 1;
  grid-column: 1;
}
.works-v2-grid {
  grid-row: 1;
  grid-column: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 4px;
}
.works-v2-grid .works-v2-item:last-child {
  grid-column: span 2;
}

/* --- Individual Items --- */
.works-v2-item {
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  cursor: pointer;
  min-height: 200px;
}
.works-v2-item--hero {
  height: 100%;
  min-height: 600px;
}
.works-v2-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(26,39,68,0.9) 100%);
  transition: opacity 0.5s ease;
  z-index: 1;
}
.works-v2-item:hover::before {
  background: linear-gradient(180deg, rgba(26,39,68,0.1) 0%, rgba(26,39,68,0.95) 100%);
}
.works-v2-item::after {
  content: '';
  position: absolute;
  inset: -10px;
  background: inherit;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 0;
}
.works-v2-item:hover::after {
  transform: scale(1.08);
}
.works-v2-item-shine {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.08) 45%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.08) 55%, transparent 60%);
  transform: translateX(-100%);
  transition: none;
}
.works-v2-item:hover .works-v2-item-shine {
  transform: translateX(100%);
  transition: transform 0.8s ease;
}
.works-v2-item-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px;
  z-index: 3;
  transform: translateY(10px);
  opacity: 0.8;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.works-v2-item:hover .works-v2-item-content {
  transform: translateY(0);
  opacity: 1;
}
.works-v2-item-cat {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 10px;
}
.works-v2-item-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 4px;
}
.works-v2-item--hero .works-v2-item-title {
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.02em;
}
.works-v2-item-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
}
.works-v2-item--hero .works-v2-item-content {
  padding: 40px 36px;
}

/* CTA button */
.works-v2-more {
  text-align: center;
  margin-top: 50px;
}
.works-v2-more .btn-v2 {
  border-color: rgba(255,255,255,0.3);
  color: var(--white);
}
.works-v2-more .btn-v2:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

/* =============================================
   COST SECTION
   ============================================= */
.cost-v2 {
  padding: 100px 30px;
  background: var(--gray-50);
}
.cost-v2-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* --- Pricing Layout: Base + Plus + Option --- */
.cost-v2-pricing {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 60px;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 40px rgba(26,39,68,0.08);
}
.cost-v2-base {
  flex: 1.2;
  padding: 48px 40px;
  background: var(--navy);
  color: var(--white);
}
.cost-v2-base-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  border: 1px solid rgba(255,255,255,0.4);
  padding: 4px 14px;
  border-radius: 3px;
  margin-bottom: 16px;
}
.cost-v2-base-title {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.5;
  margin-bottom: 28px;
}
.cost-v2-base-title span {
  font-size: 15px;
  font-weight: 600;
  opacity: 0.7;
}
.cost-v2-base-desc {
  font-size: 14px;
  line-height: 1.8;
  opacity: 0.7;
  margin-bottom: 28px;
}
.cost-v2-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cost-v2-includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  opacity: 0.85;
}
.cost-v2-includes .material-icons {
  font-size: 18px;
  color: #4ecdc4;
}

/* Plus icon connector */
.cost-v2-plus {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  background: var(--white);
}
.cost-v2-plus .material-icons {
  font-size: 40px;
  color: var(--navy);
  opacity: 0.3;
}

/* Option card */
.cost-v2-option {
  flex: 1;
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
}
.cost-v2-option-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--navy);
  border: 1px solid var(--navy);
  padding: 4px 14px;
  border-radius: 3px;
  margin-bottom: 16px;
}
.cost-v2-option-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
}
.cost-v2-option-price {
  font-size: 20px;
  font-weight: 800;
  font-style: italic;
  color: var(--navy);
  margin-bottom: 8px;
}
.cost-v2-option-note {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 28px;
  line-height: 1.6;
}
.cost-v2-option-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}
.cost-v2-option-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-900);
}
.cost-v2-option-list .material-icons {
  font-size: 20px;
  color: var(--navy);
  opacity: 0.5;
}

/* --- Full Price Table --- */
.cost-v2-table-wrap {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 40px rgba(26,39,68,0.08);
  margin-bottom: 40px;
  padding: 40px;
}
.cost-v2-table-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}
.cost-v2-table-note {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 24px;
}
.cost-v2-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.cost-v2-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 500px;
}
.cost-v2-table thead th {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white);
  background: var(--navy);
  padding: 14px 20px;
  text-align: left;
  white-space: nowrap;
}
.cost-v2-table thead th:first-child { border-radius: 6px 0 0 0; }
.cost-v2-table thead th:last-child { border-radius: 0 6px 0 0; text-align: right; }
.cost-v2-table tbody td {
  font-size: 14px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--gray-200);
  color: var(--gray-900);
  white-space: nowrap;
}
.cost-v2-table tbody td strong {
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.cost-v2-table-price {
  text-align: right !important;
  font-weight: 800 !important;
  font-size: 16px !important;
  color: var(--navy) !important;
}
.cost-v2-table-price span {
  font-size: 12px;
  font-weight: 500;
  opacity: 0.5;
  margin-left: 2px;
}
.cost-v2-table-consult {
  font-style: italic;
  opacity: 0.7;
}
.cost-v2-table-highlight {
  background: rgba(26,39,68,0.04);
  position: relative;
}
.cost-v2-table-highlight td {
  border-bottom: 2px solid var(--navy);
  border-top: 2px solid var(--navy);
}
.cost-v2-table-highlight td:first-child {
  position: relative;
}
.cost-v2-table-highlight td:first-child::after {
  content: 'POPULAR';
  display: inline-block;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--white);
  background: var(--navy);
  padding: 2px 8px;
  border-radius: 3px;
  margin-left: 8px;
  vertical-align: middle;
  line-height: 1.6;
}
.cost-v2-table tbody tr {
  transition: background 0.2s ease;
}
.cost-v2-table tbody tr:hover {
  background: rgba(26,39,68,0.03);
}

/* --- Case Study --- */
.cost-v2-case {
  background: var(--navy);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 50px;
}
.cost-v2-case-photo {
  width: 100%;
  max-height: 320px;
  overflow: hidden;
}
.cost-v2-case-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cost-v2-case-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.cost-v2-case-left {
  padding: 48px 44px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cost-v2-case-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.45;
  margin-bottom: 16px;
}
.cost-v2-case-title {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 16px;
}
.cost-v2-case-desc {
  font-size: 14px;
  line-height: 1.9;
  opacity: 0.6;
}
.cost-v2-case-right {
  background: rgba(255,255,255,0.06);
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
}
.cost-v2-case-item {
  position: relative;
}
.cost-v2-case-item-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 6px;
}
.cost-v2-case-item-value {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
}
.cost-v2-case-item-price {
  font-size: 32px;
  font-style: italic;
  letter-spacing: -1px;
}
.cost-v2-case-item-meta {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-top: 3px;
}

/* --- CTA --- */
.cost-v2-cta {
  text-align: center;
  margin-top: 60px;
}
.cost-v2-cta-text {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.7;
}

/* =============================================
   STEPS SECTION
   ============================================= */
.steps-v2 {
  padding: 80px 30px;
}
.steps-v2-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.steps-v2-timeline {
  display: flex;
  gap: 0;
  position: relative;
}
.steps-v2-item {
  flex: 1;
  text-align: center;
  padding: 0 12px;
  position: relative;
}
.steps-v2-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 20px;
  font-weight: 900;
  font-style: italic;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0;
  position: relative;
  z-index: 2;
}
.steps-v2-connector {
  height: 2px;
  background: var(--navy);
  position: absolute;
  top: 24px;
  left: calc(50% + 24px);
  right: calc(-50% + 24px);
  z-index: 1;
  opacity: 0.3;
}
.steps-v2-item:last-child .steps-v2-connector {
  display: none;
}
.steps-v2-tag {
  display: inline-block;
  padding: 4px 16px;
  background: var(--navy);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  border-radius: 3px;
  margin: 16px 0 8px;
}
.steps-v2-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--gray-900);
  line-height: 1.5;
}
.steps-v2-desc {
  font-size: 12px;
  line-height: 1.7;
  color: var(--text-light);
}

/* =============================================
   COMPANY SECTION
   ============================================= */
.company-v2 {
  padding: 100px 30px;
  background: var(--white);
}
.company-v2-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.company-v2-table {
  width: 100%;
}
.company-v2-table tr {
  border-bottom: 1px solid var(--gray-200);
}
.company-v2-table th,
.company-v2-table td {
  padding: 20px 24px;
  font-size: 14px;
  line-height: 1.8;
  vertical-align: top;
  text-align: left;
}
.company-v2-table th {
  width: 200px;
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  border-radius: 4px 0 0 4px;
}
.company-v2-table td {
  color: var(--text);
}

/* =============================================
   FOOTER
   ============================================= */
.footer-v2 {
  background: var(--navy-dark);
  color: var(--white);
  padding: 60px 30px 40px;
}
.footer-v2-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.footer-v2-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
}
.footer-v2-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.footer-v2-logo-img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}
.footer-v2-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 32px;
}
.footer-v2-nav a {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  transition: color 0.3s;
}
.footer-v2-nav a:hover { color: var(--white); }
.footer-v2-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
}
.footer-v2-brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}
.footer-v2-copyright {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

/* =============================================
   CUSTOM CURSOR
   ============================================= */
/* Custom cursor disabled */
.custom-cursor, .custom-cursor-dot { display: none !important; }

/* =============================================
   SCROLL PROGRESS
   ============================================= */
.scroll-progress-v2 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 3px;
  background: var(--navy);
  transform-origin: left;
  transform: scaleX(0);
  z-index: 10001;
  will-change: transform;
}

/* =============================================
   PAGE LOAD ANIMATION
   ============================================= */
body:not(.is-loaded) .hero-v2 { opacity: 0; transform: scale(1.05) translateZ(0); }
body.is-loaded .hero-v2 {
  opacity: 1; transform: scale(1) translateZ(0);
  transition: opacity 1.2s ease 0.1s, transform 1.5s var(--ease-out-expo) 0.1s;
}
body:not(.is-loaded) .header-v2 { opacity: 0; transform: translateY(-30px) translateZ(0); }
body.is-loaded .header-v2 {
  opacity: 1; transform: translateY(0) translateZ(0);
  transition: opacity 0.8s ease 0.5s, transform 0.8s var(--ease-out-expo) 0.5s;
}
body:not(.is-loaded) .intro-v2 { opacity: 0; }
body.is-loaded .intro-v2 { opacity: 1; transition: opacity 0.8s ease 0.8s; }

/* =============================================
   ANIMATIONS
   ============================================= */
.fade-in {
  opacity: 0;
  transform: translateY(40px) translateZ(0);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
  will-change: opacity, transform;
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0) translateZ(0);
}
.slide-up {
  opacity: 0;
  transform: translateY(60px) translateZ(0);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
  will-change: opacity, transform;
}
.slide-up.is-visible { opacity: 1; transform: translateY(0) translateZ(0); }
.slide-left {
  opacity: 0;
  transform: translateX(60px) translateZ(0);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
  will-change: opacity, transform;
}
.slide-left.is-visible { opacity: 1; transform: translateX(0) translateZ(0); }
.slide-right {
  opacity: 0;
  transform: translateX(-60px) translateZ(0);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
  will-change: opacity, transform;
}
.slide-right.is-visible { opacity: 1; transform: translateX(0) translateZ(0); }
.scale-in {
  opacity: 0;
  transform: scale(0.9) translateZ(0);
  transition: opacity 0.8s ease, transform 0.8s var(--ease-out-expo);
  will-change: opacity, transform;
}
.scale-in.is-visible { opacity: 1; transform: scale(1) translateZ(0); }

/* Text reveal */
.text-reveal {
  overflow: hidden;
  display: inline-block;
}
.text-reveal-inner {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.text-reveal.is-visible .text-reveal-inner { transform: translateY(0); }

/* =============================================
   IMPACT ANIMATIONS & TEXT EFFECTS
   ============================================= */

/* --- Split Text (hero catch — char by char) --- */
[data-split-text] .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px) rotateX(-40deg);
  animation: charReveal 0.6s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
@keyframes charReveal {
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
  }
}

/* --- Fade Up (hero sub) --- */
[data-fade-up] {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUpIn 0.8s cubic-bezier(0.23, 1, 0.32, 1) 2.6s forwards;
}
@keyframes fadeUpIn {
  to { opacity: 1; transform: translateY(0); }
}

/* --- Text Accent (gradient shimmer on key words) --- */
.text-accent {
  position: relative;
  display: inline-block;
  background: linear-gradient(120deg, #fff 0%, #b8d4ff 30%, #fff 50%, #b8d4ff 70%, #fff 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerText 3s ease-in-out infinite;
}
@keyframes shimmerText {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}

/* --- Hero Rotating Word --- */
.hero-rotating-word {
  display: inline-block;
  width: 4.5em;
  text-align: center;
  vertical-align: baseline;
  white-space: nowrap;
  position: relative;
}
.hero-rotating-word .rotating-char {
  display: inline-block;
  color: #fff;
  font-weight: 900;
  text-shadow:
    0 0 20px rgba(120, 180, 255, 0.8),
    0 0 40px rgba(80, 140, 255, 0.4),
    0 2px 10px rgba(0,0,0,0.3);
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: none;
}
/* --- Char OUT animation (scatter up + fade) --- */
.hero-rotating-word .rotating-char.char-out {
  animation: charScatterOut 0.4s cubic-bezier(0.6, 0, 0.4, 1) forwards;
}
@keyframes charScatterOut {
  0% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0deg);
    filter: blur(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-30px) scale(0.5) rotate(-10deg);
    filter: blur(4px);
  }
}
/* --- Char IN animation (bounce up from below) --- */
.hero-rotating-word .rotating-char.char-in {
  animation: charBounceIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.4) forwards;
}
@keyframes charBounceIn {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.3) rotate(8deg);
    filter: blur(4px);
  }
  60% {
    opacity: 1;
    transform: translateY(-6px) scale(1.1) rotate(-2deg);
    filter: blur(0);
  }
  80% {
    transform: translateY(3px) scale(0.97) rotate(0.5deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0deg);
    filter: blur(0);
  }
}
/* --- Idle subtle float --- */
.hero-rotating-word .rotating-char.char-idle {
  animation: charIdleFloat 3s ease-in-out infinite;
  animation-delay: var(--float-delay, 0s);
}
@keyframes charIdleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

/* --- Text Glow (pulsing glow on numbers) --- */
.text-glow {
  text-shadow: 0 0 20px rgba(184, 212, 255, 0.6);
  animation: pulseGlow 2s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%, 100% { text-shadow: 0 0 20px rgba(184, 212, 255, 0.4); }
  50% { text-shadow: 0 0 30px rgba(184, 212, 255, 0.8), 0 0 60px rgba(184, 212, 255, 0.3); }
}

/* --- Line Reveal (intro heading lines) --- */
.text-line-reveal {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  transition-delay: var(--line-delay, 0s);
}
.slide-up.is-visible .text-line-reveal {
  opacity: 1;
  transform: translateY(0);
}

/* --- Gradient Highlight (key phrase) --- */
.text-highlight-gradient {
  position: relative;
}
.text-highlight-gradient::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy) 0%, #4a7dff 50%, var(--navy-light) 100%);
  border-radius: 2px;
  transition: width 1s cubic-bezier(0.23, 1, 0.32, 1) 0.8s;
}
.slide-up.is-visible .text-highlight-gradient::after {
  width: 100%;
}

/* --- Text Emphasis (inline keyword) --- */
.text-emphasis {
  position: relative;
  font-weight: 700;
  color: var(--navy);
}
.text-emphasis::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, rgba(74, 125, 255, 0.15), rgba(26, 39, 68, 0.1));
  border-radius: 4px;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.is-visible .text-emphasis::after,
.fade-in.is-visible .text-emphasis::after {
  transform: scaleX(1);
}

/* --- Text Accent Navy (section headings) --- */
.text-accent-navy {
  background: linear-gradient(135deg, var(--navy) 0%, #4a7dff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Stat Number Glow --- */
.stat-number-wrap {
  position: relative;
  display: inline-block;
}
.stat-number-wrap::after {
  content: '';
  position: absolute;
  inset: -8px -12px;
  background: radial-gradient(ellipse, rgba(74, 125, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  animation: none;
  pointer-events: none;
}
.is-visible .stat-number-wrap::after {
  animation: statGlow 2s ease-in-out 0.5s;
}
@keyframes statGlow {
  0% { opacity: 0; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
  100% { opacity: 0; transform: scale(1.5); }
}
.stat-number-wrap.stat-counted {
  animation: statPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes statPop {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

/* --- CTA Banner Shimmer --- */
.cta-banner-v2 {
  position: relative;
  overflow: hidden;
}
.cta-banner-v2-shimmer {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.03) 0%, transparent 60%);
  animation: ctaShimmer 8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes ctaShimmer {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(10%, 5%) rotate(5deg); }
  50% { transform: translate(-5%, 10%) rotate(-3deg); }
  75% { transform: translate(-10%, -5%) rotate(2deg); }
}

/* --- White Text Highlight --- */
.text-highlight-white {
  position: relative;
}
.text-highlight-white::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255,255,255,0.5);
  border-radius: 2px;
  animation: expandLine 1s cubic-bezier(0.23, 1, 0.32, 1) 0.5s both;
}
@keyframes expandLine {
  from { width: 0; }
  to { width: 100%; }
}

/* =============================================
   CINEMATIC PAGE LOAD CURTAIN
   ============================================= */
.page-curtain {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--navy);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: none;
}
.page-curtain-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.page-curtain.curtain-reveal .page-curtain-logo {
  opacity: 1;
  transform: scale(1);
}
.page-curtain-text {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: 0.3em;
  color: var(--white);
  font-family: var(--font-sans);
}
.page-curtain-img {
  width: auto;
  height: 80px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.page-curtain-line {
  width: 0;
  height: 2px;
  background: rgba(255,255,255,0.6);
  transition: width 0.6s cubic-bezier(0.23, 1, 0.32, 1) 0.2s;
}
.page-curtain.curtain-reveal .page-curtain-line {
  width: 120px;
}
.page-curtain.curtain-exit {
  animation: curtainSlideUp 0.8s cubic-bezier(0.6, 0, 0.2, 1) forwards;
}
@keyframes curtainSlideUp {
  0% { clip-path: inset(0 0 0 0); }
  100% { clip-path: inset(0 0 100% 0); }
}

/* =============================================
   HERO SCROLL INDICATOR
   ============================================= */
.hero-scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  opacity: 0;
  animation: fadeUpIn 0.8s ease 2.8s forwards;
}
.hero-scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255,255,255,0.6);
  border-bottom: 2px solid rgba(255,255,255,0.6);
  transform: rotate(45deg);
  animation: scrollBounce 2s ease-in-out infinite;
}
.hero-scroll-text {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
}
@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: 0.6; }
  50% { transform: rotate(45deg) translate(5px, 5px); opacity: 1; }
}

/* =============================================
   SECTION REVEAL WIPE TRANSITIONS
   ============================================= */
[data-reveal="wipe-up"] {
  opacity: 0;
  transform: translateY(60px) translateZ(0);
  transition: opacity 0.9s var(--ease-out-expo), transform 1.2s var(--ease-out-expo);
  will-change: opacity, transform;
}
[data-reveal="wipe-up"].section-revealed {
  opacity: 1;
  transform: translateY(0) translateZ(0);
}
[data-reveal="wipe-left"] {
  opacity: 0;
  transform: translateX(-60px) translateZ(0);
  transition: opacity 0.9s var(--ease-out-expo), transform 1.2s var(--ease-out-expo);
  will-change: opacity, transform;
}
[data-reveal="wipe-left"].section-revealed {
  opacity: 1;
  transform: translateX(0) translateZ(0);
}
[data-reveal="zoom-reveal"] {
  opacity: 0;
  transform: scale(0.92) translateZ(0);
  transition: opacity 1s var(--ease-out-expo), transform 1.2s var(--ease-out-expo);
  will-change: opacity, transform;
}
[data-reveal="zoom-reveal"].section-revealed {
  opacity: 1;
  transform: scale(1) translateZ(0);
}
[data-reveal="slide-curtain"] {
  position: relative;
  overflow: hidden;
}
[data-reveal="slide-curtain"]::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--navy);
  z-index: 10;
  transform: scaleX(1);
  transform-origin: right;
  transition: transform 1s cubic-bezier(0.6, 0, 0.2, 1) 0.2s;
}
[data-reveal="slide-curtain"].section-revealed::before {
  transform: scaleX(0);
}

/* =============================================
   STEPS TIMELINE CINEMATIC ANIMATION
   ============================================= */
.steps-v2-item {
  opacity: 0;
  transform: translateY(30px) scale(0.95) translateZ(0);
  transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
  will-change: opacity, transform;
}
.steps-v2-item.step-active {
  opacity: 1;
  transform: translateY(0) scale(1) translateZ(0);
}
.steps-v2-item.step-active .steps-v2-number {
  animation: stepNumberPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes stepNumberPop {
  0% { transform: scale(0.5); opacity: 0; }
  60% { transform: scale(1.2); }
  100% { transform: scale(1); opacity: 1; }
}
.steps-v2-item.step-active .steps-v2-connector {
  animation: connectorGrow 0.4s ease 0.3s forwards;
  transform-origin: left;
  transform: scaleX(0);
}
@keyframes connectorGrow {
  to { transform: scaleX(1); }
}

/* =============================================
   FAQ SLIDE-IN ANIMATION
   ============================================= */
@keyframes faqSlideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =============================================
   CINEMATIC REVEAL (3D perspective entrance)
   ============================================= */
.cinematic-reveal {
  opacity: 0;
  transform: perspective(1200px) rotateX(8deg) translateY(60px) translateZ(0);
  transition: opacity 1s var(--ease-out-expo), transform 1.2s var(--ease-out-expo);
  will-change: opacity, transform;
}
.cinematic-reveal.is-visible {
  opacity: 1;
  transform: perspective(1200px) rotateX(0deg) translateY(0) translateZ(0);
}

/* =============================================
   ENHANCED HERO SCROLL ZOOM (CSS Layer)
   ============================================= */
.hero-v2-bg img {
  will-change: transform, filter;
  transition: none;
}
.hero-v2-overlay {
  will-change: transform, opacity;
  transition: none;
}

/* =============================================
   ENHANCED SECTION HEADINGS (Stroke / Gradient)
   ============================================= */
.section-heading-v2-en {
  will-change: transform;
  transition: none;
  transform: translateZ(0);
}

/* =============================================
   ADVANTAGE CARD GLOW ON HOVER
   ============================================= */
.advantages-v2-card {
  transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s ease;
  will-change: transform;
  transform: translateZ(0);
}
.advantages-v2-card:hover {
  transform: translateY(-8px) translateZ(0);
  box-shadow: 0 20px 60px rgba(26,39,68,0.15);
}

/* =============================================
   SERVICE DETAIL CARDS 3D
   ============================================= */
.service-detail-card {
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}

/* =============================================
   COMPARISON TABLE ROW SLIDE-IN
   ============================================= */
.comparison-table tbody tr {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.5s ease, transform 0.5s ease, background 0.3s ease;
}
.is-visible .comparison-table tbody tr,
.section-revealed .comparison-table tbody tr {
  opacity: 1;
  transform: translateX(0);
}
.is-visible .comparison-table tbody tr:nth-child(1) { transition-delay: 0.05s; }
.is-visible .comparison-table tbody tr:nth-child(2) { transition-delay: 0.1s; }
.is-visible .comparison-table tbody tr:nth-child(3) { transition-delay: 0.15s; }
.is-visible .comparison-table tbody tr:nth-child(4) { transition-delay: 0.2s; }
.is-visible .comparison-table tbody tr:nth-child(5) { transition-delay: 0.25s; }
.is-visible .comparison-table tbody tr:nth-child(6) { transition-delay: 0.3s; }
.is-visible .comparison-table tbody tr:nth-child(7) { transition-delay: 0.35s; }
.is-visible .comparison-table tbody tr:nth-child(8) { transition-delay: 0.4s; }

/* =============================================
   FLOATING GRADIENT ORB (Hero background)
   ============================================= */
.hero-v2::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(74, 125, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatOrb 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-50px, -30px) scale(1.1); }
  66% { transform: translate(30px, -60px) scale(0.9); }
}

/* =============================================
   WORKS SECTION GLOW BACKGROUND
   ============================================= */
.works-v2::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(ellipse at 30% 20%, rgba(74, 125, 255, 0.08) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 80%, rgba(74, 125, 255, 0.06) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.works-v2-stats,
.works-v2-inner,
.works-v2-showcase {
  position: relative;
  z-index: 1;
}

/* =============================================
   CTA BANNER ENHANCED GLOW
   ============================================= */
.cta-banner-v2::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(74, 125, 255, 0.12) 0%, transparent 60%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: ctaPulse 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes ctaPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.5; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}

/* --- Comparison Table Row Hover Slide --- */
.comparison-table tbody tr {
  transition: background 0.3s ease, transform 0.3s ease;
}
.comparison-table tbody tr:hover {
  background: rgba(26, 39, 68, 0.02);
}
.comparison-table tbody tr:hover .comparison-crane-cell {
  background: rgba(26, 39, 68, 0.06);
}

/* --- Advantage Card Image Zoom on Scroll --- */
.advantages-v2-card-image {
  transition: none;
}
.advantages-v2-card:hover .advantages-v2-card-image {
  background-size: 110%;
  transition: background-size 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

/* --- Button Shine Effect --- */
.btn-v2 {
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}
.btn-v2::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(105deg, transparent 20%, rgba(255,255,255,0.2) 50%, transparent 80%);
  transition: none;
  pointer-events: none;
}
.btn-v2:hover::before {
  left: 120%;
  transition: left 0.6s ease;
}

/* Stagger */
.stagger-children > * {
  opacity: 0;
  transform: translateY(30px) translateZ(0);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
  will-change: opacity, transform;
}
.stagger-children.is-visible > * {
  opacity: 1;
  transform: translateY(0) translateZ(0);
}

/* Hero parallax overflow */
.hero-v2 { overflow: hidden; }
.hero-v2-bg img { will-change: transform; transition: none; }

/* =============================================
   NEWS DETAIL PAGE
   ============================================= */
.news-detail-container {
  max-width: 800px;
  margin: 0 auto;
  padding: calc(var(--header-height) + 48px) 24px 80px;
}

.news-detail-back {
  margin-bottom: 32px;
}
.news-detail-back a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: var(--gray-500);
  transition: color var(--transition);
}
.news-detail-back a:hover {
  color: var(--navy);
}
.news-detail-back .material-icons {
  font-size: 18px;
}

.news-detail-hero {
  margin-bottom: 32px;
  border-radius: 8px;
  overflow: hidden;
}
.news-detail-hero img {
  width: 100%;
  height: auto;
  display: block;
}

.news-detail-meta {
  margin-bottom: 12px;
}
.news-detail-date {
  font-size: 14px;
  color: var(--gray-500);
  letter-spacing: 0.04em;
}

.news-detail-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--navy);
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-200);
}

/* Rich HTML body from microCMS */
.news-detail-body {
  font-size: 15px;
  line-height: 2;
  color: var(--text);
}
.news-detail-body p {
  margin-bottom: 1.5em;
}
.news-detail-body h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin: 2em 0 0.8em;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--navy);
}
.news-detail-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin: 1.5em 0 0.6em;
}
.news-detail-body img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin: 1.5em 0;
}
.news-detail-body ul,
.news-detail-body ol {
  margin: 1em 0;
  padding-left: 1.5em;
}
.news-detail-body ul { list-style: disc; }
.news-detail-body ol { list-style: decimal; }
.news-detail-body li {
  margin-bottom: 0.5em;
}
.news-detail-body blockquote {
  border-left: 3px solid var(--navy);
  padding: 12px 20px;
  margin: 1.5em 0;
  background: var(--gray-50);
  border-radius: 0 6px 6px 0;
  color: var(--text-light);
}
.news-detail-body a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.news-detail-body a:hover {
  opacity: 0.7;
}
.news-detail-body iframe {
  max-width: 100%;
  margin: 1.5em 0;
}

.news-detail-error {
  text-align: center;
  padding: 80px 20px;
  font-size: 16px;
  color: var(--gray-500);
}

.news-v2-loading {
  text-align: center;
  padding: 60px 20px;
  font-size: 14px;
  color: var(--gray-500);
}

/* =============================================
   HERO OVERLAY
   ============================================= */
.hero-v2-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 40px 50px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.6) 100%);
  z-index: 2;
  text-align: center;
}
.hero-v2-catch {
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.05em;
  line-height: 1.6;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero-v2-sub {
  font-size: clamp(12px, 1.5vw, 16px);
  color: rgba(255,255,255,0.8);
  margin-top: 12px;
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* =============================================
   COMPARISON TABLE
   ============================================= */
.comparison-table-wrap {
  margin-top: 60px;
  background: var(--white);
  border-radius: 16px;
  padding: 40px 32px;
  box-shadow: 0 4px 40px rgba(26,39,68,0.06);
}
.comparison-table-heading {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  text-align: center;
  margin-bottom: 28px;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.comparison-table thead th {
  padding: 14px 16px;
  font-weight: 700;
  font-size: 13px;
  text-align: center;
  border-bottom: 2px solid var(--gray-200);
}
.comparison-table thead th:first-child {
  text-align: left;
  width: 140px;
}
.comparison-drone { color: var(--gray-500); }
.comparison-crane { color: var(--navy); background: rgba(26,39,68,0.03); }
.comparison-table tbody td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--gray-100);
  vertical-align: middle;
}
.comparison-item {
  font-weight: 600;
  color: var(--gray-700);
  font-size: 13px;
}
.comparison-drone-cell,
.comparison-crane-cell {
  text-align: center;
  vertical-align: middle;
  line-height: 1.5;
  font-size: 13px;
}
.comparison-crane-cell { color: var(--navy); font-weight: 600; background: rgba(26,39,68,0.02); }
.comparison-drone-cell { color: var(--gray-500); }
.comparison-o,
.comparison-x {
  display: block;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 4px;
}
.comparison-o { color: #0066cc; }
.comparison-x { color: var(--gray-300); }

/* =============================================
   USE CASES SECTION
   ============================================= */
.use-cases-v2 {
  padding: 100px 30px;
  background: var(--white);
}
.use-cases-v2-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.use-cases-v2-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.use-case-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(26,39,68,0.06);
  transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s ease;
  will-change: transform;
  transform: translateZ(0);
}
.use-case-card:hover {
  transform: translateY(-6px) translateZ(0);
  box-shadow: 0 16px 48px rgba(26,39,68,0.12);
}
.use-case-card-image {
  position: relative;
  height: 240px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.use-case-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(26,39,68,0.7) 100%);
}
.use-case-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  z-index: 1;
}
.use-case-card-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 3px 10px;
  border-radius: 2px;
  background: rgba(255,255,255,0.1);
}
/* プレースホルダー（画像なし時 — ロゴ表示） */
.use-case-card-image--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}
.use-case-placeholder-logo {
  width: auto;
  height: 36px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.25;
  z-index: 1;
  position: relative;
}
.use-case-card-body {
  padding: 24px 24px 28px;
}
.use-case-card-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.4;
}
.use-case-card-desc {
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-light);
}

/* =============================================
   TESTIMONIALS SECTION
   ============================================= */
.testimonials-v2 {
  padding: 100px 30px;
  background: var(--gray-50);
}
.testimonials-v2-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.testimonials-v2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 2px 20px rgba(26,39,68,0.06);
  transition: transform 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
}
.testimonial-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-avatar .material-icons {
  color: var(--white);
  font-size: 24px;
}
.testimonial-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-900);
}
.testimonial-role {
  font-size: 12px;
  color: var(--gray-500);
  margin-top: 2px;
}
.testimonial-text {
  font-size: 14px;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 16px;
}
.testimonial-stars {
  font-size: 16px;
  color: #f5a623;
  letter-spacing: 2px;
}

/* =============================================
   FAQ SECTION
   ============================================= */
.faq-v2 {
  padding: 100px 30px;
  background: var(--white);
}
.faq-v2-inner {
  max-width: 800px;
  margin: 0 auto;
}
.faq-v2-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-v2-item {
  background: var(--gray-50);
  border-radius: 12px;
  border: 1px solid var(--gray-100);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.faq-v2-item[open] {
  box-shadow: 0 4px 20px rgba(26,39,68,0.08);
}
.faq-v2-question {
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-900);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
}
.faq-v2-question::-webkit-details-marker { display: none; }
.faq-v2-question::after {
  content: '+';
  margin-left: auto;
  font-size: 24px;
  font-weight: 300;
  color: var(--gray-400);
  transition: transform 0.3s ease;
}
.faq-v2-item[open] .faq-v2-question::after {
  content: '−';
}
.faq-v2-q {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--navy);
  color: var(--white);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
}
.faq-v2-answer {
  padding: 0 24px 20px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.faq-v2-a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #f5a623;
  color: var(--white);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}
.faq-v2-answer p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-light);
}

/* =============================================
   SERVICE DETAILS SECTION
   ============================================= */
.service-details-v2 {
  padding: 80px 30px;
  background: var(--navy);
}
.service-details-v2-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.service-details-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-detail-card {
  text-align: center;
  padding: 32px 20px;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: background 0.3s ease;
}
.service-detail-card:hover {
  background: rgba(255,255,255,0.1);
}
.service-detail-icon {
  font-size: 36px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}
.service-detail-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.service-detail-desc {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
}

/* =============================================
   VIDEO SECTION
   ============================================= */
.video-section {
  padding: 100px 30px;
  background: var(--white);
}
.video-section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.video-item {
  background: var(--gray-50);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(26,39,68,0.06);
}
.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
  padding: 20px 24px 8px;
}
.video-desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-light);
  padding: 0 24px 24px;
}

/* Video inline (inside Cost section, after Case Study) */
.video-section-inline {
  margin-top: 80px;
}
.video-section-inline .section-heading-v2 {
  text-align: center;
}
.video-section-inline .section-heading-v2-en {
  color: var(--navy);
}
.video-section-inline .section-heading-v2-ja {
  color: var(--text-light);
}

/* =============================================
   CTA BANNER (Final CTA)
   ============================================= */
.cta-banner-v2 {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 100px 30px;
  text-align: center;
  color: var(--white);
}
.cta-banner-v2-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cta-banner-v2-heading {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  line-height: 1.4;
}
.cta-banner-v2-text {
  font-size: 15px;
  line-height: 1.8;
  opacity: 0.85;
  margin-bottom: 40px;
}
.cta-banner-v2-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-v2--white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-v2--white:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-v2--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-v2--outline-white:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-v2--outline-white .material-icons {
  font-size: 18px;
  margin-right: 6px;
}

/* =============================================
   FLOATING CTA
   ============================================= */
.floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  display: none;
  z-index: 999;
  background: var(--white);
  box-shadow: 0 -2px 12px rgba(0,0,0,0.12);
  padding: 8px 10px;
  gap: 6px;
}
.floating-cta-phone,
.floating-cta-contact {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 10px 8px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}
.floating-cta-phone {
  background: var(--white);
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.floating-cta-contact {
  background: var(--navy);
  color: var(--white);
}
.floating-cta-phone .material-icons,
.floating-cta-contact .material-icons {
  font-size: 18px;
}

/* =============================================
   RESPONSIVE
   ============================================= */

/* Tablet */
@media (max-width: 1024px) {
  .header-v2-nav { gap: 16px; }
  .header-v2-nav a { font-size: 12px; }
  .advantages-v2-cards { grid-template-columns: repeat(3, 1fr); }
  .advantages-v2-card-image { height: 320px; }
  .works-v2-showcase { grid-template-columns: 1fr 1fr; gap: 3px; }
  .works-v2-item--hero { min-height: 500px; }
  .works-v2-stats-inner { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .testimonials-v2-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .service-details-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-v2-timeline { gap: 0; }
  .steps-v2-item { padding: 0 8px; }
  .steps-v2-title { font-size: 13px; }
  .steps-v2-desc { font-size: 11px; }

  /* News Detail */
  .news-detail-title { font-size: 24px; }
}

/* Mobile */
@media (max-width: 768px) {
  :root { --header-height: 64px; }

  /* PC用改行をモバイルで非表示 → 自然改行に */
  .br-pc { display: none; }

  .header-v2-nav { display: none; }
  .header-v2-cta { display: none; }
  .mobile-menu-btn-v2 { display: flex; }

  .hero-v2 { min-height: 500px; }
  .hero-v2-title { font-size: 32px; }
  .hero-v2-logo-icon { width: 50px; height: 50px; }

  .intro-v2 { padding: 80px 20px 60px; }
  .intro-v2-heading { font-size: 26px; }
  .intro-v2-bg-number { font-size: 140px; }

  /* --- Mobile: 全見出しセンター寄せ --- */
  .section-heading-v2,
  .section-heading-v2--left { text-align: center; }
  .section-heading-v2-en { font-size: 32px; }
  .advantages-v2-heading { text-align: center; }
  .cost-v2-table-title { text-align: center; }
  .cost-v2-case-eyebrow,
  .cost-v2-case-title { text-align: center; }
  .cta-banner-v2-heading { text-align: center; }

  .news-v2 { padding: 60px 20px; }
  .news-v2-grid { grid-template-columns: 1fr; gap: 20px; }
  .news-v2-card { display: grid; grid-template-columns: 140px 1fr; }
  .news-v2-card-image img { aspect-ratio: 1/1; height: 100%; }
  .news-v2-card-image--noimage { aspect-ratio: 1/1; height: 100%; min-height: 0; }
  .news-v2-card-noimage-icon { font-size: 32px; }
  .news-v2-card-body { padding: 16px 20px; display: flex; flex-direction: column; justify-content: center; }

  .advantages-v2 { padding: 60px 20px; }
  .advantages-v2-heading { font-size: 32px; }
  .advantages-v2-cards { grid-template-columns: 1fr; gap: 16px; }
  .advantages-v2-card-image { height: 280px; }
  .advantages-v2-card-text { padding: 20px 16px 24px; }
  .advantages-v2-card-desc { font-size: 13px; }

  .works-v2-showcase {
    padding: 0 16px 40px;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .works-v2-featured { grid-row: auto; grid-column: auto; }
  .works-v2-grid {
    grid-row: auto; grid-column: auto;
    display: grid; grid-template-columns: 1fr; grid-template-rows: auto; gap: 10px;
  }
  .works-v2-grid .works-v2-item:last-child { grid-column: auto; }
  .works-v2-inner { padding: 0 20px; }
  .works-v2-item {
    min-height: 0; aspect-ratio: 16 / 10; border-radius: 12px;
    background-size: cover; background-position: center center;
  }
  .works-v2-item--hero { min-height: 0; aspect-ratio: 16 / 9; height: auto; }
  .works-v2-item::after { content: none !important; }
  .works-v2-item::before {
    background: linear-gradient(180deg, transparent 30%, rgba(26,39,68,0.8) 70%) !important;
  }
  .works-v2-item-content { padding: 16px 20px; }
  .works-v2-item--hero .works-v2-item-content { padding: 20px 24px; }
  .works-v2-item-title { font-size: 18px; }
  .works-v2-item--hero .works-v2-item-title { font-size: 22px; }
  .works-v2-item-sub { font-size: 13px; }
  .works-v2-stats { padding: 60px 20px 40px; }
  .works-v2-stats-inner { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  .use-cases-v2 { padding: 60px 20px; }
  .use-cases-v2-grid { grid-template-columns: 1fr; gap: 16px; }
  .use-case-card-image { height: 200px; }
  .use-case-card-body { padding: 20px 20px 24px; }
  .use-case-card-title { font-size: 16px; }
  .use-case-card-desc { font-size: 13px; }

  .testimonials-v2 { padding: 60px 20px; }
  .testimonials-v2-grid { grid-template-columns: 1fr; gap: 16px; }

  .comparison-table-wrap { padding: 24px 16px; }
  .comparison-table { font-size: 12px; }
  .comparison-table thead th { font-size: 11px; padding: 10px 8px; }
  .comparison-table tbody td { padding: 10px 8px; }
  .comparison-item { font-size: 12px; }
  .comparison-table thead th:first-child { width: 100px; }

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

  .service-details-v2 { padding: 60px 20px; }
  .service-details-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  .cta-banner-v2 { padding: 60px 20px; }
  .cta-banner-v2-heading { font-size: 24px; }
  .cta-banner-v2-buttons { flex-direction: column; align-items: center; }
  .cta-banner-v2-buttons .btn-v2 { width: 100%; max-width: 320px; justify-content: center; }

  .floating-cta { display: flex; }
  body { padding-bottom: 60px; }

  /* Curtain mobile */
  .page-curtain-text { font-size: 28px; letter-spacing: 0.2em; }
  .page-curtain-img { height: 56px; }
  .hero-scroll-indicator { display: none; }

  .hero-v2-overlay { padding: 40px 20px 36px; }
  .hero-v2-catch { font-size: 24px; }

  .video-section { padding: 60px 20px; }
  .video-grid { grid-template-columns: 1fr; gap: 24px; }
  .video-section-inline { margin-top: 48px; }

  .cost-v2 { padding: 60px 20px; }
  .cost-v2-pricing { flex-direction: column; }
  .cost-v2-base { padding: 36px 28px; }
  .cost-v2-plus { padding: 16px 0; }
  .cost-v2-plus .material-icons { transform: rotate(90deg); }
  .cost-v2-option { padding: 36px 28px; }
  .cost-v2-table-wrap { padding: 24px 16px; }
  .cost-v2-table-title { font-size: 17px; }
  .cost-v2-case-inner { grid-template-columns: 1fr; }
  .cost-v2-case-left { padding: 36px 28px 24px; }
  .cost-v2-case-right { padding: 24px 28px 36px; }
  .cost-v2-case-title { font-size: 22px; }
  .cost-v2-case-item-price { font-size: 26px; }

  .steps-v2 { padding: 60px 20px; }
  .steps-v2-timeline { flex-direction: column; align-items: center; gap: 0; }
  .steps-v2-item { padding: 20px 0; max-width: 320px; }
  .steps-v2-connector {
    width: 2px;
    height: 20px;
    top: auto;
    left: 50%;
    right: auto;
    bottom: -10px;
    transform: translateX(-50%);
  }
  .steps-v2-number { width: 40px; height: 40px; font-size: 18px; }
  .steps-v2-title { font-size: 14px; }
  .steps-v2-desc { font-size: 12px; }

  .company-v2 { padding: 60px 20px; }
  .company-v2-table th { width: 120px; font-size: 12px; padding: 14px 12px; }
  .company-v2-table td { font-size: 13px; padding: 14px 12px; }

  .footer-v2 { padding: 40px 20px 30px; }
  .footer-v2-top { flex-direction: column; gap: 24px; }
  .footer-v2-nav { gap: 12px 20px; }

  /* News Detail */
  .news-detail-container { padding: calc(var(--header-height) + 32px) 20px 60px; }
  .news-detail-title { font-size: 22px; margin-bottom: 28px; padding-bottom: 20px; }
  .news-detail-body h2 { font-size: 19px; }
  .news-detail-body h3 { font-size: 16px; }
}

/* Small Mobile (480px) */
@media (max-width: 480px) {
  .hero-v2-title { font-size: 26px; }
  .intro-v2-heading { font-size: 22px; }
  .section-heading-v2-en { font-size: 22px; }
  .section-heading-v2 { margin-bottom: 32px; }

  .news-v2-card { grid-template-columns: 100px 1fr; }
  .news-v2-card-image img { aspect-ratio: 1/1; height: 100%; }
  .news-v2-card-image--noimage { aspect-ratio: 1/1; height: 100%; min-height: 0; }
  .news-v2-card-noimage-icon { font-size: 28px; }
  .news-v2-card-title { font-size: 13px; }
  .news-v2-card-body { padding: 12px 14px; }
  .news-v2-card-date { font-size: 10px; margin-bottom: 4px; }

  .advantages-v2-heading { font-size: 22px; word-break: break-word; }

  .works-v2-showcase { padding: 0 12px 30px; }
  .works-v2-grid { grid-template-columns: 1fr; }
  .works-v2-grid .works-v2-item:last-child { grid-column: auto; }
  .works-v2-item { aspect-ratio: 16 / 10; }
  .works-v2-item--hero { aspect-ratio: 16 / 9; }
  .works-v2-stats-inner { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .works-v2-stat-number { font-size: 36px; }
  .works-v2-item-title { font-size: 14px; }
  .works-v2-item--hero .works-v2-item-title { font-size: 20px; }
  .works-v2-item-content { padding: 20px 16px; }
  .works-v2-item--hero .works-v2-item-content { padding: 28px 20px; }

  .service-details-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .service-detail-card { padding: 24px 16px; }
  .service-detail-title { font-size: 14px; }
  .service-detail-desc { font-size: 12px; }

  .cta-banner-v2 { padding: 48px 16px; }
  .cta-banner-v2-heading { font-size: 20px; }
  .cta-banner-v2-text { font-size: 13px; margin-bottom: 28px; }

  .cost-v2-base { padding: 28px 20px; }
  .cost-v2-option { padding: 28px 20px; }
  .cost-v2-base-title { font-size: 18px; }
  .cost-v2-option-title { font-size: 18px; }
  .cost-v2-table-wrap { padding: 20px 16px; overflow: visible; }
  .cost-v2-table-title { font-size: 15px; }

  /* カード型料金表（モバイル） */
  .cost-v2-table-scroll { overflow-x: visible; }
  .cost-v2-table { min-width: 0; }
  .cost-v2-table thead { display: none; }
  .cost-v2-table tbody { display: flex; flex-direction: column; gap: 12px; }
  .cost-v2-table tbody tr {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--gray-50);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
  }
  .cost-v2-table tbody td {
    padding: 10px 14px;
    border-bottom: none;
    white-space: normal;
    font-size: 13px;
    word-break: break-all;
    overflow-wrap: break-word;
  }
  /* 機種名（左上） */
  .cost-v2-table tbody td:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
    background: var(--navy);
    color: var(--white);
    padding: 12px 14px;
  }
  .cost-v2-table tbody td:nth-child(1) strong {
    color: var(--white);
    font-size: 15px;
  }
  /* 料金（右上） */
  .cost-v2-table tbody td:nth-child(4) {
    grid-column: 2;
    grid-row: 1;
    background: var(--navy);
    text-align: right !important;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .cost-v2-table-price { color: var(--white) !important; font-size: 14px !important; }
  .cost-v2-table-price span { color: rgba(255,255,255,0.6); }
  /* クレーン種別（左下） */
  .cost-v2-table tbody td:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
    color: var(--text-light);
    font-size: 12px;
  }
  /* 最大地上高（右下） */
  .cost-v2-table tbody td:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
    text-align: right;
    font-weight: 700;
    color: var(--navy);
  }
  /* ハイライト（POPULAR）カード */
  .cost-v2-table-highlight {
    border: 2px solid var(--navy) !important;
    position: relative;
    overflow: visible !important;
    margin-top: 8px;
  }
  .cost-v2-table-highlight td {
    border: none;
  }
  .cost-v2-table-highlight td:first-child::after {
    position: absolute;
    top: -11px;
    left: 12px;
    font-size: 9px;
    padding: 3px 12px;
    border-radius: 3px;
    margin-left: 0;
  }
  .cost-v2-case-left { padding: 28px 20px 20px; }
  .cost-v2-case-right { padding: 20px 20px 28px; gap: 20px; }
  .cost-v2-case-title { font-size: 20px; }
  .cost-v2-case-item-price { font-size: 24px; }

  .steps-v2-item { max-width: 280px; }
  .steps-v2-number { width: 36px; height: 36px; font-size: 16px; }

  .company-v2-table th,
  .company-v2-table td { display: block; width: 100%; padding: 12px 16px; }
  .company-v2-table th { border-radius: 4px 4px 0 0; width: 100%; }
  .company-v2-table td { font-size: 13px; }

  .footer-v2 { padding: 32px 16px 24px; }
  .footer-v2-nav a { font-size: 12px; }

  .btn-v2 { padding: 14px 28px; font-size: 13px; }
  .btn-v2-outline { padding: 10px 24px; font-size: 13px; }
}

/* iPhone SE / Very Small (375px and below) */
@media (max-width: 375px) {
  /* Global overflow prevention */
  html, body { overflow-x: hidden; }
  img, video, iframe, table { max-width: 100%; }
  p, h1, h2, h3, h4, li, td, th, a, span, div, section { overflow-wrap: break-word; word-wrap: break-word; }

  /* Hero */
  .hero-v2 { min-height: 440px; }
  .hero-v2-overlay { padding: 30px 10px 24px; }
  .hero-v2-catch { font-size: 17px; letter-spacing: 0; line-height: 1.5; }
  .hero-v2-sub { font-size: 10px; margin-top: 8px; letter-spacing: 0.03em; }

  /* Floating CTA - compact for SE */
  .floating-cta { padding: 6px 8px; gap: 5px; }
  .floating-cta-phone,
  .floating-cta-contact { padding: 9px 6px; font-size: 11px; border-radius: 6px; gap: 4px; }
  .floating-cta-phone .material-icons,
  .floating-cta-contact .material-icons { font-size: 16px; }
  body { padding-bottom: 52px; }

  /* Reduce all section padding */
  .intro-v2 { padding: 50px 16px; }
  .news-v2 { padding: 50px 16px 60px; }
  .advantages-v2 { padding: 50px 16px; }
  .cost-v2 { padding: 50px 16px; }
  .steps-v2 { padding: 50px 16px; }
  .company-v2 { padding: 50px 16px; }

  /* Header */
  .header-v2-inner { padding: 0 16px; }

  /* Section headings - prevent overflow */
  .section-heading-v2-en {
    font-size: 20px;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .section-heading-v2-ja { font-size: 14px; }
  .section-heading-v2 { margin-bottom: 28px; }

  /* Intro */
  .intro-v2-heading { font-size: 20px; }
  .intro-v2-text { font-size: 14px; }
  .intro-v2-bg-number { font-size: 100px; }

  /* Advantages */
  .advantages-v2-heading { font-size: 20px; margin-bottom: 30px; }
  .advantages-v2-card-image { height: 180px; }
  .advantages-v2-card-text { padding: 14px 12px 16px; }
  .advantages-v2-card-title-text { font-size: 13px; margin-bottom: 6px; }
  .advantages-v2-card-desc { font-size: 12px; line-height: 1.6; }

  /* Comparison Table */
  .comparison-table-wrap { padding: 16px 10px; }
  .comparison-table-heading { font-size: 15px; margin-bottom: 16px; }
  .comparison-table { font-size: 10px; }
  .comparison-table thead th { font-size: 9px; padding: 8px 5px; }
  .comparison-table tbody td { padding: 8px 5px; font-size: 10px; word-break: break-word; }
  .comparison-item { font-size: 10px; }
  .comparison-table thead th:first-child { width: 70px; }

  /* Use Cases */
  .use-cases-v2 { padding: 50px 12px; }
  .use-cases-v2-grid { gap: 12px; }
  .use-case-card-image { height: 160px; }
  .use-case-card-body { padding: 14px 14px 18px; }
  .use-case-card-title { font-size: 14px; margin-bottom: 8px; }
  .use-case-card-desc { font-size: 12px; line-height: 1.7; }

  /* Testimonials */
  .testimonials-v2 { padding: 50px 12px; }
  .testimonials-v2-grid { gap: 12px; }
  .testimonial-card { padding: 18px 14px; }
  .testimonial-name { font-size: 13px; }
  .testimonial-role { font-size: 11px; }
  .testimonial-text { font-size: 12px; line-height: 1.6; }

  /* Service Details */
  .service-details-v2 { padding: 50px 12px; }
  .service-details-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .service-detail-card { padding: 18px 12px; }
  .service-detail-icon { font-size: 28px; margin-bottom: 10px; }
  .service-detail-title { font-size: 13px; margin-bottom: 6px; }
  .service-detail-desc { font-size: 11px; }

  /* News */
  .news-v2-grid { gap: 14px; }
  .news-v2-card { grid-template-columns: 90px 1fr; }
  .news-v2-card-body { padding: 10px 12px; }
  .news-v2-card-title { font-size: 12px; }

  /* Works */
  .works-v2-stats { padding: 50px 16px 30px; }
  .works-v2-stats-inner { gap: 12px; }
  .works-v2-stat-number { font-size: 30px; }
  .works-v2-stat-label { font-size: 11px; }
  .works-v2-stat-detail { font-size: 10px; }
  .works-v2-inner { padding: 0 16px; }
  .works-v2-showcase { padding: 0 8px 24px; gap: 8px; }
  .works-v2-grid { grid-template-columns: 1fr; gap: 8px; }
  .works-v2-grid .works-v2-item:last-child { grid-column: auto; }
  .works-v2-item { aspect-ratio: 16 / 10; border-radius: 10px; }
  .works-v2-item--hero { aspect-ratio: 16 / 9; }
  .works-v2-item-cat { font-size: 9px; padding: 2px 8px; }
  .works-v2-item-title { font-size: 15px; }
  .works-v2-item--hero .works-v2-item-title { font-size: 20px; }
  .works-v2-item-sub { font-size: 11px; }
  .works-v2-item-content { padding: 14px 12px; }
  .works-v2-item--hero .works-v2-item-content { padding: 18px 14px; }
  .works-v2-more { margin-top: 30px; }

  /* Cost / Price */
  .cost-v2-base { padding: 20px 14px; }
  .cost-v2-option { padding: 20px 14px; }
  .cost-v2-base-title { font-size: 16px; }
  .cost-v2-base-desc { font-size: 12px; }
  .cost-v2-includes li { font-size: 12px; gap: 6px; }
  .cost-v2-includes .material-icons { font-size: 15px; }
  .cost-v2-option-title { font-size: 16px; }
  .cost-v2-option-list li { font-size: 12px; }
  .cost-v2-table-wrap { padding: 12px 6px; overflow: visible; }
  .cost-v2-table-title { font-size: 14px; }
  .cost-v2-table tbody { gap: 10px; }
  .cost-v2-table tbody td { padding: 8px 10px; font-size: 11px; }
  .cost-v2-table tbody td:nth-child(1) { padding: 10px; }
  .cost-v2-table tbody td:nth-child(1) strong { font-size: 13px; }
  .cost-v2-table tbody td:nth-child(4) { padding: 10px; }
  .cost-v2-table-price { font-size: 12px !important; }
  .cost-v2-table-highlight { margin-top: 6px; }
  .cost-v2-case-left { padding: 18px 12px 12px; }
  .cost-v2-case-right { padding: 12px 12px 18px; gap: 12px; }
  .cost-v2-case-eyebrow { font-size: 10px; }
  .cost-v2-case-title { font-size: 16px; }
  .cost-v2-case-desc { font-size: 11px; overflow-wrap: break-word; }
  .cost-v2-case-item-label { font-size: 10px; }
  .cost-v2-case-item-value { font-size: 15px; }
  .cost-v2-case-item-meta { font-size: 11px; }
  .cost-v2-case-item-price { font-size: 18px; }
  .cost-v2-cta-text { font-size: 11px; }

  /* Video */
  .video-section { padding: 50px 12px; }
  .video-grid { grid-template-columns: 1fr; gap: 16px; }

  /* FAQ */
  .faq-v2 { padding: 50px 12px; }
  .faq-v2-question { padding: 14px 16px; font-size: 13px; }
  .faq-v2-answer { padding: 0 16px 14px; }
  .faq-v2-answer p { font-size: 12px; line-height: 1.7; }
  .faq-v2-q, .faq-v2-a { width: 24px; height: 24px; font-size: 11px; flex-shrink: 0; }

  /* CTA Banner */
  .cta-banner-v2 { padding: 40px 14px; }
  .cta-banner-v2-heading { font-size: 18px; line-height: 1.4; }
  .cta-banner-v2-text { font-size: 12px; }
  .cta-banner-v2-buttons { gap: 8px; }
  .cta-banner-v2-buttons .btn-v2 { max-width: 280px; }

  /* Steps */
  .steps-v2-item { max-width: 100%; padding: 14px 0; }
  .steps-v2-number { width: 34px; height: 34px; font-size: 16px; }
  .steps-v2-tag { font-size: 10px; padding: 3px 10px; }
  .steps-v2-title { font-size: 12px; word-break: break-word; }
  .steps-v2-desc { font-size: 11px; }

  /* Company */
  .company-v2 { padding: 50px 12px; }
  .company-v2-table th { width: 90px; font-size: 11px; padding: 10px 10px; }
  .company-v2-table td { padding: 10px 10px; font-size: 11px; word-break: break-word; overflow-wrap: break-word; }

  /* Footer */
  .footer-v2 { padding: 24px 12px 16px; }
  .footer-v2-nav { gap: 8px 14px; }
  .footer-v2-nav a { font-size: 11px; }
  .footer-v2-brand { font-size: 15px; }

  /* Buttons */
  .btn-v2 {
    padding: 10px 16px;
    font-size: 11px;
    max-width: 100%;
    white-space: normal;
    line-height: 1.4;
    word-break: break-word;
  }
  .btn-v2-outline { padding: 9px 14px; font-size: 11px; }
  .btn-v2 .material-icons,
  .btn-v2-outline .material-icons { font-size: 15px; }

  /* News Detail */
  .news-detail-container { padding: calc(var(--header-height) + 24px) 16px 48px; }
  .news-detail-back { margin-bottom: 20px; }
  .news-detail-title { font-size: 20px; margin-bottom: 24px; padding-bottom: 16px; }
  .news-detail-body { font-size: 14px; }
  .news-detail-body h2 { font-size: 17px; }
  .news-detail-body h3 { font-size: 15px; }
}

/* =============================================
   ACCESSIBILITY: Reduced Motion
   ============================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-split-text] .char {
    opacity: 1;
    transform: none;
  }
  [data-fade-up] {
    opacity: 1;
    transform: none;
  }
  .page-curtain { display: none !important; }
  .particle-canvas { display: none !important; }
  [data-reveal] { clip-path: none !important; opacity: 1 !important; transform: none !important; }
  [data-reveal]::before { display: none !important; }
  .cinematic-reveal { opacity: 1 !important; transform: none !important; }
  .steps-v2-item { opacity: 1 !important; transform: none !important; }
  .hero-scroll-indicator { display: none !important; }
}
