@charset "UTF-8";

/* ==========================================================================
   KYODO - Monochrome Motion Design System
   ========================================================================== */

/* ===== CSS Variables ===== */
:root {
  --c-bg: #000000;
  --c-bg-alt: #0a0a0a;
  --c-surface: #111111;
  --c-text: #ffffff;
  --c-text-muted: #666666;
  --c-border: rgba(255, 255, 255, 0.1);
  --c-accent: #ffffff;

  --font-en: 'Inter', 'Noto Sans JP', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-ja: 'Inter', 'Noto Sans JP', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-serif: 'Inter', 'Noto Sans JP', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 8rem;
  --space-2xl: 12rem;

  --container-width: 1200px;
  --header-height: 72px;

  --ease: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);
}

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

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

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-ja);
  color: var(--c-text);
  background-color: var(--c-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  word-break: auto-phrase;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

p, li, dd {
  text-wrap: pretty;
  overflow-wrap: anywhere;
}

body.no-scroll { overflow: hidden; }

h1, h2, h3, h4, h5, h6, p, ul, ol, dl, dt, dd, figure {
  margin: 0;
  padding: 0;
}

ul, ol { list-style: none; }

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

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

.en { font-family: var(--font-en); }
.serif {
  font-family: var(--font-en);
  font-weight: 700;
  font-style: normal !important;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.typo-light {
  font-family: var(--font-en);
  font-weight: 200;
  font-style: normal !important;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.55);
}

/* ===== Noise Overlay ===== */
.noise {
  position: fixed;
  inset: 0;
  z-index: 9990;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ===== Scroll Progress ===== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: #fff;
  z-index: 10001;
  transition: width 0.1s linear;
}

/* ===== Page Hero ===== */
.page-hero {
  position: relative;
  padding: calc(var(--header-height) + 5rem) 5% 5rem;
  border-bottom: 1px solid var(--c-border);
  background: var(--c-bg);
  overflow: hidden;
}

.page-hero-title {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin: 1.5rem 0 0;
}

/* ===== Utility ===== */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 5%;
}

.section {
  padding: var(--space-xl) 0;
  position: relative;
}

.section-alt {
  background-color: var(--c-bg-alt);
}

/* ===== Animations ===== */
.reveal-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1.2s var(--ease-out), transform 1.2s var(--ease-out);
}

.reveal-up.is-inview {
  opacity: 1;
  transform: translateY(0);
}

/* Character animation */
.js-split-char {
  overflow: hidden;
}

.js-split-char .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%) rotateX(-80deg);
  transition: opacity 0.6s var(--ease-out), transform 0.8s var(--ease-out);
  transform-origin: bottom center;
}

.js-split-char .char.is-inview {
  opacity: 1;
  transform: translateY(0) rotateX(0);
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  z-index: 1000;
  background: transparent;
  transition: background 0.5s var(--ease), transform 0.5s var(--ease), border-color 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}

.header.is-scrolled {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--c-border);
}

.header.is-hidden {
  transform: translateY(-100%);
}

.logo {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  line-height: var(--header-height);
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav {
  display: flex;
  gap: 2.5rem;
}

.nav a {
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  position: relative;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s var(--ease);
}

.nav a:hover {
  color: #fff;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}

.nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  font-family: var(--font-en);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.5rem 1.8rem;
  border-radius: 100px;
  transition: all 0.4s var(--ease);
  color: rgba(255, 255, 255, 0.8);
}

.header-cta:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 20px;
  position: relative;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
  position: absolute;
  left: 0;
  transition: all 0.4s var(--ease);
}

.hamburger span:first-child { top: 0; }
.hamburger span:last-child { bottom: 0; }

.hamburger.is-open span:first-child {
  top: 50%;
  transform: rotate(45deg);
}

.hamburger.is-open span:last-child {
  bottom: 50%;
  transform: rotate(-45deg);
}

@media (max-width: 768px) {
  .nav { display: none; }
  .hamburger { display: block; }
}

