/* =============================================
   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);
}

/* 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;
  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);
}
.hero-v2-bg {
  width: 100%;
}
.hero-v2-bg img {
  width: 100%;
  height: auto;
  display: block;
}

/* =============================================
   INTRO
   ============================================= */
.intro-v2 {
  padding: 100px 30px 80px;
}
.intro-v2-inner {
  max-width: 800px;
  margin: 0 auto;
}
.intro-v2-heading {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 30px;
  color: var(--gray-900);
}
.intro-v2-text {
  font-size: 15px;
  line-height: 2;
  color: var(--text-light);
  margin-bottom: 40px;
}

/* 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 cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s ease;
}
.news-v2-card:hover {
  transform: translateY(-6px);
  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);
}
.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;
}
.advantages-v2-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}
.advantages-v2-card {
  text-align: center;
}
.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;
}
.advantages-v2-card .btn-v2-outline {
  margin-top: 16px;
}
.advantages-v2-body {
  max-width: 700px;
}
.advantages-v2-body p {
  font-size: 15px;
  line-height: 2;
  color: var(--text);
}

/* =============================================
   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;
}

/* --- 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%);
}

/* Parallax zoom on hover */
.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);
}

/* Light sweep effect */
.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;
}

/* Content overlay */
.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::before {
  content: 'POPULAR';
  position: absolute;
  left: -1px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.15em;
  color: var(--white);
  background: var(--navy);
  padding: 2px 6px;
  border-radius: 2px;
}
.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;
}
.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
   ============================================= */
@media (pointer: fine) {
  * { cursor: none !important; }
  .custom-cursor {
    position: fixed;
    top: 0; left: 0;
    width: 40px; height: 40px;
    border: 1.5px solid var(--navy);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transition: width 0.3s, height 0.3s, border-color 0.3s, background 0.3s;
    mix-blend-mode: difference;
  }
  .custom-cursor.cursor-hover {
    width: 60px; height: 60px;
    border-color: var(--white);
    background: rgba(255,255,255,0.1);
    transform-origin: center center;
  }
  .custom-cursor-dot {
    position: fixed;
    top: 0; left: 0;
    width: 8px; height: 8px;
    background: var(--navy);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10001;
    transition: background 0.3s;
    mix-blend-mode: difference;
  }
  .custom-cursor-dot.cursor-hover { background: var(--white); }
}
@media (pointer: coarse) {
  .custom-cursor, .custom-cursor-dot { display: none; }
}

/* =============================================
   SCROLL PROGRESS
   ============================================= */
.scroll-progress-v2 {
  position: fixed;
  top: 0; left: 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.02); }
body.is-loaded .hero-v2 { opacity: 1; transform: scale(1); transition: opacity 1s ease, transform 1.2s cubic-bezier(0.23, 1, 0.32, 1); }
body:not(.is-loaded) .header-v2 { opacity: 0; transform: translateY(-20px); }
body.is-loaded .header-v2 { opacity: 1; transform: translateY(0); transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s; }

/* =============================================
   ANIMATIONS
   ============================================= */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.23, 1, 0.32, 1), transform 0.9s cubic-bezier(0.23, 1, 0.32, 1);
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.slide-up {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.slide-up.is-visible { opacity: 1; transform: translateY(0); }
.slide-left {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.slide-left.is-visible { opacity: 1; transform: translateX(0); }
.slide-right {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.slide-right.is-visible { opacity: 1; transform: translateX(0); }
.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.scale-in.is-visible { opacity: 1; transform: scale(1); }

/* 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); }

/* Stagger */
.stagger-children > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.23, 1, 0.32, 1), transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}
.stagger-children.is-visible > * {
  opacity: 1;
  transform: translateY(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);
}

/* =============================================
   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; }
  .works-v2-featured { grid-row: auto; grid-column: auto; }
  .works-v2-grid { grid-row: auto; grid-column: auto; }
  .works-v2-item--hero { min-height: 400px; height: auto; }
  .works-v2-stats-inner { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .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: 60px 20px; }
  .intro-v2-heading { font-size: 26px; }

  .section-heading-v2-en { font-size: 32px; }

  .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-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-body p { font-size: 14px; }

  .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;
  }
  /* ::afterパララックスを無効化 → 直接backgroundを表示 */
  .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; }

  .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-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-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; }
  .works-v2-showcase { padding: 0 12px 30px; }

  .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::before {
    transform: none;
    position: absolute;
    top: -11px;
    left: 12px;
    font-size: 9px;
    padding: 3px 12px;
    border-radius: 3px;
  }
  .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; }

  /* 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; }

  /* Advantages */
  .advantages-v2-heading { font-size: 20px; margin-bottom: 30px; }
  .advantages-v2-card-image { height: 220px; }

  /* 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-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: 24px 16px; }
  .cost-v2-option { padding: 24px 16px; }
  .cost-v2-base-title { font-size: 17px; }
  .cost-v2-base-desc { font-size: 13px; }
  .cost-v2-includes li { font-size: 13px; gap: 8px; }
  .cost-v2-includes .material-icons { font-size: 16px; }
  .cost-v2-option-title { font-size: 17px; }
  .cost-v2-option-list li { font-size: 13px; }
  .cost-v2-table-wrap { padding: 14px 8px; overflow: visible; }
  .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: 20px 14px 14px; }
  .cost-v2-case-right { padding: 14px 14px 20px; gap: 14px; }
  .cost-v2-case-eyebrow { font-size: 10px; }
  .cost-v2-case-title { font-size: 17px; }
  .cost-v2-case-desc { font-size: 12px; overflow-wrap: break-word; }
  .cost-v2-case-item-label { font-size: 10px; }
  .cost-v2-case-item-value { font-size: 16px; }
  .cost-v2-case-item-meta { font-size: 11px; }
  .cost-v2-case-item-price { font-size: 20px; }
  .cost-v2-cta-text { font-size: 12px; }

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

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

  /* Footer */
  .footer-v2 { padding: 28px 16px 20px; }
  .footer-v2-nav { gap: 10px 16px; }
  .footer-v2-nav a { font-size: 11px; }
  .footer-v2-brand { font-size: 16px; }

  /* Buttons */
  .btn-v2 { padding: 12px 24px; font-size: 12px; }
  .btn-v2-outline { padding: 10px 20px; font-size: 12px; }
  .btn-v2 .material-icons,
  .btn-v2-outline .material-icons { font-size: 16px; }

  /* Buttons */
  .btn-v2 {
    padding: 12px 20px;
    font-size: 12px;
    max-width: 100%;
    word-break: break-word;
  }
  .btn-v2-outline { padding: 10px 16px; font-size: 11px; }

  /* 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; }
}