/* Mobile Nav Overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--ease), visibility 0.5s var(--ease);
}

.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.nav-mobile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.nav-mobile-link {
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 200;
  letter-spacing: 0.1em;
  padding: 1rem 0;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s var(--ease);
  opacity: 0;
  transform: translateY(20px);
}

.nav-overlay.is-open .nav-mobile-link {
  opacity: 1;
  transform: translateY(0);
  transition: color 0.3s var(--ease), opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.nav-overlay.is-open .nav-mobile-link:nth-child(1) { transition-delay: 0.05s; }
.nav-overlay.is-open .nav-mobile-link:nth-child(2) { transition-delay: 0.1s; }
.nav-overlay.is-open .nav-mobile-link:nth-child(3) { transition-delay: 0.15s; }
.nav-overlay.is-open .nav-mobile-link:nth-child(4) { transition-delay: 0.2s; }
.nav-overlay.is-open .nav-mobile-link:nth-child(5) { transition-delay: 0.25s; }
.nav-overlay.is-open .nav-mobile-link:nth-child(6) { transition-delay: 0.3s; }
.nav-overlay.is-open .nav-mobile-link:nth-child(7) { transition-delay: 0.35s; }

.nav-mobile-link:hover { color: #fff; }

.nav-mobile-cta {
  font-family: var(--font-en);
  font-size: 1rem;
  letter-spacing: 0.15em;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 1rem 3rem;
  border-radius: 100px;
  margin-top: 2rem;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.4s var(--ease);
  opacity: 0;
  transform: translateY(20px);
}

.nav-overlay.is-open .nav-mobile-cta {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.4s var(--ease), opacity 0.6s var(--ease-out) 0.4s, transform 0.6s var(--ease-out) 0.4s;
}

.nav-mobile-cta:hover {
  background: #fff;
  color: #000;
}

/* ===== Hero Section ===== */
.hero {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: #000;
}

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

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 1;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: opacity 1.2s ease;
}

.hero-bg-video.is-hidden {
  opacity: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-label {
  font-family: var(--font-en);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  margin-bottom: 2.5rem;
  display: block;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(2.8rem, 7vw, 6.5rem);
  font-weight: 200;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 2.5rem;
  color: #fff;
  font-family: var(--font-serif);
  perspective: 400px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-desc {
  font-size: clamp(0.9rem, 1.4vw, 1.1rem);
  color: rgba(255, 255, 255, 0.8);
  max-width: 500px;
  margin: 0 auto;
  line-height: 2;
  font-weight: 300;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-en);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.3);
  z-index: 2;
}

.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.12);
  position: relative;
  overflow: hidden;
}

.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  transform: translateY(-100%);
  animation: scrollLine 2.5s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: translateY(-100%); }
  50% { transform: translateY(0); }
  100% { transform: translateY(100%); }
}

/* ===== Marquee ===== */
.marquee {
  overflow: hidden;
  white-space: nowrap;
  padding: 2rem 0;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  animation: marqueeScroll 25s linear infinite;
}

.marquee-track span {
  font-family: var(--font-en);
  font-size: 1rem;
  font-weight: 200;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
  padding: 0 1.5rem;
}

.marquee-dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  flex-shrink: 0;
}

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

/* ===== Section Headings ===== */
.sec-head {
  margin-bottom: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sec-head.text-center {
  align-items: center;
  text-align: center;
}

.sec-num {
  font-family: var(--font-en);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.25);
}

.sec-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: -0.02em;
}

.sec-title .en {
  font-size: 1.1em;
  font-weight: 200;
  display: block;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

/* ===== Philosophy ===== */
.philosophy {
  text-align: center;
  padding: var(--space-2xl) 0;
}

.phil-text {
  font-size: clamp(1.5rem, 3vw, 2.8rem);
  line-height: 1.8;
  font-family: var(--font-serif);
  font-weight: 300;
  max-width: 900px;
  margin: 0 auto;
  transition: transform 0.1s linear;
}

/* ===== Pricing ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: var(--space-lg);
}

.price-card {
  border: 1px solid var(--c-border);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.price-card:hover {
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.price-card.featured {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
  transform: scale(1.02);
  box-shadow: 0 10px 50px rgba(255, 255, 255, 0.08);
}

.price-card.featured:hover {
  transform: scale(1.02) translateY(-4px);
  box-shadow: 0 25px 70px rgba(255, 255, 255, 0.12);
}

.price-head {
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--c-border);
  padding-bottom: 2rem;
}

.price-card.featured .price-head {
  border-color: rgba(0, 0, 0, 0.1);
}

.plan-target {
  font-size: 0.75rem;
  color: var(--c-text-muted);
  display: block;
  margin-bottom: 0.5rem;
  letter-spacing: 0.03em;
}

.price-card.featured .plan-target {
  color: rgba(0, 0, 0, 0.5);
}

.plan-name {
  font-family: var(--font-en);
  font-size: 1.8rem;
  font-weight: 200;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.plan-price {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: var(--font-en);
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
}

.plan-price span {
  font-size: 1rem;
  font-weight: 300;
  font-family: var(--font-ja);
}

.plan-price small {
  font-size: 0.8rem;
  font-weight: 400;
  margin-left: 0.5rem;
  color: var(--c-text-muted);
}

.price-card.featured .plan-price small {
  color: rgba(0, 0, 0, 0.5);
}

.plan-features { flex-grow: 1; }

.plan-features li {
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.price-card.featured .plan-features li {
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

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

.feat-label {
  font-size: 0.7rem;
  color: var(--c-text-muted);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.price-card.featured .feat-label {
  color: rgba(0, 0, 0, 0.5);
}

/* Pricing Accordion */
.plan-detail-btn {
  background: none;
  border: 1px solid var(--c-border);
  color: var(--c-text);
  padding: 0.8rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.8rem;
  font-family: var(--font-ja);
  width: 100%;
  margin-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s var(--ease);
}

.price-card.featured .plan-detail-btn {
  border-color: rgba(0, 0, 0, 0.15);
  color: #000;
}

.plan-detail-btn:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.03);
}

.price-card.featured .plan-detail-btn:hover {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.3);
}

.plan-detail-btn::after {
  content: '+';
  font-size: 1.2rem;
  line-height: 1;
  transition: transform 0.3s var(--ease);
}

.plan-detail-btn.is-open::after {
  transform: rotate(45deg);
}

.plan-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease), opacity 0.5s var(--ease), margin-top 0.5s var(--ease);
  opacity: 0;
  margin-top: 0;
}

.plan-details.is-open {
  max-height: 500px;
  opacity: 1;
  margin-top: 1.5rem;
}

.plan-details-inner {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  font-size: 0.85rem;
  line-height: 1.6;
}

.price-card.featured .plan-details-inner {
  background: rgba(0, 0, 0, 0.05);
}

.plan-details-row { margin-bottom: 1rem; }
.plan-details-row:last-child { margin-bottom: 0; }

.plan-details-label {
  display: block;
  font-size: 0.7rem;
  color: var(--c-text-muted);
  font-weight: 700;
  margin-bottom: 0.2rem;
  letter-spacing: 0.03em;
}

.price-card.featured .plan-details-label {
  color: rgba(0, 0, 0, 0.45);
}

/* Options */
.options-wrap {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--c-border);
  padding: 3rem;
  border-radius: 16px;
  max-width: 960px;
  margin: 0 auto;
}

.options-title {
  font-size: 1.3rem;
  font-weight: 300;
  margin-bottom: 2rem;
  text-align: center;
  letter-spacing: 0.03em;
}

.options-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.opt-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--c-border);
  padding: 1.5rem;
  border-radius: 12px;
  transition: border-color 0.3s var(--ease);
}

.opt-item:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.opt-name {
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.opt-price {
  font-family: var(--font-en);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--c-accent);
  margin-bottom: 0.5rem;
}

.opt-desc {
  font-size: 0.8rem;
  color: var(--c-text-muted);
  line-height: 1.6;
}

/* ===== Pricing Tabs ===== */
.pricing-tabs {
  display: flex;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--c-border);
  padding: 6px;
  border-radius: 50px;
  max-width: fit-content;
  margin: 0 auto 4rem;
}

.pricing-tab-btn {
  background: none;
  border: none;
  padding: 10px 28px;
  border-radius: 40px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  transition: all 0.4s var(--ease);
  color: var(--c-text-muted);
  user-select: none;
}

.pricing-tab-btn .tab-en {
  font-family: var(--font-en);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  opacity: 0.5;
  transition: opacity 0.3s var(--ease);
}

.pricing-tab-btn .tab-ja {
  font-family: var(--font-ja);
  font-size: 0.9rem;
  font-weight: 400;
}

.pricing-tab-btn:hover {
  color: var(--c-text);
}

.pricing-tab-btn:hover .tab-en { opacity: 1; }

.pricing-tab-btn.active {
  background: #fff;
  color: #000;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

.pricing-tab-btn.active .tab-en {
  color: inherit;
  opacity: 0.7;
}

.pricing-tab-contents {
  max-width: 1080px;
  margin: 0 auto;
}

.pricing-tab-content {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  will-change: transform, opacity;
}

.pricing-tab-content.active {
  display: block;
  animation: tabFadeIn 0.7s var(--ease-out) forwards;
}

@keyframes tabFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 992px) {
  .pricing-tabs {
    flex-wrap: wrap;
    border-radius: 16px;
    padding: 10px;
    gap: 6px;
    max-width: 100%;
  }
  .pricing-tab-btn {
    width: calc(50% - 3px);
    padding: 10px 12px;
    border-radius: 12px;
  }
}

@media (max-width: 576px) {
  .pricing-tabs {
    flex-direction: column;
    width: 100%;
  }
  .pricing-tab-btn { width: 100%; padding: 12px; }
}

/* Pricing CTA */
.pricing-cta {
  margin-top: 5rem;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-cta-card {
  background: #fff;
  color: #000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4rem;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 60px rgba(255, 255, 255, 0.06);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.pricing-cta-card::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -30%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.pricing-cta-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.pricing-cta-text {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.pricing-cta-text h3 {
  font-family: var(--font-ja);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.pricing-cta-text p {
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.95rem;
  line-height: 1.8;
}

.btn-cta-simulator {
  position: relative;
  z-index: 1;
  background: #000;
  color: #fff;
  border: 1px solid #000;
  font-family: var(--font-ja);
  font-weight: 500;
  border-radius: 100px;
  padding: 1.2rem 2.5rem;
  font-size: 0.95rem;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.4s var(--ease);
}

.btn-cta-simulator svg {
  width: 18px;
  height: 18px;
  transition: transform 0.4s var(--ease);
}

.btn-cta-simulator:hover {
  background: transparent;
  color: #000;
  border-color: #000;
}

.btn-cta-simulator:hover svg {
  transform: translateX(6px);
}

@media (max-width: 992px) {
  .pricing-cta-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 3rem 2.5rem;
    gap: 2rem;
  }
  .pricing-cta-text h3 { font-size: 1.5rem; }
  .btn-cta-simulator { width: 100%; justify-content: center; }
}

/* ===== Strengths ===== */
.strength-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: var(--space-lg);
}

.strength-card {
  background: rgba(255, 255, 255, 0.02);
  padding: 3rem 2rem;
  border: 1px solid var(--c-border);
  border-radius: 16px;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
  position: relative;
  overflow: hidden;
  will-change: transform;
}

.strength-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.strength-num {
  font-family: var(--font-en);
  font-size: 5rem;
  font-weight: 100;
  color: rgba(255, 255, 255, 0.03);
  position: absolute;
  top: 0.5rem;
  right: 1.5rem;
  line-height: 1;
  z-index: 0;
  transition: color 0.5s var(--ease);
}

.strength-card:hover .strength-num {
  color: rgba(255, 255, 255, 0.08);
}

.strength-card h3 {
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  line-height: 1.5;
}

.strength-card p {
  color: var(--c-text-muted);
  font-size: 0.9rem;
  line-height: 1.9;
  position: relative;
  z-index: 1;
}

/* ===== Process ===== */
.process-lead-section {
  padding-bottom: var(--space-xl);
}

.process-lead {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 300;
  color: var(--c-text-muted);
  line-height: 2;
  max-width: 700px;
}

.process-lead strong {
  color: #fff;
  font-weight: 400;
}

.process-total-flow {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2.5rem;
  padding: 1.5rem 2rem;
  border: 1px solid var(--c-border);
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
}

.ptf-step {
  font-family: var(--font-en);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.55);
  padding: 0.3rem 0.8rem;
  border: 1px solid var(--c-border);
  border-radius: 100px;
}

.ptf-step--last {
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}

.ptf-arrow {
  color: rgba(255,255,255,0.2);
  font-size: 0.8rem;
}

.process-list {
  counter-reset: process-counter;
}

.process-item {
  position: relative;
  padding: 2.5rem 0;
  border-top: 1px solid var(--c-border);
  display: grid;
  grid-template-columns: 80px 180px 1fr;
  gap: 2.5rem;
  align-items: start;
  transition: border-color 0.3s var(--ease);
}

.process-item:hover {
  border-top-color: rgba(255, 255, 255, 0.25);
}

.process-item:last-child {
  border-bottom: 1px solid var(--c-border);
}

.process-num {
  font-family: var(--font-en);
  font-size: 1.2rem;
  font-weight: 200;
  color: rgba(255, 255, 255, 0.25);
  padding-top: 0.15rem;
}

.process-num::before {
  counter-increment: process-counter;
  content: "0" counter(process-counter);
}

.process-title-area {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-top: 0.1rem;
}

.process-name {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.3;
}

.process-duration {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.4);
  border: 1px solid var(--c-border);
  border-radius: 100px;
  padding: 0.2rem 0.75rem;
  width: fit-content;
}

.process-body {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.process-desc {
  color: var(--c-text-muted);
  line-height: 1.9;
  font-size: 0.9rem;
}

.process-points {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 0;
  margin: 0;
}

.process-points li {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.6;
}

.process-points li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: rgba(255,255,255,0.2);
  font-size: 0.75rem;
}

.process-output {
  display: flex;
  gap: 0.75rem;
  align-items: baseline;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap;
}

.process-output-label {
  font-family: var(--font-en);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  white-space: nowrap;
}

.process-output-value {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
}

/* Guarantee */
.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: var(--space-lg);
}

.guarantee-card {
  border: 1px solid var(--c-border);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  background: rgba(255,255,255,0.02);
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease);
}

.guarantee-card:hover {
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.04);
}

.guarantee-icon {
  display: block;
  font-family: var(--font-en);
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.guarantee-title {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  color: #fff;
}

.guarantee-desc {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  line-height: 1.85;
}

/* FAQ */
.faq-list {
  margin-top: var(--space-lg);
  border-top: 1px solid var(--c-border);
}

.faq-item {
  border-bottom: 1px solid var(--c-border);
}

.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.6rem 0;
  font-size: 0.98rem;
  font-weight: 300;
  color: #fff;
  cursor: pointer;
  list-style: none;
  gap: 1rem;
  transition: color 0.3s var(--ease);
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question::after {
  content: '+';
  font-family: var(--font-en);
  font-size: 1.4rem;
  font-weight: 200;
  color: rgba(255,255,255,0.3);
  flex-shrink: 0;
  transition: transform 0.35s var(--ease), color 0.3s var(--ease);
  display: inline-block;
}

.faq-item[open] .faq-question {
  color: #fff;
}

.faq-item[open] .faq-question::after {
  color: rgba(255,255,255,0.6);
}

.faq-answer {
  padding: 0 0 1.75rem;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  line-height: 1.9;
  max-width: 700px;
}

.faq-answer strong {
  color: rgba(255,255,255,0.75);
  font-weight: 400;
}

/* Responsive */
@media (max-width: 900px) {
  .guarantee-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .process-item {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 2rem 0;
  }

  .process-title-area {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }

  .process-total-flow {
    gap: 0.4rem;
    padding: 1.25rem;
  }
}

/* ===== Contact ===== */
.contact-section {
  text-align: center;
  padding: var(--space-2xl) 0;
  background: var(--c-bg);
}

.contact-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 200;
  font-family: var(--font-serif);
  margin-bottom: 3rem;
  perspective: 400px;
  transition: transform 0.1s linear;
}

.btn-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: var(--c-text);
  border-radius: 50%;
  font-family: var(--font-en);
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  transition: all 0.6s var(--ease);
  position: relative;
}

.btn-large::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #fff;
  transform: scale(0);
  transition: transform 0.6s var(--ease);
}

.btn-large span {
  position: relative;
  z-index: 1;
  transition: color 0.4s var(--ease);
}

.btn-large:hover {
  border-color: #fff;
}

.btn-large:hover::before {
  transform: scale(1);
}

.btn-large:hover span {
  color: #000;
}

/* ===== Footer ===== */
.footer {
  border-top: 1px solid var(--c-border);
  padding: 0;
}

.footer-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 4rem 5%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  font-family: var(--font-en);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-logo {
  font-size: 1.2rem;
  font-weight: 200;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.3em;
  margin-bottom: 1rem;
}

.footer-nav {
  display: flex;
  gap: 2rem;
}

.footer-nav a {
  transition: color 0.3s var(--ease);
}

.footer-nav a:hover {
  color: #fff;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  transition: color 0.3s var(--ease);
}

.footer-legal a:hover {
  color: #fff;
}

.footer-copy {
  width: 100%;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--c-border);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
  .footer-nav {
    flex-direction: column;
    gap: 1rem;
  }
  .footer-legal {
    flex-direction: column;
    gap: 0.75rem;
  }
}

/* ==========================================================================
   Simulator Page Styles (shared with estimate.html)
   ========================================================================== */

.simulator-section {
  background-color: var(--c-bg-alt);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

.simulator-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: start;
  margin-top: var(--space-lg);
}

@media (max-width: 992px) {
  .simulator-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.simulator-controls {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.sim-group {
  background: rgba(255, 255, 255, 0.02);
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid var(--c-border);
}

.sim-group-title {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  letter-spacing: -0.01em;
}

.sim-badge {
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  color: var(--c-text-muted);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-weight: 400;
}

.sim-radio-grid, .sim-check-grid, .sim-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.sim-options-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.sim-radio-card, .sim-check-card, .sim-opt-card {
  display: block;
  position: relative;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--c-border);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s var(--ease);
  user-select: none;
}

.sim-radio-card input, .sim-check-card input, .sim-opt-card input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.sim-card-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sim-card-name {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--c-text);
  transition: color 0.3s var(--ease);
}

.sim-card-price {
  font-family: var(--font-en);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--c-text-muted);
  transition: color 0.3s var(--ease);
}

.sim-card-price small {
  font-family: var(--font-ja);
  font-size: 0.75rem;
  font-weight: 400;
  margin-left: 0.1rem;
}

.sim-radio-card:hover, .sim-check-card:hover, .sim-opt-card:hover {
  border-color: rgba(255, 255, 255, 0.25);
}

.sim-radio-card:has(input:checked),
.sim-check-card:has(input:checked),
.sim-opt-card:has(input:checked) {
  border-color: var(--c-accent);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.04);
}

.sim-radio-card:has(input:checked) .sim-card-name,
.sim-check-card:has(input:checked) .sim-card-name,
.sim-opt-card:has(input:checked) .sim-card-name {
  color: var(--c-accent);
}

.sim-radio-card:has(input:checked) .sim-card-price,
.sim-check-card:has(input:checked) .sim-card-price,
.sim-opt-card:has(input:checked) .sim-card-price {
  color: var(--c-accent);
}

.sim-check-item, .sim-opt-card-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sim-item-slider, .sim-slider-wrapper {
  background: rgba(255, 255, 255, 0.03);
  padding: 1.25rem;
  border-radius: 12px;
  border: 1px solid var(--c-border);
  animation: slideDown 0.4s var(--ease);
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.sim-slider-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--c-text-muted);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.sim-slider-val {
  font-family: var(--font-en);
  font-weight: 700;
  color: var(--c-accent);
}

.sim-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 2px;
  border-radius: 1px;
  background: var(--c-border);
  outline: none;
  margin: 0;
  cursor: pointer;
}

.sim-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--c-accent);
  cursor: pointer;
  transition: transform 0.15s var(--ease);
}

.sim-slider::-webkit-slider-thumb:hover {
  transform: scale(1.3);
}

.sim-slider::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--c-accent);
  cursor: pointer;
  border: none;
}

.simulator-preview {
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
  z-index: 10;
}

.preview-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--c-border);
  border-radius: 20px;
  padding: 3rem 2.5rem;
}

.preview-header {
  border-bottom: 1px solid var(--c-border);
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
}

.preview-tag {
  font-family: var(--font-en);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.25);
  display: block;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.preview-title {
  font-size: 1.75rem;
  font-weight: 300;
  letter-spacing: -0.02em;
}

.preview-date {
  font-size: 0.75rem;
  color: var(--c-text-muted);
  margin-top: 0.25rem;
}

.estimate-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--c-text-muted);
  margin-bottom: 2rem;
  background: rgba(255, 255, 255, 0.03);
  padding: 1rem 1.25rem;
  border-radius: 10px;
}

.meta-row {
  display: flex;
  justify-content: space-between;
}

.meta-row span:first-child { font-weight: 500; }

.estimate-details { margin-bottom: 2.5rem; }

.details-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.details-body {
  display: flex;
  flex-direction: column;
  max-height: 250px;
  overflow-y: auto;
  padding-right: 0.5rem;
}

.details-body::-webkit-scrollbar { width: 3px; }
.details-body::-webkit-scrollbar-track { background: transparent; }
.details-body::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.1); border-radius: 2px; }

.empty-state {
  color: var(--c-text-muted);
  font-size: 0.85rem;
  text-align: center;
  padding: 2rem 0;
  font-style: italic;
}

.est-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.9rem;
  animation: fadeInItem 0.3s var(--ease);
}

@keyframes fadeInItem {
  from { opacity: 0; transform: translateX(10px); }
  to { opacity: 1; transform: translateX(0); }
}

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

.est-item-info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  max-width: 70%;
}

.est-item-name { font-weight: 500; }

.est-item-desc {
  font-size: 0.75rem;
  color: var(--c-text-muted);
}

.est-item-price {
  font-family: var(--font-en);
  font-weight: 700;
}

.preview-footer {
  border-top: 1px solid var(--c-border);
  padding-top: 1.5rem;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  color: var(--c-text-muted);
  margin-bottom: 0.75rem;
}

.price-row.total {
  font-size: 1.15rem;
  color: var(--c-text);
  border-top: 1px double var(--c-border);
  padding-top: 1.25rem;
  margin-top: 1.25rem;
  margin-bottom: 2rem;
}

.price-val {
  font-family: var(--font-en);
  font-weight: 700;
}

.total-val {
  font-size: 2.25rem;
  color: var(--c-accent);
}

.btn-submit-estimate {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  background: #fff;
  color: #000;
  padding: 1.25rem;
  border-radius: 12px;
  font-weight: 500;
  transition: all 0.4s var(--ease);
  text-decoration: none;
}

.btn-submit-estimate:hover {
  background: rgba(255, 255, 255, 0.85);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.1);
}

.btn-submit-estimate svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s var(--ease);
}

.btn-submit-estimate:hover svg {
  transform: translateX(4px);
}

.preview-note {
  font-size: 0.7rem;
  color: var(--c-text-muted);
  line-height: 1.5;
  margin-top: 1.5rem;
}

/* Estimate Page */
body.estimate-page {
  padding-top: var(--header-height);
  background-color: var(--c-bg-alt);
}

body.estimate-page .simulator-section {
  border-top: none;
  padding-top: var(--space-md);
}

body.estimate-page .header {
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--c-border);
}

body.estimate-page .header-cta {
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
}

body.estimate-page .header-cta:hover {
  background: #fff;
  color: #000;
}

/* ===== Marquee (legacy) ===== */
.marquee-inner {
  display: flex;
  animation: marqueeScroll 20s linear infinite;
}

/* ==========================================================================
   Top Page Portal Summaries Styles
   ========================================================================== */

.btn-detail-link {
  display: inline-block;
  font-family: var(--font-ja);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--c-text);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.9rem 2.2rem;
  border-radius: 100px;
  transition: all 0.4s var(--ease);
}

.btn-detail-link:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
}

/* Services Summary Grid */
.services-summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: var(--space-lg);
}

.service-summary-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--c-border);
  padding: 3.5rem 2.5rem;
  border-radius: 16px;
  transition: all 0.5s var(--ease);
}

.service-summary-card:hover {
  border-color: var(--c-accent);
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.service-summary-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--c-border);
  border-radius: 50%;
  font-family: var(--font-en);
  font-size: 0.8rem;
  color: var(--c-text-muted);
  margin-bottom: 2rem;
  transition: all 0.5s var(--ease);
}

.service-summary-card:hover .service-summary-num {
  border-color: #fff;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.service-summary-title {
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
  color: #fff;
}

.service-summary-desc {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  line-height: 1.8;
}

/* Equipment Summary Grid */
.equipment-summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: var(--space-lg);
}

.eq-sum-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--c-border);
  padding: 3.5rem 3rem;
  border-radius: 20px;
  transition: all 0.5s var(--ease);
}

.eq-sum-card:hover {
  border-color: #fff;
  background: #0a0a0a;
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(255, 255, 255, 0.03);
}

.eq-sum-card-title {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
  color: #fff;
}

.eq-sum-card-desc {
  font-size: 0.95rem;
  color: var(--c-text-muted);
  line-height: 1.85;
}

/* Process Summary Steps */
.process-summary-steps {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  margin-top: var(--space-lg);
}

.p-sum-step {
  flex: 1 1 0;
  min-width: 0;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--c-border);
  padding: 2rem 1.25rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.p-sum-body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.p-sum-step:hover {
  border-color: var(--c-accent);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-3px);
}

.p-sum-num {
  display: block;
  font-family: var(--font-en);
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--c-accent);
  line-height: 1;
}

.p-sum-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.03em;
}

.p-sum-desc {
  font-size: 0.75rem;
  color: var(--c-text-muted);
  line-height: 1.6;
  margin-top: 0.25rem;
}

/* Arrow connector between steps */
.p-sum-arrow {
  flex: 0 0 auto;
  width: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.p-sum-arrow::before {
  content: '';
  display: block;
  width: 1.4rem;
  height: 1px;
  background: var(--c-border);
}

.p-sum-arrow::after {
  content: '';
  position: absolute;
  right: 0.2rem;
  width: 6px;
  height: 6px;
  border-top: 1px solid var(--c-text-muted);
  border-right: 1px solid var(--c-text-muted);
  transform: rotate(45deg);
}

@media (max-width: 900px) {
  .process-summary-steps {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }

  .p-sum-step {
    flex: none;
    text-align: left;
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-radius: 10px;
  }

  .p-sum-step .p-sum-num {
    font-size: 1.1rem;
    padding-top: 0.15rem;
    min-width: 2rem;
    text-align: left;
  }

  .p-sum-body {
    flex: 1;
    text-align: left;
  }

  .p-sum-arrow {
    width: auto;
    height: 1.5rem;
    flex-direction: column;
    margin-left: 3.25rem;
  }

  .p-sum-arrow::before {
    width: 1px;
    height: 1.1rem;
  }

  .p-sum-arrow::after {
    bottom: 0.1rem;
    right: auto;
    left: -2px;
    top: auto;
    border-top: none;
    border-right: none;
    border-bottom: 1px solid var(--c-text-muted);
    border-left: 1px solid var(--c-text-muted);
    transform: rotate(-45deg);
  }
}

/* About Summary Section */
.about-summary-content {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--c-border);
  padding: 4.5rem 3rem;
  border-radius: 20px;
  margin-top: var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.5s var(--ease);
}

.about-summary-content:hover {
  border-color: var(--c-accent);
  background: rgba(255, 255, 255, 0.03);
}

.about-summary-text {
  max-width: 700px;
}

.about-summary-message {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  color: #fff;
  line-height: 1.4;
}

.about-summary-desc {
  font-size: 0.98rem;
  color: var(--c-text-muted);
  line-height: 1.9;
}

/* Contact CTA Section */
.contact-cta {
  background: var(--c-bg);
  padding: var(--space-xl) 0;
}

.contact-cta-title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 200;
  font-family: var(--font-serif);
  margin-bottom: 1rem;
  color: #fff;
}

.contact-cta-desc {
  font-size: 1rem;
  color: var(--c-text-muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ===== Photo Break ===== */
.photo-break {
  position: relative;
  width: 100%;
  height: clamp(320px, 60vh, 640px);
  overflow: hidden;
}

.photo-break-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

.photo-break-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0.05) 50%,
    rgba(0, 0, 0, 0.35) 100%
  );
}

